/* =====================================================
   Webtech Innovation — Main Stylesheet
   Fresh modern redesign | Mobile-first & responsive
   ===================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  --primary: #1e6fc2;
  --primary-dark: #14528f;
  --primary-light: #4795dd;
  --accent: #28b6e6;
  --accent-2: #00a8cc;
  --dark: #0e2444;
  --dark-2: #16315a;
  --text: #1c1b2e;
  --muted: #6b7280;
  --line: #e7e6f0;
  --bg: #ffffff;
  --bg-soft: #f6f6fc;
  --white: #ffffff;

  --gradient: linear-gradient(135deg, #14528f 0%, #1e6fc2 50%, #28b6e6 100%);
  --gradient-soft: linear-gradient(135deg, #1e6fc2 0%, #2e8bd6 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(20, 16, 60, 0.06);
  --shadow: 0 14px 40px rgba(20, 16, 60, 0.10);
  --shadow-lg: 0 30px 60px rgba(20, 16, 60, 0.16);

  --container: 1180px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --transition: 0.25s ease;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; color: var(--dark); }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--dark); color: #d9d6f0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30, 111, 194, 0.08);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.bg-dark .eyebrow { color: #fff; background: rgba(255,255,255,0.12); }

.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 18px; }
.section-intro { color: var(--muted); max-width: 640px; margin: 0 auto 12px; font-size: 1.05rem; }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-intro { color: #b9b4d8; }

.head-block { margin-bottom: 56px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 10px 24px rgba(30,111,194,0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(30,111,194,0.42); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav .logo { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--dark); letter-spacing: -0.02em; }
.nav .logo span { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-menu a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  padding: 9px 14px; border-radius: 50px; color: var(--text); transition: var(--transition);
}
.nav-menu a:hover { color: var(--primary); background: rgba(30,111,194,0.07); }
.nav-menu a.active { color: var(--primary); background: rgba(30,111,194,0.10); }
.nav-ico { width: 17px; height: 17px; flex: none; }
.nav-cta-btn { flex: none; }
.nav-menu .nav-menu-cta { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px auto; transition: var(--transition); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero { position: relative; padding: 90px 0 100px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,214,0.20), transparent 65%); z-index: -1;
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -150px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,204,0.16), transparent 65%); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -0.02em; margin-bottom: 22px; }
.hero h1 .grad { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 32px; max-width: 540px; text-align: justify; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--dark); }
.hero-stats .lbl { font-size: 0.85rem; color: var(--muted); }
.hero-visual { position: relative; }
.hero-visual .card-float {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 0; border: 1px solid var(--line); overflow: hidden;
}
.hero-visual .cf-head { background: var(--gradient); color: #fff; padding: 26px 30px; }
.hero-visual .cf-head h4 { color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.hero-visual .cf-head p { color: rgba(255,255,255,0.88); margin: 0; font-size: 0.92rem; }
.hero-visual .cf-body { padding: 6px 30px 20px; }
.hero-visual .mini { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.hero-visual .mini:first-of-type { border-top: 0; }
.hero-visual .mini strong { font-family: var(--font-head); display: block; }
.hero-visual .dot { width: 46px; height: 46px; border-radius: 12px; background: var(--gradient-soft); flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.15rem; }

/* ---------- 7. Cards / grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: var(--transition); height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gradient-soft);
  display: grid; place-items: center; margin-bottom: 20px; color: #fff;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; text-align: justify; }
.card .more { display: inline-block; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--primary); }

/* feature list */
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent-2);
  color: #fff; font-size: 0.72rem; font-weight: 700; display: grid; place-items: center;
}

/* ---------- 8. Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- 9. Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-band .num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-band .lbl { color: var(--muted); font-size: 0.95rem; }

/* ---------- 10. Pricing ---------- */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px; transition: var(--transition); position: relative; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow); }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--dark); margin: 14px 0 4px; }
.price-card .price small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-card ul { margin: 24px 0 28px; }

/* ---------- 11. Portfolio ---------- */
.work-card { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.work-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: var(--transition); }
.work-card:hover img { transform: scale(1.05); }
.work-card .meta { position: absolute; inset: auto 0 0 0; padding: 22px; background: linear-gradient(transparent, rgba(14,10,44,0.88)); color: #fff; }
.work-card .meta span { font-size: 0.78rem; color: var(--accent-2); font-weight: 600; }
.work-card .meta h4 { color: #fff; font-size: 1.15rem; }

/* ---------- 11b. Process infographic ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process::before {
  content: ""; position: absolute; top: 39px; left: 12.5%; right: 12.5%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; z-index: 0;
}
.pstep { position: relative; z-index: 1; text-align: center; }
.pstep .pcircle {
  width: 80px; height: 80px; border-radius: 50%; background: var(--gradient); color: #fff;
  display: grid; place-items: center; margin: 0 auto 22px; position: relative;
  box-shadow: 0 12px 26px rgba(30,111,194,0.30); border: 5px solid #fff;
}
.pstep .pcircle svg { width: 32px; height: 32px; }
.pstep .pnum {
  position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: var(--primary); font-family: var(--font-head); font-weight: 800;
  font-size: 0.85rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 2px solid var(--primary-light);
}
.pstep h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pstep p { color: var(--muted); font-size: 0.95rem; }

/* ---------- 11c. Product cards (shop) ---------- */
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .pc-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.product-card .pc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card .pc-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.product-card h3 { font-size: 1.15rem; margin: 8px 0; }
.product-card p { color: var(--muted); font-size: 0.92rem; flex: 1; text-align: left; }
.product-card .pc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.product-card .price { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: var(--dark); white-space: nowrap; }
.product-card .price small { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.product-card .pc-foot .btn { padding: 11px 20px; font-size: 0.9rem; }
.secure-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); background: var(--bg-soft); padding: 10px 18px; border-radius: 50px; }
.secure-note svg { width: 18px; height: 18px; color: var(--accent-2); }

/* ---------- 12. Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.quote-card .stars { color: #ffb400; margin-bottom: 14px; letter-spacing: 2px; }
.quote-card p { color: var(--text); margin-bottom: 22px; font-size: 1rem; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-soft); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card .who strong { display: block; font-family: var(--font-head); }
.quote-card .who small { color: var(--muted); }

/* ---------- 13. CTA band ---------- */
.cta-band { background: var(--gradient); border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }

/* ---------- 14. Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.97rem; background: #fff; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,111,194,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: 0.95rem; }
.alert-success { background: #e7faf3; color: #0a7a5a; border: 1px solid #b6ecd8; }
.alert-error { background: #fdeaef; color: #b3274d; border: 1px solid #f6c4d2; }

/* ---------- 15. Page banner ---------- */
.page-banner { background: var(--dark); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.page-banner::before { content: ""; position: absolute; top: -120px; right: -100px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(46,139,214,0.34), transparent 65%); }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; position: relative; }
.page-banner .crumbs { color: #b9b4d8; font-size: 0.92rem; position: relative; }
.page-banner .crumbs a:hover { color: #fff; }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--dark); color: #b9b4d8; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.site-footer .logo { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: 16px; display: inline-block; }
.site-footer .logo span { color: var(--primary-light); }
.site-footer p { font-size: 0.95rem; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul li a { font-size: 0.95rem; transition: var(--transition); }
.site-footer ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.95rem; }
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: var(--transition); }
.socials a:hover { background: var(--primary); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.88rem; }

/* ---------- 16b. Floating widgets (WhatsApp + Enquiry) ---------- */
.fab-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 1200; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab { border: none; cursor: pointer; box-shadow: var(--shadow); transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; }
.fab:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fab-wa { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; }
.fab-wa svg { width: 32px; height: 32px; }
.fab-enq { height: 56px; border-radius: 50px; padding: 0 24px; gap: 9px; background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.fab-enq svg { width: 20px; height: 20px; }

.wa-pop { position: fixed; right: 22px; bottom: 96px; z-index: 1200; width: 320px; max-width: calc(100vw - 44px); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(16px) scale(0.97); opacity: 0; pointer-events: none; transition: var(--transition); }
.wa-pop.open { transform: none; opacity: 1; pointer-events: auto; }
.wa-pop .wa-head { background: #075E54; color: #fff; padding: 16px 18px; display: flex; gap: 12px; align-items: center; }
.wa-pop .wa-av { width: 42px; height: 42px; border-radius: 50%; background: #25D366; display: grid; place-items: center; flex: none; }
.wa-pop .wa-av svg { width: 24px; height: 24px; color: #fff; }
.wa-pop .wa-head strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.wa-pop .wa-head small { opacity: 0.82; font-size: 0.8rem; }
.wa-pop .wa-body { padding: 20px 18px; background: #ECE5DD; }
.wa-pop .wa-msg { background: #fff; border-radius: 2px 12px 12px 12px; padding: 12px 14px; font-size: 0.9rem; color: var(--text); box-shadow: var(--shadow-sm); margin-bottom: 16px; line-height: 1.5; }
.wa-pop .wa-start { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; font-family: var(--font-head); font-weight: 600; padding: 12px; border-radius: 50px; transition: var(--transition); }
.wa-pop .wa-start:hover { background: #1ebe5b; }
.wa-pop .wa-start svg { width: 20px; height: 20px; }

/* ---------- 16c. Modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(14,10,44,0.62); z-index: 1300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: var(--transition); }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto; transform: translateY(18px); transition: var(--transition); }
.modal-overlay.open .modal { transform: none; }
.modal-head { background: var(--gradient); color: #fff; padding: 24px 28px; position: relative; }
.modal-head h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.modal-head p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.92rem; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.22); color: #fff; border: none; cursor: pointer; font-size: 1.4rem; line-height: 1; display: grid; place-items: center; transition: var(--transition); }
.modal-close:hover { background: rgba(255,255,255,0.38); }
.modal-body { padding: 26px 28px; }

@media (max-width: 480px) {
  .fab-enq .lbl { display: none; }
  .fab-enq { width: 56px; padding: 0; border-radius: 50%; }
}

/* ---------- 17. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 24px 28px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s ease; height: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 13px 16px; }
  .nav-cta-btn { display: none; }
  .nav-menu .nav-menu-cta { display: block; margin-top: 8px; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
