/* ============================================================
   USERX.ID — styles.css
   Paleta del logotipo:
   Magenta  #E91E8C | Naranja  #F5A623
   Púrpura  #4A1A96 | Cian     #4DD9F0
   Navy txt #2D2E8F | Dark bg  #0A0820
   ============================================================ */

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

:root {
  --c-magenta:  #E91E8C;
  --c-orange:   #F5A623;
  --c-purple:   #4A1A96;
  --c-cyan:     #4DD9F0;
  --c-navy:     #2D2E8F;
  --c-violet:   #9B5DEA;
  --c-dark:     #0A0820;
  --c-dark2:    #1A0840;
  --c-dark3:    #0D1A3A;
  --c-heading:  #1A1040;
  --c-body:     #5A527A;
  --c-subtle:   #6B6488;
  --c-light-bg: #F8F7FF;
  --grad-main:  linear-gradient(135deg, #E91E8C 0%, #F5A623 100%);
  --grad-dark:  linear-gradient(160deg, #0A0820 0%, #1A0840 40%, #0D1A3A 100%);
  --grad-cta:   linear-gradient(135deg, #1A0840 0%, #0D1A3A 50%, #0A1028 100%);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --shadow-card:  0 2px 12px rgba(0,0,0,.06);
  --shadow-hover: 0 12px 32px rgba(0,0,0,.1);
  --shadow-btn:   0 8px 24px rgba(233,30,140,.32);
  --shadow-btn-h: 0 12px 32px rgba(233,30,140,.45);
  --max-w: 1280px;
  --py: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.55rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-heading);
  line-height: 1.2;
  letter-spacing: -.022em;
}
.section-title--white { color: #fff; }
.section-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--c-body);
  line-height: 1.78;
  max-width: 600px;
}
.section-desc--white { color: rgba(255,255,255,.65); }
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--py) 24px; }
.section--white { background: #fff; }
.section--light { background: var(--c-light-bg); }
.section--dark  { background: var(--c-dark); position: relative; overflow: hidden; }
.center { text-align: center; }

.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2b  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.auto-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 24px; }
.auto-grid--sm{ display: grid; grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: 16px; }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-header .section-desc { margin: 1rem auto 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 600; transition: all .25s ease; line-height: 1;
}
.btn-primary { background: var(--grad-main); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-h); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }
.btn-outline { background: transparent; color: var(--c-magenta); border: 2px solid var(--c-magenta); }
.btn-outline:hover { background: var(--c-magenta); color: #fff; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: 14px; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 1px solid rgba(0,0,0,.07);
  transition: all .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.75; }
.card-tag { font-size: .7rem; font-weight: 600; padding: .25rem .625rem; border-radius: 20px; }

.card-accent::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 16px 16px 0 0;
  background: var(--accent-color, #E91E8C);
}
.card-accent { position: relative; overflow: hidden; }

.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--c-heading); margin-bottom: .55rem; line-height: 1.3; }
.card p  { font-size: .875rem; color: var(--c-subtle); line-height: 1.7; }

/* Impact cards */
.impact-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.impact-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.impact-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.75; }

/* Benefit cards */
.benefit-card {
  padding: 1.5rem 1.25rem; border-radius: 14px; background: #fff;
  border: 1px solid rgba(0,0,0,.06); transition: all .25s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(155,93,234,.12); border-color: rgba(155,93,234,.3); }
.benefit-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg,rgba(155,93,234,.15),rgba(77,217,240,.15));
  display: flex; align-items: center; justify-content: center; margin-bottom: .75rem;
}
.benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--c-violet); stroke-width: 1.75; }
.benefit-card p { font-size: .8125rem; font-weight: 600; color: var(--c-heading); line-height: 1.4; }

/* ── Header ──────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96); border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .3s ease;
}
#header.scrolled { border-bottom-color: rgba(0,0,0,.08); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: .5rem; }
.nav-link { font-size: .875rem; font-weight: 500; color: var(--c-heading); padding: .5rem .875rem; border-radius: var(--radius-sm); transition: all .2s; }
.nav-link:hover { color: var(--c-magenta); background: #FDF0F8; }
.header-cta {
  margin-left: .5rem; padding: .625rem 1.375rem; border-radius: 10px;
  font-size: .875rem; font-weight: 600; color: #fff;
  background: var(--grad-main); box-shadow: 0 4px 14px rgba(233,30,140,.3); transition: all .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,.4); }
.hamburger { display: none; padding: .5rem; color: var(--c-heading); }
.hamburger svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(12px); padding: 1rem 24px 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .875rem 0; font-size: 1rem; font-weight: 500; color: var(--c-heading); border-bottom: 1px solid rgba(0,0,0,.06); }
.mobile-menu .btn-primary { display: flex; justify-content: center; margin-top: 1.25rem; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; background: var(--grad-dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { top:-10%;right:-5%;width:600px;height:600px;background:radial-gradient(circle,rgba(233,30,140,.15) 0%,transparent 70%); }
.hero-orb-2 { bottom:-15%;left:-10%;width:700px;height:700px;background:radial-gradient(circle,rgba(74,26,150,.2) 0%,transparent 70%); }
.hero-orb-3 { top:30%;right:15%;width:350px;height:350px;background:radial-gradient(circle,rgba(77,217,240,.1) 0%,transparent 70%); }
.hero-content { max-width: var(--max-w); margin: 0 auto; padding: 5rem 24px; width: 100%; position: relative; z-index: 2; }
.hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem .875rem; border-radius: 20px;
  border: 1px solid rgba(233,30,140,.4); background: rgba(233,30,140,.08); margin-bottom: 2rem;
}
.hero-badge-dot { width:6px;height:6px;border-radius:50%;background:var(--c-magenta);box-shadow:0 0 6px var(--c-magenta); }
.hero-badge span { font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 500; }
.hero-title { font-size:clamp(2.25rem,5vw,4rem);font-weight:800;line-height:1.12;color:#fff;letter-spacing:-.025em;margin-bottom:1.5rem; }
.hero-subtitle { font-size:clamp(1rem,2vw,1.25rem);color:rgba(255,255,255,.7);line-height:1.7;margin-bottom:1rem; }
.hero-sub2 { font-size:clamp(.875rem,1.5vw,1.05rem);color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:3rem; }
.hero-ctas { display:flex;gap:1rem;flex-wrap:wrap; }
.hero-stats { display:flex;gap:2.5rem;margin-top:4rem;flex-wrap:wrap; }
.stat-value { font-size:1.75rem;font-weight:700;color:#fff;line-height:1; }
.stat-label { font-size:.8rem;color:rgba(255,255,255,.45);margin-top:.25rem; }

/* Floating cards */
.hero-floats { position:absolute;inset:0;pointer-events:none; }
.float-card {
  position:absolute; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:12px; padding:.875rem 1rem; backdrop-filter:blur(12px); min-width:145px;
  animation:floatY 4s ease-in-out infinite;
}
.float-card-1{top:14%;left:64%;animation-delay:0s;}
.float-card-2{top:46%;left:72%;animation-delay:.4s;}
.float-card-3{top:66%;left:61%;animation-delay:.8s;}
.float-label{display:flex;align-items:center;gap:.5rem;margin-bottom:.375rem;}
.float-dot{width:7px;height:7px;border-radius:50%;}
.float-label span{font-size:.7rem;font-weight:600;}
.float-metric{font-size:1.25rem;font-weight:700;color:#fff;}
.float-meta{font-size:.65rem;color:rgba(255,255,255,.4);margin-top:2px;}
.float-bars{display:flex;align-items:flex-end;gap:3px;margin-top:.375rem;}
.float-bar-col{border-radius:2px;}
@keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

.hero-scroll {
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.25rem;
  cursor:pointer;opacity:.45;transition:opacity .2s; background:none;border:none;
}
.hero-scroll:hover{opacity:.75;}
.hero-scroll span{font-size:.7rem;color:#fff;letter-spacing:.15em;}
.hero-scroll svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2;}

/* ── Method ──────────────────────────────────────────────────── */
.method-bg { position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(74,26,150,.25) 0%,transparent 60%);pointer-events:none; }
.method-step { display:flex;gap:2rem;align-items:flex-start;padding:2rem 0;border-bottom:1px solid rgba(255,255,255,.06); }
.method-step:last-child{border-bottom:none;}
.step-indicator{display:flex;flex-direction:column;align-items:center;min-width:52px;}
.step-num{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:800;flex-shrink:0;border:2px solid;}
.step-line{width:1px;flex:1;min-height:20px;margin-top:.5rem;}
.step-body{padding-top:.75rem;flex:1;}
.step-body h3{font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:.625rem;}
.step-body p{font-size:.9375rem;color:rgba(255,255,255,.55);line-height:1.7;}
.method-quote {
  margin-top:4rem;padding:2.5rem 3rem;border-radius:var(--radius-xl);
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);text-align:center;
}
.method-quote blockquote{font-size:clamp(1.05rem,2.25vw,1.5rem);font-weight:600;color:#fff;line-height:1.5;max-width:720px;margin:0 auto;}

/* ── AI badge ────────────────────────────────────────────────── */
.ai-badge {
  display:inline-flex;align-items:center;gap:.625rem;padding:.625rem 1.25rem;
  border-radius:10px;background:linear-gradient(135deg,rgba(155,93,234,.1),rgba(77,217,240,.1));
  border:1px solid rgba(155,93,234,.2);margin-top:2.5rem;
}
.ai-badge-dot{width:8px;height:8px;border-radius:50%;background:var(--c-violet);box-shadow:0 0 8px var(--c-violet);}
.ai-badge span{font-size:.8rem;color:var(--c-violet);font-weight:600;}

/* ── Brands ──────────────────────────────────────────────────── */
.brand-logo {
  display:flex;align-items:center;justify-content:center;height:80px;
  border-radius:12px;border:1px solid rgba(0,0,0,.07);background:#FAFAFA;
  transition:all .25s;padding:0 1rem;
}
.brand-logo:hover{background:var(--c-light-bg);border-color:rgba(233,30,140,.2);box-shadow:0 4px 14px rgba(0,0,0,.06);}
.brand-logo span{font-size:.9rem;font-weight:700;color:#9B96B8;text-align:center;}
.industry-tags{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;margin-top:3rem;}
.industry-tag{font-size:.75rem;font-weight:600;color:var(--c-body);background:#F3F1FA;padding:.375rem .875rem;border-radius:20px;border:1px solid rgba(0,0,0,.06);}

/* ── CTA section ─────────────────────────────────────────────── */
#cta{background:var(--grad-cta);position:relative;overflow:hidden;}
.cta-orb{position:absolute;border-radius:50%;pointer-events:none;}
.cta-orb-1{top:-20%;left:-5%;width:500px;height:500px;background:radial-gradient(circle,rgba(233,30,140,.15) 0%,transparent 70%);}
.cta-orb-2{bottom:-20%;right:-5%;width:500px;height:500px;background:radial-gradient(circle,rgba(77,217,240,.12) 0%,transparent 70%);}
.cta-phrases{display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-bottom:2.25rem;}
.cta-phrases span{font-size:clamp(.9375rem,2vw,1.25rem);font-weight:700;color:rgba(255,255,255,.9);}
#cta .section-title{font-size:clamp(1.875rem,5vw,3.625rem);font-weight:800;letter-spacing:-.03em;margin-bottom:1.75rem;}

/* ── Contact Form ────────────────────────────────────────────── */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;}
.form-field{display:flex;flex-direction:column;gap:.5rem;}
.form-field--full{grid-column:1/-1;}
.form-label{font-size:.8125rem;font-weight:600;color:var(--c-heading);}
.form-input,.form-select,.form-textarea {
  padding:.75rem 1rem;border-radius:10px;border:1.5px solid rgba(0,0,0,.1);
  font-size:.875rem;color:var(--c-heading);background:var(--c-light-bg);
  outline:none;transition:border-color .2s;font-family:inherit;width:100%;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--c-magenta);}
.form-input.error,.form-select.error,.form-textarea.error{border-color:var(--c-magenta)!important;}
.form-select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A527A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;padding-right:2.5rem;cursor:pointer;
}
.form-textarea{resize:vertical;line-height:1.6;min-height:130px;}
.form-error{font-size:.75rem;color:var(--c-magenta);margin-top:.25rem;display:none;}
.form-error.visible{display:block;}
.form-checkbox-row{display:flex;gap:.75rem;align-items:flex-start;margin-top:1.5rem;}
.form-checkbox-box{
  width:20px;height:20px;border-radius:5px;border:2px solid rgba(0,0,0,.2);
  background:transparent;cursor:pointer;flex-shrink:0;margin-top:2px;
  display:flex;align-items:center;justify-content:center;transition:all .2s;
}
.form-checkbox-box.checked{background:var(--c-magenta);border-color:var(--c-magenta);}
.form-checkbox-box.error-check{border-color:var(--c-magenta);}
.form-checkbox-box svg{display:none;width:12px;height:10px;}
.form-checkbox-box.checked svg{display:block;}
.form-checkbox-text{font-size:.8125rem;color:var(--c-body);line-height:1.5;}
.form-submit-wrap{display:flex;flex-direction:column;align-items:center;gap:.75rem;margin-top:2.25rem;}
.form-submit-wrap .btn-primary{width:100%;max-width:340px;justify-content:center;padding:.9375rem 2.25rem;font-size:1rem;font-weight:700;}
.form-microcopy{font-size:.8rem;color:#9B96B8;text-align:center;}
.form-success{display:none;text-align:center;padding:3.75rem 2.5rem;border-radius:var(--radius-xl);background:var(--c-light-bg);border:1px solid rgba(233,30,140,.15);}
.form-success.visible{display:block;}
.form-success svg{width:56px;height:56px;color:var(--c-magenta);margin:0 auto 1.25rem;}
.form-success h3{font-size:1.5rem;font-weight:700;color:var(--c-heading);margin-bottom:.75rem;}
.form-success p{font-size:1rem;color:var(--c-body);line-height:1.7;}

/* Alerts & spinner */
.alert{padding:.875rem 1.25rem;border-radius:10px;font-size:.875rem;margin-bottom:1rem;display:none;}
.alert.visible{display:block;}
.alert-error{background:#FDE8EF;border:1px solid rgba(233,30,140,.3);color:#B0165E;}
.alert-success{background:#E8F8EF;border:1px solid rgba(0,180,90,.3);color:#0A6632;}
.spinner{width:18px;height:18px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite;display:none;}
.spinner.visible{display:inline-block;}
@keyframes spin{to{transform:rotate(360deg);}}

/* ── Footer ──────────────────────────────────────────────────── */
#footer{background:var(--c-dark);padding:4rem 24px 2rem;border-top:1px solid rgba(255,255,255,.06);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:3.75rem;margin-bottom:3.5rem;}
.footer-logo{height:48px;width:auto;margin-bottom:1.25rem;}
.footer-desc{font-size:.875rem;color:rgba(255,255,255,.4);line-height:1.8;max-width:360px;}
.footer-socials{display:flex;gap:.75rem;margin-top:1.5rem;}
.social-link{width:38px;height:38px;border-radius:10px;border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.45);transition:all .2s;}
.social-link:hover{border-color:var(--c-magenta);color:var(--c-magenta);}
.social-link svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;}
.footer-col h4{font-size:.8rem;font-weight:700;color:#fff;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.25rem;}
.footer-link{display:block;font-size:.875rem;color:rgba(255,255,255,.4);margin-bottom:.75rem;transition:color .2s;}
.footer-link:hover{color:var(--c-magenta);}
.footer-email{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.4);margin-bottom:1rem;transition:color .2s;}
.footer-email:hover{color:var(--c-magenta);}
.footer-email svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;flex-shrink:0;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);padding-top:1.75rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem;}
.footer-copy{font-size:.8125rem;color:rgba(255,255,255,.3);}
.footer-tagline{font-size:.8125rem;color:rgba(255,255,255,.18);}

/* ── Reveal animation ────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease;}
.reveal.in-view{opacity:1;transform:none;}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1024px){
  :root{--py:80px;}
  .grid-2{grid-template-columns:1fr;gap:3rem;}
  .grid-2b{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem;}
}
@media(max-width:900px){
  .header-nav{display:none;}
  .hamburger{display:flex;align-items:center;justify-content:center;}
  .hero-floats{display:none;}
}
@media(max-width:768px){
  :root{--py:64px;}
  .grid-3{grid-template-columns:1fr;}
  .grid-2b{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr;gap:2rem;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
  .method-quote{padding:1.75rem 1.5rem;}
  .method-step{gap:1.25rem;}
  .impact-card{flex-direction:column;gap:.75rem;}
}
@media(max-width:640px){
  .form-grid{grid-template-columns:1fr;}
  .hero-ctas{flex-direction:column;}
  .hero-ctas .btn{width:100%;justify-content:center;}
  .cta-phrases{flex-direction:column;align-items:center;gap:.75rem;}
}
@media(max-width:480px){
  .hero-stats{gap:1.5rem;}
  .auto-grid{grid-template-columns:1fr;}
  .auto-grid--sm{grid-template-columns:1fr 1fr;}
  .grid-2b{grid-template-columns:1fr;}
}
