/* TripLinq Figma Landing — Pure CSS */
:root {
  --bg: #F5F7FB;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #2563eb; /* blue-600 */
  --brand-700: #1d4ed8;
  --white: #ffffff;
  --pill: #0f172a; /* slate-900 */
  --card: #ffffff;
  --soft: #eef2ff;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #FAFBFC;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Header / Nav */
.site-header { padding: 24px 0; background: #F8F8FF; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; }
.site-header.scrolled { padding: 12px 0; background: transparent; }
.site-header.scrolled .container { display: flex; justify-content: center; }
body { padding-top: 88px; } /* Account for fixed header height */
.nav-pill {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  border-radius: 999px;
  padding: 18px 36px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.4);
  transition: all 0.3s ease;
  width: 100%;
}
.site-header.scrolled .nav-pill { 
  padding: 14px 28px; 
  gap: 20px; 
  width: 50%;
  min-width: 300px;
  display: grid;
  grid-template-columns: auto 1fr auto;
}
.site-header.scrolled .nav-links { display: none !important; }
.site-header.scrolled .hamburger { display: flex; }
.site-header.scrolled .cta { display: none; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); font-weight: 600; transition: all 0.3s ease; }
.brand img { width: 32px; height: 32px; transition: all 0.3s ease; }
.site-header.scrolled .brand img { width: 28px; height: 28px; }
.nav-links { display: none; gap: 28px; justify-content: center; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav-links a:hover { opacity: 1; }
.cta { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: var(--white); background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); border-radius: 999px; padding: 12px 26px; font-weight: 600; box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25); transition: all 0.3s ease; font-size: 15px; }
.cta:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35); }

/* Hamburger Menu */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu { display: none; flex-direction: column; gap: 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 20px; margin-top: 16px; padding: 20px 24px; box-shadow: 0 8px 32px rgba(15, 23, 42, 0.4); }
.site-header.scrolled .mobile-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 280px; }
.mobile-menu a { color: var(--white); text-decoration: none; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.2s ease; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #60a5fa; }
.mobile-menu .mobile-cta { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); border-radius: 999px; padding: 14px 24px; margin-top: 12px; border-bottom: none; font-weight: 600; }
.mobile-menu.active { display: flex; }

/* Hero */
.hero { 
  padding: 80px 0 120px; 
  position: relative; 
  background: #F8F8FF;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hero-title { font-size: clamp(32px, 4.5vw, 60px); line-height: 1.1; margin: 0 0 24px; color: #0f172a; font-weight: 700; }
.hero-sub { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 24px; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; flex-wrap: wrap; }
.btn { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 16px 32px; font-weight: 600; box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25); transition: all 0.3s ease; font-size: 16px; }
.btn.primary { color: var(--white); background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.btn.primary:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35); }
.store-badges { display: inline-flex; align-items: center; gap: 16px; }
.store-badges img { height: 52px; filter: drop-shadow(0 4px 12px rgba(2,6,23,0.1)); transition: transform 0.3s ease; border-radius: 8px; }
.store-badges img:hover { transform: translateY(-3px); filter: drop-shadow(0 8px 20px rgba(2,6,23,0.15)); }

/* Hero Icon — positioned between actions and features, near column divider */
.hero-content { position: relative; }
.hero-icon {
  position: absolute;
  width: 180px;
  bottom: 130px;
  right: -220px;
  pointer-events: none;
  z-index: 5;
}

/* Features heading */
.features-heading { font-size: 20px; font-weight: 600; color: #0f172a; margin: 80px 0 24px; }

/* Features strip */
.features-strip { margin-top: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: start; }
.feature { text-align: center; }
.feature .icon { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 22px; background: #E3F1EF; box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1); margin: 0 auto 14px; transition: transform .2s ease, box-shadow .2s ease; }
.feature .icon img { width: 38px; height: 38px; }
.feature .label { display: block; font-size: 14px; font-weight: 600; color: #334155; line-height: 1.5; }
.feature:hover .icon { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18); }

/* Phone image */
.hero-media { display: flex; align-items: flex-end; justify-content: flex-end; position: relative; margin-right: calc(-24px); padding-right: 36px; }
.phone { max-width: 320px; max-height: 800px; width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(2,6,23,.2)); object-fit: contain; object-position: right bottom; transform: scale(1); }

/* Footer */
.site-footer { padding: 48px 0 24px; background: #0f172a; color: #94a3b8; }

/* Sections general */
.section { padding: 100px 0; background: #FFFFFF; }
.section-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.section-title { text-align: center; font-weight: 700; color: #0f172a; margin: 0 0 12px; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2; }
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 48px; max-width: 680px; line-height: 1.7; font-size: 17px; }

/* Alternating section backgrounds */
.section.plan-b { background: #F8F8FF; }
.section.testimonials { background: #F8F8FF; }
.section.faq { background: #FFFFFF; }

/* Plan A - Features with scroll animation */
.plana-grid { position: relative; display: grid; grid-template-columns: 350px 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 60px 0; min-height: 600px; }
.plana-features { display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; min-height: 200px; order: 2; }
.plana-phone { order: 1; }
.plana-feature { display: flex; gap: 20px; align-items: flex-start; background: #E3F1EF; padding: 24px 28px; border-radius: 16px; border-left: 4px solid #2563eb; cursor: pointer; max-width: 500px; position: absolute; opacity: 0; visibility: hidden; pointer-events: none; z-index: 1; }
.plana-feature.active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.plana-feature:hover { opacity: 1; }
.plana-feature.active:hover { opacity: 1; }
.plana-feature-icon { width: 52px; height: 52px; border-radius: 50%; background: #e0f2fe; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.plana-feature-icon img { width: 26px; height: 26px; filter: none; }
.plana-feature.active .plana-feature-icon { background: #dbeafe; }
.plana-feature-content { flex: 1; }
.plana-feature-title { margin: 0 0 8px; font-size: 18px; font-weight: 600; color: #0f172a; transition: color 0.4s ease; }
.plana-feature.active .plana-feature-title { color: #0f172a; }
.plana-feature-desc { margin: 0; color: #64748b; font-size: 14px; line-height: 1.7; transition: color 0.4s ease; }
.plana-feature.active .plana-feature-desc { color: #64748b; }
.plana-phone { flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; width: 100%; max-height: 70vh; }
.plana-phone-wrapper { position: relative; width: 100%; max-width: 350px; }
.plana-phone img { max-width: 100%; width: 100%; max-height: 70vh; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.5s ease; object-fit: contain; }
.plana-phone img.active { opacity: 1; position: relative; }

/* Ensure smooth pinning behavior */
.plan-a { overflow: hidden; background: #f8fafc; }
.plan-a.pin-spacer { overflow: visible !important; }

/* Plan B (steps) - Pinned scroll animation section */
.planb-grid { position: relative; display: grid; grid-template-columns: 350px 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; padding: 60px 0; }
.planb-decorative-left { position: absolute; top: 0; left: 0; z-index: 10; }
.planb-decorative-left img { max-width: 280px; width: 100%; height: auto; }
.planb-decorative-right { position: absolute; bottom: -40px; right: 0; z-index: 10; }
.planb-decorative-right img { max-width: 420px; width: 100%; height: auto; }
.planb-center { display: flex; align-items: flex-start; gap: 40px; justify-content: center; position: relative; grid-column: 2; padding-top: 40px; }
.planb-phone { flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.planb-phone-wrapper { position: relative; width: 100%; height: 100%; }
.planb-phone img { max-width: 100%; width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(2,6,23,.15)); position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.5s ease; }
.planb-phone img.active { opacity: 1; position: relative; }
.planb-divider { display: flex; align-items: flex-start; flex-shrink: 0; }
.planb-divider svg { height: 584px; width: auto; display: block; }
.planb-steps { display: flex; flex-direction: column; gap: 48px; padding-right: 0; justify-content: center; min-height: 60vh; }
.planb-step { display: flex; gap: 24px; align-items: flex-start; opacity: 0.35; transition: all 0.4s ease; }
.planb-step.active { opacity: 1; }
.planb-step-number { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: #cbd5e1; color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; }
.planb-step.active .planb-step-number { background: #2563eb; box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3); transform: scale(1.05); }
.planb-step-content { flex: 1; }
.planb-step-label { display: block; font-size: 13px; color: #64748b; font-weight: 600; margin-bottom: 6px; transition: color 0.4s ease; }
.planb-step.active .planb-step-label { color: #2563eb; }
.planb-step-title { margin: 0 0 12px; font-size: 20px; font-weight: 700; color: #0f172a; line-height: 1.3; transition: color 0.4s ease; }
.planb-step.active .planb-step-title { color: #0f172a; }
.planb-step-desc { margin: 0; color: #64748b; font-size: 14px; line-height: 1.7; transition: color 0.4s ease; }
.planb-step.active .planb-step-desc { color: #374151; }

/* Progress indicator for steps */
.planb-progress { position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: #e2e8f0; z-index: -1; }
.planb-progress-fill { width: 100%; background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%); height: 0%; transition: height 0.3s ease; }

/* Ensure smooth pinning behavior */
.plan-b { overflow: hidden; }
.plan-b.pin-spacer { overflow: visible !important; }

/* Download / Stats */
.download-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: stretch; }
.download-left { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.stats-wrapper { background: #E3F1EF; border-radius: 24px; padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card { background: var(--card); border-radius: 16px; padding: 24px 20px; box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06); text-align: left; transition: all 0.3s ease; border: 1px solid rgba(226, 232, 240, 0.6); }
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(2, 6, 23, 0.12); }
.stat-icon { width: 48px; height: 48px; border-radius: 50%; background: #E3F1EF; margin-bottom: 16px; }
.stat-value { font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.stat-label { color: var(--muted); font-size: 14px; font-weight: 500; }
.qr-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: #E3F1EF; border-radius: 20px; padding: 24px 28px; cursor: pointer; transition: all 0.3s ease; }
.qr-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15); }
.qr-card .qr-text strong { font-size: 18px; font-weight: 700; color: #0f172a; display: block; margin-bottom: 8px; }
.qr-card .qr-text p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.qr { width: 100px; height: 100px; border-radius: 12px; }
.download-media { display: flex; align-items: center; justify-content: center; }
.download-media .phone { max-width: 320px; width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(2,6,23,.2)); }
.download-right { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.download-label { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.download-title { font-size: 42px; font-weight: 700; color: #0f172a; margin: 0 0 16px; letter-spacing: -0.5px; }
.download-arrow { margin-bottom: 16px; }
.download-arrow img { width: 120px; height: auto; }
.download-cta { background: #dbeafe; border-radius: 24px; padding: 32px 28px; transition: all 0.3s ease; }
.download-cta:hover { box-shadow: 0 12px 36px rgba(2, 6, 23, 0.12); }
.download-cta h4 { margin: 0 0 14px; font-size: 22px; color: #0f172a; font-weight: 700; }
.download-cta p { margin: 0 0 20px; color: var(--muted); line-height: 1.7; font-size: 15px; }
.download-cta .store-badges { display: flex; gap: 12px; }
.download-cta .store-badges img { height: 44px; border-radius: 8px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: var(--card); border-radius: 24px; padding: 32px 28px; box-shadow: 0 6px 24px rgba(2, 6, 23, 0.08); transition: all 0.3s ease; border: 1px solid rgba(226, 232, 240, 0.6); }
.t-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(2,6,23,.14); border-color: rgba(37, 99, 235, 0.15); }
.t-card h3 { margin: 0 0 12px; font-size: 19px; color: #0f172a; font-weight: 700; }
.t-card .stars { font-size: 18px; margin-bottom: 16px; color: #fbbf24; letter-spacing: 2px; }
.t-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.t-user { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; }
.avatar { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: #e2e8f0; color: #0f172a; font-weight: 700; font-size: 14px; }
.t-user strong { display: block; font-size: 14px; font-weight: 600; color: #0f172a; margin-bottom: 2px; }
.t-user small { display: block; font-size: 12px; color: var(--muted); }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.dots span { width: 8px; height: 8px; border-radius: 999px; background: #cbd5e1; }
.dots span:nth-child(2) { background: #0ea5e9; width: 24px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--card); border-radius: 18px; box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06); overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(226, 232, 240, 0.6); }
.faq-item:hover { box-shadow: 0 10px 32px rgba(2,6,23,.12); border-color: rgba(37, 99, 235, 0.12); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 28px; font-weight: 600; color: #0f172a; position: relative; font-size: 16px; transition: all 0.2s ease; }
.faq-item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); color: #64748b; font-weight: 700; font-size: 20px; }
.faq-item[open] summary::after { content: '–'; }
.faq-content { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; font-size: 14px; }

/* Footer expanded */
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr; gap: 32px; align-items: start; }
.footer-brand .brand-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand .brand-row strong { color: #ffffff; }
.footer-brand img { width: 28px; height: 28px; }
.footer-brand p { margin: 0 0 12px; color: #94a3b8; }
.socials { display: flex; gap: 12px; align-items: center; }
.socials .dot { display: inline-block; width: 32px; height: 32px; border-radius: 999px; background: #1e293b; margin-right: 0; }
.socials .contact-icon { width: 40px; height: 40px; border-radius: 50%; background: #1e293b; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.socials .contact-icon a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #94a3b8; text-decoration: none; }
.socials .contact-icon a:hover { color: #ffffff; }
.socials .contact-icon svg { width: 20px; height: 20px; stroke-width: 2; }
.footer-col { display: grid; gap: 8px; }
.footer-col strong { color: #ffffff; }
.footer-col a { text-decoration: none; color: #94a3b8; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid #1e293b; margin-top: 32px; }
.footer-bottom small { color: #64748b; }
.watermark { position: absolute; right: 0; bottom: -10px; font-size: 72px; font-weight: 700; color: #1e293b; opacity: 0.5; pointer-events: none; }

/* Responsive */
@media (min-width: 900px) { .nav-links { display: flex; } }
@media (max-width: 899px) {
  .nav-pill .cta { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 20px; }
  .hero-actions { margin-bottom: 28px; gap: 16px; }
  .hero-icon { display: none; }
  .hero-media { display: none; }
  .features-heading { font-size: 18px; margin: 60px 0 20px; }
  .plana-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; min-height: auto; }
  .plana-phone { display: flex; justify-content: center; position: relative; top: 0; order: -1; width: 100%; max-width: 320px; margin: 0 auto; }
  .plana-phone-wrapper { position: relative; width: 100%; aspect-ratio: 9/16; max-height: 500px; }
  .plana-phone img { width: 100%; height: 100%; max-width: 100%; position: absolute; top: 0; left: 0; transform: none; object-fit: contain; }
  .plana-phone img.active { position: relative; left: 0; transform: none; }
  .plana-phone-wrapper { display: flex; justify-content: center; width: 100%; position: relative; }
  .plana-features { min-height: auto; gap: 16px; }
  .plana-feature { position: relative; max-width: 100%; opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
  .planb-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .planb-phone { display: flex; justify-content: center; position: relative; top: 0; width: 100%; max-width: 400px; margin: 0 auto; }
  .plana-phone img { width: 100%; height: 100%; position: absolute; top: 0; left: 0; transform: none; object-fit: contain; }
  .plana-phone img.active { position: relative; }
  .plana-phone-wrapper { position: relative; width: 100%; aspect-ratio: 9/16; max-height: 500px; display: flex; justify-content: center; }
  .planb-decorative-left { display: none; }
  .planb-decorative-right { display: none; }
  .planb-center { flex-direction: column; gap: 32px; }
  .planb-divider { display: none; }
  .planb-steps { padding-right: 0; }
  .planb-step { opacity: 1; transform: none; }
  .download-grid { grid-template-columns: 1fr; gap: 40px; }
  .download-left { order: 2; }
  .download-media { order: 1; }
  .download-right { order: 3; align-items: center; text-align: center; }
  .download-cta { text-align: center; }
  .download-cta .store-badges { justify-content: center; }
  .download-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { gap: 32px; }
  .hero-title { font-size: clamp(24px, 6vw, 36px); line-height: 1.2; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn.primary { width: 100%; justify-content: center; }
  .store-badges { width: 100%; justify-content: center; }
  .features-heading { font-size: 17px; margin: 48px 0 18px; }
  .features-strip { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .feature .icon { width: 64px; height: 64px; margin-bottom: 10px; }
  .feature .icon img { width: 30px; height: 30px; }
  .feature .label { font-size: 12px; }
  .hero-icon { display: none; }
  .hero-media { display: none; }
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(24px, 5vw, 32px); }
  .section-sub { font-size: 15px; margin-bottom: 32px; }
  .plana-grid { gap: 24px; }
  .plana-phone { max-width: 280px; }
  .plana-phone-wrapper { max-height: 400px; }
  .plana-features { gap: 12px; }
  .plana-feature { padding: 16px 20px; gap: 14px; }
  .plana-feature-icon { width: 44px; height: 44px; }
  .plana-feature-icon img { width: 22px; height: 22px; }
  .planb-grid { gap: 32px; }
  .planb-phone { max-width: 320px; }
  .planb-steps { gap: 32px; }
  .planb-step-number { width: 56px; height: 56px; font-size: 20px; }
  .store-badges img { height: 44px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .t-card { padding: 24px 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats-wrapper { padding: 20px; }
  .stat-card { padding: 20px 16px; }
  .stat-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .stat-value { font-size: 28px; }
  .stat-label { font-size: 13px; }
  .download-title { font-size: 32px; }
  .download-media .phone { max-width: 280px; }
  .qr-card { padding: 20px; gap: 16px; }
  .qr { width: 80px; height: 80px; }
  .faq-item summary { padding: 20px 24px; font-size: 15px; }
  .faq-content { padding: 0 20px 16px; font-size: 13px; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero { padding: 32px 0 48px; }
  .hero-title { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .hero-icon { display: none; }
  .hero-media { display: none; }
  .section { padding: 48px 0; }
  .section-title { font-size: 22px; }
  .section-sub { font-size: 14px; margin-bottom: 28px; }
  .plana-grid { gap: 20px; padding: 20px 0; }
  .plana-phone { max-width: 240px; }
  .plana-phone-wrapper { max-height: 350px; }
  .plana-features { gap: 12px; }
  .plana-feature { padding: 16px 20px; gap: 14px; }
  .plana-feature-icon { width: 44px; height: 44px; }
  .plana-feature-icon img { width: 22px; height: 22px; }
  .plana-feature-title { font-size: 16px; }
  .plana-feature-desc { font-size: 13px; }
  .planb-grid { gap: 24px; padding: 20px 0; }
  .planb-phone { max-width: 280px; }
  .planb-phone img { max-width: 240px; }
  .planb-phone-wrapper { min-height: 300px; }
  .planb-steps { gap: 24px; }
  .planb-step { flex-direction: column; gap: 16px; text-align: center; }
  .planb-step-number { width: 48px; height: 48px; font-size: 18px; margin: 0 auto; }
  .planb-step-title { font-size: 18px; }
  .planb-step-desc { font-size: 13px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .features-heading { margin: 40px 0 16px; }
  .features-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature .icon { width: 56px; height: 56px; }
  .feature .icon img { width: 26px; height: 26px; }
  .feature .label { font-size: 11px; }
  .store-badges { flex-direction: column; gap: 12px; }
  .store-badges img { height: 40px; width: 100%; max-width: 160px; }
  .nav-pill { padding: 14px 20px; gap: 16px; }
  .brand img { width: 28px; height: 28px; }
  .brand span { font-size: 14px; }
  .cta { padding: 10px 18px; font-size: 13px; }
  .download-grid { gap: 32px; }
  .stats-wrapper { padding: 16px; }
  .stats { gap: 12px; }
  .stat-card { padding: 16px 14px; }
  .stat-icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 12px; }
  .qr-card { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 20px; }
  .qr { margin: 0 auto; width: 100px; height: 100px; }
  .download-title { font-size: 28px; }
  .download-cta { padding: 24px 20px; }
  .download-cta h4 { font-size: 18px; }
  .download-cta p { font-size: 14px; }
  .download-cta .store-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .download-cta .store-badges img { height: 40px; max-width: 140px; }
  .download-media .phone { max-width: 240px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .t-card { padding: 24px 20px; }
  .t-card h3 { font-size: 17px; }
  .t-card p { font-size: 13px; }
  .faq-list { gap: 10px; }
  .faq-item summary { padding: 18px 20px; font-size: 14px; padding-right: 40px; }
  .faq-item summary::after { right: 16px; }
  .faq-content { padding: 0 16px 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-brand .brand-row { justify-content: center; }
  .footer-col { text-align: center; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .watermark { display: none; }
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* Common Page Hero Styles (used across multiple pages) */
.page-hero {
  padding: 80px 0;
  background: #F8F8FF;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.page-hero p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .effective-date {
  display: inline-block;
  background: #E3F1EF;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 16px;
}

/* Contact Page Styles */
.contact-section {
  background: #FFFFFF;
}
.contact-card {
  max-width: 464px;
  margin: 0 auto;
  background: url('../images/contact-bg.svg') no-repeat center center;
  background-size: contain;
  padding: 80px 60px;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0f172a;
}
.contact-icon svg[fill="currentColor"] {
  fill: #0f172a;
  stroke: none;
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 14px;
  color: #6b7280;
}
.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}
.contact-value:hover {
  color: #2563eb;
}
.contact-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.contact-badges img {
  height: 48px;
  border-radius: 8px;
}

/* About Page Styles */
.about-mission {
  background: #FFFFFF;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}
.mission-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.mission-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission-image img {
  max-width: 320px;
  max-height: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-values {
  background: #F8F8FF;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.14);
}
.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.value-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.value-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.about-team {
  background: #FFFFFF;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #E3F1EF;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
}
.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.team-card span {
  font-size: 14px;
  color: #6b7280;
}
.about-cta {
  background: #F8F8FF;
  text-align: center;
}
.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 32px;
  padding: 60px 40px;
  color: white;
}
.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin: 0 0 16px;
}
.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-box .store-badges {
  justify-content: center;
}
.cta-box .store-badges img {
  height: 52px;
}

/* Terms of Service & Privacy Policy Shared Styles */
.terms-content,
.privacy-content {
  background: #FFFFFF;
}
.terms-container,
.policy-container {
  max-width: 800px;
  margin: 0 auto;
}
.terms-intro,
.policy-intro {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 32px;
  background: #F8F8FF;
  border-radius: 20px;
  border-left: 4px solid #2563eb;
}
.terms-section,
.policy-section {
  margin-bottom: 48px;
}
.terms-section h2,
.policy-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  padding-left: 20px;
  border-left: 4px solid #2563eb;
}
.terms-section p,
.policy-section p {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.terms-section ul,
.policy-section ul {
  padding-left: 24px;
  margin: 0 0 16px;
}
.terms-section ul li,
.policy-section ul li {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.terms-section ul li strong,
.policy-section ul li strong {
  color: #0f172a;
}
.policy-section ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
.policy-section ol li {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.highlight-box {
  padding: 28px;
  border-radius: 20px;
  margin: 24px 0;
}
.highlight-box.green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
}
.highlight-box.yellow {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
}
.highlight-box.blue {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #7dd3fc;
}
.highlight-box.gray {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
}
.highlight-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}
.highlight-box.green h3 {
  color: #059669;
}
.highlight-box.yellow h3 {
  color: #d97706;
}
.highlight-box.blue h3 {
  color: #1e40af;
}
.highlight-box.gray h3 {
  color: #1e40af;
}
.highlight-box h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 12px;
}
.highlight-box p {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.highlight-box p:last-child {
  margin-bottom: 0;
}
.highlight-box ul {
  padding-left: 20px;
  margin: 0 0 12px;
}
.highlight-box ul:last-child {
  margin-bottom: 0;
}
.highlight-box ul li {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.highlight-box ul li:last-child {
  margin-bottom: 0;
}
.highlight-box ol {
  padding-left: 20px;
  margin: 0 0 12px;
}
.highlight-box ol li {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-emphasis {
  color: #2563eb !important;
  font-weight: 600;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #374151;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item a:hover {
  text-decoration: underline;
}
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}
.back-button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.back-section {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

/* ========================================
   PAGE-SPECIFIC RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .contact-card { padding: 60px 40px; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-image { order: -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 0; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }
  .contact-card { 
    padding: 50px 30px; 
    background-size: 100% 100%;
  }
  .contact-items { gap: 24px; margin-bottom: 40px; }
  .contact-icon { width: 48px; height: 48px; }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-value { font-size: 16px; }
  .contact-badges img { height: 44px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 28px 24px; }
  .team-grid { gap: 24px; }
  .team-avatar { width: 100px; height: 100px; font-size: 28px; }
  .cta-box { padding: 40px 24px; border-radius: 24px; }
  .terms-intro,
  .policy-intro { padding: 24px; font-size: 15px; }
  .terms-section h2,
  .policy-section h2 { font-size: 20px; padding-left: 16px; }
  .terms-section p,
  .terms-section ul li,
  .policy-section p,
  .policy-section ul li { font-size: 15px; }
  .highlight-box { padding: 20px; }
  .highlight-box h3 { font-size: 18px; }
}

@media (max-width: 540px) {
  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }
  .contact-card { 
    padding: 40px 24px;
    min-height: auto;
  }
  .contact-items { gap: 20px; margin-bottom: 32px; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-value { font-size: 15px; }
  .contact-label { font-size: 13px; }
  .contact-badges { flex-wrap: wrap; }
  .contact-badges img { height: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team-avatar { width: 80px; height: 80px; font-size: 24px; }
  .team-card h4 { font-size: 16px; }
  .terms-intro,
  .policy-intro { padding: 20px; font-size: 14px; margin-bottom: 32px; }
  .terms-section,
  .policy-section { margin-bottom: 32px; }
  .terms-section h2,
  .policy-section h2 { font-size: 18px; padding-left: 14px; margin-bottom: 16px; }
  .terms-section p,
  .terms-section ul li,
  .policy-section p,
  .policy-section ul li,
  .policy-section ol li { font-size: 14px; }
  .highlight-box { padding: 16px; border-radius: 16px; }
  .highlight-box h3 { font-size: 16px; }
  .highlight-box h4 { font-size: 15px; }
  .highlight-box p,
  .highlight-box ul li,
  .highlight-box ol li { font-size: 14px; }
  .contact-info-item { font-size: 14px; }
  .back-button { padding: 14px 24px; font-size: 14px; }
}
