/* ============================================================
   VendReady POS Landing Page Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #0d0f12; background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAV
   ============================================================ */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease;
  background: transparent;
}
.main-header.scrolled {
  background: rgba(10, 20, 50, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.ready { color: #3d66ff; }
.nav-center { display: flex; gap: 28px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-link:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-signin {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color .2s;
}
.btn-signin:hover { color: #fff; }
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-demo {
  background: #3d66ff;
  color: #fff;
}
.btn-primary {
  background: #3d66ff;
  color: #fff;
}
.btn-large {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, #0a1230 0%, #0d1e4a 55%, #1a0a2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-section > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(61,102,255,.15);
  border: 1px solid rgba(61,102,255,.35);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  transition: background .2s;
}
.hero-tagline:hover { background: rgba(61,102,255,.25); }
.tagline-badge {
  background: #3d66ff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tagline-arrow { color: rgba(255,255,255,.5); }
.hero-content-wrapper { max-width: 640px; }
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-highlight {
  background: linear-gradient(90deg, #3d66ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-visual { width: 100%; }
.hero-mockups {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transform: perspective(1200px) rotateX(8deg);
  transform-origin: top center;
}
.hero-mockup { flex: 1; }
.desktop-mockup { flex: 1.6; }
.mockup-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-image { width: 100%; display: block; }

/* ============================================================
   FEATURES / BENEFITS OVERVIEW
   ============================================================ */
.benefits-overview {
  padding: 100px 0;
  background: #fff;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3d66ff;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #0d0f12;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-description {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
}

/* ============================================================
   MAIN FEATURES (alternating image + text)
   ============================================================ */
.main-features {
  padding: 80px 0;
  background: #f7f8fc;
}
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-highlight:last-child { margin-bottom: 0; }
.feature-highlight.reverse .feature-content { order: 2; }
.feature-highlight.reverse .feature-image { order: 1; }
.feature-content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0d0f12;
  margin-bottom: 28px;
}
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d0f12;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}
.feature-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
}
.bordered-image img {
  border: 1px solid #e3e3e3;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: #fff;
}
.testimonials .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.testimonial-main {
  background: #0a1230;
  border-radius: 20px;
  padding: 48px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-text.large { font-size: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.testimonial-info p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.testimonials-sidebar { display: flex; flex-direction: column; gap: 20px; }
.testimonial-small {
  background: #f7f8fc;
  border-radius: 16px;
  padding: 28px;
}
.testimonial-small p {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-small cite {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  font-style: normal;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: #f7f8fc;
}
.pricing-plans { text-align: center; }
.pricing-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0d0f12;
  margin-bottom: 12px;
}
.pricing-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 48px;
}
.pricing-grid { display: flex; justify-content: center; }
.pricing-card {
  background: #0a1230;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.pricing-header {
  padding: 40px;
  text-align: left;
}
.pricing-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
}
.period {
  font-size: 16px;
  color: rgba(255,255,255,.5);
}
.pricing-header p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.features-list { display: flex; flex-direction: column; gap: 10px; padding: 0 40px 40px; }
.features-list li {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding-left: 20px;
  position: relative;
}
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3d66ff;
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: #fff;
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0d0f12;
  margin-bottom: 14px;
}
.contact-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  border-radius: 20px;
  padding: 40px;
}
.demo-card {
  background: #0a1230;
  color: #fff;
}
.demo-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.demo-card p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.support-card {
  background: #f7f8fc;
  border: 1px solid #e3e3e3;
}
.support-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0d0f12;
  margin-bottom: 12px;
}
.support-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 28px;
}
.support-email {
  color: #3d66ff;
  font-weight: 600;
}
.contact-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.contact-btn:hover { opacity: .88; transform: translateY(-1px); }
.demo-btn {
  background: #3d66ff;
  color: #fff;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #0a1230 0%, #1a0a2e 100%);
}
.cta-content { text-align: center; }
.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-guarantee {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: #070d1f;
  padding: 60px 0 32px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-section p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-section h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-section ul { display: flex; flex-direction: column; gap: 10px; }
.footer-section ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-section ul li a:hover { color: #fff; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social span {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-social-links { display: flex; gap: 10px; }
.footer-social-link {
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-social-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .feature-highlight { grid-template-columns: 1fr; gap: 40px; }
  .feature-highlight.reverse .feature-content { order: unset; }
  .feature-highlight.reverse .feature-image { order: unset; }
  .testimonials-wrapper { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-center { display: none; }
  .hero-section { padding: 100px 0 60px; }
  .hero-mockups { transform: none; }
  .benefits-overview,
  .main-features,
  .testimonials,
  .pricing-section,
  .contact-section,
  .final-cta { padding: 60px 0; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-main { padding: 32px 24px; }
  .contact-card { padding: 28px 24px; }
}
