/* Ported from the design handoff (app/globals.css). Icons are inline Lucide SVGs (.ic). */
:root {
  --navy: #011b32;
  --blue: #004c8f;
  --blue-2: #063259;
  --red: #ed232a;
  --yellow: #ffbf1c;
  --ink: #20242c;
  --muted: #626a76;
  --line: #dce4ec;
  --mist: #f0f6fb;
  --white: #ffffff;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { flex: 0 0 auto; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.utility-bar { background: var(--navy); color: #dbe8f4; font-size: 11px; }
.utility-inner { min-height: 30px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner span:last-child { display: inline-flex; gap: 6px; align-items: center; }
.site-header { position: sticky; z-index: 30; top: 0; background: rgb(255 255 255 / 96%); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { height: 72px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: 196px; height: 56px; object-fit: contain; }
.desktop-nav { display: flex; align-items: stretch; justify-content: center; gap: 1px; flex: 1; height: 100%; }
.desktop-nav > a, .nav-dropdown > button { display: flex; align-items: center; gap: 4px; border: 0; background: transparent; padding: 0 11px; font-size: 12px; font-weight: 600; color: #343b45; cursor: pointer; position: relative; white-space: nowrap; }
.desktop-nav > a::after, .nav-dropdown > button::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px; background: var(--red); transform: scaleX(0); transition: .2s; }
.desktop-nav > a:hover::after, .desktop-nav > a[aria-current]::after, .nav-dropdown:hover > button::after { transform: scaleX(1); }
.nav-dropdown { display: flex; position: relative; }
.nav-dropdown-panel { display: none; position: absolute; top: 66px; left: 0; width: 250px; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 50px rgb(1 27 50 / 15%); }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel { display: grid; }
.nav-dropdown-panel a { display: flex; align-items: center; justify-content: space-between; padding: 11px 10px; border-radius: 8px; font-size: 13px; }
.nav-dropdown-panel a:hover { background: var(--mist); color: var(--blue); }
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border-radius: 8px; border: 1px solid transparent; font-size: 13px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 8px 20px rgb(0 76 143 / 16%); }
.btn-primary:hover { background: var(--blue-2); box-shadow: 0 12px 26px rgb(0 76 143 / 24%); }
.btn-outline { border-color: #b9c6d1; color: var(--blue-2); background: white; }
.btn-outline:hover { border-color: var(--blue); background: var(--mist); }
.btn-white { background: white; border-color: #c9d5df; color: var(--blue-2); }
.header-cta { min-height: 38px; padding-inline: 14px; white-space: nowrap; font-size: 12px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-panel { position: absolute; right: 0; top: 50px; width: min(310px, calc(100vw - 40px)); display: grid; gap: 3px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: 0 18px 50px rgb(1 27 50 / 18%); }
.mobile-panel a, .mobile-panel span { padding: 10px 12px; border-radius: 7px; font-weight: 600; font-size: 14px; }
.mobile-panel a:hover { background: var(--mist); }
.mobile-panel span { color: var(--muted); font-size: 12px; padding-bottom: 3px; }
.mobile-panel .sub-link { padding-left: 24px; }

/* Hero */
.hero { overflow: hidden; background: linear-gradient(120deg, #fff 20%, #f0f6fb 100%); border-bottom: 1px solid var(--line); }
.hero-grid { min-height: 590px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; padding-block: 70px; }
.eyebrow { display: inline-flex; color: var(--red); font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-copy h1, .inner-hero h1 { color: var(--navy); margin: 16px 0 20px; font-size: clamp(42px, 5vw, 66px); line-height: 1.04; letter-spacing: -.05em; max-width: 760px; }
.hero-copy h1 em { color: var(--blue); font-style: normal; position: relative; }
.hero-copy h1 em::after { content: ''; position: absolute; height: 5px; background: var(--red); bottom: -8px; left: 0; width: 72px; }
.hero-copy > p { max-width: 600px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hero-copy .hero-lead { font-size: 20px; font-weight: 700; color: var(--ink); margin: 30px 0 3px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.mini-proof { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: var(--muted); font-size: 11px; }
.mini-proof span { display: flex; gap: 5px; align-items: center; }
.mini-proof svg { width: 14px; height: 14px; color: var(--blue); }

.commerce-visual { min-height: 440px; position: relative; display: grid; place-items: center; }
.commerce-visual::before { content: ''; position: absolute; width: 270px; height: 270px; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff, #d9eafa); box-shadow: 0 20px 80px rgb(0 76 143 / 18%); }
.orbit { position: absolute; border: 1px dashed #9ab8d2; border-radius: 50%; }
.orbit-one { width: 360px; height: 360px; }
.orbit-two { width: 470px; height: 470px; opacity: .55; }
.visual-store { position: relative; z-index: 2; width: 190px; height: 185px; padding-top: 50px; border-radius: 12px 12px 6px 6px; background: white; border: 1px solid #c6d7e5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--blue-2); box-shadow: 0 20px 50px rgb(1 27 50 / 18%); }
.visual-store strong { font-size: 13px; }
.awning { position: absolute; display: flex; top: 0; left: -8px; right: -8px; height: 47px; border-radius: 10px 10px 15px 15px; overflow: hidden; box-shadow: 0 5px 0 rgb(1 27 50 / 12%); }
.awning i { flex: 1; background: var(--blue); }
.awning i:nth-child(even) { background: white; }
.awning i:first-child { background: var(--red); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; min-height: 46px; background: white; border: 1px solid #cad9e5; border-radius: 9px; padding: 9px 12px; color: var(--blue-2); font-size: 12px; font-weight: 700; box-shadow: 0 12px 30px rgb(1 27 50 / 12%); animation: float 5s ease-in-out infinite; }
.float-card svg { color: var(--red); }
.float-card.discover { left: 7%; top: 15%; }
.float-card.enquire { right: 0; top: 20%; animation-delay: -1.2s; }
.float-card.order { right: 8%; bottom: 13%; animation-delay: -2.4s; }
.float-card.ai { left: 4%; bottom: 17%; animation-delay: -3.3s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }

.journey-mini { min-height: 118px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-bottom: 1px solid var(--line); }
.journey-step { display: flex; align-items: center; gap: 10px; position: relative; }
.journey-step > span { width: 42px; height: 42px; border: 1px solid #cbd8e3; color: var(--blue); border-radius: 50%; display: grid; place-items: center; }
.journey-step strong { font-size: 13px; color: var(--blue-2); }
.journey-arrow { position: absolute; right: 18px; color: #9aa8b5; width: 16px; height: 16px; }
.section { padding-block: 88px; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .ai-story h2, .ready-card h2, .inner-section h2 { font-size: clamp(30px, 3.5vw, 44px); letter-spacing: -.04em; line-height: 1.1; color: var(--navy); margin: 10px 0 8px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 14px; }

/* Goal cards */
.task-section { background: #fff; }
.task-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.task-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; min-height: 230px; display: flex; flex-direction: column; gap: 22px; transition: .25s; }
.task-card > div { display: flex; flex-direction: column; flex: 1; }
.task-card:hover { transform: translateY(-5px); border-color: #aac6dc; box-shadow: 0 18px 45px rgb(1 27 50 / 8%); }
.icon-box { width: 48px; height: 48px; background: var(--mist); color: var(--blue); border-radius: 12px; display: grid; place-items: center; }
.task-card h3, .business-card h3, .pillar-card h3 { font-size: 17px; color: var(--navy); margin: 0 0 9px; }
.task-card p, .business-card p { color: var(--muted); line-height: 1.6; font-size: 13px; margin: 0 0 14px; }
.task-card strong, .business-card strong, .pillar-card a { margin-top: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--blue); }

/* Business type cards */
.business-section { background: #f9fbfd; border-block: 1px solid var(--line); }
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.business-card { border: 1px solid var(--line); background: white; border-radius: var(--radius); overflow: hidden; transition: .25s; display: flex; flex-direction: column; }
.business-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgb(1 27 50 / 9%); }
.business-illustration { height: 160px; display: grid; place-items: center; position: relative; color: var(--blue-2); }
.tone-mint .business-illustration { background: #def7ec; }
.tone-blue .business-illustration { background: #e1eefa; }
.tone-yellow .business-illustration { background: #fff3ce; }
.tone-red .business-illustration { background: #fbd5d5; }
.business-card > div:last-child { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.business-card p { min-height: 60px; }
.signal { position: absolute; width: 18px; height: 18px; border: 2px solid currentColor; border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; opacity: .35; }
.signal-a { transform: rotate(-45deg); margin: -53px -80px 0 0; }
.signal-b { width: 30px; height: 30px; transform: rotate(-45deg); margin: -55px -90px 0 0; }

/* Brand story */
.brand-story { padding-block: 38px; background: #f9fbfd; }
.brand-story figure { position: relative; margin: 0; overflow: hidden; min-height: 360px; border-radius: 20px; background: var(--navy); }
.brand-story img { width: 100%; height: 100%; min-height: 360px; position: absolute; inset: 0; object-fit: cover; }
.brand-story figcaption { position: absolute; left: 32px; right: 32px; bottom: 28px; max-width: 540px; padding: 22px; border-left: 4px solid var(--red); background: rgb(1 27 50 / 88%); backdrop-filter: blur(8px); color: white; display: flex; flex-direction: column; gap: 7px; }
.brand-story figcaption span { color: #adc9df; text-transform: uppercase; font-weight: 800; font-size: 10px; letter-spacing: .11em; }
.brand-story figcaption strong { font-size: 17px; line-height: 1.45; }

/* Platform pillars */
.platform-section { background: white; }
.pillar-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar-card { min-height: 300px; padding: 26px 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.pillar-card:last-child { border: 0; }
.pillar-card > svg { color: var(--blue); width: 32px; height: 32px; margin-bottom: 20px; }
.pillar-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; color: var(--muted); font-size: 12px; }
.pillar-card li::before { content: '•'; color: var(--red); margin-right: 7px; }

/* AI story */
.ai-story { background: var(--navy); color: white; }
.ai-story .eyebrow { color: #ff7479; }
.ai-story h2 { color: white; }
.ai-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.customer-question { margin: 25px 0; display: flex; gap: 12px; align-items: center; background: #0b3657; border: 1px solid #285573; padding: 18px; border-radius: 12px; font-size: 17px; }
.customer-question svg { color: var(--yellow); }
.ai-steps { padding: 0; margin: 0; list-style: none; display: grid; gap: 13px; }
.ai-steps li { display: flex; gap: 13px; align-items: center; }
.ai-steps li > span { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.ai-steps div { display: flex; flex-direction: column; }
.ai-steps small { color: #b8cbda; margin-top: 2px; }
.ai-profile { background: white; color: var(--ink); border-radius: 20px; padding: 30px; box-shadow: 0 24px 80px rgb(0 0 0 / 25%); }
.ai-profile-top { display: flex; gap: 13px; color: var(--navy); }
.ai-profile-top > svg { color: var(--red); }
.ai-profile-top div { display: flex; flex-direction: column; }
.ai-profile-top small { color: var(--muted); margin-top: 5px; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 25px 0; }
.profile-grid div { min-height: 92px; border: 1px solid var(--line); border-radius: 10px; padding: 13px; display: flex; flex-direction: column; gap: 11px; font-size: 11px; font-weight: 700; color: var(--blue-2); }
.profile-grid svg { color: var(--blue); width: 22px; height: 22px; }
.ai-profile .btn { width: 100%; }

/* Numbers */
.numbers { background: #f0f6fb; border-bottom: 1px solid var(--line); }
.numbers-grid { min-height: 140px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.numbers-grid > div { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; align-items: center; padding: 15px 30px; border-right: 1px solid #cbdbe8; }
.numbers-grid > div:last-child { border: 0; }
.numbers-grid svg { grid-row: 1 / 3; color: var(--blue); }
.numbers-grid strong { color: var(--navy); font-size: 19px; }
.numbers-grid span { color: var(--muted); font-size: 11px; }

/* Ready + trust */
.ready-section { padding-block: 70px 30px; }
.ready-card { padding: 30px 36px; display: grid; grid-template-columns: 80px 1fr auto; gap: 28px; align-items: center; background: linear-gradient(110deg, #e8f2fa 0%, #fff 55%, #fbd5d5 150%); border: 1px solid var(--line); border-radius: 18px; }
.ready-card h2 { font-size: 30px; margin: 5px 0; }
.ready-card p { color: var(--muted); margin: 0; font-size: 13px; }
.ready-icon { width: 76px; height: 76px; border-radius: 50%; color: var(--blue); background: white; display: grid; place-items: center; box-shadow: 0 9px 25px rgb(1 27 50 / 10%); }
.ready-icon svg { width: 36px; height: 36px; }
.ready-actions { display: grid; gap: 8px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; padding: 24px 0; border-block: 1px solid var(--line); }
.trust-strip > div { display: flex; justify-content: center; gap: 12px; align-items: center; }
.trust-strip svg { color: var(--blue); }
.trust-strip span { display: flex; flex-direction: column; }
.trust-strip strong { font-size: 12px; color: var(--blue-2); }
.trust-strip small { color: var(--muted); margin-top: 3px; }

/* Footer */
.site-footer { margin-top: 50px; background: var(--navy); color: #c7d5df; padding: 54px 0 20px; }
.site-footer .brand-logo { width: 238px; height: 68px; border-radius: 4px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-grid strong { color: white; }
.footer-brand p { max-width: 320px; line-height: 1.7; margin: 0; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #29465c; display: flex; justify-content: space-between; font-size: 10px; }
.footer-bottom div { display: flex; gap: 20px; }

/* Inner pages */
.breadcrumb { color: var(--muted); font-size: 11px; display: flex; align-items: center; gap: 7px; margin-bottom: 25px; }
.breadcrumb a { color: var(--blue); }
.inner-hero { background: linear-gradient(120deg, white, var(--mist)); border-bottom: 1px solid var(--line); padding-block: 28px 70px; overflow: hidden; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; min-height: 480px; }
.inner-hero h1 { font-size: clamp(42px, 5vw, 64px); }
.inner-hero p { color: var(--muted); line-height: 1.75; max-width: 560px; }
.page-visual { min-height: 390px; position: relative; border-radius: 24px; background: var(--navy); overflow: hidden; padding: 40px; display: grid; place-items: center; color: white; }
.page-visual::before { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px dashed #5f7f98; }
.page-visual-main { width: 230px; height: 280px; border-radius: 24px; background: white; color: var(--navy); position: relative; z-index: 2; box-shadow: 0 28px 50px rgb(0 0 0 / 25%); padding: 24px 18px; display: flex; flex-direction: column; gap: 12px; }
.page-visual-main::before { content: ''; width: 54px; height: 5px; background: #cad7e1; border-radius: 4px; margin: -11px auto 5px; }
.mock-line { height: 9px; border-radius: 9px; background: #e3eaf0; }
.mock-line.short { width: 60%; }
.mock-image { flex: 1; border-radius: 12px; background: linear-gradient(135deg, #d9e9f6, #fff3ce); display: grid; place-items: center; color: var(--blue); }
.mock-button { height: 36px; background: var(--blue); color: white; border-radius: 7px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; font-weight: 700; }
.visual-bubble { position: absolute; z-index: 3; background: white; color: var(--navy); border-radius: 10px; padding: 12px 14px; box-shadow: 0 12px 30px rgb(0 0 0 / 18%); font-size: 11px; font-weight: 700; display: flex; gap: 8px; align-items: center; }
.visual-bubble.one { left: 6%; top: 18%; }
.visual-bubble.two { right: 5%; bottom: 16%; }
.visual-bubble svg { color: var(--red); }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 14px; margin-top: -35px; z-index: 5; position: relative; background: white; box-shadow: 0 14px 40px rgb(1 27 50 / 8%); }
.metric-row > div { min-height: 105px; display: flex; gap: 12px; align-items: center; justify-content: center; border-right: 1px solid var(--line); padding: 0 12px; }
.metric-row > div:last-child { border: 0; }
.metric-row svg { color: var(--blue); }
.metric-row span { display: flex; flex-direction: column; }
.metric-row strong { color: var(--navy); }
.metric-row small { color: var(--muted); margin-top: 4px; }
.inner-section { padding-block: 85px; }
.inner-section.alt { background: #f8fbfd; border-block: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; min-height: 260px; display: flex; flex-direction: column; background: white; transition: .25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgb(1 27 50 / 8%); }
.feature-card > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--blue); }
.feature-card h3 { color: var(--navy); margin: 22px 0 8px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.feature-card small { margin-top: auto; color: var(--blue); font-weight: 700; }
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 38px; }
.flow-step { position: relative; text-align: center; }
.flow-step:not(:last-child)::after { content: '→'; position: absolute; right: -16px; top: 24px; color: #9aabba; }
.flow-step span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; border: 1px solid #b9cedd; color: var(--blue); background: white; }
.flow-step strong { display: block; font-size: 12px; color: var(--navy); }
.flow-step small { display: block; font-size: 10px; color: var(--muted); margin-top: 4px; }
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 35px; }
.story-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.story-card > span { color: var(--red); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.story-card h3 { color: var(--navy); font-size: 16px; margin: 8px 0; }
.story-card p { color: var(--muted); line-height: 1.6; font-size: 12px; margin: 0; }
.story-demo { min-height: 110px; margin-top: 20px; border-radius: 10px; background: var(--mist); padding: 14px; display: grid; gap: 7px; }
.story-demo i { height: 8px; background: #c9dbe8; border-radius: 5px; }
.story-demo i:nth-child(2) { width: 72%; }
.story-demo b { align-self: end; color: var(--blue); font-size: 11px; }
.testimonial-band { background: var(--navy); color: white; border-radius: 18px; padding: 36px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; align-items: center; }
.testimonial-band h2 { color: white; margin: 0; }
.quote { margin: 0; border-left: 2px solid var(--red); padding-left: 18px; font-size: 13px; line-height: 1.7; color: #d5e0e8; }
.quote strong { display: block; color: white; margin-top: 10px; }

/* Academy */
.academy-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.course-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px; min-height: 290px; display: flex; flex-direction: column; background: white; }
.course-card .number { width: 26px; height: 26px; background: var(--blue); color: white; display: grid; place-items: center; border-radius: 50%; font-size: 11px; font-weight: 800; }
.course-card .course-icon { width: 66px; height: 66px; background: var(--mist); color: var(--blue); border-radius: 50%; display: grid; place-items: center; margin: 18px auto; }
.course-card h3 { color: var(--navy); text-align: center; font-size: 15px; margin: 0; }
.course-card p { color: var(--muted); font-size: 11px; line-height: 1.55; text-align: center; }
.course-card footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .header-cta { margin-left: auto; }
  .hero-grid, .inner-hero-grid { gap: 35px; }
  .task-grid, .business-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-card { border-bottom: 1px solid var(--line); }
  .academy-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .utility-inner span:first-child { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { height: 64px; gap: 10px; }
  .brand-logo { width: 168px; height: 48px; }
  .header-cta { display: none; }
  .hero-grid, .inner-hero-grid, .ai-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 52px 30px; }
  .hero-copy h1, .inner-hero h1 { font-size: 42px; }
  .commerce-visual { min-height: 390px; }
  .orbit-two { width: 380px; height: 380px; }
  .float-card.enquire { right: 0; }
  .float-card.discover { left: 0; }
  .journey-mini { grid-template-columns: repeat(2, 1fr); padding-block: 20px; gap: 20px; }
  .journey-arrow { display: none; }
  .section, .inner-section { padding-block: 65px; }
  .task-grid, .business-grid, .feature-grid, .story-grid { grid-template-columns: 1fr; }
  .task-card { min-height: auto; }
  .business-card { display: grid; grid-template-columns: 42% 1fr; }
  .business-illustration { height: 100%; min-height: 190px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; border-right: 0; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid, .metric-row { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid > div, .metric-row > div { border-bottom: 1px solid var(--line); }
  .ready-card { grid-template-columns: 1fr; text-align: center; }
  .ready-icon { margin: auto; }
  .trust-strip { grid-template-columns: 1fr; gap: 25px; }
  .trust-strip > div { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .flow { grid-template-columns: 1fr; gap: 22px; }
  .flow-step { display: grid; grid-template-columns: 60px 1fr; text-align: left; align-items: center; }
  .flow-step span { grid-row: 1 / 3; margin: 0; }
  .flow-step:not(:last-child)::after { content: '↓'; left: 23px; right: auto; top: 60px; }
  .testimonial-band { grid-template-columns: 1fr; }
  .academy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-copy h1, .inner-hero h1 { font-size: 36px; }
  .brand-logo { width: 145px; height: 43px; }
  .site-footer .brand-logo { width: 220px; height: 63px; }
  .hero-actions .btn { width: 100%; }
  .commerce-visual { transform: scale(.88); margin: -20px; }
  .business-card { grid-template-columns: 1fr; }
  .business-illustration { min-height: 145px; }
  .numbers-grid, .metric-row, .footer-grid, .academy-grid { grid-template-columns: 1fr; }
  .numbers-grid > div { border-right: 0; }
  .footer-bottom { flex-direction: column; gap: 15px; }
  .profile-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
