/* ==========================================================================
   DuoDriven BD — Performance Marketing Agency
   Lightweight, WordPress-portable stylesheet. No frameworks, no build step.
   Design language: corporate / trust-heavy (WebFX-inspired).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0a2540;
  --navy-2:      #0e2e52;
  --navy-3:      #12386a;
  --blue:        #1257e0;
  --blue-600:    #0f49c0;
  --blue-050:    #eaf1ff;
  --green:       #16a34a;
  --green-050:   #e9f8ef;
  --wa:          #25d366;
  --gold:        #f4b400;

  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --bg-navy:     #0a2540;
  --line:        #e4eaf2;
  --line-soft:   #eef2f8;

  --text:        #16233b;
  --muted:       #5b6b85;
  --muted-light: #8a97ac;
  --white:       #ffffff;

  --radius:      14px;
  --radius-lg:   22px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.05);
  --shadow:      0 8px 24px rgba(10,37,64,.08);
  --shadow-lg:   0 20px 48px rgba(10,37,64,.14);

  --maxw:        1200px;
  --gap:         clamp(16px, 3vw, 28px);
  --sp-section:  clamp(56px, 8vw, 104px);

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 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.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--muted); }
strong { color: var(--text); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding-block: var(--sp-section); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #cdd8ea; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-050); padding: 7px 14px; border-radius: 100px;
}
.section--navy .eyebrow { color: #8fb6ff; background: rgba(255,255,255,.07); }
.eyebrow--green { color: var(--green); background: var(--green-050); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.1rem; margin-top: 16px; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(18,87,224,.28); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18,87,224,.34); }
.btn--wa { background: var(--wa); color: #06331a; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1fbf5b; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(10,37,64,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--navy); letter-spacing: -.02em; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand span.accent { color: var(--blue); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--navy);
  padding: 9px 14px; border-radius: 8px; transition: background .18s ease, color .18s ease;
}
.nav__links a:hover, .nav__links a.active { background: var(--bg-soft); color: var(--blue); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy); }
.nav__toggle svg { width: 28px; height: 28px; }

/* mobile drawer */
@media (max-width: 940px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav-drawer {
    position: fixed; inset: 74px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform .28s ease;
    z-index: 99; padding: 18px clamp(18px,5vw,40px) 28px;
  }
  .nav-drawer.open { transform: translateY(0); }
  .nav-drawer a { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--navy); padding: 13px 6px; border-bottom: 1px solid var(--line-soft); }
  .nav-drawer .btn { width: 100%; margin-top: 16px; }
}
@media (min-width: 941px) { .nav-drawer { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy);
  background-image:
    radial-gradient(1100px 520px at 78% -8%, rgba(18,87,224,.5), transparent 62%),
    radial-gradient(760px 460px at 8% 108%, rgba(22,163,74,.28), transparent 60%);
  color: #dbe5f4; overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 60% 30%, #000, transparent 78%);
}
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(56px, 8vw, 96px); }
.hero h1 { color: #fff; }
.hero h1 .hl { color: #7fb0ff; }
.hero__sub { font-size: 1.2rem; color: #b7c4da; margin-top: 22px; max-width: 560px; }
.hero .btn-row { margin-top: 32px; }
.hero__trustline { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: #9fb0cc; font-size: .95rem; }
.hero__trustline svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* hero guarantee card */
.guarantee-card {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.guarantee-card__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #7ff0a8; background: rgba(37,211,102,.14); padding: 7px 13px; border-radius: 100px; }
.guarantee-card h3 { color: #fff; margin-top: 18px; font-size: 1.5rem; }
.guarantee-card p { color: #b7c4da; margin-top: 10px; font-size: 1rem; }
.guarantee-list { margin-top: 20px; display: grid; gap: 12px; }
.guarantee-list li { display: flex; gap: 11px; color: #d3ddec; font-size: .98rem; align-items: flex-start; }
.guarantee-list svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }

/* ---------- Trust bar (logos / stats) ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line-soft); }
.trustbar__inner { padding-block: 30px; }
.trustbar p { text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-light); font-weight: 600; margin-bottom: 18px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(20px, 5vw, 54px); opacity: .85; }
.logo-row .logo { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #7b899f; display: flex; align-items: center; gap: 8px; }
.logo-row .logo svg { width: 22px; height: 22px; opacity: .7; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.section--navy .stat__num { color: #fff; }
.stat__num .unit { color: var(--blue); }
.section--navy .stat__num .unit { color: #7fb0ff; }
.stat__label { margin-top: 10px; font-size: .96rem; color: var(--muted); }
.section--navy .stat__label { color: #a9b8d0; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.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: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4deee; }
.card__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--blue-050); color: var(--blue); margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card__icon.green { background: var(--green-050); color: var(--green); }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue); }
.card__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* service list mini */
.taglist { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.tag { font-size: .84rem; font-weight: 600; color: var(--navy); background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 13px; border-radius: 100px; }

/* ---------- Feature (image/text split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); background: var(--bg-soft); border: 1px solid var(--line);
  padding: 30px; min-height: 300px; display: grid; align-content: center; gap: 16px;
}
.split ul.checks { display: grid; gap: 13px; margin-top: 22px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 1.02rem; }
.checks li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }

/* funnel widget (used in split media) */
.funnel-step { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow-sm); }
.funnel-step__n { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; font-size: .9rem; }
.funnel-step__t { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--navy); }
.funnel-step__d { font-size: .84rem; color: var(--muted); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--blue); background: var(--blue-050); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.quote__stars svg { width: 18px; height: 18px; }
.quote__result { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--green); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }
.quote blockquote { color: var(--text); font-size: 1.02rem; line-height: 1.55; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .98rem; }
.quote__role { font-size: .86rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--navy); }
.faq__q svg { width: 22px; height: 22px; color: var(--blue); flex: none; transition: transform .25s ease; }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); background-image: radial-gradient(900px 420px at 85% 0%, rgba(18,87,224,.55), transparent 60%), radial-gradient(700px 400px at 5% 120%, rgba(22,163,74,.32), transparent 55%); color: #fff; border-radius: clamp(20px, 4vw, 32px); padding: clamp(40px, 6vw, 68px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3d0e6; font-size: 1.15rem; margin: 16px auto 0; max-width: 620px; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.contact-item__icon { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; }
.contact-item__icon.green { background: var(--green-050); color: var(--green); }
.contact-item h4 { margin-bottom: 3px; }
.contact-item a, .contact-item p { color: var(--muted); font-size: .98rem; }
.contact-item a:hover { color: var(--blue); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--bg-soft);
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; }
.form__note { font-size: .84rem; color: var(--muted-light); text-align: center; margin-top: 14px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--navy); background-image: radial-gradient(900px 400px at 80% -20%, rgba(18,87,224,.42), transparent 60%); color: #cdd8ea; text-align: center; padding-block: clamp(52px, 8vw, 88px); }
.page-hero h1 { color: #fff; }
.page-hero p { color: #b7c4da; font-size: 1.18rem; max-width: 640px; margin: 18px auto 0; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: .9rem; color: #8fa2c0; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* pill badge */
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: .82rem; padding: 6px 13px; border-radius: 100px; background: var(--green-050); color: var(--green); }
.pill.blue { background: var(--blue-050); color: var(--blue); }
.pill.navy { background: var(--navy); color: #fff; }

/* model card */
.model-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.model-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); position: relative; }
.model-card.featured::before { content: "Most popular"; position: absolute; top: -13px; left: 32px; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .78rem; padding: 5px 13px; border-radius: 100px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fb0cc; padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about p { color: #9fb0cc; font-size: .96rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .96rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; color: #9fb0cc; font-size: .95rem; padding: 6px 0; transition: color .16s ease; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd8ea; transition: background .18s ease, color .18s ease; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .9rem; color: #8195b4; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.44); transition: transform .18s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-green { color: var(--green); } .text-blue { color: var(--blue); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 0; }
.banglish { font-style: italic; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .hero__inner { grid-template-columns: 1fr; }
  .guarantee-card { order: -1; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .cta-band .btn-row .btn { width: 100%; }
}
