/* =============================================
   MOBLO LANDING PAGE — styles.css
   Design system: DM Sans
   Accent: #0D9488 | Dark base: #111113
   ============================================= */

:root {
  --teal: #0D9488;
  --teal-light: #CCFBF1;
  --teal-mid: #14B8A6;
  --teal-dark: #0A7569;
  --teal-glow: 0 4px 20px rgba(13,148,136,0.18);

  --bg-base: #F4F4F5;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-hover: #EDEDEF;
  --bg-active: #F0FDFA;

  --text-primary: #111118;
  --text-secondary: #52525B;
  --text-muted: #71717A;

  --border-subtle: #E4E4E7;
  --border-default: #E4E4E7;
  --border-strong: #D4D4D8;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-elevated: 0 4px 12px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);

  --dark-bg: #111113;
  --dark-elevated: #1A1A1F;
  --dark-card: #1E1E24;
  --dark-hover: #252530;
  --dark-active: #2A2A38;
  --dark-border: rgba(255,255,255,0.1);
  --dark-text: #EDEDF0;
  --dark-text-muted: #A0A0B0;

  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-elevated);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  padding: 9px 20px; border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--teal-glow); }
.btn-primary.btn-lg { font-size: 15px; padding: 13px 28px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  padding: 9px 20px; border-radius: var(--radius-pill);
  transition: all var(--transition); white-space: nowrap;
}
.btn-outline:hover { background: var(--bg-active); transform: translateY(-1px); }
.btn-outline.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-secondary);
  font-family: var(--font-sans); font-weight: 400; font-size: 14px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-hover); }
.btn-ghost.btn-sm { font-size: 13px; padding: 7px 12px; }
.btn-sm { font-size: 13px; padding: 7px 14px; }

/* ---- SECTION HEADINGS ---- */
.section-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-title em {
  font-family: var(--font-sans);
  font-style: italic; font-weight: 400;
  color: var(--teal); letter-spacing: 0;
}
.section-sub { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin-bottom: 48px; }

/* ======================================
   NAVBAR
====================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { border-color: var(--border-subtle); box-shadow: var(--shadow-card); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; gap: 32px;
}
.nav-logo img { display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text-secondary);
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-hover); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); border-radius: 2px; }
.nav-mobile {
  display: none; flex-direction: column;
  padding: 12px 24px 20px; border-top: 1px solid var(--border-subtle); gap: 4px;
}
.nav-mobile a { font-size: 15px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); }
.nav-mobile a:hover { background: var(--bg-hover); color: var(--text-primary); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; }

/* ======================================
   HERO
====================================== */
.hero {
  padding: 120px 0 80px; overflow: hidden; position: relative;
  background: var(--bg-elevated);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13,148,136,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(13,148,136,.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--teal-dark);
  background: var(--teal-light); border: 1px solid rgba(13,148,136,.2);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 18px;
}
.hero-headline em {
  font-family: var(--font-sans); font-style: italic;
  font-weight: 400; color: var(--teal); letter-spacing: -0.01em;
}
.hero-sub { font-size: 16px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 32px; max-width: 460px; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-muted); }
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.founder-hint { color: var(--teal-dark); font-weight: 500; }

/* ---- Dual Mockup ---- */
.hero-visual {
  position: relative; height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.hero-mockup {
  position: absolute; width: 380px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.hero-mockup-light {
  right: 0; top: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-elevated);
  z-index: 2;
  animation: floatLight 6s ease-in-out infinite;
}
.hero-mockup-dark {
  right: 64px; top: 52px;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  z-index: 1;
  animation: floatDark 6s 0.9s ease-in-out infinite;
}
@keyframes floatLight {
  0%, 100% { transform: translateY(0px) rotate(0.4deg); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}
@keyframes floatDark {
  0%, 100% { transform: translateY(0px) rotate(-0.6deg); }
  50% { transform: translateY(-6px) rotate(-0.6deg); }
}

.mockup-bar {
  height: 30px; display: flex; align-items: center;
  gap: 6px; padding: 0 12px;
}
.mockup-bar-light { background: var(--bg-base); border-bottom: 1px solid var(--border-subtle); }
.mockup-bar-dark { background: var(--dark-elevated); border-bottom: 1px solid var(--dark-border); }
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #FCA5A5; }
.mockup-bar span:nth-child(2) { background: #FCD34D; }
.mockup-bar span:nth-child(3) { background: #86EFAC; }

.mockup-content { display: flex; height: 200px; }

.mockup-sidebar { width: 48px; padding: 12px 6px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mockup-sidebar-light { background: var(--bg-base); border-right: 1px solid var(--border-subtle); }
.mockup-sidebar-dark { background: var(--dark-elevated); border-right: 1px solid var(--dark-border); }
.mockup-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
.mockup-nav-items { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.mockup-nav-item { height: 24px; border-radius: 5px; }
.mockup-nav-item-light { background: var(--border-subtle); }
.mockup-nav-item-light.active { background: var(--bg-active); }
.mockup-nav-item-dark { background: var(--dark-hover); }
.mockup-nav-item-dark.active { background: var(--dark-active); }

.mockup-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.mockup-stats { display: flex; gap: 7px; }
.mockup-stat { flex: 1; border-radius: 7px; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.mockup-stat-light { background: var(--bg-base); border: 1px solid var(--border-subtle); }
.mockup-stat-dark { background: var(--dark-card); border: 1px solid var(--dark-border); }
.mockup-stat-val { height: 13px; border-radius: 3px; width: 55%; }
.mockup-stat-val-light { background: var(--border-strong); }
.mockup-stat-val-light.accent { background: var(--teal-light); }
.mockup-stat-val-dark { background: var(--dark-hover); }
.mockup-stat-val-dark.accent { background: rgba(13,148,136,.35); }
.mockup-stat-label { height: 8px; border-radius: 3px; width: 75%; }
.mockup-stat-label-light { background: var(--border-subtle); }
.mockup-stat-label-dark { background: var(--dark-hover); opacity: 0.5; }

.mockup-rows { display: flex; flex-direction: column; gap: 7px; }
.mockup-row { display: flex; align-items: center; gap: 6px; }
.mockup-row-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mockup-row-dot-light { background: var(--border-strong); }
.mockup-row-dot-light.accent { background: var(--teal); }
.mockup-row-dot-dark { background: var(--dark-hover); }
.mockup-row-dot-dark.accent { background: var(--teal); }
.mockup-row-line { height: 8px; border-radius: 3px; flex: 1; }
.mockup-row-line-light { background: var(--border-subtle); }
.mockup-row-line-dark { background: var(--dark-hover); }
.mockup-row-line.med { flex: 0.6; }
.mockup-row-line.short { flex: 0.3; }
.mockup-row-line.shorter { flex: 0.2; }



/* ======================================
   PROOF BAR
====================================== */
.proof-bar { padding: 18px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: var(--bg-base); }
.proof-items { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-secondary); }
.proof-item svg { color: var(--teal); flex-shrink: 0; }
.proof-sep { color: var(--border-strong); font-size: 16px; }

/* ======================================
   PROBLEM / SOLUTION
====================================== */
.problem-solution { padding: 96px 0; }
.ps-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; margin-top: 48px; }
.ps-col { border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 28px; }
.ps-problem { border-color: #FCA5A5; background: #FFF5F5; }
.ps-solution { border-color: rgba(13,148,136,.25); background: var(--bg-active); }
.ps-col-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-weight: 600; font-size: 14px; }
.ps-col-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.problem-icon { background: #FEE2E2; color: #EF4444; }
.solution-icon { background: var(--teal-light); color: var(--teal); }
.ps-list { display: flex; flex-direction: column; gap: 12px; }
.ps-list li { font-size: 14px; line-height: 1.5; color: var(--text-secondary); padding-left: 18px; position: relative; }
.ps-problem .ps-list li::before { content: '×'; position: absolute; left: 0; color: #EF4444; font-weight: 600; }
.solution-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.ps-arrow { display: flex; align-items: center; justify-content: center; }

/* ======================================
   FEATURES
====================================== */
.features { padding: 96px 0; background: var(--bg-base); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.feature-card {
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); border-color: rgba(13,148,136,.2); }
.feature-card-highlight { border-color: rgba(13,148,136,.4); background: linear-gradient(135deg, var(--bg-active) 0%, var(--bg-elevated) 100%); }
.feature-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--bg-active); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--teal); }
.feature-card h3 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.feature-card p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }
.feature-card p strong { color: var(--teal); font-weight: 600; }
.feature-badge { position: absolute; top: 14px; right: 14px; background: var(--teal); color: #fff; font-size: 10px; font-weight: 600; padding: 2px 9px; border-radius: var(--radius-pill); letter-spacing: 0.04em; }

/* ======================================
   HOW IT WORKS
====================================== */
.how-it-works { padding: 96px 0; }
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; }
.step { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.step-number { font-family: var(--font-sans); font-size: 2.8rem; font-weight: 700; color: var(--teal-light); line-height: 1; border-bottom: 2px solid var(--teal); padding-bottom: 14px; width: fit-content; }
.step-content h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-connector { width: 56px; height: 1px; background: linear-gradient(to right, var(--teal), var(--teal-light)); margin-top: 28px; flex-shrink: 0; }

/* ======================================
   PRICING
====================================== */
.pricing { padding: 96px 0; background: var(--bg-base); }
.pricing-toggle { display: flex; align-items: center; gap: 3px; background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: var(--radius); padding: 3px; width: fit-content; margin: 0 auto 48px; }
.toggle-btn { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--text-muted); padding: 7px 16px; border-radius: var(--radius-sm); transition: all var(--transition); display: flex; align-items: center; gap: 8px; }
.toggle-btn.active { background: var(--teal); color: #fff; }
.save-badge { background: #FEF3C7; color: #92400E; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: var(--radius-pill); }
.pricing-cards { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; max-width: 860px; margin: 0 auto; }
.pricing-card { background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 28px; position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.pricing-card-founder { border-color: var(--teal); background: linear-gradient(160deg, var(--bg-active) 0%, var(--bg-elevated) 60%); overflow: hidden; }
.founder-ribbon { position: absolute; top: 18px; right: -2px; background: var(--teal); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px 4px 10px; border-radius: 4px 0 0 4px; }
.pricing-card-header { margin-bottom: 20px; }
.pricing-card-header h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.pricing-card-header p { font-size: 13px; color: var(--text-muted); }
.pricing-card-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 18px; }
.price-amount { font-family: var(--font-sans); font-size: 2.8rem; font-weight: 400; color: var(--text-primary); line-height: 1; }
.price-currency { font-size: 18px; font-weight: 500; color: var(--text-secondary); margin-left: 3px; }
.price-period { font-size: 14px; color: var(--text-muted); margin-left: 3px; }
.pricing-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; margin-bottom: 18px; }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-secondary); }
.pricing-features li svg { flex-shrink: 0; }
.pricing-features li strong { color: var(--text-primary); font-weight: 600; }
.founder-counter { margin: 18px 0; }
.founder-counter-bar { height: 5px; background: var(--border-subtle); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 5px; }
.founder-counter-fill { height: 100%; background: linear-gradient(to right, var(--teal-light), var(--teal)); border-radius: var(--radius-pill); width: 0%; transition: width 1.5s ease; }
.founder-counter-text { font-size: 12px; color: var(--text-muted); }
.founder-counter-text strong { color: var(--teal); font-weight: 600; }

/* ======================================
   FAQ
====================================== */
.faq { padding: 96px 0; }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 15px; font-weight: 500; color: var(--text-primary); text-align: left; transition: color var(--transition); }
.faq-question:hover { color: var(--teal); }
.faq-question[aria-expanded="true"] { color: var(--teal); }
.faq-icon { flex-shrink: 0; transition: transform 0.25s ease; color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--teal); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

/* ======================================
   CTA BOTTOM
====================================== */
.cta-bottom { padding: 96px 0; background: linear-gradient(135deg, #0A7569 0%, #0D9488 50%, #14B8A6 100%); text-align: center; }
.cta-bottom-inner { max-width: 560px; margin: 0 auto; }
.cta-bottom h2 { font-family: var(--font-sans); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.025em; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.cta-bottom h2 em { font-family: var(--font-sans); font-style: italic; font-weight: 400; color: var(--teal-light); }
.cta-bottom p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-bottom-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-bottom .btn-primary { background: #fff; color: var(--teal-dark); font-size: 15px; padding: 13px 32px; }
.cta-bottom .btn-primary:hover { background: var(--teal-light); box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.cta-bottom .hero-trust { color: rgba(255,255,255,.6); }

/* ======================================
   FOOTER
====================================== */
.footer { background: var(--dark-bg); color: #fff; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-lang { display: flex; gap: 14px; }
.footer-lang a { font-size: 12px; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-lang a:hover, .footer-lang a.active { color: rgba(255,255,255,.7); }

/* ======================================
   COOKIE BANNER
====================================== */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 200; background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 500px; width: calc(100% - 48px); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; gap: 14px; padding: 14px 18px; flex-wrap: wrap; }
.cookie-banner-inner p { font-size: 13px; color: var(--text-secondary); flex: 1; min-width: 200px; }
.cookie-banner-inner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* ======================================
   ANIMATIONS
====================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; height: 260px; }
  .hero-mockup { width: 270px; }
  .hero-mockup-light { right: 20px; top: 0; }
  .hero-mockup-dark { right: 65px; top: 35px; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { transform: rotate(90deg); justify-content: flex-start; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 28px; }
  .step-connector { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--teal), var(--teal-light)); margin: 0 0 0 24px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .hero { padding: 96px 0 56px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-items { flex-direction: column; gap: 10px; }
  .proof-sep { display: none; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

/* Hero watermark — subtle brand accent, bottom-right of hero */
.hero-watermark {
  position: absolute;
  bottom: 24px;
  right: 8%;
  pointer-events: none;
  z-index: 0;
  width: 220px;
  opacity: 0.06;
  user-select: none;
}
.hero-watermark img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .hero-watermark { width: 140px; right: 16px; bottom: 16px; }
}
