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

:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --blue:       #2563EB;
  --blue-hover: #1E40AF;
  --blue-light: #EFF6FF;
  --gold:       #F59E0B;
  --gold-hover: #D97706;
  --white:      #FFFFFF;
  --gray-cold:  #F1F5F9;
  --text-dark:  #0F172A;
  --text-body:  #475569;
  --text-muted: #94A3B8;
  --border:     #E2E8F0;
  --wa:         #25D366;
  --wa-dark:    #1DAE55;
  --r-sm: 8px; --r-md: 12px; --r-lg: 20px;
  --sh-sm: 0 1px 3px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.10);
  --sh-lg: 0 10px 40px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 68px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; border-radius: 4px; }
.nav-cta {
  background: var(--gold); color: var(--navy); padding: 10px 20px; border-radius: var(--r-sm);
  text-decoration: none; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 7px; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── HERO ── */
.hero {
  background: #060f1e; min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}

/* Canvas particles */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Animated gradient orbs */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero-orb-1 {
  width: 600px; height: 600px; top: -15%; right: -8%;
  background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 70%);
  animation: orb1 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: 5%; left: -5%;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%);
  animation: orb2 12s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 300px; height: 300px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%);
  animation: orb3 15s ease-in-out infinite alternate;
}

@keyframes orb1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4%, 6%) scale(1.15); }
}
@keyframes orb2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, -8%) scale(1.2); }
}
@keyframes orb3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8%, 10%) scale(.85); }
}

/* Subtle dot-grid overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Bottom fade to white */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; color: var(--white); margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }
.hero-sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  background: var(--blue); color: var(--white); padding: 14px 24px; border-radius: var(--r-sm);
  text-decoration: none; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); }
.btn-wa {
  background: var(--wa); color: var(--white); padding: 14px 24px; border-radius: var(--r-sm);
  text-decoration: none; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s;
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── MÉTRICAS HERO ── */
.metrics-panel { display: flex; flex-direction: column; gap: 16px; }
.metric-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md); padding: 20px 24px;
  display: flex; align-items: center; gap: 18px;
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.metric-card:hover { background: rgba(255,255,255,.08); border-color: rgba(245,158,11,.3); }
.metric-icon { font-size: 28px; flex-shrink: 0; }
.metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 4px;
}
.metric-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.4; }
.metrics-footnote { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.4; margin-top: 2px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); padding: 18px 32px; }
.trust-strip-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.trust-item { font-size: 13px; color: rgba(255,255,255,.55); }
.trust-item strong { color: var(--gold); font-weight: 700; }
.trust-divider { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; max-width: 760px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 4px 24px; }
.faq-question { cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--text-dark); font-size: 16px; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 0 20px; color: var(--text-body); font-size: 14.5px; line-height: 1.65; }
.faq-answer a { color: var(--blue); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; color: var(--text-dark); margin-bottom: 12px;
}
.section-sub { font-size: 17px; color: var(--text-body); line-height: 1.6; max-width: 580px; }

/* ── PAIN ── */
.pain { background: var(--gray-cold); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.pain-card {
  background: var(--white); border-radius: var(--r-md); padding: 28px;
  border-left: 4px solid var(--blue); box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-title { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--text-dark); }
.pain-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 28px;
  position: relative; overflow: hidden; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); opacity: 0; transition: opacity .2s; }
.svc-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); transform: translateY(-2px); }
.svc-card:hover::before { opacity: 1; }
.svc-card.featured { background: var(--navy); border-color: var(--navy); }
.svc-card.featured::before { background: var(--gold); opacity: 1; }
.svc-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.svc-card.featured .svc-icon { background: rgba(255,255,255,.1); }
.svc-tag { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.svc-card.featured .svc-tag { color: rgba(255,255,255,.35); }
.svc-title { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--text-dark); }
.svc-card.featured .svc-title { color: var(--white); }
.svc-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,.55); }
.svc-link { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.svc-card.featured .svc-link { color: var(--gold); }
.svc-link:hover { gap: 10px; }

/* ── HOW ── */
.how { background: var(--navy-mid); }
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,.6); }
.how .section-label { color: var(--gold); }
.how .section-label::before { background: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: calc(16.66% + 27px); right: calc(16.66% + 27px); height: 2px; background: linear-gradient(90deg, var(--blue), var(--gold)); }
.step { padding: 0 24px; text-align: center; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: var(--white); font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; border: 3px solid var(--navy-mid); box-shadow: 0 0 0 2px var(--blue); }
.step:last-child .step-num { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); color: var(--navy); }
.step-title { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--white); }
.step-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
.steps-cta { text-align: center; margin-top: 40px; }

/* ── ABOUT ── */
.about { background: var(--navy); padding: 80px 32px; }
.about-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-photo { width: 100%; height: 460px; object-fit: cover; object-position: center top; border-radius: var(--r-lg); filter: grayscale(100%) contrast(1.08) brightness(.92); display: block; border: 2px solid rgba(255,255,255,.08); }
.about-photo-placeholder { width: 100%; height: 460px; background: rgba(255,255,255,.04); border-radius: var(--r-lg); border: 2px dashed rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.25); text-align: center; padding: 20px; }
.about-img-accent { position: absolute; bottom: -12px; right: -12px; width: 80px; height: 80px; border-radius: 50%; background: var(--gold); opacity: .12; pointer-events: none; }
.about-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.about-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }
.about-quote { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(18px, 2vw, 24px); font-weight: 600; font-style: italic; line-height: 1.4; color: var(--white); margin-bottom: 32px; position: relative; padding-left: 28px; }
.about-quote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 60px; line-height: 1; color: var(--gold); opacity: .5; font-family: Georgia, serif; font-style: normal; }
.about-quote::after { content: '\201D'; color: var(--gold); opacity: .5; }
.about-quote .quote-author { display: block; margin-top: 16px; font-size: 13px; font-style: normal; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.about-metrics { display: flex; gap: 32px; margin-bottom: 28px; }
.ab-num { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 30px; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 4px; }
.ab-lbl { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.about-bio { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }
.about-bio strong { color: rgba(255,255,255,.85); }

/* ── CTA FINAL ── */
.cta-section { background: var(--blue); padding: 80px 32px; }
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 12px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--wa); color: var(--white); padding: 16px 28px; border-radius: var(--r-sm); text-decoration: none; font-size: 16px; font-weight: 700; transition: transform .15s, box-shadow .2s; }
.cta-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.cal-btn { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: 15px 24px; border-radius: var(--r-sm); text-decoration: none; font-size: 15px; font-weight: 600; transition: background .2s; }
.cal-btn:hover { background: rgba(255,255,255,.2); }
.cta-note { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 52px 32px 28px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 4px; line-height: 1.6; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.9; }
.footer-legal strong { color: rgba(255,255,255,.55); }
.footer-bottom { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-policy { display: flex; gap: 20px; }
.footer-policy a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-policy a:hover { color: rgba(255,255,255,.65); }

/* ── BOTONES — Shimmer + Ripple ── */
.btn-primary, .btn-wa, .nav-cta, .cta-wa-btn, .cal-btn {
  position: relative; overflow: hidden;
}
.btn-primary::after, .btn-wa::after, .nav-cta::after, .cta-wa-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  transition: left 0s;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-wa:hover::after, .nav-cta:hover::after, .cta-wa-btn:hover::after {
  left: 160%;
  transition: left .55s ease;
}

/* Nav CTA glow pulse */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.45); }
  50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
.nav-cta { animation: cta-glow 3s ease-in-out infinite; }
.nav-cta:hover { animation: none; }

/* Ripple keyframe */
@keyframes ripple-out {
  from { transform: scale(1); opacity: .5; }
  to   { transform: scale(50); opacity: 0; }
}
.ripple-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.45); pointer-events: none;
  transform: scale(1); animation: ripple-out .6s ease-out forwards;
}

/* ── WA FLOAT ── */
@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.65), 0 4px 20px rgba(37,211,102,.4); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0),  0 4px 20px rgba(37,211,102,.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0),     0 4px 20px rgba(37,211,102,.4); }
}
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--wa); color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; overflow: visible;
  animation: wa-ring 2.8s ease-out infinite;
  transition: transform .2s;
}
.wa-float:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

/* Tooltip "Escríbenos" */
.wa-float::before {
  content: 'Escríbenos';
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #0F1E35; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  padding: 7px 13px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.wa-float::after {
  content: '';
  position: absolute; right: calc(100% + 6px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  border: 6px solid transparent; border-left-color: #0F1E35;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.wa-float:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa-float:hover::after  { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: #0F1E35; border-top: 1px solid rgba(255,255,255,.1); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; transform: translateY(0); transition: transform .4s ease; }
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--blue); color: var(--white); border: none; cursor: pointer; padding: 9px 20px; border-radius: 7px; font-size: 13px; font-weight: 700; font-family: 'Inter', sans-serif; transition: background .2s; }
.cookie-accept:hover { background: var(--blue-hover); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.18); cursor: pointer; padding: 9px 16px; border-radius: 7px; font-size: 13px; font-family: 'Inter', sans-serif; transition: border-color .2s, color .2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.75); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .metrics-panel { display: grid; grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
  .step {
    text-align: left; display: flex; gap: 20px; align-items: flex-start;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md); padding: 22px 20px;
  }
  .step-num { flex-shrink: 0; margin: 0; width: 46px; height: 46px; font-size: 17px; }
  .step-content { flex: 1; }
  .step-title { font-size: 15px; margin-bottom: 6px; }
  .step-desc { font-size: 13px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo, .about-photo-placeholder { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .hero { padding: 100px 16px 60px; }
  .section { padding: 60px 16px; }
  .about { padding: 60px 16px; }
  .cta-section { padding: 60px 16px; }
  .footer { padding: 40px 16px 24px; }
  .metrics-panel { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-metrics { gap: 20px; flex-wrap: wrap; }
}
