/* ═══════════════════════════════════════════
   EASYPRES LANDING PAGE — STYLES
   ═══════════════════════════════════════════ */

/* ── Self-hosted Inter (variable font) ────── */
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0f2a4a;
  --primary-light: #1a6bb5;
  --primary-dark: #0a1628;
  --accent: #00c6a2;
  --accent-dark: #00a88a;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0a1628;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --transition: 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Visually hidden (screen readers) ────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Focus visible global ─────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip link (accessibility) ───────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }


.btn-primary-nav {
  background: var(--primary-light);
  color: white;
  padding: 9px 18px;
  font-size: 0.875rem;
}
.btn-primary-nav:hover { background: var(--primary); }

.btn-hero-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,198,162,.35); }

.btn-hero-ghost {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.2); }

.btn-plan-primary {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 8px;
}
.btn-plan-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-plan-ghost {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
}
.btn-plan-ghost:hover { background: var(--primary); color: white; }

/* ── Section ──────────────────────────────── */
.section { padding: 96px 0; }
.section-light { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(15,76,129,.1) 0%, rgba(0,198,162,.1) 100%);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Nav backdrop (mobile overlay) ──────── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(0,0,0,.45);
  z-index: 999;
  cursor: pointer;
}
.nav-backdrop.open { display: block; }

/* ── Navbar ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.logo img { border-radius: 50%; flex-shrink: 0; display: block; }
.logo-icon { font-size: 1.4rem; }
.logo .logo-accent { color: var(--primary); }
.logo-white { color: white; }
.logo-white .logo-accent { color: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a6bb5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 30%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { color: white; }

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.stat span { font-size: 0.8rem; color: rgba(255,255,255,.8); }

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* Hero image */
.hero-visual { position: relative; }

.hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.25));
  animation: heroFloat 4s ease-in-out infinite;
}

.float-badge {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.badge-1 { bottom: -16px; left: -20px; }
.badge-2 { top: -16px; right: -20px; }

/* ── Benefits ─────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }


/* ── Modules ──────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: all var(--transition);
}
.module-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.module-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(15,76,129,.04) 0%, rgba(0,198,162,.04) 100%);
}

.module-icon { font-size: 1.8rem; flex-shrink: 0; }

.module-content h3 { margin-bottom: 8px; }
.module-content p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; }

/* ── App Section ──────────────────────────── */
.app-section { padding: 96px 0; }

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* App phone image */
.app-visual picture { display: block; line-height: 0; }
.app-phone-img {
  width: 260px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 8px #1e293b, 0 0 0 10px rgba(0,0,0,.15);
}

.app-text .section-tag { text-align: left; }
.app-text h2 { margin-bottom: 14px; }
.app-text > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.app-features li { font-size: 0.9rem; color: var(--text); }

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
  text-decoration: none;
}
.store-badge:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.store-icon { width: 22px; height: 22px; flex-shrink: 0; }

.store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-sub { font-size: 0.7rem; opacity: .85; font-weight: 400; }
.store-name { font-size: 0.9rem; font-weight: 700; }

/* ── Pricing ──────────────────────────────── */
.pricing-section { background: var(--bg-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(15,76,129,.1), var(--shadow-md);
}

.pricing-card.custom {
  background: linear-gradient(135deg, rgba(15,76,129,.04) 0%, rgba(0,198,162,.04) 100%);
  border-style: dashed;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-name { font-size: 1rem; font-weight: 700; color: var(--text); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.amount { font-size: 2.2rem; font-weight: 800; color: var(--text); line-height: 1; }
.period { font-size: 0.8rem; color: var(--text-muted); margin-left: 2px; }
.plus { font-size: 1.4rem; }

.plan-limits { display: flex; gap: 6px; flex-wrap: wrap; }
.limit-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  background: rgba(15,76,129,.08);
  color: var(--primary);
  border-radius: 100px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.plan-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.plan-features li::before { content: ''; }

.plan-features li.yes { color: var(--text); }
.plan-features li.yes::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: #10b981;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.plan-features li.no {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.7;
}
.plan-features li.no::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: #e2e8f0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

.custom-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.pricing-note {
  background: rgba(15,76,129,.06);
  border: 1px solid rgba(15,76,129,.15);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
}
.pricing-note p { font-size: 0.875rem; color: #475569; }

/* ── FAQ ──────────────────────────────────── */
.faq-container { max-width: 720px; }
.faq-container .section-header { max-width: 100%; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
/* height en estado abierto la pone JS (scrollHeight real) */

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────── */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.contact-card.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: white;
}
.contact-card.highlight h3 { color: white; }
.contact-card.highlight a { color: rgba(255,255,255,.9); font-weight: 600; }
.contact-card.highlight a:hover { color: white; }

.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.contact-card a, .contact-card p {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--primary); }

/* ── Footer ───────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 14px; font-size: 1.2rem; }
.footer-brand > p { font-size: 0.875rem; line-height: 1.65; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--accent); color: white; }
.social-links svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: white; margin-bottom: 6px; font-size: 0.78rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.6); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--accent); }

/* ── Animations ───────────────────────────── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
  [data-reveal] { transition: none; }
  .faq-answer { transition: none; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1001;
    background: white;
    flex-direction: column;
    padding: 20px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 10px 12px; width: 100%; }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 4px; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-img { max-width: 420px; margin: 0 auto; }
  .badge-1, .badge-2 { display: none; }

  .modules-grid { grid-template-columns: 1fr; }

  .app-inner { grid-template-columns: 1fr; }
  .app-visual { order: -1; }

  .pricing-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { display: flex; flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Cookie consent banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  z-index: 9999;
  padding: 16px 0;
  animation: slideUpCookie .35s ease;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: .875rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.cookie-text strong { color: #f1f5f9; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-text a:hover { color: #fff; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-primary {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.btn-cookie-primary:hover { background: #00a98a; }

.btn-cookie-secondary {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-cookie-secondary:hover { border-color: #94a3b8; color: #f1f5f9; }

@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-primary, .btn-cookie-secondary { flex: 1; text-align: center; }
}
