/* ============================================================
   QUANTUM PRECISION — Global Stylesheet
   Brand: Deep Navy (#0e1521) + Teal (#c4952a) + Orange (#3d8fc5)
   Fonts: Sora (display) + DM Sans (body)
   ============================================================ */

/* ── Google Fonts are loaded per page via <link> ── */

:root {
  --primary:          #0e1521;
  --primary-light:    #1a2d48;
  --secondary:        #c4952a;
  --secondary-light:  #dbb040;
  --accent:           #3d8fc5;
  --accent-soft:      #7ab8d8;

  --white:            #FFFFFF;
  --off-white:        #F7F9FB;
  --light-gray:       #E4EBF2;
  --mid-gray:         #94A3B8;
  --dark-gray:        #4A5568;
  --text:             #1A2537;

  --font-display:     'Sora', sans-serif;
  --font-body:        'DM Sans', sans-serif;

  --container:        1200px;
  --section-pad:      110px 0;
  --radius:           18px;
  --radius-sm:        10px;
  --shadow:           0 2px 12px rgba(14,21,33,.07), 0 8px 32px rgba(14,21,33,.06);
  --shadow-lg:        0 8px 24px rgba(14,21,33,.08), 0 24px 64px rgba(14,21,33,.12);
  --shadow-teal:      0 8px 32px rgba(196,149,42,.35);

  --gradient-teal:    linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-navy:    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-brand:   linear-gradient(135deg, var(--primary) 0%, #1a2d48 50%, var(--secondary) 100%);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; font-size:16px; }
body  { font-family:var(--font-body); font-size:1.125rem; line-height:1.7; color:var(--text); background:var(--white); overflow-x:hidden; }
img   { max-width:100%; display:block; }
a     { color:inherit; text-decoration:none; }
ul    { list-style:none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family:var(--font-display); font-weight:700; line-height:1.15; color:var(--primary); }
h1 { font-size:clamp(2.75rem, 5.5vw, 4.75rem); font-weight:800; letter-spacing:-2px; }
h2 { font-size:clamp(2rem, 4vw, 3.125rem); letter-spacing:-1.5px; margin-bottom:1rem; }
h3 { font-size:clamp(1.25rem, 2.5vw, 1.75rem); letter-spacing:-.5px; margin-bottom:.75rem; }
h4 { font-size:1.125rem; letter-spacing:-.25px; }
p  { color:var(--dark-gray); margin-bottom:1.25rem; }
p:last-child { margin-bottom:0; }

.lead { font-size:1.25rem; color:var(--dark-gray); max-width:680px; line-height:1.75; }
.section-label {
  font-family:var(--font-display); font-size:.8125rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--secondary);
  margin-bottom:.875rem; display:inline-flex; align-items:center; gap:.625rem;
}
.section-label::before {
  content:''; display:inline-block; width:20px; height:2px;
  background:var(--gradient-teal); border-radius:2px; flex-shrink:0;
}
.text-center  { text-align:center; }
.text-white   { color:var(--white) !important; }
.text-primary { color:var(--primary); }
.text-teal    { color:var(--secondary); }

/* ── Container ── */
.container { max-width:var(--container); margin:0 auto; padding:0 2.5rem; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:.625rem;
  padding:1rem 2.25rem; font-family:var(--font-display); font-size:.9375rem; font-weight:600;
  border-radius:50px; border:none; cursor:pointer; transition:all .3s cubic-bezier(.4,0,.2,1);
  text-decoration:none; white-space:nowrap; position:relative; overflow:hidden;
}
.btn-primary {
  background:var(--gradient-teal);
  color:var(--white);
  box-shadow:0 4px 20px rgba(196,149,42,.3);
}
.btn-primary::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity:0; transition:opacity .3s;
}
.btn-primary:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 36px rgba(196,149,42,.45), 0 0 0 4px rgba(196,149,42,.12);
}
.btn-primary:hover::after { opacity:1; }

.btn-outline {
  background:transparent; color:var(--primary);
  border:2px solid var(--primary);
}
.btn-outline:hover { background:var(--primary); color:var(--white); transform:translateY(-2px); }

.btn-outline-white {
  background:transparent; color:var(--white);
  border:2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.6); transform:translateY(-2px); }

.btn-white { background:var(--white); color:var(--primary); box-shadow:0 4px 20px rgba(0,0,0,.08); }
.btn-white:hover { background:var(--off-white); transform:translateY(-2px); box-shadow:0 8px 32px rgba(0,0,0,.12); }

.btn-accent { background:linear-gradient(135deg, var(--accent), #5ba5d8); color:var(--white); box-shadow:0 4px 20px rgba(61,143,197,.3); }
.btn-accent:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(61,143,197,.4); }

.btn-sm { padding:.625rem 1.5rem; font-size:.875rem; }
.btn-lg { padding:1.125rem 2.875rem; font-size:1rem; }

/* ── Navigation ── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1.375rem 0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(24px) saturate(160%);
  -webkit-backdrop-filter:blur(24px) saturate(160%);
  border-bottom:1px solid rgba(14,21,33,.06);
  transition:all .3s ease;
}
.nav.scrolled {
  padding:1rem 0;
  background:rgba(255,255,255,.97);
  box-shadow:0 4px 24px rgba(14,21,33,.08);
  border-bottom-color:rgba(196,149,42,.15);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:var(--container); margin:0 auto; padding:0 2.5rem;
}

/* Logo */
.logo { display:flex; align-items:center; gap:.75rem; text-decoration:none; }
.logo-img {
  width:40px; height:40px; object-fit:contain; flex-shrink:0;
  filter:drop-shadow(0 2px 6px rgba(14,21,33,.35));
}
.logo-name { font-family:var(--font-display); font-size:1.0625rem; font-weight:700; color:var(--primary); letter-spacing:-.25px; }
.logo-name span { color:var(--secondary); }

/* Footer wordmark */
.footer-wordmark {
  height:52px; width:auto; object-fit:contain; display:block;
  filter:brightness(1.05) drop-shadow(0 2px 8px rgba(196,149,42,.3));
}

/* Nav links */
.nav-links { display:flex; align-items:center; gap:2rem; }
.nav-links a {
  font-family:var(--font-display); font-size:.875rem; font-weight:600;
  color:var(--dark-gray); position:relative; padding:.25rem 0; letter-spacing:.01em;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0; height:2px;
  background:var(--gradient-teal); border-radius:2px; transition:width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--secondary); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

/* Mobile toggle */
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:.5rem; flex-direction:column; gap:5px; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--primary); border-radius:2px; transition:all .3s ease; }

/* Mobile menu */
.nav-mobile {
  display:none; position:fixed; top:73px; left:0; right:0;
  background:var(--white); padding:1.5rem 2.5rem 2rem;
  border-top:1px solid var(--light-gray); box-shadow:var(--shadow-lg); z-index:999;
}
.nav-mobile.open { display:block; }
.nav-mobile a {
  display:block; font-family:var(--font-display); font-size:1rem; font-weight:600;
  color:var(--primary); padding:.875rem 0; border-bottom:1px solid var(--light-gray);
}
.nav-mobile a:last-child { border-bottom:none; }
.nav-mobile .btn { margin-top:1rem; width:100%; justify-content:center; }

/* ── Page Hero (non-home) ── */
.page-hero {
  padding:10rem 0 5.5rem;
  background:
    url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24h48M24 0v48' stroke='%23c4952a' stroke-width='.4' stroke-opacity='.06'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 80% 15%, rgba(196,149,42,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(196,149,42,.1) 0%, transparent 45%),
    linear-gradient(155deg, var(--primary) 0%, var(--primary-light) 55%, #0e1521 100%);
  background-size: 48px 48px, 100% 100%, 100% 100%, 100% 100%;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-30%; right:-15%;
  width:60%; height:140%; pointer-events:none;
  background:radial-gradient(ellipse, rgba(196,149,42,.12) 0%, transparent 65%);
}
.page-hero-content { max-width:760px; position:relative; z-index:1; }
.page-hero h1 { color:var(--white); margin-bottom:1.25rem; }
.page-hero .lead { color:rgba(255,255,255,.72); margin-bottom:2rem; }
.page-hero .section-label { color:var(--secondary-light) !important; }
.page-hero .section-label::before { background:var(--secondary-light); }

/* ── Sections ── */
.section { padding:var(--section-pad); }
.section-dark { background:var(--primary); }
.section-dark h2, .section-dark h3, .section-dark h4 { color:var(--white); }
.section-dark p { color:rgba(255,255,255,.65); }
.section-dark .section-label { color:var(--secondary-light); }
.section-dark .section-label::before { background:var(--secondary-light); }
.section-teal { background:linear-gradient(135deg, var(--secondary) 0%, #8a6b12 100%); }
.section-teal * { color:var(--white); }
.section-gray { background:var(--off-white); }

.section-header { max-width:640px; }
.section-header.centered { margin:0 auto; text-align:center; }
.section-header.centered .section-label { justify-content:center; }
.section-header .lead { margin-top:.5rem; }

/* ── Cards ── */
.card {
  background:var(--white); border-radius:var(--radius); padding:2.25rem;
  box-shadow:var(--shadow); border:1px solid var(--light-gray);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative; overflow:hidden;
}
.card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--gradient-teal); opacity:0;
  transition:opacity .35s ease;
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(196,149,42,.2); }
.card:hover::before { opacity:1; }

.card-icon {
  width:56px; height:56px; border-radius:14px;
  background:rgba(196,149,42,.08); display:flex; align-items:center; justify-content:center;
  margin-bottom:1.25rem; border:1px solid rgba(196,149,42,.12);
}
.card-icon svg { width:26px; height:26px; stroke:var(--secondary); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.card-icon.accent { background:rgba(61,143,197,.08); border-color:rgba(61,143,197,.12); }
.card-icon.accent svg { stroke:var(--accent); }
.card-icon.navy { background:rgba(14,21,33,.06); border-color:rgba(14,21,33,.1); }
.card-icon.navy svg { stroke:var(--primary); }

/* ── Grid Utilities ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.grid-auto { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }

/* ── Stats Bar ── */
.stats-bar {
  background:
    url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24h48M24 0v48' stroke='%23c4952a' stroke-width='.5' stroke-opacity='.07'/%3E%3Ccircle cx='24' cy='24' r='2' fill='%23c4952a' fill-opacity='.08'/%3E%3C/svg%3E"),
    linear-gradient(145deg, var(--primary) 0%, #1a2d48 50%, var(--primary-light) 100%);
  background-size:48px 48px, 100% 100%;
  padding:3.5rem 0;
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-number {
  font-family:var(--font-display); font-size:3.25rem; font-weight:800;
  color:var(--white); line-height:1; letter-spacing:-1.5px;
}
.stat-number em { color:var(--secondary); font-style:normal; }
.stat-label { font-size:.8125rem; color:rgba(255,255,255,.5); margin-top:.625rem; letter-spacing:.08em; text-transform:uppercase; }

/* ── CTA Banner ── */
.cta-banner {
  padding:7rem 0; text-align:center;
  background:
    url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48M0 48h48M0 0v48M48 0v48' stroke='%23fff' stroke-width='.4' stroke-opacity='.04'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='%23fff' fill-opacity='.05'/%3E%3Ccircle cx='48' cy='0' r='1.5' fill='%23fff' fill-opacity='.05'/%3E%3Ccircle cx='0' cy='48' r='1.5' fill='%23fff' fill-opacity='.05'/%3E%3Ccircle cx='48' cy='48' r='1.5' fill='%23fff' fill-opacity='.05'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 50%, rgba(196,149,42,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 25%, rgba(196,149,42,.12) 0%, transparent 45%),
    linear-gradient(145deg, var(--primary) 0%, #1a2d48 50%, var(--primary-light) 100%);
  background-size:48px 48px, 100% 100%, 100% 100%, 100% 100%;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; bottom:-40%; left:-10%; width:55%; height:100%;
  background:radial-gradient(ellipse, rgba(196,149,42,.1) 0%, transparent 70%);
  pointer-events:none;
}
.cta-banner h2 { color:var(--white); margin-bottom:1rem; position:relative; }
.cta-banner p { color:rgba(255,255,255,.7); max-width:560px; margin:0 auto 2.5rem; font-size:1.125rem; position:relative; }
.cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; position:relative; }

/* ── Footer ── */
.footer {
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23c4952a' fill-opacity='.04'/%3E%3C/svg%3E"),
    var(--primary);
  background-size:60px 60px, 100% 100%;
  padding:5rem 0 2.5rem;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:2.5rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .logo-name { color:var(--white); }
.footer-brand p { color:rgba(255,255,255,.45); font-size:.9375rem; margin-top:1rem; max-width:300px; line-height:1.65; }
.footer-col h5 { font-family:var(--font-display); font-size:.875rem; font-weight:700; color:var(--white); margin-bottom:1.25rem; letter-spacing:.05em; text-transform:uppercase; }
.footer-col a { display:block; color:rgba(255,255,255,.45); font-size:.9375rem; margin-bottom:.625rem; transition:color .25s, padding-left .25s; }
.footer-col a:hover { color:var(--secondary); padding-left:.375rem; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:2rem; }
.footer-bottom p { font-size:.875rem; color:rgba(255,255,255,.35); margin:0; }
.footer-bottom a { color:rgba(255,255,255,.35); font-size:.875rem; transition:color .25s; }
.footer-bottom a:hover { color:var(--secondary); }

/* ── Pulse + Fade animations ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.2)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fillBar { from{width:0} }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ── Form Elements ── */
.form-group { margin-bottom:1.5rem; }
.form-label { display:block; font-family:var(--font-display); font-size:.875rem; font-weight:600; color:var(--primary); margin-bottom:.5rem; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:.9375rem 1.25rem; border:1.5px solid var(--light-gray);
  border-radius:var(--radius-sm); font-family:var(--font-body); font-size:1rem;
  color:var(--text); background:var(--white); transition:border-color .25s, box-shadow .25s;
  -webkit-appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline:none; border-color:var(--secondary);
  box-shadow:0 0 0 3px rgba(196,149,42,.1);
}
.form-textarea { resize:vertical; min-height:140px; }
.form-select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem;
}

/* ── Accordion / FAQ ── */
.faq-item { border-bottom:1px solid var(--light-gray); }
.faq-question {
  width:100%; background:none; border:none; text-align:left; padding:1.5rem 0;
  font-family:var(--font-display); font-size:1.0625rem; font-weight:600; color:var(--primary);
  cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.faq-icon {
  width:28px; height:28px; flex-shrink:0; background:var(--light-gray);
  border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.faq-icon::before { content:''; display:block; width:10px; height:2px; background:var(--primary); position:relative; }
.faq-icon::after { content:''; display:block; width:10px; height:2px; background:var(--primary); position:absolute; transform:rotate(90deg); transition:transform .3s; }
.faq-item.open .faq-icon { background:var(--secondary); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background:var(--white); }
.faq-item.open .faq-icon::after { transform:rotate(0); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-answer-inner { padding-bottom:1.5rem; }
.faq-answer-inner p { color:var(--dark-gray); }

/* ── Process Steps ── */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; position:relative; }
.steps::before { content:''; position:absolute; top:2rem; left:15%; right:15%; height:2px; background:var(--light-gray); z-index:0; }
.step { text-align:center; position:relative; z-index:1; }
.step-number {
  width:4rem; height:4rem; border-radius:50%; background:var(--white);
  border:2px solid var(--secondary); display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem; font-family:var(--font-display); font-size:1.125rem; font-weight:700;
  color:var(--secondary); box-shadow:0 0 0 6px rgba(196,149,42,.07);
}
.step-active .step-number { background:var(--gradient-teal); color:var(--white); border-color:transparent; box-shadow:0 4px 16px rgba(196,149,42,.3), 0 0 0 6px rgba(196,149,42,.1); }

/* ── Badge chip ── */
.badge { display:inline-flex; align-items:center; gap:.5rem; padding:.375rem 1rem; border-radius:50px; font-size:.8125rem; font-weight:600; }
.badge-teal  { background:rgba(196,149,42,.1); color:var(--secondary); border:1px solid rgba(196,149,42,.15); }
.badge-navy  { background:rgba(14,21,33,.07); color:var(--primary); border:1px solid rgba(14,21,33,.1); }
.badge-accent{ background:rgba(61,143,197,.1); color:var(--accent); border:1px solid rgba(61,143,197,.15); }
.badge-teal .dot, .badge-navy .dot, .badge-accent .dot { width:6px; height:6px; border-radius:50%; }
.badge-teal  .dot { background:var(--secondary); animation:pulse 2s infinite; }
.badge-navy  .dot { background:var(--primary); }
.badge-accent .dot { background:var(--accent); }

/* ── Gradient heading accent ── */
.gradient-heading {
  background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ── Glassmorphism card ── */
.card-glass {
  background:rgba(255,255,255,.72); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.55); box-shadow:0 8px 32px rgba(14,21,33,.1);
}

/* ── Dark sections: dot pattern ── */
.section-dark {
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23c4952a' fill-opacity='.06'/%3E%3C/svg%3E"),
    linear-gradient(165deg, var(--primary) 0%, #1a2d48 100%);
  background-size:60px 60px, 100% 100%;
}

/* ── Gray sections: subtle texture ── */
.section-gray {
  background:
    url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='.75' fill='%230e1521' fill-opacity='.04'/%3E%3C/svg%3E"),
    var(--off-white);
  background-size:32px 32px, 100% 100%;
}

/* ── Teal sections ── */
.section-teal {
  background:
    url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='1.5' fill='%23fff' fill-opacity='.1'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--secondary) 0%, #8a6b12 100%);
  background-size:48px 48px, 100% 100%;
}

/* ── Section with floating orbs ── */
.has-orbs { position:relative; overflow:hidden; }
.has-orbs::after {
  content:''; position:absolute; bottom:-20%; left:-8%; width:40%; height:80%;
  background:radial-gradient(ellipse, rgba(196,149,42,.08) 0%, transparent 70%); pointer-events:none;
}

/* ── Divider accent ── */
.divider-teal {
  height:2px; border:none;
  background:linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity:.25; margin:0;
}

/* ── Responsive ── */
@media (max-width:1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr 1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  :root { --section-pad:80px 0; }
  .container { padding:0 1.5rem; }
  .nav-links, .nav > .btn { display:none; }
  .nav-toggle { display:flex; }
  .grid-2,.grid-3,.grid-4,.steps { grid-template-columns:1fr; }
  .steps::before { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .cta-buttons { flex-direction:column; align-items:center; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
  .cta-banner { padding:5rem 0; }
}
@media (max-width:480px) {
  h1 { font-size:2.5rem; letter-spacing:-1.5px; }
  h2 { font-size:1.875rem; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .hero-buttons { flex-direction:column; }
}
