:root {
  --ink: #081426;
  --ink-2: #101f35;
  --paper: #f3efe6;
  --white: #fffdf8;
  --muted: #687386;
  --line: rgba(8, 20, 38, .14);
  --line-light: rgba(255,255,255,.14);
  --blue: #2f6bff;
  --coral: #ff6b4a;
  --lime: #b6ee62;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(8,20,38,.12);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
::selection { background: var(--blue); color: white; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; padding: .8rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.dark { background: var(--ink); color: white; }
.white { background: var(--white); }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; color: var(--blue); }
.dark .eyebrow { color: #8aa9ff; }
.display { margin: 0; max-width: 1000px; font-family: var(--serif); font-weight: 500; font-size: clamp(3.2rem, 7.3vw, 7rem); line-height: .94; letter-spacing: -.055em; }
.display em { color: var(--blue); font-weight: 500; }
.title { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; letter-spacing: -.045em; }
.subtitle { max-width: 760px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; color: var(--muted); }
.dark .subtitle, .dark .muted { color: #b8c1cf; }
.lead { font-size: clamp(1.25rem, 2.1vw, 1.8rem); line-height: 1.5; }
.muted { color: var(--muted); }
.kicker { font-size: .8rem; text-transform: uppercase; font-weight: 800; letter-spacing: .12em; }
.rule { height: 1px; background: var(--line); }
.dark .rule { background: var(--line-light); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 54px; }
.section-head .title { max-width: 820px; }
.section-head .subtitle { max-width: 510px; margin: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(243,239,230,.92); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-shell { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; gap: 11px; align-items: center; flex: 0 0 auto; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--ink); font-family: var(--serif); font-size: 1.45rem; font-style: italic; }
.brand-copy { font-size: .72rem; letter-spacing: .17em; font-weight: 800; line-height: 1.3; }
.brand-copy span { display: block; color: var(--muted); font-size: .58rem; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .91rem; font-weight: 700; }
.main-nav a:not(.button) { position: relative; }
.main-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--blue); transition: right .2s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.lang-switch { display: inline-flex; border-left: 1px solid var(--line); padding-left: 18px; gap: 6px; font-size: .72rem; }
.lang-switch a { padding: 5px 7px; border-radius: 7px; }
.lang-switch a[aria-current="true"] { background: var(--ink); color: white; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: transparent; }
.mobile-nav { display: none; }

/* Buttons and tags */
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 50px; padding: 0 20px; border: 1px solid var(--ink); border-radius: 999px; font-size: .88rem; font-weight: 800; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--blue); border-color: var(--blue); }
.button.ink { color: white; background: var(--ink); border-color: var(--ink); }
.button.ghost { background: transparent; }
.dark .button.ghost { border-color: rgba(255,255,255,.4); color: white; }
.button.light { background: white; border-color: white; color: var(--ink); }
.link-arrow { display: inline-flex; gap: 10px; align-items: center; color: var(--blue); font-weight: 800; }
.tag { display: inline-flex; padding: 8px 11px; border-radius: 999px; border: 1px solid var(--line); font-size: .72rem; font-weight: 750; }
.dark .tag { border-color: var(--line-light); color: #cbd3df; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--ink); color: white; padding: 72px 0 82px; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom,black,transparent 88%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
.hero .display { font-size: clamp(3.35rem, 6vw, 6.25rem); }
.hero .display em { color: #9bb3ff; }
.hero-copy { margin: 28px 0 30px; max-width: 670px; color: #bac4d1; font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.65; }
.trust-line { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 24px; color: #9eaabc; font-size: .77rem; font-weight: 750; }
.trust-line span::before { content: "•"; color: var(--lime); margin-right: 8px; }
.journey-lab { position: relative; background: var(--paper); color: var(--ink); border-radius: 30px; box-shadow: 0 38px 90px rgba(0,0,0,.34); padding: 24px; transform: rotate(1.3deg); }
.journey-lab::after { content:""; position:absolute; width:86px; height:86px; right:-30px; top:-26px; border-radius:50%; background:var(--coral); filter:blur(.2px); z-index:-1; }
.lab-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.lab-top strong { font-size: .72rem; letter-spacing: .13em; }
.live-dot { font-size: .68rem; color: var(--muted); }
.live-dot::before { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:#2dc66d; margin-right:6px; }
.journey-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.journey-tab { border: 1px solid var(--line); background: transparent; padding: 9px 11px; border-radius: 999px; cursor: pointer; font-size: .71rem; font-weight: 800; }
.journey-tab[aria-selected="true"] { background: var(--ink); color: white; border-color: var(--ink); }
.journey-card { min-height: 270px; padding: 24px; border-radius: 20px; background: white; display: grid; align-content: space-between; }
.journey-card:focus { outline: none; }
.journey-industry { font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.journey-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-items: center; }
.journey-step { padding: 14px 8px; border-radius: 13px; background: #f5f3ee; text-align: center; font-size: .67rem; font-weight: 800; }
.journey-step.highlight { background: var(--blue); color: white; }
.journey-action { margin-top: 16px; display:flex; justify-content:space-between; align-items:center; font-size:.75rem; font-weight:800; }
.journey-action b { color:var(--coral); }

/* Cards */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .22s, box-shadow .22s; }
.dark .card { color:var(--ink); }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #e8eeff; color: var(--blue); font-weight: 900; }
.card h3 { margin: 22px 0 10px; font-size: 1.25rem; }
.card p { color: var(--muted); line-height: 1.65; }
.service-card { min-height: 300px; display:flex; flex-direction:column; justify-content:space-between; }
.service-card .link-arrow { margin-top: 28px; }
.industry-card { position:relative; overflow:hidden; min-height:270px; display:flex; flex-direction:column; justify-content:space-between; }
.industry-card::before { content:""; width:115px; height:115px; border-radius:50%; position:absolute; right:-35px; top:-35px; background:var(--card-accent,#e8eeff); }
.industry-card .journey-pill { align-self:flex-start; padding:9px 12px; background:var(--ink); color:white; border-radius:999px; font-size:.7rem; font-weight:800; }
.industry-card ul { margin:14px 0 0; padding:0; list-style:none; color:var(--muted); font-size:.86rem; line-height:1.9; }
.grid-benefits { display:grid; gap:12px; }
.benefit-item { display:grid; grid-template-columns:42px 1fr; gap:14px; align-items:center; padding:18px; border:1px solid var(--line); border-radius:16px; background:var(--white); }
.benefit-item span { display:grid; place-items:center; width:42px; height:42px; border-radius:13px; background:#e8eeff; color:var(--blue); font-size:.72rem; font-weight:900; }
.benefit-item strong { line-height:1.4; }

/* Projects */
.project-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.project { background:var(--white); border:1px solid var(--line); border-radius:28px; overflow:hidden; }
.project-media { aspect-ratio: 16/10; overflow:hidden; background:#dfe3e9; }
.project-media img { width:100%; height:100%; object-fit:cover; object-position:top; transition:transform .5s; }
.project:hover .project-media img { transform:scale(1.025); }
.project-copy { padding:28px; }
.project-type { display:inline-flex; align-items:center; gap:7px; color:var(--muted); font-size:.7rem; text-transform:uppercase; letter-spacing:.12em; font-weight:850; }
.project-type::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--lime); }
.project-type.solution::before { background:var(--coral); }
.project h3 { font-family:var(--serif); font-weight:500; font-size:2.1rem; margin:14px 0 9px; }
.project p { color:var(--muted); line-height:1.6; }
.project-links { display:flex; flex-wrap:wrap; gap:16px; margin-top:22px; font-size:.83rem; font-weight:800; }
.solution-rail { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin-top:22px; }
.solution-chip { display:grid; grid-template-columns:1fr auto; gap:5px 20px; align-items:center; padding:20px 22px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.45); transition:transform .2s, background .2s; }
.solution-chip:hover { transform:translateY(-3px); background:var(--white); }
.solution-chip span, .solution-chip small { grid-column:1; color:var(--muted); }
.solution-chip span { font-size:.67rem; text-transform:uppercase; letter-spacing:.12em; font-weight:850; }
.solution-chip strong { grid-column:1; font-family:var(--serif); font-size:1.45rem; font-weight:500; }
.solution-chip b { grid-column:2; grid-row:1/4; color:var(--blue); font-size:1.2rem; }
.section-link { margin:30px 0 0; }

/* Proof strip */
.proof-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.proof-grid { display:grid; grid-template-columns:1.2fr repeat(3,1fr); }
.proof-item { padding:28px 24px; border-right:1px solid var(--line); }
.proof-item:last-child { border:0; }
.proof-item strong { display:block; font-family:var(--serif); font-size:2rem; font-weight:500; }
.proof-item span { color:var(--muted); font-size:.76rem; }

/* Steps, quote, CTA */
.step-list { counter-reset:steps; }
.step { display:grid; grid-template-columns:80px 1fr 1.1fr; gap:30px; align-items:start; padding:30px 0; border-top:1px solid var(--line); }
.step::before { counter-increment:steps; content:"0" counter(steps); color:var(--blue); font-weight:900; }
.step h3 { margin:0; font-family:var(--serif); font-size:1.7rem; font-weight:500; }
.step p { margin:0; color:var(--muted); line-height:1.65; }
.founder { display:grid; grid-template-columns:.85fr 1.15fr; gap:40px; background:#dde6ff; border-radius:32px; padding:48px; }
.founder-note { min-height:320px; border-radius:22px; background:var(--ink); color:white; display:flex; flex-direction:column; justify-content:flex-end; gap:7px; padding:30px; overflow:hidden; position:relative; }
.founder-note::before { content:""; position:absolute; width:190px; height:190px; border:42px solid rgba(47,107,255,.42); border-radius:50%; right:-55px; top:-70px; }
.founder-note strong { position:relative; font-family:var(--serif); font-size:2.1rem; line-height:1; font-weight:500; }
.founder-note p { position:relative; margin:15px 0 0; color:#aeb9ca; }
.founder blockquote { margin:0 0 28px; font-family:var(--serif); font-size:clamp(2rem,4vw,3.8rem); line-height:1.05; letter-spacing:-.04em; }
.cta-band { position:relative; overflow:hidden; background:var(--blue); color:white; border-radius:34px; padding:70px; }
.cta-band::after { content:""; width:230px; height:230px; border:50px solid rgba(255,255,255,.12); border-radius:50%; position:absolute; right:-50px; bottom:-90px; }
.cta-band .title { max-width:820px; }
.cta-band p { color:#dce5ff; max-width:620px; line-height:1.7; }
.fit-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.decision-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; overflow:hidden; border:1px solid var(--line); border-radius:24px; background:var(--line); }
.decision-grid > div { background:var(--white); padding:28px; }
.decision-grid h3 { margin:22px 0 0; font-family:var(--serif); font-size:1.35rem; line-height:1.35; font-weight:500; }

/* Subpage hero / breadcrumbs */
.subhero { background:var(--ink); color:white; padding:34px 0 90px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:54px; color:#93a0b2; font-size:.75rem; }
.breadcrumbs span::before { content:"/"; margin-right:8px; }
.subhero .title { max-width:980px; font-size:clamp(3rem,6vw,6rem); }
.subhero .subtitle { color:#b8c1ce; margin-top:24px; }
.subhero-actions { margin-top:30px; display:flex; flex-wrap:wrap; gap:12px; }
.meta-strip { display:flex; flex-wrap:wrap; gap:10px 28px; margin-top:38px; color:#aeb8c7; font-size:.78rem; }
.meta-strip b { color:white; }
.article-hero { padding-bottom:72px; }

/* Rich content */
.content { font-size:1.05rem; line-height:1.78; }
.content h2 { font-family:var(--serif); font-size:clamp(2rem,4vw,3.3rem); line-height:1.08; font-weight:500; letter-spacing:-.035em; margin:72px 0 22px; }
.content h3 { font-size:1.3rem; margin:38px 0 12px; }
.content p, .content li { color:#38465a; }
.content a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.content ul, .content ol { padding-left:1.3rem; }
.content li { margin:.55rem 0; }
.content .callout { margin:40px 0; background:#e7ecf9; border-left:4px solid var(--blue); padding:24px 28px; border-radius:0 18px 18px 0; }
.content .callout p { margin:0; }
.content .toc { background:white; border:1px solid var(--line); padding:28px; border-radius:22px; }
.content .toc a { text-decoration:none; }
.sidebar-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:72px; align-items:start; }
.sidebar { position:sticky; top:110px; }
.sidebar-box { padding:24px; background:white; border:1px solid var(--line); border-radius:20px; margin-bottom:18px; }
.sidebar-box h3 { margin:0 0 12px; font-size:1rem; }
.sidebar-box p { color:var(--muted); font-size:.86rem; line-height:1.55; }
.check-list { display:grid; gap:12px; list-style:none; padding:0; margin:0; }
.check-list li { display:flex; gap:12px; color:#38465a; }
.check-list li::before { content:"✓"; flex:0 0 auto; width:22px; height:22px; display:grid; place-items:center; border-radius:50%; background:#e4edff; color:var(--blue); font-weight:900; font-size:.72rem; }

/* FAQ */
.faq { display:grid; gap:10px; }
.faq details { border-top:1px solid var(--line); padding:22px 0; }
.faq summary { cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:24px; font-weight:800; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color:var(--blue); font-size:1.3rem; }
.faq details[open] summary::after { content:"−"; }
.faq details p { max-width:760px; color:var(--muted); line-height:1.7; }

/* City scoring */
.score-table { width:100%; border-collapse:collapse; background:white; border-radius:20px; overflow:hidden; font-size:.86rem; }
.score-table th, .score-table td { padding:14px 16px; text-align:left; border-bottom:1px solid var(--line); }
.score-table th { background:var(--ink); color:white; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; }
.score { font-weight:900; color:var(--blue); }
.tier { display:inline-block; padding:5px 8px; border-radius:999px; background:#e7edff; font-size:.65rem; font-weight:850; }
.tier.t2 { background:#fff0e7; color:#9a3a24; }
.tier.t3 { background:#eef0f3; color:#596273; }

/* Forms */
.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:48px; }
.contact-panel { background:var(--ink); color:white; border-radius:28px; padding:38px; }
.contact-panel h2 { font-family:var(--serif); font-size:2.6rem; font-weight:500; margin:0 0 18px; }
.contact-panel p { color:#b8c1ce; line-height:1.7; }
.contact-details { display:grid; gap:13px; margin-top:30px; }
.contact-details a { color:#d8e1ef; }
.contact-flow-note { display:grid; gap:9px; margin:28px 0; padding:20px; border:1px solid var(--line-light); border-radius:18px; background:rgba(255,255,255,.04); }
.contact-flow-note span { color:#9eabba; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.contact-flow-note strong { display:flex; gap:10px; align-items:center; font-size:.9rem; }
.contact-flow-note strong::before { content:"✓"; display:grid; place-items:center; width:24px; height:24px; border-radius:50%; background:#25d366; color:#062712; font-size:.7rem; }
.form { background:white; border-radius:28px; padding:38px; border:1px solid var(--line); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.75rem; font-weight:800; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); border-radius:12px; background:#faf9f5; padding:14px 15px; color:var(--ink); }
.field textarea { min-height:140px; resize:vertical; }
.consent { display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:.75rem; line-height:1.5; }
.consent input { margin-top:3px; }
.button.whatsapp-submit { width:100%; color:#062712; background:#25d366; border-color:#25d366; }
.form-note { margin:10px 0 0; color:var(--muted); text-align:center; font-size:.72rem; line-height:1.5; }

/* Footer */
.site-footer { background:var(--ink); color:white; padding:74px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(4,1fr); gap:34px; }
.footer-brand p { color:#9eabba; max-width:310px; line-height:1.65; }
.site-footer h3 { font-size:.68rem; letter-spacing:.13em; text-transform:uppercase; color:#8695a9; margin:0 0 18px; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:11px; font-size:.83rem; color:#d6dce5; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:60px; padding-top:24px; border-top:1px solid var(--line-light); color:#8290a5; font-size:.72rem; }
.whatsapp-float { position:fixed; right:22px; bottom:22px; z-index:40; display:inline-flex; align-items:center; gap:10px; min-height:54px; padding:7px 18px 7px 8px; border:1px solid rgba(0,0,0,.12); border-radius:999px; background:#25d366; color:#062712; box-shadow:0 16px 40px rgba(8,20,38,.28); font-size:.82rem; font-weight:900; transition:transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform:translateY(-3px); box-shadow:0 20px 48px rgba(8,20,38,.34); }
.whatsapp-mark { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:#fff; color:#128c4b; font-size:.68rem; letter-spacing:-.02em; }

/* Misc */
.logo-row { display:flex; flex-wrap:wrap; gap:10px; }
.logo-chip { border:1px solid var(--line); padding:12px 15px; border-radius:10px; font-size:.72rem; font-weight:850; letter-spacing:.04em; }
.stat { font-family:var(--serif); font-size:3rem; }
.filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.filter { border:1px solid var(--line); background:transparent; padding:9px 13px; border-radius:999px; cursor:pointer; font-size:.72rem; font-weight:800; }
.filter.active { background:var(--ink); color:white; }
.visually-hidden { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

@media (max-width: 1000px) {
  .main-nav > a:not(.button), .main-nav .lang-switch { display:none; }
  .main-nav .button { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .mobile-nav { position:fixed; inset:82px 0 0; z-index:45; height:calc(100dvh - 82px); background:var(--paper); padding:24px 20px 100px; overflow:auto; overscroll-behavior:contain; }
  .mobile-nav.open { display:block; }
  .mobile-nav a { display:flex; justify-content:space-between; padding:18px 0; border-bottom:1px solid var(--line); font-family:var(--serif); font-size:1.8rem; }
  .mobile-nav .mobile-small { font-family:var(--sans); font-size:.85rem; }
  .hero-grid, .contact-grid { grid-template-columns:1fr; }
  .journey-lab { max-width:650px; transform:none; }
  .grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns:1.6fr repeat(2,1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top:18px; }
  .sidebar-layout { grid-template-columns:1fr; }
  .sidebar { position:static; }
}

@media (max-width: 700px) {
  .container, .narrow { width:min(100% - 28px,var(--max)); }
  .section { padding:72px 0; }
  .section-sm { padding:52px 0; }
  .nav-shell { height:70px; }
  .mobile-nav { inset:70px 0 0; }
  .brand-mark { width:34px; height:34px; }
  .brand-copy { font-size:.62rem; }
  .hero { padding:48px 0 58px; }
  .hero-grid { gap:38px; }
  .hero .display { font-size:clamp(2.75rem,12vw,4rem); line-height:.98; }
  .hero-copy { font-size:1rem; }
  .hero-actions { display:grid; }
  .hero-actions .button { width:100%; }
  .journey-lab { padding:16px; border-radius:22px; }
  .journey-card { padding:18px; min-height:228px; }
  .journey-industry { font-size:1.8rem; }
  .journey-steps { gap:5px; }
  .journey-step { font-size:.58rem; padding:12px 5px; }
  .section-head { display:block; margin-bottom:36px; }
  .section-head .subtitle { margin-top:18px; }
  .grid-2, .grid-3, .grid-4, .project-grid, .founder, .solution-rail, .fit-grid, .decision-grid { grid-template-columns:1fr; }
  .proof-grid { grid-template-columns:1fr 1fr; }
  .proof-item:nth-child(2) { border-right:0; }
  .proof-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .step { grid-template-columns:48px 1fr; gap:15px; }
  .step p { grid-column:2; }
  .founder { padding:24px; }
  .founder-note { min-height:250px; }
  .cta-band { padding:42px 24px; border-radius:24px; }
  .subhero { padding:25px 0 64px; }
  .breadcrumbs { margin-bottom:38px; }
  .subhero .title { font-size:clamp(2.8rem,14vw,4.5rem); }
  .meta-strip { display:grid; gap:9px; }
  .score-table { display:block; overflow-x:auto; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .form, .contact-panel { padding:24px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; margin-bottom:20px; }
  .footer-bottom { display:block; line-height:1.7; padding-bottom:72px; }
  .whatsapp-float { right:12px; bottom:12px; min-height:52px; padding-right:15px; }
  .whatsapp-mark { width:38px; height:38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; }
}
