/* Bima360 marketing site — mybima360.com
   Palette and fonts follow the Bima360 brand (navy + green + teal, Poppins / Inter). */

:root {
  --navy-950: #081428;
  --navy-900: #0b1f3a;
  --navy-800: #12294d;
  --navy-700: #1a3660;
  --green-700: #17703c;
  --green-600: #1f8a4c;
  --green-500: #2eab5f;
  --green-400: #4fc077;
  --teal-500: #1a8f8a;
  --amber-500: #e2971f;
  --red-500: #d64545;
  --ink-900: #132033;
  --ink-700: #2c3c52;
  --ink-600: #4c5b6e;
  --ink-400: #8291a3;
  --paper: #f3f6fa;
  --card: #ffffff;
  --line: #e3e9f1;
  --shadow-sm: 0 1px 2px rgba(9, 25, 52, 0.06);
  --shadow-md: 0 8px 24px rgba(9, 25, 52, 0.08);
  --shadow-lg: 0 24px 56px rgba(9, 25, 52, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display { font-family: "Poppins", "Inter", system-ui, sans-serif; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy-900); color: #fff;
  padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--green-400); outline-offset: 3px; border-radius: 6px; }

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-family: inherit; line-height: 1.2;
}
.btn .icon { font-size: 16px; }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 6px 18px rgba(31, 138, 76, 0.32); }
.btn-primary:hover { background: var(--green-500); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--navy-800); background: #fff; }
.btn-ghost:hover { border-color: var(--navy-700); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink-700); }
.nav-links a:hover { color: var(--green-600); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px;
  align-items: center; justify-content: center; cursor: pointer; color: var(--navy-800); font-size: 20px;
}
.nav-panel { display: contents; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1000px 560px at 8% -8%, rgba(46, 171, 95, 0.32), transparent 60%),
    radial-gradient(900px 640px at 105% 105%, rgba(26, 143, 138, 0.34), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-800) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px; -webkit-mask-image: radial-gradient(circle at 40% 30%, #000, transparent 72%); mask-image: radial-gradient(circle at 40% 30%, #000, transparent 72%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; padding: 84px 0 96px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: #d6f5e2; letter-spacing: 0.02em;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 4px rgba(79, 192, 119, 0.25); }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; font-weight: 800; margin: 20px 0 20px; }
.hero h1 .accent { color: var(--green-400); }
.hero .lead { font-size: 18px; line-height: 1.65; color: #cbd6e6; max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 20px; font-size: 14px; color: #93a5bd; display: flex; align-items: center; gap: 8px; }
.hero-note .icon { color: var(--green-400); }
.pillars { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 0.14em; font-size: 13px; text-transform: uppercase; color: #b6c5da; }
.pillars span:not(:last-child)::after { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--green-400); margin-left: 26px; vertical-align: middle; }

/* Product mock (illustrative, built in HTML — no real client data) */
.mock-wrap { position: relative; }
.mock {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; color: var(--ink-900);
  border: 1px solid rgba(255, 255, 255, 0.4); transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #eef2f8; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfd8e6; }
.mock-bar i:nth-child(1) { background: #f0a1a1; } .mock-bar i:nth-child(2) { background: #f1d58a; } .mock-bar i:nth-child(3) { background: #9ed8b1; }
.mock-url { margin-left: 10px; flex: 1; background: #fff; border-radius: 8px; padding: 3px 12px; font-size: 11.5px; color: var(--ink-400); border: 1px solid var(--line); }
.mock-body { display: grid; grid-template-columns: 54px 1fr; min-height: 340px; }
.mock-side { background: var(--navy-900); display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 16px 0; color: #8fa4c2; }
.mock-side .icon { font-size: 18px; }
.mock-side .on { color: #fff; background: rgba(79, 192, 119, 0.28); border-radius: 9px; padding: 7px; box-sizing: content-box; }
.mock-main { padding: 18px 18px 20px; background: var(--paper); }
.mock-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mock-title strong { font-family: "Poppins", sans-serif; font-size: 15px; }
.mock-chip { font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: #e3f4ea; color: var(--green-700); }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 14px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 10px 11px; }
.kpi small { display: block; font-size: 10px; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.kpi b { font-family: "Poppins", sans-serif; font-size: 20px; line-height: 1.25; }
.mock-panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mock-row { display: grid; grid-template-columns: 1.5fr 0.9fr 0.8fr; gap: 8px; align-items: center; padding: 9px 12px; font-size: 12px; border-bottom: 1px solid var(--line); }
.mock-row:last-child { border-bottom: 0; }
.mock-row.head { background: var(--navy-900); color: #b9c8de; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.badge { display: inline-block; font-size: 10.5px; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.badge.amber { background: #fdf0d5; color: #9a6410; }
.badge.green { background: #e3f4ea; color: var(--green-700); }
.badge.red { background: #fbe3e3; color: #a12d2d; }
.mock-float {
  position: absolute; left: -28px; bottom: -22px; background: #fff; color: var(--ink-900); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-size: 13px; border: 1px solid var(--line); animation: floaty 6s ease-in-out infinite;
}
.mock-float .ic { width: 34px; height: 34px; border-radius: 10px; background: #e3f4ea; color: var(--green-700); display: grid; place-items: center; font-size: 17px; }
.mock-float small { display: block; color: var(--ink-400); font-size: 11.5px; }
.mock-caption { text-align: right; font-size: 11.5px; color: #93a5bd; margin-top: 12px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Generic sections ---------- */
section { scroll-margin-top: 84px; }
.section { padding: 96px 0; }
.section.alt { background: var(--paper); }
.section-head { max-width: 46rem; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-block; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-600); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; font-weight: 700; color: var(--navy-900); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--ink-600); }

/* Lifecycle */
.flow { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.flow::before { content: ""; position: absolute; left: 7%; right: 7%; top: 31px; height: 2px; background: linear-gradient(90deg, var(--green-400), var(--teal-500)); opacity: 0.45; }
.step { position: relative; text-align: center; padding: 0 4px; }
.step .bubble { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; background: #fff; border: 2px solid var(--green-500); color: var(--green-600); display: grid; place-items: center; font-size: 26px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.step h3 { font-size: 15px; font-weight: 600; color: var(--navy-900); }
.step p { font-size: 13px; color: var(--ink-600); margin-top: 4px; line-height: 1.45; }
.flow-note { text-align: center; color: var(--ink-600); margin-top: 40px; font-size: 17px; }

/* Cards */
.cards { display: grid; gap: 22px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfe3d7; }
.card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 23px; background: linear-gradient(135deg, #e3f4ea, #d6efe9); color: var(--green-700); margin-bottom: 18px; }
.card h3 { font-size: 18px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.card p { color: var(--ink-600); font-size: 15px; }
.card.problem .ic { background: #fdf0d5; color: #9a6410; }

/* Portal */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15; font-weight: 700; color: var(--navy-900); margin: 4px 0 16px; }
.split .intro { font-size: 18px; color: var(--ink-600); }
.checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--ink-700); }
.checks .tick { width: 24px; height: 24px; border-radius: 50%; background: #e3f4ea; color: var(--green-700); display: grid; place-items: center; font-size: 13px; margin-top: 2px; }
.checks strong { color: var(--navy-900); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: center; }
.fine { font-size: 13.5px; color: var(--ink-400); margin-top: 14px; }

.portal-mock { background: #fff; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; }
.pm-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.pm-top img { height: 26px; width: auto; }
.pm-top small { color: var(--ink-400); font-size: 11.5px; }
.pm-body { padding: 18px 20px 22px; background: #f7f9fc; }
.pm-name { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 18px; color: var(--navy-900); }
.pm-tabs { display: flex; gap: 3px; flex-wrap: wrap; margin: 12px 0 14px; border-bottom: 1px solid var(--line); }
.pm-tabs span { font-size: 11.5px; font-weight: 600; color: var(--ink-400); padding: 6px 9px; }
.pm-tabs .on { color: var(--green-600); border-bottom: 2px solid var(--green-600); margin-bottom: -1px; }
.pm-strip { background: var(--navy-900); color: #fff; border-radius: 11px; padding: 11px 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.pm-strip small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #93a5bd; }
.pm-strip b { font-family: "Poppins", sans-serif; font-size: 16px; }
.pm-pills { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.pm-pills span { font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: #e9eef5; color: var(--ink-600); }
.pm-pills .on { background: var(--green-600); color: #fff; }
.pm-table { background: #fff; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.pm-row { display: grid; grid-template-columns: 1.5fr 0.8fr 0.9fr 0.7fr; gap: 6px; padding: 8px 12px; font-size: 11.5px; border-bottom: 1px solid var(--line); align-items: center; }
.pm-row:last-child { border-bottom: 0; }
.pm-row.head { background: var(--navy-900); color: #b9c8de; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.pm-row .due { color: #9a6410; font-weight: 700; text-align: right; }
.pm-row.head .due { color: #b9c8de; }

/* Automation (dark) */
.dark { background: linear-gradient(165deg, var(--navy-950), var(--navy-800)); color: #fff; position: relative; overflow: hidden; }
.dark::before { content: ""; position: absolute; width: 640px; height: 640px; right: -180px; top: -260px; background: radial-gradient(circle, rgba(46, 171, 95, 0.22), transparent 65%); pointer-events: none; }
.dark .kicker { color: var(--green-400); }
.dark h2 { color: #fff; }
.dark .intro { color: #b6c5da; }
.dark .checks li { color: #cbd6e6; }
.dark .checks strong { color: #fff; }
.dark .checks .tick { background: rgba(79, 192, 119, 0.2); color: var(--green-400); }
.email-card { background: #fff; border-radius: 16px; color: var(--ink-900); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 520px; margin-left: auto; }
.email-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: grid; gap: 6px; font-size: 13px; }
.email-head .row { display: grid; grid-template-columns: 44px 1fr; gap: 8px; }
.email-head .k { color: var(--ink-400); }
.email-head .subj { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 15px; margin-top: 4px; }
.email-body { padding: 18px 20px 20px; font-size: 14px; color: var(--ink-700); display: grid; gap: 12px; }
.email-body .tbl { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; font-size: 13px; }
.email-body .tbl div { display: grid; grid-template-columns: 110px 1fr; padding: 8px 12px; border-bottom: 1px solid var(--line); }
.email-body .tbl div:last-child { border-bottom: 0; }
.email-body .tbl span { color: var(--ink-400); }
.email-note { padding: 10px 20px; background: #f7f9fc; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-400); }

/* Control */
.role-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.role-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.role-table th { background: var(--navy-900); color: #cfdbec; font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; padding: 12px 14px; text-align: center; font-weight: 600; }
.role-table th:first-child, .role-table td:first-child { text-align: left; }
.role-table td { padding: 11px 14px; text-align: center; border-bottom: 1px solid var(--line); color: var(--ink-700); }
.role-table tr:last-child td { border-bottom: 0; }
.role-table td:first-child { font-weight: 600; color: var(--navy-900); }
.role-table .y { color: var(--green-600); font-weight: 700; }
.role-table .n { color: #c3cddb; }
.role-table caption { caption-side: bottom; text-align: left; padding: 10px 14px; font-size: 12px; color: var(--ink-400); background: #f7f9fc; border-top: 1px solid var(--line); }

/* Brokers */
.brokers-band { background: linear-gradient(135deg, var(--green-700), var(--teal-500) 60%, var(--navy-800)); color: #fff; border-radius: 28px; padding: 64px 56px; position: relative; overflow: hidden; }
.brokers-band::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 380px; height: 380px; background: url("assets/shield.png") center/contain no-repeat; opacity: 0.07; filter: grayscale(1) brightness(3); }
.brokers-band h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; font-weight: 700; max-width: 22em; }
.brokers-band .intro { margin-top: 16px; font-size: 18px; color: #dcf1e6; max-width: 40em; }
.band-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; position: relative; z-index: 1; }
.band-card { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 16px; padding: 22px; backdrop-filter: blur(4px); }
.band-card .icon { font-size: 24px; color: #bdf0d1; margin-bottom: 10px; }
.band-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.band-card p { font-size: 14.5px; color: #e3f4ea; }
.band-cta { margin-top: 36px; position: relative; z-index: 1; }

/* Contact */
.contact { text-align: center; }
.contact h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--navy-900); }
.contact .intro { color: var(--ink-600); font-size: 18px; max-width: 36em; margin: 16px auto 0; }
.contact .cta-row { justify-content: center; }
.contact-links { display: flex; gap: 14px 30px; flex-wrap: wrap; justify-content: center; margin-top: 32px; font-size: 15px; color: var(--ink-600); }
.contact-links a { color: var(--green-700); font-weight: 600; text-decoration: none; }
.contact-links a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--navy-950); color: #93a5bd; padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.foot-brand img { height: 44px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; }
.foot-brand p { margin-top: 16px; font-size: 14.5px; max-width: 24em; color: #a9b8cd; }
.site-footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* Reveal on scroll (only when JS is running) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 64px 0 80px; }
  .mock { transform: none; }
  .mock-float { left: 12px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .email-card { margin: 0 auto; }
  .cards.c3 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); row-gap: 28px; }
  .flow::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: none; position: absolute; left: 0; right: 0; top: 72px; background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px; flex-direction: column; align-items: stretch; gap: 6px; box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-panel { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-actions { flex-direction: column; align-items: stretch; margin-top: 14px; }
  .nav-actions .btn { width: 100%; padding: 13px; }
}

@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .cards.c3, .cards.c2, .band-cards { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .mock-body { grid-template-columns: 42px 1fr; }
  .mock-float { display: none; }
  .brokers-band { padding: 40px 24px; border-radius: 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .pillars { gap: 8px 18px; }
  .pillars span:not(:last-child)::after { margin-left: 18px; }
  .pm-strip b { font-size: 14px; }
  .pm-row { grid-template-columns: 1.4fr 0.9fr 0.8fr; }
  .pm-row > :nth-child(2) { display: none; }
  .hero-cta .btn { flex: 1 1 100%; }
}
