/* =============================================
   Y-GO EATS — SaaS Design System v2
   Lightspeed-inspired: clean, mature, B2B
   ============================================= */

:root {
  --bg:          #FFFFFF;
  --bg-alt:      #F8FAFC;
  --bg-dark:     #0F172A;
  --bg-dark2:    #1E293B;
  --text:        #0F172A;
  --text-2:      #1E293B;
  --text-muted:  #64748B;
  --text-xs:     #94A3B8;
  --border:      #E2E8F0;
  --border-2:    #CBD5E1;
  --green:       #C9A227;
  --green-h:     #A8831D;
  --green-lt:    #FFFCF5;
  --green-bd:    #E6C86A;
  --green-text:  #7A5C14;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.05), 0 1px 6px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 36px rgba(0,0,0,.09), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 56px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.c {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section ---- */
.section       { padding: 88px 0; background: var(--bg); }
.section--alt  { padding: 88px 0; background: var(--bg-alt); }
.section--dark { padding: 88px 0; background: var(--bg-dark); }
.section--sm   { padding: 56px 0; }

/* ---- Eyebrow / Section labels ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-heading--white { color: #fff; }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.68;
  max-width: 540px;
}
.section-sub--center { margin: 0 auto; text-align: center; }
.section-sub--white  { color: rgba(255,255,255,.65); }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ====================================
   NAVIGATION
   ==================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; height: 100%; }
.nav-logo img { height: 2.25rem; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg-alt); }
.nav-menu a.active { color: var(--text); font-weight: 600; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-lang {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  transition: border-color .15s, color .15s;
}
.nav-lang:hover { border-color: var(--green); color: var(--green); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s;
}
.mobile-menu-extra { display: none; }

@media(max-width:860px) {
  .nav-menu, .nav-lang, .nav-right, .nav-right .btn { display: none !important; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-menu.open a {
    width: 100%;
    padding: 11px 12px;
    border-radius: var(--r-sm);
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open a:last-child { border-bottom: none; }
  .nav-menu.open .mobile-menu-extra {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open .mobile-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--green);
    border: none;
    border-radius: var(--r-md);
    width: 100%;
    transition: all 0.2s ease;
  }
  .nav-menu.open .mobile-lang:hover {
    background: var(--green-h);
  }
  .nav-menu.open .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--green);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-md);
    width: 100%;
  }
  .nav-right { display: none !important; }
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-md);
  transition: background .18s, border-color .18s, transform .12s, box-shadow .15s, color .18s;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(201,162,39,.22);
}
.btn--primary:hover {
  background: var(--green-h);
  border-color: var(--green-h);
  box-shadow: 0 6px 20px rgba(201,162,39,.32);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--outline:hover {
  border-color: var(--text);
  background: var(--bg-alt);
}
.btn--ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--lg { font-size: 0.97rem; padding: 13px 28px; }
.btn--sm { font-size: 0.8rem; padding: 7px 15px; }

/* ====================================
   HERO
   ==================================== */
.hero {
  padding: 136px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,162,39,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media(max-width:900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: 100%; }
}
@media(max-width:640px) {
  .hero { padding: 100px 0 48px; }
  .mockup-float { display: none; }
  .hero-actions { 
    gap: 10px; 
    flex-direction: row !important;
    flex-wrap: nowrap;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .hero-actions .btn--lg { 
    flex: 1; 
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.88rem;
    min-height: 46px;
  }
  .hero-visual { margin-top: 16px; }
  .mockup-wrap { max-width: 100%; transform: scale(0.85); margin: 0 auto; }
  .hero h1 { font-size: 1.75rem; line-height: 1.15; margin-bottom: 16px; padding: 0 8px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; padding: 0 8px; }
  .hero-badge { font-size: 0.7rem; padding: 4px 10px; margin-bottom: 14px; }
  .hero-trust { gap: 12px; margin-bottom: 20px; padding: 0 8px; }
  .hero-trust-item { font-size: 0.75rem; }
  .hero-content { padding: 0 8px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  color: var(--green-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust-item svg { color: var(--green); }

/* ====================================
   PRODUCT MOCKUP
   ==================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.mockup-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-2);
}
.mockup-chrome {
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.mockup-dots span:nth-child(1) { background: #FC5F57; }
.mockup-dots span:nth-child(2) { background: #FDBB2F; }
.mockup-dots span:nth-child(3) { background: #2AC840; }
.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-family: monospace;
}
.mockup-body {
  display: flex;
  height: 340px;
}
.mockup-sidebar {
  width: 148px;
  flex-shrink: 0;
  background: var(--bg-dark);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mockup-brand {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  padding: 8px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  padding: 7px 10px;
  border-radius: 6px;
  transition: background .15s;
  font-weight: 500;
}
.mockup-nav-item.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.mockup-nav-icon { font-size: 0.85rem; line-height: 1; }
.mockup-main {
  flex: 1;
  padding: 14px 14px 10px;
  overflow: hidden;
  background: var(--bg-alt);
}
.mockup-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mockup-page-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
}
.mockup-new-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mockup-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.mockup-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}
.mockup-stat-lbl {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.mockup-orders-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 6px;
}
.mockup-order {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.order-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
}
.order-dot.amber { background: #F59E0B; }
.order-dot.done  { background: #94A3B8; }
.order-desc {
  flex: 1;
  overflow: hidden;
}
.order-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-items {
  font-size: 0.6rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.order-price {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.order-status {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.order-status.new   { background: var(--green-lt); color: var(--green-text); }
.order-status.amber { background: #FFFBEB; color: #92400E; }
.order-status.done  { background: #F1F5F9; color: var(--text-muted); }

/* Floating accent card on mockup */
.mockup-float {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--green-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.float-val   { font-size: 1rem; font-weight: 800; color: var(--green); line-height: 1; }

/* ====================================
   TRUST STRIP
   ==================================== */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media(max-width:640px) {
  .trust-inner { gap: 20px; }
  .trust-item { font-size: 0.83rem; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ====================================
   BENEFIT CARDS (4-col grid)
   ==================================== */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
@media(max-width:960px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .cards-4 { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.benefit-card:hover {
  border-color: var(--green-bd);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--green-lt);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* ====================================
   FEATURE SHOWCASE (alternating)
   ==================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:first-child { padding-top: 0; }
.feature-block:last-child  { padding-bottom: 0; border-bottom: none; }
.feature-block--flip { direction: rtl; }
.feature-block--flip > * { direction: ltr; }
@media(max-width:820px) {
  .feature-block, .feature-block--flip { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .feature-block--flip > * { direction: ltr; }
  .feature-block:first-child { padding-top: 0; }
  .feature-block:last-child  { padding-bottom: 0; }
}
.feature-bullet-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}
.feature-bullet::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green-lt);
  border: 1.5px solid var(--green-bd);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316A34A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-visual-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

/* ====================================
   HOW IT WORKS — STEPS
   ==================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--green-bd);
  z-index: 0;
}
@media(max-width:860px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
}
@media(max-width:520px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 54px; height: 54px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid var(--bg-alt);
  box-shadow: 0 0 0 2px var(--green-bd);
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.62;
}
@media(max-width:520px) {
  .step-card { padding: 0 4px 8px; text-align: left; }
  .step-number { margin: 0 0 16px; }
}

/* ====================================
   COMPARISON SECTION
   ==================================== */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media(max-width:640px) { .comparison-wrap { grid-template-columns: 1fr; } }
.comparison-col {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: var(--bg);
}
.comparison-col:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.comparison-col--green:hover {
  box-shadow: 0 20px 56px rgba(201,162,39,0.18), 0 8px 20px rgba(0,0,0,0.06);
  border-color: var(--green-h);
}
.comparison-col--green { border-color: var(--green); }

.comparison-col--green .comparison-row { animation: slide-in-left 0.6s ease-out forwards; opacity: 0; }
.comparison-col--green .comparison-row:nth-child(1) { animation-delay: 0.1s; }
.comparison-col--green .comparison-row:nth-child(2) { animation-delay: 0.2s; }
.comparison-col--green .comparison-row:nth-child(3) { animation-delay: 0.3s; }
.comparison-col--green .comparison-row:nth-child(4) { animation-delay: 0.4s; }
.comparison-col--green .comparison-row:nth-child(5) { animation-delay: 0.5s; }
.comparison-col--green .comparison-row:nth-child(6) { animation-delay: 0.6s; }

.comparison-col:not(.comparison-col--green) .comparison-row { animation: slide-in-right 0.6s ease-out forwards; opacity: 0; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(1) { animation-delay: 0.1s; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(2) { animation-delay: 0.2s; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(3) { animation-delay: 0.3s; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(4) { animation-delay: 0.4s; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(5) { animation-delay: 0.5s; }
.comparison-col:not(.comparison-col--green) .comparison-row:nth-child(6) { animation-delay: 0.6s; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slide-in-left {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.comparison-header {
  padding: 20px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.comparison-col--green .comparison-header {
  background: var(--green-lt);
  border-bottom: 1px solid var(--green-bd);
}
.comparison-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.comparison-col--green .comparison-label { color: var(--green); }
.comparison-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}
.comparison-body { padding: 4px 0; }
.comparison-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  cursor: default;
}
.comparison-row:hover {
  background-color: rgba(201,162,39,0.05);
  padding-left: 28px;
}
.comparison-row:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comparison-row:hover .check-icon--yes {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(201,162,39,0.4);
}
.check-icon--yes { background: var(--green-lt); color: var(--green); animation: icon-pulse 3s ease-in-out infinite; }
.check-icon--no  { background: #FEF2F2; color: #DC2626; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media(max-width:860px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #F59E0B;
  font-size: 0.9rem;
}
.testi-quote {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--green-text);
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.testi-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ====================================
   PRICING
   ==================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media(max-width:580px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  background: var(--bg);
  transition: box-shadow .2s, border-color .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); }
.pricing-card--featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 0 4px rgba(201,162,39,.08);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
}
.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.3rem; vertical-align: top; margin-top: 8px; }
.pricing-per {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.pricing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.pricing-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--green-lt);
  border: 1.5px solid var(--green-bd);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 900;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
  background: var(--bg-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,162,39,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #FCD34D;
  margin-bottom: 14px;
}
.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.58);
  line-height: 1.68;
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media(max-width:820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo img { height: 3.2rem; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; display: block; }
.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,.4);
  line-height: 1.68;
  max-width: 240px;
}
.footer-col h6 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-col a, .footer-col address {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.48);
  line-height: 1.4;
  margin-bottom: 11px;
  font-style: normal;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-col address { line-height: 1.6; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.25);
}

/* ====================================
   INNER PAGE HEADER
   ==================================== */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 116px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}
@media(max-width:820px) { .contact-layout { grid-template-columns: 1fr; } }
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.form-card .sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:480px) { .form-row-2 { grid-template-columns: 1fr; } }
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(201,162,39,.14);
}
.fg textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .15s;
  font-family: inherit;
}
.btn-submit:hover {
  background: var(--green-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,.28);
}
.contact-info-card {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: 32px;
}
.contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.contact-info-card .sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cd-icon {
  width: 40px; height: 40px;
  background: rgba(201,162,39,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-text p { font-size: 0.72rem; color: rgba(255,255,255,.35); margin-bottom: 3px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; }
.cd-text a, .cd-text address { color: rgba(255,255,255,.75); font-size: 0.9rem; font-style: normal; line-height: 1.55; }
.cd-text a:hover { color: #fff; }
.wechat-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.wechat-section p { font-size: 0.72rem; color: rgba(255,255,255,.35); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.wechat-section img { border-radius: 12px; max-width: 150px; margin: 0 auto; border: 1px solid rgba(255,255,255,.1); }
.alert-ok { background: var(--green-lt); border: 1px solid var(--green-bd); color: var(--green-text); border-radius: var(--r-md); padding: 10px 14px; font-size: 0.88rem; margin-bottom: 16px; display: none; }
.alert-err { background: #FEF2F2; border: 1px solid #FCA5A5; color: #B91C1C; border-radius: var(--r-md); padding: 10px 14px; font-size: 0.88rem; margin-bottom: 16px; display: none; }

/* ====================================
   TERMS PAGE
   ==================================== */
.terms-wrap { padding: 64px 0; }
.terms-max { max-width: 780px; margin: 0 auto; }
.terms-toc {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.terms-toc h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 12px; }
.terms-toc ol { padding-left: 18px; }
.terms-toc li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 5px; }
.terms-toc a { color: var(--green); }
.terms-toc a:hover { text-decoration: underline; }
.terms-body h2 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin: 36px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--green-lt); scroll-margin-top: 88px; }
.terms-body p { color: var(--text-2); line-height: 1.8; margin-bottom: 12px; font-size: 0.95rem; }
.terms-body ul { padding-left: 20px; margin-bottom: 12px; }
.terms-body li { color: var(--text-2); line-height: 1.8; font-size: 0.95rem; }
.terms-body a { color: var(--green); }

/* ====================================
   UTILITIES
   ==================================== */
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.text-center { text-align: center; }
.grid-section-head { margin-bottom: 48px; }
section[id], div[id] { scroll-margin-top: 80px; }

/* ====================================
   FLOATING ANIMATIONS
   ==================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,162,39,0.3); }
  50% { box-shadow: 0 0 40px rgba(201,162,39,0.5); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float-slow 6s ease-in-out infinite; }
.float-delayed { animation: float-delayed 5s ease-in-out infinite; animation-delay: 1s; }
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Apply floating to specific hero elements */
.hero-visual { animation: float-slow 6s ease-in-out infinite; }
.hero-badge { animation: float 4s ease-in-out infinite; }
.mockup-float { animation: float-delayed 5s ease-in-out infinite; }

/* Step cards floating animation */
.float-step {
  animation: float-step 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

@keyframes float-step {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ====================================
   MOBILE UI IMPROVEMENTS
   ==================================== */

/* Better typography scaling on small screens */
@media(max-width:480px) {
  .hero h1 { font-size: 2rem; letter-spacing: -0.02em; line-height: 1.1; }
  .hero-sub { font-size: 1rem; line-height: 1.6; }
  .section-heading { font-size: 1.6rem; line-height: 1.15; }
  .section-sub { font-size: 0.95rem; line-height: 1.65; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 1.4px; }
}

/* Navigation improvements for mobile */
@media(max-width:860px) {
  .site-nav { backdrop-filter: blur(12px); }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 2.2rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-menu.open { 
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Improved touch targets for mobile */
@media(max-width:640px) {
  .btn { 
    padding: 12px 24px; 
    min-height: 44px;
    font-size: 0.9rem;
  }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
  .nav-menu.open a { padding: 14px 16px; min-height: 48px; }
}

/* Hero section mobile optimizations */
@media(max-width:640px) {
  .hero-badge { 
    font-size: 0.72rem; 
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  .hero-trust { gap: 16px; }
  .hero-trust-item { font-size: 0.8rem; }
  .hero-trust-item svg { width: 12px; height: 12px; }
}

/* Horizontal scroll for trust strip on mobile */
@media(max-width:640px) {
  .trust-strip { padding: 20px 0; }
  .trust-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px;
    gap: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; font-size: 0.85rem; }
  .trust-icon { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* Better section spacing on mobile */
@media(max-width:640px) {
  .section { padding: 56px 0; }
  .section--sm { padding: 40px 0; }
  .hero { padding: 100px 0 48px; }
  .cta-section { padding: 56px 0; }
  .page-hero { padding: 100px 0 48px; }
  .grid-section-head { margin-bottom: 36px; }
}

/* Benefit cards mobile spacing */
@media(max-width:520px) {
  .benefit-card { padding: 24px 20px; }
  .benefit-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 14px; }
  .benefit-title { font-size: 0.95rem; margin-bottom: 6px; }
  .benefit-desc { font-size: 0.85rem; }
}

/* Improved form inputs on mobile */
@media(max-width:640px) {
  .fg input, .fg select, .fg textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px 16px;
    min-height: 48px;
  }
  .fg textarea { min-height: 120px; }
  .form-card { padding: 28px 20px; }
  .btn-submit { padding: 14px; font-size: 1rem; min-height: 50px; }
}

/* Better footer spacing on mobile */
@media(max-width:480px) {
  .site-footer { padding: 40px 0 0; }
  .footer-top { 
    gap: 28px; 
    padding: 0 8px 32px;
    text-align: center;
  }
  .footer-logo img { 
    height: 2.6rem; 
    margin: 0 auto 12px; 
  }
  .footer-tagline { 
    max-width: 100%; 
    font-size: 0.85rem; 
    line-height: 1.6;
    margin: 0 auto;
  }
  .footer-col h6 { 
    font-size: 0.7rem; 
    margin-bottom: 12px;
    color: rgba(255,255,255,.6);
  }
  .footer-col a, .footer-col address { 
    font-size: 0.88rem; 
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .footer-bottom { padding: 16px 8px; }
  .footer-bottom p { font-size: 0.75rem; }
}

/* Comparison section mobile improvements */
@media(max-width:640px) {
  .comparison-wrap { gap: 16px; margin-bottom: 24px; }
  .comparison-header { padding: 16px 20px; }
  .comparison-label { font-size: 0.68rem; }
  .comparison-title { font-size: 1.05rem; }
  .comparison-row { 
    padding: 10px 16px; 
    font-size: 0.85rem;
    gap: 10px;
  }
  .comparison-row:hover { padding-left: 16px; }
  .check-icon { width: 18px; height: 18px; font-size: 0.7rem; }
}

/* Step cards better mobile layout */
@media(max-width:520px) {
  .step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    margin-bottom: 12px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 1.5px var(--green-bd);
  }
  .step-title { font-size: 0.9rem; margin-bottom: 6px; }
  .step-desc { font-size: 0.82rem; line-height: 1.55; }
  .steps-grid { gap: 0; }
}

/* Testimonials mobile improvements */
@media(max-width:520px) {
  .testi-card { padding: 20px 18px; }
  .testi-stars { font-size: 0.85rem; margin-bottom: 12px; }
  .testi-quote { font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
  .testi-avatar { width: 36px; height: 36px; font-size: 1rem; }
  .testi-name { font-size: 0.85rem; }
  .testi-role { font-size: 0.75rem; }
}

/* Feature blocks mobile improvements */
@media(max-width:820px) {
  .feature-block { padding: 40px 0; }
}
@media(max-width:640px) {
  .feature-block { padding: 36px 0; gap: 24px; }
  .feature-visual-card { aspect-ratio: 16/10; }
  .feature-visual-card img { padding: 16px; }
  .feature-bullet { font-size: 0.85rem; }
  .feature-bullet::before { width: 16px; height: 16px; }
}

/* Mockup mobile optimizations */
@media(max-width:640px) {
  .mockup-wrap { max-width: 100%; }
  .mockup-chrome { padding: 8px 12px; }
  .mockup-dots span { width: 8px; height: 8px; }
  .mockup-url { font-size: 0.7rem; padding: 2px 8px; }
  .mockup-body { height: 300px; }
  .mockup-sidebar { width: 120px; padding: 12px 10px; }
  .mockup-brand { font-size: 0.72rem; padding: 6px 8px 12px; }
  .mockup-nav-item { font-size: 0.7rem; padding: 6px 8px; }
  .mockup-main { padding: 12px 10px; }
  .mockup-page-title { font-size: 0.75rem; }
  .mockup-new-badge { font-size: 0.58rem; padding: 2px 6px; }
  .mockup-stats { gap: 6px; margin-bottom: 10px; }
  .mockup-stat-card { padding: 6px 8px; }
  .mockup-stat-val { font-size: 0.85rem; }
  .mockup-stat-lbl { font-size: 0.55rem; }
  .mockup-orders-title { font-size: 0.65rem; margin-bottom: 5px; }
  .mockup-order { padding: 6px 8px; gap: 6px; margin-bottom: 4px; }
  .order-dot { width: 6px; height: 6px; }
  .order-num { font-size: 0.64rem; }
  .order-items { font-size: 0.56rem; }
  .order-price { font-size: 0.66rem; }
  .order-status { font-size: 0.56rem; padding: 2px 5px; }
}

/* Container padding improvements on mobile */
@media(max-width:640px) {
  .nav-inner { padding: 0 16px; }
  .c { padding: 0 16px; }
}

/* Better CTA buttons stacking on mobile */
@media(max-width:480px) {
  .cta-eyebrow { font-size: 0.68rem; margin-bottom: 12px; }
  .cta-heading { font-size: 1.7rem; margin-bottom: 14px; padding: 0 12px; }
  .cta-sub { font-size: 0.92rem; margin-bottom: 24px; padding: 0 12px; }
  .cta-actions { 
    flex-direction: row !important; 
    gap: 10px; 
    padding: 0 12px;
  }
  .cta-actions .btn { 
    flex: 1;
    padding: 12px 14px;
    font-size: 0.88rem;
    min-height: 46px;
  }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Contact page mobile improvements */
@media(max-width:820px) {
  .contact-info-card { margin-top: 24px; }
}
@media(max-width:640px) {
  .contact-info-card { padding: 24px 20px; }
  .contact-info-card h4 { font-size: 1.1rem; }
  .contact-info-card .sub { font-size: 0.85rem; margin-bottom: 24px; }
  .contact-detail { margin-bottom: 16px; gap: 10px; }
  .cd-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .cd-text p { font-size: 0.7rem; }
  .cd-text a, .cd-text address { font-size: 0.85rem; }
}

/* Terms page mobile improvements */
@media(max-width:640px) {
  .terms-wrap { padding: 48px 0; }
  .terms-toc { padding: 20px 20px; margin-bottom: 32px; }
  .terms-toc h5 { font-size: 0.7rem; margin-bottom: 10px; }
  .terms-toc li { font-size: 0.85rem; }
  .terms-body h2 { font-size: 1.05rem; margin: 28px 0 8px; }
  .terms-body p, .terms-body li { font-size: 0.9rem; line-height: 1.7; }
}

/* Reduce animations on mobile for performance */
@media(max-width:640px) and (prefers-reduced-motion: no-preference) {
  .hero-visual, .hero-badge, .mockup-float { animation-duration: 8s; }
  .float-step { animation-duration: 7s; }
  .comparison-row { animation-duration: 0.4s; }
  .benefit-card, .testi-card { transition-duration: 0.4s; }
}

/* Disable complex animations on low-end devices */
@media(max-width:640px) and (prefers-reduced-motion: reduce) {
  .hero-visual, .hero-badge, .mockup-float, .float-step,
  .comparison-row, .benefit-card, .testi-card {
    animation: none !important;
  }
  .mockup-wrap::before { animation: none !important; }
  .cta-section::before, .cta-section::after { animation: none !important; }
}

/* ====================================
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   ==================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====================================
   BENEFIT CARDS STAGGERED ANIMATION
   ==================================== */
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s, opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}
.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }

/* ====================================
   MOCKUP BREATHING GLOW
   ==================================== */
.mockup-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-2);
  position: relative;
}
.mockup-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  border-radius: calc(var(--r-xl) + 10px);
  z-index: -1;
  animation: breathe-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ====================================
   TESTIMONIAL CARDS FADE-IN
   ==================================== */
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .3s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}
.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testi-card:nth-child(1) { transition-delay: 0.1s; }
.testi-card:nth-child(2) { transition-delay: 0.2s; }
.testi-card:nth-child(3) { transition-delay: 0.3s; }
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ====================================
   CTA RADIAL PULSE
   ==================================== */
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,.14) 0%, transparent 65%);
  pointer-events: none;
  animation: cta-pulse 6s ease-in-out infinite;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,162,39,.08) 0%, transparent 65%);
  pointer-events: none;
  animation: cta-pulse 6s ease-in-out infinite reverse;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
