/* ============================================================
   Smart Marketing and Consulting INC — Design System
   ============================================================ */

:root {
  /* Brand palette */
  --navy-900: #0a1834;
  --navy-800: #0f2147;
  --navy-700: #16305f;
  --navy-600: #1d3e7a;
  --accent:   #19c6c0;   /* smart teal */
  --accent-d: #0ea7a1;
  --accent-l: #5ee0db;
  --gold:     #ffb648;   /* warm secondary accent */

  /* Neutrals */
  --ink:      #0e1726;
  --body:     #44505f;
  --muted:    #6b7787;
  --line:     #e4e8ee;
  --bg:       #ffffff;
  --bg-soft:  #f5f8fb;
  --bg-mist:  #eef3f8;
  --white:    #ffffff;

  /* Type */
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing / shape */
  --radius:   16px;
  --radius-s: 10px;
  --shadow-sm: 0 2px 10px rgba(14,23,38,.06);
  --shadow:    0 14px 40px rgba(14,23,38,.10);
  --shadow-lg: 0 30px 70px rgba(10,24,52,.18);
  --maxw: 1180px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* 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(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 800; }

/* Layout helpers */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy-900); color: #cdd7e6; }
.text-center { text-align: center; }

/* Eyebrow + headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-d);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.section-title { font-size: clamp(28px, 4vw, 44px); color: var(--ink); margin-bottom: 18px; letter-spacing: -.02em; }
.section-lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head { margin-bottom: 56px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--navy-900); box-shadow: 0 10px 26px rgba(25,198,192,.32); }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(25,198,192,.42); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--navy-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-d); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--transition);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--navy-600) 100%);
  display: grid; place-items: center; color: #fff; font-family: var(--font-head);
  font-weight: 800; font-size: 20px; box-shadow: 0 6px 18px rgba(25,198,192,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.brand-sub { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-d); font-weight: 700; }
.site-header:not(.scrolled) .brand-name { color: #fff; }
.site-header:not(.scrolled) .brand-sub { color: var(--accent-l); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: #e7eef8;
  position: relative; transition: color .2s;
}
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent); transition: width .25s; border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--accent-d); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; padding: 180px 0 120px;
  background: radial-gradient(1200px 600px at 75% -10%, rgba(25,198,192,.22), transparent 60%),
              linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #cdd7e6; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow.g1 { width: 420px; height: 420px; background: rgba(25,198,192,.30); top: -120px; right: -80px; }
.hero-glow.g2 { width: 360px; height: 360px; background: rgba(29,62,122,.55); bottom: -140px; left: -100px; }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: 13.5px; font-weight: 600; color: #d7e3f2; margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(25,198,192,.25); }
.hero h1 {
  font-size: clamp(36px, 6vw, 62px); color: #fff; letter-spacing: -.025em; margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent-l), var(--accent)); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.hero p.lead { font-size: 20px; color: #b8c6da; max-width: 620px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-stats { display: flex; gap: 44px; margin-top: 64px; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: #fff; }
.hero-stat .num .accent { color: var(--accent); }
.hero-stat .lbl { font-size: 14px; color: #93a4bd; }

/* ============================================================
   Trust / clients strip
   ============================================================ */
.trust { padding: 36px 0; border-bottom: 1px solid var(--line); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-items span { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #aab4c2; letter-spacing: -.01em; }

/* ============================================================
   Service cards
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--navy-600)); transform: scaleX(0);
  transform-origin: left; transition: transform .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(25,198,192,.16), rgba(29,62,122,.12)); color: var(--accent-d);
  margin-bottom: 24px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { font-size: 15.5px; color: var(--body); margin-bottom: 18px; }
.service-card .more { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--accent-d); display: inline-flex; gap: 6px; align-items: center; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   Why / feature list
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 16px; }
.feature-check {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(25,198,192,.12); color: var(--accent-d);
}
.feature-check svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.feature-item p { font-size: 15px; color: var(--muted); }

.visual-card {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  padding: 44px; color: #fff; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
}
.visual-card .vc-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(25,198,192,.3); filter: blur(70px); top: -60px; right: -60px; }
.vc-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; z-index: 2; }
.vc-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 22px; }
.vc-stat .n { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: #fff; }
.vc-stat .l { font-size: 13.5px; color: #b8c6da; }
.vc-quote { position: relative; z-index: 2; font-size: 18px; font-weight: 500; color: #e7eef8; }

/* ============================================================
   Process steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--accent-d);
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(25,198,192,.3);
  display: grid; place-items: center; margin-bottom: 20px; background: var(--white);
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: radial-gradient(900px 400px at 80% 0%, rgba(25,198,192,.25), transparent 60%),
              linear-gradient(140deg, var(--navy-900), var(--navy-700));
  border-radius: 28px; padding: 64px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); margin-bottom: 16px; }
.cta-band p { color: #b8c6da; font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: #9fb0c7; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand-name { color: #fff; }
.footer-about { font-size: 15px; margin: 18px 0; max-width: 320px; color: #93a4bd; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 15px; color: #9fb0c7; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; font-size: 15px; margin-bottom: 13px; color: #b8c6da; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #7c8ba3; }
.social { display: flex; gap: 12px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: var(--transition); }
.social a:hover { background: var(--accent); color: var(--navy-900); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px; text-align: center; color: #fff; position: relative; overflow: hidden;
  background: radial-gradient(900px 400px at 50% -20%, rgba(25,198,192,.22), transparent 60%),
              linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.page-hero h1 { color: #fff; font-size: clamp(32px,5vw,52px); letter-spacing: -.02em; margin-bottom: 14px; }
.page-hero p { color: #b8c6da; font-size: 18px; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; color: #8fa1ba; margin-top: 18px; }
.breadcrumb a:hover { color: var(--accent); }

/* ============================================================
   About — story / values / team
   ============================================================ */
.about-img {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  min-height: 440px; background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
}
.about-img .ai-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(25,198,192,.28); filter: blur(70px); bottom: -80px; left: -60px; }
.about-img .ai-badge {
  position: absolute; bottom: 26px; left: 26px; right: 26px; z-index: 2;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 22px 24px; color: #fff;
}
.about-img .ai-badge .n { font-family: var(--font-head); font-weight: 800; font-size: 30px; }
.about-img .ai-badge .l { font-size: 14px; color: #cdd7e6; }
.about-img .ai-center {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; color: #fff; text-align: center;
}
.about-img .ai-center .mark {
  width: 110px; height: 110px; border-radius: 28px; display: grid; place-items: center; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--accent), var(--navy-600)); font-family: var(--font-head);
  font-weight: 800; font-size: 52px; box-shadow: 0 20px 50px rgba(25,198,192,.4);
}
.about-img .ai-center .est { font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-l); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
}
.mv-card .service-icon { margin-bottom: 22px; }
.mv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mv-card p { font-size: 16px; color: var(--body); }

.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.value-card .vc-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(25,198,192,.12); color: var(--accent-d); margin-bottom: 18px; }
.value-card .vc-ico svg { width: 26px; height: 26px; }
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--muted); }

/* Stats band */
.stats-band { background: linear-gradient(140deg, var(--navy-900), var(--navy-700)); border-radius: 24px; padding: 54px 40px; }
.stats-band .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stats-band .sb-num { font-family: var(--font-head); font-weight: 800; font-size: 42px; color: #fff; }
.stats-band .sb-num .accent { color: var(--accent); }
.stats-band .sb-lbl { font-size: 15px; color: #b8c6da; margin-top: 4px; }

/* ============================================================
   Services — detailed rows
   ============================================================ */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 0; }
.svc-row.flip .svc-media { order: 2; }
.svc-num { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--accent-d); letter-spacing: .1em; }
.svc-row h2 { font-size: clamp(26px,3vw,36px); margin: 10px 0 16px; }
.svc-row > div > p { font-size: 16.5px; color: var(--body); margin-bottom: 24px; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); font-weight: 500; }
.svc-checks svg { width: 18px; height: 18px; color: var(--accent-d); flex: none; margin-top: 4px; }
.svc-media {
  border-radius: 20px; min-height: 360px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600)); display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.svc-media .sm-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(25,198,192,.3); filter: blur(70px); top: -50px; right: -50px; }
.svc-media .sm-ico { width: 120px; height: 120px; border-radius: 30px; display: grid; place-items: center; z-index: 2;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.svc-media .sm-ico svg { width: 58px; height: 58px; }

/* ============================================================
   Contact — cards / form / map
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
  text-align: center; transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card .cc-ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(25,198,192,.16), rgba(29,62,122,.12)); color: var(--accent-d); }
.contact-card .cc-ico svg { width: 28px; height: 28px; }
.contact-card h4 { font-size: 18px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 15.5px; color: var(--body); }
.contact-card a:hover { color: var(--accent-d); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.form-wrap > p { font-size: 15.5px; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: var(--bg-soft); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(25,198,192,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none; background: rgba(25,198,192,.1); border: 1px solid rgba(25,198,192,.35); color: var(--accent-d);
  border-radius: var(--radius-s); padding: 16px 18px; font-weight: 600; font-size: 15px; margin-bottom: 20px;
}
.form-success.show { display: block; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.hours-list { display: grid; gap: 10px; margin-top: 22px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-list li span:first-child { color: var(--muted); }
.hours-list li span:last-child { font-weight: 600; color: var(--ink); }

@media (max-width: 940px) {
  .mv-grid, .contact-split, .svc-checks { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 34px; }
  .svc-row.flip .svc-media { order: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow); margin-top: 12px;
  }
  .nav-links.open a { color: var(--ink); padding: 10px 6px; }
  .section { padding: 70px 0; }
  .grid-3, .grid-2, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 80px; }
  .hero-stats { gap: 28px; }
  .cta-band { padding: 44px 24px; }
  .footer-bottom { flex-direction: column; }
}