/* ===========================================================
   Ingenium Accountants — Modern Theme (Navy + Gold)
   =========================================================== */

:root {
  --navy-900: #14121b;
  --navy-800: #1d1922;
  --navy-700: #24202e;
  --navy-600: #2d2d38;
  --gold:     #ffca63;
  --gold-2:   #ffd583;
  --gold-deep:#e0a93f;
  --red:      #c0392b;
  --ink:      #1d1922;
  --body:     #4a4a55;
  --muted:    #7c7c89;
  --line:     #e7e7ec;
  --bg:       #ffffff;
  --bg-soft:  #f7f7fa;
  --bg-soft2: #f1f1f6;
  --white:    #ffffff;
  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 18px 50px -20px rgba(20,18,27,.28);
  --shadow-sm:0 8px 26px -14px rgba(20,18,27,.30);
  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-body: 'Work Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'DM Serif Display', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Utility ---------- */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-800); color: #d7d7e0; }
.section--navy h1,.section--navy h2,.section--navy h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-deep); display: inline-block; }
.section--navy .eyebrow { color: var(--gold); }
.section--navy .eyebrow::before { background: var(--gold); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.section--navy .lead { color: #b9b9c6; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 50px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy-900); box-shadow: 0 14px 30px -12px rgba(224,169,63,.7); }
.btn--gold:hover { box-shadow: 0 18px 38px -12px rgba(224,169,63,.85); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-900); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }

/* ===========================================================
   Header / Navigation
   =========================================================== */
.topbar {
  background: var(--navy-900); color: #b9b9c6; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar { font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 38px; }
.topbar a:hover { color: var(--gold); }
.topbar__contact { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar svg { width: 15px; height: 15px; fill: var(--gold); flex: 0 0 15px; }
.topbar__social { display: flex; gap: 14px; flex: 0 0 auto; }
.topbar__social a { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(20,18,27,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 18px; }
.nav__logo img { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__menu > li > a {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: .97rem;
  padding: 10px 14px; border-radius: 10px; color: var(--ink);
}
.nav__menu > li > a:hover, .nav__menu > li.active > a { color: var(--gold-deep); }
.nav__menu .caret { width: 10px; height: 10px; fill: currentColor; opacity: .7; transition: transform .25s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown { position: relative; }
.dropdown__panel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px; width: 320px; opacity: 0; visibility: hidden; transition: all .25s var(--ease);
}
.dropdown:hover .dropdown__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown__panel a {
  display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: 10px; color: var(--ink);
}
.dropdown__panel a:hover { background: var(--bg-soft); }
.dropdown__panel a strong { display: block; font-weight: 600; font-size: .94rem; }
.dropdown__panel a small { color: var(--muted); font-size: .8rem; }
.dropdown__ico { flex: 0 0 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg,#fff0d2,#ffe2ad); }
.dropdown__ico svg { width: 18px; height: 18px; fill: var(--gold-deep); }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta-mobile { display: none; }
.nav__cta .btn { padding: 10px 22px; font-size: .92rem; }
.nav__menu > li > a { padding: 8px 13px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.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); }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 500px at 85% -10%, rgba(255,202,99,.18), transparent 60%),
              radial-gradient(700px 600px at -10% 110%, rgba(255,202,99,.08), transparent 55%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: stretch; padding: clamp(50px,8vw,90px) 0; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: #c4c4d0; font-size: 1.14rem; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero__stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero__stats .num { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.hero__stats .lbl { font-size: .85rem; color: #aaaab8; }
.hero__media { position: relative; display: flex; min-height: 480px; }
.hero__media img { border-radius: 20px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); object-fit: cover; object-position: top center; width: 100%; height: 100%; }
.hero__badge {
  position: absolute; bottom: 22px; left: -22px; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center;
}
.hero__badge .ico { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg,var(--gold-2),var(--gold)); display: grid; place-items: center; }
.hero__badge .ico svg { width: 22px; height: 22px; fill: var(--navy-900); }
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero__badge small { color: var(--muted); }

/* Page hero (interior) */
.page-hero { position: relative; background: var(--navy-900); color: #fff; padding: clamp(70px,9vw,120px) 0 clamp(50px,7vw,80px); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 90% 0%, rgba(255,202,99,.16), transparent 60%); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c4c4d0; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: #9a9aab; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===========================================================
   Cards & Grids
   =========================================================== */
.grid { display: grid; gap: 26px; }
.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: 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__ico { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,#fff0d2,#ffe2ad); display: grid; place-items: center; margin-bottom: 20px; }
.card__ico svg { width: 28px; height: 28px; fill: var(--gold-deep); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 14px; }
.card__link { font-family: var(--font-body); font-weight: 600; color: var(--gold-deep); font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }
.card__link svg { width: 15px; height: 15px; fill: currentColor; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Service card with image */
.scard { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); height:100%; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.scard__img { aspect-ratio: 16/10; overflow: hidden; }
.scard__img img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.scard:hover .scard__img img { transform: scale(1.06); }
.scard__body { padding: 26px; }
.scard__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.scard__body p { color: var(--muted); font-size: .96rem; }

/* ---------- Feature list (checkmarks) ---------- */
.feat-list { display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; }
.feat-list .tick { flex: 0 0 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-2),var(--gold)); display: grid; place-items: center; margin-top: 3px; }
.feat-list .tick svg { width: 13px; height: 13px; fill: var(--navy-900); }
.feat-list strong { color: var(--ink); }
.section--navy .feat-list strong { color: #fff; }

/* ---------- Split (text + media) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,64px); align-items: center; }
.split--media-first .split__media { order: -1; }
.split--top { align-items: start; }
.split--fill { align-items: stretch; }
.split--fill .split__media { display: flex; min-height: 100%; }
.split--fill .split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.split__media img { border-radius: 18px; box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.split__media { position: relative; }
.media-frame { position: relative; }
.media-frame::after { content:""; position:absolute; inset: 18px -18px -18px 18px; border:2px solid var(--gold); border-radius: 18px; z-index:-1; }

/* ---------- Screenshot frame (app dashboards) ---------- */
.screenshot-frame { background: #fff; border-radius: 14px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.6); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.sf-dots { display: flex; gap: 7px; padding: 12px 16px; background: #f2f2f5; border-bottom: 1px solid var(--line); }
.sf-dots i { width: 11px; height: 11px; border-radius: 50%; background: #d6d6dd; display: inline-block; }
.sf-dots i:nth-child(1){ background:#ff5f57 } .sf-dots i:nth-child(2){ background:#febc2e } .sf-dots i:nth-child(3){ background:#28c840 }
.screenshot-frame img { display: block; width: 100%; height: auto; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.price-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.price-card .pc-ico { width:54px;height:54px;border-radius:14px;margin:0 auto 16px;background:linear-gradient(135deg,#fff0d2,#ffe2ad);display:grid;place-items:center; }
.price-card .pc-ico svg{ width:26px;height:26px;fill:var(--gold-deep);}
.price-card h4 { font-family: var(--font-body); font-weight: 600; color: var(--muted); font-size: .95rem; text-transform: uppercase; letter-spacing:.05em; }
.price-card .amt { font-family: var(--font-head); font-size: 2.4rem; color: var(--ink); margin: 6px 0 2px; }
.price-card .amt small { font-size: .9rem; color: var(--muted); font-family: var(--font-body); }
.price-card .from { font-size: .8rem; color: var(--gold-deep); font-weight:600; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align: center; }
.stats-band .num { font-family: var(--font-head); font-size: clamp(2.2rem,4vw,3rem); color: var(--gold); }
.stats-band .lbl { color: #b9b9c6; font-size: .95rem; }

/* ---------- Logos strip ---------- */
.logos-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.logos-strip img { height: 46px; width: auto; filter: grayscale(0); opacity: .9; transition: .3s; }
.logos-strip .logo-item { background:#fff; border:1px solid var(--line); border-radius: 12px; padding: 18px 28px; transition: transform .3s, box-shadow .3s; }
.logos-strip .logo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 24px; overflow: hidden; background: var(--navy-800); color:#fff; padding: clamp(40px,6vw,70px); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 100% 0, rgba(255,202,99,.22), transparent 60%); }
.cta-band__inner { position: relative; display:flex; align-items:center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color:#fff; max-width: 620px; }
.cta-band p { color:#c4c4d0; }

/* ---------- Steps / roadmap ---------- */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 22px; align-items: flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; transition: box-shadow .3s, transform .3s; }
.step:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.step__num { flex:0 0 52px; height:52px; border-radius: 14px; background: var(--navy-800); color: var(--gold); font-family: var(--font-head); font-size: 1.4rem; display: grid; place-items: center; }
.step h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(26px,4vw,40px); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; font: inherit; font-size: .96rem;
  background: var(--bg-soft); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background:#fff; box-shadow: 0 0 0 4px rgba(255,202,99,.18); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-success { display:none; background: #ecfdf3; border:1px solid #abefc6; color:#067647; padding: 13px 16px; border-radius: 11px; font-size:.92rem; }
.form-success.show { display:block; }

/* ---------- Quick contact (form section) ---------- */
.contact-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-quick__item { display: flex; gap: 13px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.contact-quick__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.cq-ico { flex: 0 0 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg,var(--gold-2),var(--gold)); display: grid; place-items: center; }
.cq-ico svg { width: 20px; height: 20px; fill: var(--navy-900); }
.contact-quick__item small { display: block; color: var(--muted); font-size: .78rem; }
.contact-quick__item strong { color: var(--ink); font-size: .96rem; }
.section--soft .contact-quick__item { background: #fff; }
@media (max-width: 520px) { .contact-quick { grid-template-columns: 1fr; } }

/* ---------- Contact info cards ---------- */
.info-card { display: flex; gap: 16px; align-items: flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .3s, transform .3s; }
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-card .ico { flex:0 0 48px; height:48px; border-radius: 12px; background: linear-gradient(135deg,#fff0d2,#ffe2ad); display:grid; place-items:center; }
.info-card .ico svg { width: 22px; height: 22px; fill: var(--gold-deep); }
.info-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 2px; }
.info-card p, .info-card a { color: var(--muted); font-size: .95rem; margin: 0; }
.info-card a:hover { color: var(--gold-deep); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--navy-900); color: #9a9aab; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer h5 { font-family: var(--font-body); color:#fff; font-weight:700; font-size: 1rem; margin-bottom: 18px; letter-spacing:.02em; }
.flogo-plate { display: inline-block; background: #fff; padding: 14px 18px; border-radius: 14px; margin-bottom: 20px; box-shadow: 0 10px 30px -16px rgba(0,0,0,.5); }
.site-footer img.flogo { height: 40px; display: block; }
.site-footer .tagline { font-size: .92rem; color:#8c8c9c; max-width: 320px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; fill: var(--gold); flex: 0 0 17px; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .25s; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-social a:hover svg { fill: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }

/* Floating WhatsApp */
.fab-wa { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ===========================================================
   Reveal animation
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .pricing { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__cta .btn--cta-desktop { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.mobile-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px 18px;
  }
  .nav__menu.mobile-open > li > a { padding: 13px 10px; border-radius: 8px; }
  .nav__menu.mobile-open .dropdown__panel {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; width: auto; padding: 4px 0 4px 12px; display: none;
  }
  .nav__menu.mobile-open .dropdown.open .dropdown__panel { display: block; }
  .nav__menu.mobile-open .nav__cta-mobile { display: block; margin-top: 10px; }
  .nav__menu.mobile-open .nav__cta-mobile .btn { width: 100%; }
  .nav { position: relative; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .split, .cta-band__inner { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .topbar { display: none; }
  .media-frame::after { display: none; }
  /* Hide decorative split side-images on mobile (hero & app screenshots stay) */
  .media-frame { display: none; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
@media (max-width: 520px) {
  .grid--4, .pricing, .stats-band { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
