/* ============================================================
   Humart Ecommerce — Landing styles
   Mobile-first, paleta y tipografía Humart (navy/mint/coral).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Humart brand tokens */
  --navy:        #162041;
  --navy-900:    #0e1530;
  --navy-700:    #1e2c54;
  --mint:        #2ECC8F;
  --mint-700:    #21a572;
  --mint-50:     #e8f9f1;
  --coral:       #FF6B6B;
  --coral-700:   #e0494a;

  /* Surfaces */
  --bg:          #ffffff;
  --bg-soft:     #f6f7fb;
  --bg-tint:     #f1f3fa;
  --cream:       #faf7f2;
  --line:        #e4e7f0;
  --line-strong: #cbd1de;

  /* Text */
  --fg:          #162041;
  --fg-2:        #4a5670;
  --fg-3:        #7e879c;
  --fg-muted:    #a2aabb;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(22,32,65,0.04), 0 1px 1px rgba(22,32,65,0.04);
  --shadow-2: 0 4px 14px rgba(22,32,65,0.06), 0 1px 2px rgba(22,32,65,0.04);
  --shadow-3: 0 18px 44px rgba(22,32,65,0.10), 0 2px 6px rgba(22,32,65,0.05);
  --shadow-focus: 0 0 0 3px rgba(46,204,143,0.28);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --page-width: 1180px;
  --page-pad:   20px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--navy); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 6px;
}

img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: 0; background: none; }

::selection { background: rgba(46,204,143,0.25); color: var(--navy); }

.container { max-width: var(--page-width); margin: 0 auto; padding: 0 var(--page-pad); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(22,32,65,0.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  padding: 0 var(--page-pad);
  max-width: var(--page-width);
  margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--navy);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 6px 14px rgba(22,32,65,0.18);
  position: relative;
}
.nav-brand-mark::after {
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  right: -2px; bottom: -2px;
  border: 2px solid var(--cream);
}
.nav-brand em {
  font-style: normal;
  font-weight: 600;
  color: var(--mint-700);
  margin-left: 4px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color .2s ease;
}
.nav-login:hover { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(22,32,65,0.18);
}
.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(22,32,65,0.24);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}
.btn-ghost {
  color: var(--fg-2);
  font-weight: 500;
}
.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}

.nav-burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  align-items: center; justify-content: center;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--navy);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 132px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(46,204,143,0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 30%, rgba(22,32,65,0.04), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,32,65,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,32,65,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--mint-50);
  color: var(--mint-700);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(46,204,143,0.18);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--mint-700);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 8px;
  background: var(--mint);
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 13.5px;
  color: var(--fg-3);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--mint-50);
  color: var(--mint-700);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
}

/* Hero mockup — storefront + orders panel */
.hero-mockup {
  position: relative;
}
.mock-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.mock-store {
  position: relative;
  z-index: 2;
  width: 92%;
  margin-left: auto;
}
.mock-store-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #e2e5ed;
}
.mock-dots span:nth-child(1) { background: #ff6b6b; }
.mock-dots span:nth-child(2) { background: #ffc107; }
.mock-dots span:nth-child(3) { background: var(--mint); }
.mock-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: var(--fg-3);
  font-family: ui-monospace, monospace;
}
.mock-url strong { color: var(--navy); font-weight: 600; }
.mock-store-body {
  padding: 18px 20px 22px;
  background: linear-gradient(180deg, #fff 0%, #fcfcfe 100%);
}
.mock-store-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.mock-shop {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}
.mock-shop-nav {
  display: flex; gap: 14px;
  font-size: 11px;
  color: var(--fg-3);
  font-weight: 500;
}
.mock-product {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.mock-product-img {
  width: 96px; height: 96px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #fff, #e9edf5 40%, #b9c2d6 100%);
  position: relative;
  overflow: hidden;
}
.mock-product-img::after {
  content: "";
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: linear-gradient(135deg, #162041, #1e2c54);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 16px rgba(22,32,65,0.18);
}
.mock-product-info {
  display: flex; flex-direction: column; justify-content: space-between;
}
.mock-product-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
}
.mock-product-meta {
  font-size: 11.5px;
  color: var(--fg-3);
  margin-top: 2px;
}
.mock-product-prices {
  display: flex; align-items: baseline; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.mock-price-now {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}
.mock-price-old {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.mock-product-cta {
  margin-top: 14px;
  display: flex; gap: 8px;
}
.mock-buy {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.mock-cod {
  background: var(--mint-50);
  color: var(--mint-700);
  border: 1px solid rgba(46,204,143,0.3);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11.5px;
  font-weight: 700;
}

/* Orders panel — overlapping card */
.mock-panel {
  position: absolute;
  left: -8px;
  bottom: -28px;
  width: 60%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 16px;
  z-index: 3;
}
.mock-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.mock-panel-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}
.mock-panel-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint-700);
  background: var(--mint-50);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 5px;
}
.mock-panel-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.mock-panel-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.mock-panel-row:first-of-type { border-top: 0; padding-top: 0; }
.mock-panel-row strong { color: var(--navy); font-weight: 600; }
.mock-panel-row .order-meta { color: var(--fg-3); font-size: 11px; }
.mock-panel-row .order-amount {
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.mock-panel-row .order-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-top: 2px;
}
.tag-cod   { background: #fff4e9; color: #b96b1a; }
.tag-monei { background: #eef1ff; color: #4055cc; }
.tag-bizum { background: #e7f6fb; color: #1f7da1; }

/* ============================================================
   LOGOS / TRUST STRIP
   ============================================================ */
.logos {
  padding: 56px 0 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.logos-title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 26px;
}
.logos-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px 56px;
  opacity: 0.7;
}
.logo-item {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.logo-item.sans {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin-left: 0; text-align: left;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-700);
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 14px;
  text-wrap: balance;
}
.section h2 em {
  font-style: italic;
  color: var(--mint-700);
}
.section-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto;
}
.section-head.left .section-desc { margin: 0; }

.section-alt { background: var(--bg-soft); }
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-dark h2 { color: var(--cream); }
.section-dark .section-desc { color: rgba(250,247,242,0.72); }
.section-dark .eyebrow { color: var(--mint); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(22,32,65,0.12);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--mint-50);
  color: var(--mint-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-2);
}
.feature.highlight {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.feature.highlight h3 { color: var(--cream); }
.feature.highlight p  { color: rgba(250,247,242,0.78); }
.feature.highlight .feature-icon {
  background: rgba(46,204,143,0.18);
  color: var(--mint);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 18%; right: 18%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--navy) 100%);
  opacity: 0.18;
  border-radius: 2px;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px rgba(22,32,65,0.04);
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.6;
}
.step code {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 9px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--navy);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-cell { padding: 18px 22px; font-size: 14.5px; }
.compare-row.head .compare-cell {
  background: var(--bg-soft);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding-top: 22px; padding-bottom: 22px;
}
.compare-row.head .compare-cell.us {
  background: var(--navy);
  color: var(--cream);
}
.compare-feature {
  font-weight: 600;
  color: var(--navy);
}
.compare-cell.us {
  background: rgba(46,204,143,0.06);
  color: var(--navy);
  font-weight: 600;
}
.compare-cell.them {
  color: var(--fg-2);
}
.compare-tick, .compare-x {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin-right: 8px;
  vertical-align: -5px;
}
.compare-tick { background: var(--mint-50); color: var(--mint-700); }
.compare-x    { background: #fff1f1; color: var(--coral-700); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.plan-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.plan-tag {
  font-size: 13.5px;
  color: var(--fg-3);
  margin-bottom: 22px;
}
.plan-price {
  font-family: var(--font-serif);
  display: flex; align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  color: var(--navy);
}
.plan-price-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.plan-price-currency { font-size: 22px; font-weight: 700; }
.plan-price-period {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-3);
  font-weight: 500;
  margin-left: 4px;
}
.plan-trial {
  font-size: 12.5px;
  color: var(--mint-700);
  font-weight: 600;
  margin-bottom: 22px;
}
.plan-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex; gap: 10px;
  line-height: 1.5;
}
.plan-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mint-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321a572' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-size: 11px;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.plan .btn { width: 100%; }
.plan.featured {
  border-color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  box-shadow: var(--shadow-3);
  transform: translateY(-6px);
}
.plan.featured:hover { transform: translateY(-8px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px rgba(46,204,143,0.32);
}
.pricing-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--fg-3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(22,32,65,0.18); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: var(--font-sans);
  transition: background .2s ease;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
}
.faq-q-icon { position: relative; }
.faq-q-icon::before { width: 11px; height: 2px; }
.faq-q-icon::after  { width: 2px; height: 11px; transition: opacity .2s ease; }
.faq-item[open] .faq-q-icon::after { opacity: 0; }
.faq-a {
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(46,204,143,0.16), transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(46,204,143,0.08), transparent 70%),
    var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
}
.cta-final h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 14px;
  text-wrap: balance;
  position: relative;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--mint);
}
.cta-final p {
  font-size: 17px;
  color: rgba(250,247,242,0.72);
  max-width: 540px;
  margin: 0 auto 28px;
  position: relative;
}
.cta-final .btn-primary {
  background: var(--mint);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(46,204,143,0.36);
}
.cta-final .btn-primary:hover {
  background: var(--mint-700);
  color: #fff;
}
.cta-final-actions {
  position: relative;
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.cta-final-note {
  position: relative;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(250,247,242,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0e1530;
  color: rgba(250,247,242,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand em {
  font-style: normal;
  font-weight: 600;
  color: var(--mint);
  margin-left: 4px;
}
.footer-tag {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250,247,242,0.55);
  max-width: 320px;
}
.footer-cross {
  display: inline-flex;
  align-items: center; gap: 6px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--cream);
  transition: background .2s ease, border-color .2s ease;
}
.footer-cross:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(46,204,143,0.4);
}
.footer-cross svg {
  width: 14px; height: 14px;
  color: var(--mint);
}
.footer h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(250,247,242,0.6);
  font-size: 14px;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--mint); }

.footer-bottom {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(250,247,242,0.45);
  line-height: 1.6;
}
.footer-bottom p { color: inherit; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 20px;
  background: rgba(22,32,65,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: slideUp .35s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex; gap: 20px;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  color: var(--cream);
  font-size: 13.5px;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text a {
  color: var(--mint);
  margin-left: 4px;
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.cookie-accept { background: var(--mint); color: var(--navy); }
.cookie-accept:hover { background: var(--mint-700); color: #fff; }
.cookie-reject {
  background: transparent;
  color: rgba(250,247,242,0.7);
  border: 1px solid rgba(250,247,242,0.2);
}
.cookie-reject:hover { color: var(--cream); border-color: rgba(250,247,242,0.5); }

/* ============================================================
   RESPONSIVE — tablet/mobile
   ============================================================ */
@media (max-width: 960px) {
  .features-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid > .plan:nth-child(3) { grid-column: span 2; max-width: 480px; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta-group .nav-login { display: none; }
  .nav-cta-group .btn { padding: 9px 16px; font-size: 13.5px; }

  .hero { padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-sub { font-size: 16.5px; }
  .hero-actions .btn { flex: 1; min-width: 0; }

  .mock-store { width: 100%; }
  .mock-panel {
    position: relative;
    width: 90%;
    left: auto; bottom: auto;
    margin: -28px auto 0;
  }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-grid > .plan:nth-child(3) { grid-column: auto; max-width: none; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-3px); }

  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .compare-cell { padding: 14px 14px; font-size: 13px; }
  .compare-row.head .compare-cell { font-size: 14px; padding: 16px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { font-size: 12px; }

  .cta-final { padding: 72px 0; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .section h2 { font-size: clamp(26px, 6.5vw, 34px); }
  .mock-product { grid-template-columns: 80px 1fr; }
  .mock-product-img { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
