:root {
    --navy: #071d3c;
    --navy-2: #0d2c57;
    --blue: #2675e8;
    --sky: #60c9f2;
    --teal: #35c7b4;
    --yellow: #ffc928;
    --orange: #ff7a3d;
    --pink: #ef4c91;
    --purple: #7e5bef;
    --green: #52b85a;
    --ink: #0b1c36;
    --muted: #607089;
    --soft: #f5f7fb;
    --soft-blue: #edf5ff;
    --line: #dfe6f0;
    --white: #ffffff;
    --shadow-sm: 0 12px 35px rgba(7, 29, 60, 0.08);
    --shadow: 0 28px 70px rgba(7, 29, 60, 0.14);
    --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 0;
    height: 3px;
    z-index: 5000;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--yellow), var(--pink));
}

.top-note {
    position: relative;
    z-index: 2300;
    color: #fff;
    background: var(--navy);
    font-size: .78rem;
}
.top-note-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.top-note span { color: rgba(255,255,255,.78); font-weight: 600; }
.top-note i { color: var(--yellow); margin-right: 6px; }
.top-note a { color: #fff; text-decoration: none; font-weight: 700; }
.top-note a i { color: inherit; margin: 0 0 0 5px; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 2200;
    height: 78px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(223,230,240,.8);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, height .25s ease;
}
.site-nav.scrolled { box-shadow: 0 10px 35px rgba(7,29,60,.08); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand-mark {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(7,29,60,.08);
    overflow: hidden;
}
.brand-mark img { width: 43px; height: 43px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: "Space Grotesk", sans-serif; font-size: 1.08rem; letter-spacing: -.04em; }
.brand-copy small { margin-top: 6px; color: var(--blue); font-size: .6rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { position: relative; padding: 28px 0 26px; color: #42516b; text-decoration: none; font-size: .82rem; font-weight: 700; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; border-radius: 2px; background: var(--blue); transition: .22s ease; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-call { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-size: .78rem; font-weight: 700; }
.nav-call i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--soft-blue); }
.nav-cta, .mobile-menu button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 12px;
    color: #fff;
    background: var(--navy);
    font-size: .8rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(7,29,60,.16);
    transition: .22s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--blue); }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; font-size: 1.5rem; }
.mobile-menu {
    position: fixed;
    z-index: 2100;
    top: 78px;
    left: 0;
    right: 0;
    padding: 12px 20px 22px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(7,29,60,.12);
    transform: translateY(-140%);
    transition: .28s ease;
}
.mobile-menu.show { transform: translateY(0); }
.mobile-menu a { display: block; padding: 14px 5px; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.mobile-menu button { width: 100%; margin-top: 16px; }

.hero {
    position: relative;
    padding: 92px 0 38px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 68%, #fff 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(38,117,232,.13) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
    pointer-events: none;
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .18; }
.hero-shape-one { width: 430px; height: 430px; top: -180px; right: 10%; background: var(--sky); }
.hero-shape-two { width: 260px; height: 260px; left: -90px; bottom: 80px; background: var(--yellow); opacity: .12; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 58px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.hero h1, .section-intro h2, .platform-copy h2, .about-copy h2, .faq-intro h2, .contact-copy h2 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -.055em;
}
.hero h1 { max-width: 650px; margin: 21px 0 22px; font-size: clamp(3.4rem, 6vw, 6.2rem); line-height: .94; }
.hero h1 em { position: relative; color: var(--blue); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: 1%; bottom: -5px; height: 9px; border-radius: 50%; border-top: 3px solid var(--yellow); transform: rotate(-1deg); }
.hero-typewriter { display: inline; }
.typewriter-cursor { display: inline-block; width: .055em; height: .78em; margin-left: .075em; border-radius: 3px; background: var(--blue); vertical-align: -.035em; animation: typewriterBlink .72s steps(1, end) infinite; }
@keyframes typewriterBlink { 0%, 46% { opacity: 1; } 47%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .typewriter-cursor { animation: none; opacity: 1; } }
.hero-copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.72; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 19px; border-radius: 14px; text-decoration: none; font-size: .86rem; font-weight: 800; transition: .23s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 30px rgba(38,117,232,.24); }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 31px; }
.proof-avatars { display: flex; }
.proof-avatars span { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -8px; border: 3px solid #fff; border-radius: 50%; color: #fff; background: var(--blue); }
.proof-avatars span:first-child { margin-left: 0; background: var(--purple); }
.proof-avatars span:last-child { background: var(--teal); }
.hero-proof p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.hero-proof strong { color: var(--ink); font-size: .82rem; }

.hero-product { position: relative; min-height: 555px; display: flex; align-items: center; justify-content: center; }
.product-glow { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: linear-gradient(145deg, rgba(38,117,232,.23), rgba(53,199,180,.18), rgba(255,201,40,.16)); filter: blur(4px); }
.product-window { position: relative; z-index: 2; width: 100%; max-width: 620px; overflow: hidden; border: 1px solid rgba(173,193,221,.75); border-radius: 23px; background: #fff; box-shadow: 0 36px 90px rgba(7,29,60,.2); transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.window-top { height: 45px; padding: 0 14px; display: grid; grid-template-columns: 76px 1fr 18px; align-items: center; gap: 10px; color: #8b98aa; background: #f7f9fc; border-bottom: 1px solid #e8edf4; font-size: .64rem; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ff6f68; }
.window-dots span:nth-child(2) { background: #ffc95b; }
.window-dots span:nth-child(3) { background: #55c987; }
.window-address { justify-self: center; min-width: 240px; padding: 7px 16px; border-radius: 8px; color: #7c899d; background: #fff; box-shadow: inset 0 0 0 1px #e8edf4; text-align: center; }
.window-address i { font-size: .52rem; margin-right: 5px; }
.window-body { height: 405px; display: grid; grid-template-columns: 58px 1fr; }
.mock-sidebar { padding: 14px 9px; display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--navy); }
.mock-logo { width: 36px; height: 36px; padding: 2px; border-radius: 9px; background: #fff; }
.mock-nav { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 9px; color: rgba(255,255,255,.55); font-size: .9rem; }
.mock-nav.active { color: #fff; background: var(--blue); }
.mock-nav.bottom { margin-top: auto; }
.mock-content { padding: 23px 23px 20px; overflow: hidden; background: #f6f8fc; }
.mock-welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-welcome div { display: flex; flex-direction: column; }
.mock-welcome small { color: #7f8ca0; font-size: .57rem; }
.mock-welcome strong { margin-top: 3px; font-size: .94rem; }
.mock-user { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--blue); background: var(--soft-blue); }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-stats article { position: relative; min-height: 105px; padding: 12px; border: 1px solid #e8edf4; border-radius: 14px; background: #fff; box-shadow: 0 8px 20px rgba(7,29,60,.04); }
.stat-icon { position: absolute; right: 10px; top: 10px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; font-size: .72rem; }
.stat-icon.blue { color: var(--blue); background: var(--soft-blue); }
.stat-icon.green { color: #1d9c74; background: #e9fbf5; }
.stat-icon.orange { color: #e87f20; background: #fff3e8; }
.mock-stats small { display: block; padding-right: 29px; color: #8a96a8; font-size: .52rem; }
.mock-stats strong { display: block; margin: 12px 0 4px; font-family: "Space Grotesk"; font-size: 1.25rem; }
.mock-stats em { color: #8692a4; font-size: .46rem; font-style: normal; }
.mock-lower { display: grid; grid-template-columns: 1.7fr .8fr; gap: 10px; margin-top: 10px; }
.mock-chart, .mock-progress { min-height: 170px; padding: 13px; border: 1px solid #e8edf4; border-radius: 14px; background: #fff; }
.mock-card-head { display: flex; justify-content: space-between; align-items: center; font-size: .55rem; }
.mock-card-head span { color: #8b96a8; }
.bars { height: 92px; display: flex; align-items: end; justify-content: space-between; gap: 7px; padding: 11px 3px 0; }
.bars i { width: 11%; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--sky), var(--blue)); }
.chart-days { display: flex; justify-content: space-between; padding: 5px 3px 0; color: #a0aaba; font-size: .43rem; }
.mock-progress { text-align: center; }
.progress-ring { width: 78px; height: 78px; margin: 20px auto 7px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--teal) 0 76%, #e9edf3 76%); position: relative; }
.progress-ring::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }
.progress-ring span { position: relative; z-index: 2; font-family: "Space Grotesk"; font-size: 1rem; font-weight: 700; }
.progress-ring small { font-size: .55rem; }
.mock-progress p { margin: 0; color: #2a9a7c; font-size: .52rem; font-weight: 700; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(223,230,240,.85); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(7,29,60,.14); }
.floating-chip > i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--teal); }
.floating-chip span { display: flex; flex-direction: column; }
.floating-chip strong { font-size: .7rem; }
.floating-chip small { margin-top: 2px; color: #7c899a; font-size: .56rem; }
.chip-one { left: -23px; top: 72px; }
.chip-two { right: -16px; bottom: 52px; }
.chip-two > i { background: var(--purple); }
.hero-bottom { position: relative; z-index: 2; margin-top: 62px; padding: 20px 0 4px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 28px; border-top: 1px solid var(--line); color: #516078; font-size: .76rem; font-weight: 700; }
.hero-bottom > span { color: #9aa5b5; text-transform: uppercase; letter-spacing: .12em; font-size: .63rem; }
.hero-bottom div { display: flex; align-items: center; gap: 7px; }
.hero-bottom i { color: var(--blue); }

.logo-section { padding: 54px 0 76px; }
.logo-heading p { margin: 0 0 25px; color: #7b8799; text-align: center; font-size: .8rem; font-weight: 600; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-grid > div { height: 108px; display: grid; place-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: .22s ease; }
.logo-grid > div:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: #c8d7eb; }
.logo-grid img { max-width: 115px; max-height: 72px; object-fit: contain; }

.problem-section { padding: 94px 0; background: var(--soft); }
.section-intro { max-width: 760px; margin-bottom: 42px; }
.section-intro.split { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro h2, .platform-copy h2, .about-copy h2, .faq-intro h2, .contact-copy h2 { margin: 12px 0 14px; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.03; }
.section-intro > p, .section-intro.split > p, .platform-copy > p, .about-copy > p, .faq-intro > p, .contact-copy > p { margin: 0; color: var(--muted); line-height: 1.75; font-weight: 500; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { position: relative; min-height: 345px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .25s ease; }
.problem-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.problem-card.featured { color: #fff; border-color: var(--navy); background: var(--navy); }
.problem-index { position: absolute; right: 22px; top: 18px; color: #d7dee9; font-family: "Space Grotesk"; font-size: 2.5rem; font-weight: 700; }
.featured .problem-index { color: rgba(255,255,255,.12); }
.problem-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 17px; color: var(--blue); background: var(--soft-blue); font-size: 1.3rem; }
.featured .problem-icon { color: #fff; background: var(--blue); }
.problem-card h3 { margin: 54px 0 13px; max-width: 280px; font-family: "Space Grotesk"; font-size: 1.4rem; letter-spacing: -.035em; }
.problem-card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: .88rem; }
.featured p { color: rgba(255,255,255,.68); }
.problem-result { position: absolute; left: 29px; bottom: 26px; display: flex; align-items: center; gap: 8px; color: var(--blue); font-size: .72rem; font-weight: 800; }
.featured .problem-result { color: var(--sky); }

.services-section { position: relative; padding: 100px 0; color: #fff; background: #081b37; overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 580px; height: 580px; right: -250px; top: -280px; border-radius: 50%; background: rgba(38,117,232,.18); }
.services-section .section-intro { position: relative; z-index: 2; }
.services-section .section-intro p { color: rgba(255,255,255,.62); }
.kicker.light { color: #82e0d4; }
.bento-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: 18px; }
.service-panel { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; }
.service-main { grid-row: 1 / 3; min-height: 660px; padding: 40px; display: grid; grid-template-rows: auto 1fr; background: linear-gradient(145deg, #123a72, #0d2c57); }
.service-code { min-height: 318px; padding: 31px; background: linear-gradient(145deg, #642eb1, #7e5bef); }
.service-qcto { min-height: 324px; padding: 31px; background: linear-gradient(145deg, #0d6f6d, #159b91); }
.service-label { display: inline-flex; align-items: center; width: max-content; padding: 7px 10px; border-radius: 999px; color: rgba(255,255,255,.86); background: rgba(255,255,255,.11); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-panel h3 { margin: 18px 0 13px; font-family: "Space Grotesk"; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -.045em; }
.service-panel p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.68; font-size: .88rem; }
.service-main ul { display: grid; gap: 9px; padding: 0; margin: 22px 0 0; list-style: none; color: rgba(255,255,255,.84); font-size: .78rem; }
.service-main li { display: flex; align-items: center; gap: 8px; }
.service-main li i { color: #7ff0df; }
.service-panel button { margin-top: 23px; padding: 0; border: 0; color: #fff; background: transparent; font-size: .76rem; font-weight: 800; }
.service-panel button i { margin-left: 6px; }
.service-illustration { align-self: end; margin-top: 30px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.09); backdrop-filter: blur(10px); }
.course-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.68); font-size: .64rem; }
.course-row { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; margin-top: 12px; padding: 11px; border-radius: 13px; color: var(--ink); background: #fff; }
.course-art { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; }
.course-art.purple { background: var(--purple); }
.course-art.blue { background: var(--blue); }
.course-art.orange { background: var(--orange); }
.course-row div { display: grid; }
.course-row strong { font-size: .68rem; }
.course-row small { margin-top: 3px; color: #8995a7; font-size: .51rem; }
.course-row div > i { height: 4px; margin-top: 8px; overflow: hidden; border-radius: 3px; background: #ecf0f5; }
.course-row b { display: block; height: 100%; border-radius: inherit; background: var(--teal); }
.code-icon, .qcto-seal { width: 56px; height: 56px; margin-top: 25px; display: grid; place-items: center; border-radius: 17px; color: #fff; background: rgba(255,255,255,.13); font-size: 1.45rem; }
.code-lines { position: absolute; right: -15px; bottom: -18px; width: 190px; height: 120px; transform: rotate(-8deg); opacity: .18; }
.code-lines span { display: block; width: 100%; height: 9px; margin: 11px 0; border-radius: 8px; background: #fff; }
.code-lines span:nth-child(2), .code-lines span:nth-child(4) { width: 65%; margin-left: 28%; }

.platform-section { padding: 108px 0; overflow: hidden; }
.platform-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 75px; }
.role-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.role-tab { border: 1px solid var(--line); padding: 10px 13px; border-radius: 11px; color: #506078; background: #fff; font-size: .73rem; font-weight: 800; transition: .2s ease; }
.role-tab.active { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 10px 22px rgba(38,117,232,.2); }
.role-tab i { margin-right: 6px; }
.role-content { display: none; margin-top: 25px; padding-left: 18px; border-left: 3px solid var(--teal); }
.role-content.active { display: block; animation: fadeUp .28s ease; }
.role-content h3 { margin: 0 0 7px; font-family: "Space Grotesk"; font-size: 1.15rem; }
.role-content p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .83rem; }
.platform-visual { position: relative; min-height: 580px; }
.tablet-card { position: absolute; right: 0; top: 35px; width: 88%; overflow: hidden; border: 9px solid #132541; border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.tablet-top { height: 38px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; color: #78869b; background: #f3f6fa; font-size: .56rem; }
.tablet-top span { display: flex; gap: 4px; color: #aab4c3; font-size: .35rem; }
.tablet-top strong { color: #43516a; }
.tablet-body { height: 352px; display: grid; grid-template-columns: 48px 1fr; }
.tablet-body aside { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 17px; color: #9da8b7; background: var(--navy); }
.tablet-body aside i { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; font-size: .72rem; }
.tablet-body aside i.active { color: #fff; background: var(--blue); }
.tablet-content { padding: 19px; background: #f7f9fc; }
.tablet-title { display: flex; justify-content: space-between; align-items: center; }
.tablet-title small { color: #8a96a7; font-size: .49rem; }
.tablet-title h3 { margin: 3px 0 0; font-size: .9rem; }
.tablet-title button { border: 0; padding: 7px 10px; border-radius: 7px; color: #fff; background: var(--blue); font-size: .49rem; }
.tablet-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.tablet-kpis span { padding: 10px; border: 1px solid #e6ebf2; border-radius: 10px; background: #fff; }
.tablet-kpis small { display: block; color: #8a96a8; font-size: .44rem; }
.tablet-kpis strong { display: block; margin-top: 6px; font-size: .87rem; }
.tablet-chart { height: 105px; margin-top: 9px; padding: 10px; border: 1px solid #e6ebf2; border-radius: 10px; background: #fff; }
.chart-line { height: 100%; display: flex; align-items: end; justify-content: space-around; gap: 6px; border-bottom: 1px solid #edf0f4; }
.chart-line i { width: 7%; height: 35%; border-radius: 3px 3px 0 0; background: var(--blue); }
.chart-line i:nth-child(2) { height: 58%; }.chart-line i:nth-child(3) { height: 46%; }.chart-line i:nth-child(4) { height: 72%; }.chart-line i:nth-child(5) { height: 62%; }.chart-line i:nth-child(6) { height: 85%; }.chart-line i:nth-child(7) { height: 76%; }
.tablet-table { margin-top: 9px; overflow: hidden; border: 1px solid #e6ebf2; border-radius: 10px; background: #fff; }
.tablet-table span { height: 25px; display: grid; grid-template-columns: 35px 1fr 50px; align-items: center; gap: 8px; padding: 0 10px; border-bottom: 1px solid #edf0f4; }
.tablet-table span:last-child { border: 0; }
.tablet-table b { width: 18px; height: 18px; border-radius: 50%; background: #dbe8fa; }
.tablet-table i { height: 5px; width: 70%; border-radius: 5px; background: #e5eaf0; }
.tablet-table em { height: 6px; border-radius: 5px; background: #dcf5ee; }
.phone-card { position: absolute; z-index: 4; left: 0; bottom: 15px; width: 185px; padding: 8px; border-radius: 28px; background: #132541; box-shadow: 0 25px 60px rgba(7,29,60,.24); transform: rotate(-3deg); }
.phone-screen { position: relative; min-height: 360px; padding: 18px 14px 45px; overflow: hidden; border-radius: 21px; background: #fff; }
.phone-notch { position: absolute; z-index: 3; left: 50%; top: 7px; width: 65px; height: 14px; transform: translateX(-50%); border-radius: 0 0 10px 10px; background: #132541; }
.phone-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; color: #6d7a8e; font-size: .72rem; }
.phone-head img { width: 31px; height: 31px; object-fit: contain; }
.phone-screen > small { color: #8a96a8; font-size: .48rem; }
.phone-screen > h3 { margin: 4px 0 15px; font-size: .88rem; }
.phone-course { display: grid; padding: 12px; border-radius: 14px; color: #fff; background: linear-gradient(145deg, var(--blue), #4c91ee); }
.phone-course > span { width: 32px; height: 32px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 9px; background: rgba(255,255,255,.17); }
.phone-course strong { font-size: .64rem; }
.phone-course small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: .46rem; }
.phone-course > i { height: 4px; margin-top: 11px; border-radius: 4px; background: rgba(255,255,255,.2); }
.phone-course b { display: block; width: 67%; height: 100%; border-radius: inherit; background: var(--yellow); }
.phone-nav { position: absolute; left: 0; right: 0; bottom: 0; height: 42px; display: flex; align-items: center; justify-content: space-around; color: #9ba6b6; border-top: 1px solid #edf0f4; font-size: .68rem; }
.phone-nav i:first-child { color: var(--blue); }
.visual-note { position: absolute; right: 10px; bottom: 8px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.visual-note > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--orange); }
.visual-note span { display: flex; flex-direction: column; }
.visual-note strong { font-size: .68rem; }
.visual-note small { margin-top: 2px; color: var(--muted); font-size: .55rem; }

.audience-section { padding: 98px 0; background: var(--soft); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience-card { min-height: 310px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 23px; background: #fff; transition: .25s ease; }
.audience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.audience-card > span { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: var(--soft-blue); font-size: 1.2rem; }
.audience-card:nth-child(2) > span { color: var(--purple); background: #f1edff; }
.audience-card:nth-child(3) > span { color: #d7771f; background: #fff2e7; }
.audience-card:nth-child(4) > span { color: #d6427f; background: #ffedf5; }
.audience-card h3 { margin: 28px 0 11px; font-family: "Space Grotesk"; font-size: 1.15rem; }
.audience-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .82rem; }
.audience-card a { margin-top: auto; padding-top: 22px; color: var(--blue); text-decoration: none; font-size: .72rem; font-weight: 800; }
.audience-card a i { margin-left: 6px; }

.about-section { padding: 115px 0; }
.about-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 88px; }
.about-media { position: relative; min-height: 600px; }
.about-colour-block { position: absolute; left: 0; top: 45px; width: 82%; height: 500px; border-radius: 34px; background: linear-gradient(145deg, #eaf4ff, #dff9f4); }
.about-image { position: absolute; z-index: 2; right: 0; top: 0; width: 87%; height: 560px; overflow: hidden; border-radius: 34px 34px 80px 34px; background: linear-gradient(145deg, #e9f5ff, #fff); box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.about-mini-card { position: absolute; z-index: 4; left: -12px; bottom: 5px; width: 280px; display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.about-mini-card > i { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--yellow); font-size: 1.1rem; }
.about-mini-card span { display: flex; flex-direction: column; }
.about-mini-card strong { font-size: .76rem; }
.about-mini-card small { margin-top: 4px; color: var(--muted); font-size: .58rem; line-height: 1.4; }
.about-copy .lead { color: var(--ink); font-size: 1.05rem; font-weight: 600; }
.principles { display: grid; gap: 18px; margin-top: 31px; }
.principles article { display: grid; grid-template-columns: 47px 1fr; gap: 15px; }
.principles article > span { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: var(--soft-blue); font-family: "Space Grotesk"; font-size: .8rem; font-weight: 700; }
.principles strong { font-family: "Space Grotesk"; font-size: .95rem; }
.principles p { margin: 5px 0 0; color: var(--muted); line-height: 1.55; font-size: .78rem; }

.process-section { padding: 100px 0; border-top: 1px solid var(--line); background: #fcfdff; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-line::before { content: ""; position: absolute; left: 8%; right: 8%; top: 57px; height: 1px; background: #d9e2ee; }
.process-step { position: relative; z-index: 2; padding: 0 18px; text-align: center; }
.process-step > span { display: inline-block; margin-bottom: 15px; color: #9ba6b5; font-family: "Space Grotesk"; font-size: .66rem; font-weight: 700; }
.process-step > i { width: 70px; height: 70px; margin: 0 auto 22px; display: grid; place-items: center; border: 8px solid #fcfdff; border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 0 0 0 1px #d7e1ee; font-size: 1.18rem; }
.process-step:nth-child(2) > i { background: var(--purple); }
.process-step:nth-child(3) > i { background: var(--teal); }
.process-step:nth-child(4) > i { background: var(--orange); }
.process-step h3 { margin: 0 0 10px; font-family: "Space Grotesk"; font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .78rem; }

.faq-section { padding: 110px 0; background: var(--soft); }
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.faq-intro { position: sticky; top: 118px; }
.faq-intro .button { margin-top: 26px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.faq-item > button { width: 100%; min-height: 72px; padding: 17px 20px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); background: transparent; text-align: left; font-weight: 700; }
.faq-item > button i { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 9px; color: var(--blue); background: var(--soft-blue); transition: transform .2s ease; }
.faq-item.open > button i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); line-height: 1.68; font-size: .83rem; transition: padding .28s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 20px 21px; }

.contact-section { position: relative; padding: 108px 0; color: #fff; overflow: hidden; background: var(--navy); }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 25px 25px; mask-image: linear-gradient(90deg, #000, transparent 75%); opacity: .4; }
.contact-orb { position: absolute; width: 460px; height: 460px; left: -230px; bottom: -230px; border-radius: 50%; background: rgba(38,117,232,.28); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 78px; }
.contact-copy > p { color: rgba(255,255,255,.67); }
.contact-links { display: grid; gap: 13px; margin-top: 31px; }
.contact-links a, .contact-links > div { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.contact-links > * > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: rgba(255,255,255,.1); }
.contact-links span { display: flex; flex-direction: column; }
.contact-links small { color: rgba(255,255,255,.5); font-size: .59rem; }
.contact-links strong { margin-top: 3px; font-size: .8rem; }
.contact-promise { margin-top: 32px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; gap: 12px; }
.contact-promise > i { color: var(--teal); font-size: 1.35rem; }
.contact-promise span { display: flex; flex-direction: column; }
.contact-promise strong { font-size: .75rem; }
.contact-promise small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: .61rem; }
.contact-card { padding: 34px; border-radius: 28px; color: var(--ink); background: #fff; box-shadow: 0 32px 75px rgba(0,0,0,.26); }
.form-title > span { color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.form-title h3 { margin: 7px 0 6px; font-family: "Space Grotesk"; font-size: 1.65rem; letter-spacing: -.04em; }
.form-title p { margin: 0 0 24px; color: var(--muted); font-size: .76rem; }
.enquiry-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-group { display: grid; gap: 7px; }
.field-group label { color: #435169; font-size: .68rem; font-weight: 800; }
.field-group input, .field-group select, .field-group textarea { width: 100%; border: 1px solid #dce4ee; border-radius: 12px; padding: 12px 13px; color: var(--ink); background: #fbfcfe; outline: none; font-size: .82rem; transition: .2s ease; }
.field-group input::placeholder, .field-group textarea::placeholder { color: #a0aaba; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(38,117,232,.09); }
.submit-button { min-height: 49px; padding: 0 17px; border: 0; border-radius: 13px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: var(--blue); font-weight: 800; transition: .22s ease; }
.submit-button:hover { background: var(--navy); }
.submit-button:disabled { opacity: .65; cursor: wait; }
.form-note { margin: 0; color: var(--muted); font-size: .64rem; }
.form-note.success { color: #0a8d68; }
.form-note.error { color: #c33434; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.site-footer { padding: 58px 0 0; color: #fff; background: #05152d; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .7fr .85fr; gap: 48px; }
.site-footer .brand-copy strong { color: #fff; }
.footer-brand p { max-width: 340px; margin: 19px 0 0; color: rgba(255,255,255,.56); line-height: 1.65; font-size: .78rem; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column h3 { margin: 4px 0 6px; font-size: .78rem; }
.footer-column a, .footer-column button, .footer-column span { padding: 0; border: 0; color: rgba(255,255,255,.58); background: transparent; text-align: left; text-decoration: none; font-size: .72rem; }
.footer-column a:hover, .footer-column button:hover { color: #fff; }
.footer-column i { width: 18px; color: var(--sky); }
.footer-bottom { margin-top: 44px; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: .65rem; }
.footer-bottom a { text-decoration: none; }

.floating-contact { position: fixed; z-index: 1200; right: 20px; bottom: 21px; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border: 0; border-radius: 16px; color: #fff; background: var(--blue); box-shadow: 0 18px 40px rgba(7,29,60,.24); }
.floating-contact > i { font-size: 1.12rem; }
.floating-contact span { display: flex; flex-direction: column; text-align: left; }
.floating-contact strong { font-size: .7rem; }
.floating-contact small { margin-top: 2px; color: rgba(255,255,255,.7); font-size: .55rem; }
.to-top { position: fixed; z-index: 1200; left: 20px; bottom: 21px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: .22s ease; }
.to-top.show { opacity: 1; pointer-events: auto; }

.modal-layer { position: fixed; inset: 0; z-index: 4000; padding: 22px; display: flex; align-items: center; justify-content: center; background: rgba(4,15,34,.78); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: .25s ease; }
.modal-layer.show { opacity: 1; pointer-events: auto; }
.service-modal, .enquiry-modal { position: relative; width: min(650px, 100%); max-height: calc(100vh - 44px); overflow-y: auto; border-radius: 25px; background: #fff; transform: translateY(20px) scale(.98); transition: .25s ease; }
.modal-layer.show .service-modal, .modal-layer.show .enquiry-modal { transform: translateY(0) scale(1); }
.service-modal { padding: 34px; }
.modal-close { position: absolute; right: 17px; top: 17px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: #fff; }
.modal-service-icon { width: 60px; height: 60px; margin-top: 23px; display: grid; place-items: center; border-radius: 17px; color: #fff; background: var(--blue); font-size: 1.35rem; }
.service-modal h2 { margin: 17px 0 9px; font-family: "Space Grotesk"; font-size: 2rem; letter-spacing: -.04em; }
.service-modal > p { color: var(--muted); line-height: 1.7; }
.service-modal ul { padding-left: 20px; color: #4f5d73; line-height: 1.8; font-size: .86rem; }
.enquiry-modal { width: min(760px, 100%); }
.enquiry-modal-head { position: relative; padding: 27px 30px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.enquiry-modal-head span { color: #9ce9df; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.enquiry-modal-head h2 { margin: 7px 0 4px; font-family: "Space Grotesk"; }
.enquiry-modal-head p { margin: 0; color: rgba(255,255,255,.7); font-size: .77rem; }
.modal-close.light { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.modal-form { padding: 27px 30px 31px; }
.cookie-notice { position: fixed; z-index: 3500; left: 20px; right: 20px; bottom: 20px; max-width: 700px; margin: auto; padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); transform: translateY(160%); transition: .28s ease; }
.cookie-notice.show { transform: translateY(0); }
.cookie-notice strong { font-size: .75rem; }
.cookie-notice p { margin: 3px 0 0; color: var(--muted); font-size: .65rem; }
.cookie-notice button { border: 0; padding: 9px 14px; border-radius: 10px; color: #fff; background: var(--navy); font-size: .68rem; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }.delay-3 { transition-delay: .3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1160px) {
    .desktop-nav { gap: 18px; }
    .nav-call span { display: none; }
    .hero-layout { gap: 30px; }
    .hero h1 { font-size: 4.7rem; }
    .chip-one { left: 3px; }
    .chip-two { right: 2px; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .top-note { display: none; }
    .site-nav { height: 72px; }
    .desktop-nav, .nav-call, .nav-cta { display: none; }
    .mobile-toggle { display: grid; place-items: center; }
    .mobile-menu { top: 72px; }
    .hero { padding-top: 65px; }
    .hero-layout, .platform-grid, .about-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-product { margin-top: 20px; }
    .section-intro.split { grid-template-columns: 1fr; gap: 15px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { min-height: 290px; }
    .bento-grid { grid-template-columns: 1fr; }
    .service-main { grid-row: auto; min-height: 610px; }
    .platform-grid { gap: 35px; }
    .platform-copy { max-width: 720px; }
    .about-layout { gap: 45px; }
    .about-media { max-width: 650px; width: 100%; margin: auto; }
    .process-line { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-line::before { display: none; }
    .faq-intro { position: static; }
    .contact-layout { gap: 45px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 740px) {
    .container { width: min(100% - 30px, 1180px); }
    .hero { padding-top: 55px; }
    .hero h1 { font-size: 3.7rem; }
    .hero-product { min-height: 470px; }
    .product-window { transform: none; }
    .window-body { height: 340px; grid-template-columns: 48px 1fr; }
    .mock-content { padding: 16px; }
    .mock-stats article { min-height: 92px; padding: 9px; }
    .mock-lower { grid-template-columns: 1fr; }
    .mock-progress { display: none; }
    .floating-chip { transform: scale(.88); }
    .chip-one { left: -15px; top: 36px; }
    .chip-two { right: -15px; bottom: 25px; }
    .hero-bottom { margin-top: 30px; }
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-grid > div:last-child { grid-column: 1 / -1; }
    .problem-section, .services-section, .platform-section, .audience-section, .about-section, .process-section, .faq-section, .contact-section { padding: 75px 0; }
    .service-main { padding: 27px; min-height: auto; }
    .service-code, .service-qcto { padding: 27px; }
    .platform-visual { min-height: 500px; }
    .tablet-card { width: 94%; }
    .phone-card { width: 165px; }
    .phone-screen { min-height: 320px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { min-height: 260px; }
    .about-media { min-height: 485px; }
    .about-image { height: 455px; }
    .about-colour-block { height: 410px; }
    .process-line { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 520px) {
    .brand-copy strong { font-size: .95rem; }
    .hero h1 { font-size: 2.9rem; }
    .hero-copy > p { font-size: .96rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-proof { align-items: flex-start; text-align: left; }
    .hero-product { min-height: 390px; }
    .product-window { border-radius: 16px; }
    .window-top { grid-template-columns: 55px 1fr 12px; }
    .window-address { min-width: 0; width: 100%; }
    .window-body { height: 285px; grid-template-columns: 40px 1fr; }
    .mock-sidebar { padding: 9px 5px; }
    .mock-logo, .mock-nav { width: 30px; height: 30px; }
    .mock-content { padding: 12px; }
    .mock-welcome { margin-bottom: 10px; }
    .mock-stats { gap: 5px; }
    .mock-stats article { min-height: 78px; padding: 7px; }
    .stat-icon { display: none; }
    .mock-stats small { padding: 0; font-size: .42rem; }
    .mock-stats strong { margin: 7px 0 2px; font-size: .9rem; }
    .mock-chart { min-height: 125px; }
    .bars { height: 62px; }
    .floating-chip { display: none; }
    .hero-bottom { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
    .hero-bottom > span { grid-column: 1 / -1; }
    .section-intro h2, .platform-copy h2, .about-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 2.35rem; }
    .problem-card { padding: 24px; }
    .problem-result { left: 24px; }
    .course-row { grid-template-columns: 39px 1fr; padding: 9px; }
    .course-art { width: 39px; height: 39px; }
    .platform-visual { min-height: 405px; }
    .tablet-card { top: 18px; border-width: 6px; }
    .tablet-body { height: 270px; grid-template-columns: 36px 1fr; }
    .tablet-body aside { gap: 11px; }
    .tablet-content { padding: 10px; }
    .tablet-kpis span { padding: 7px; }
    .tablet-chart { height: 80px; }
    .tablet-table { display: none; }
    .phone-card { width: 135px; padding: 6px; }
    .phone-screen { min-height: 260px; padding: 16px 10px 40px; }
    .phone-course { padding: 9px; }
    .visual-note { right: 0; bottom: -6px; transform: scale(.85); transform-origin: right bottom; }
    .about-media { min-height: 390px; }
    .about-image { width: 94%; height: 365px; }
    .about-colour-block { height: 330px; }
    .about-mini-card { left: 8px; right: 8px; bottom: -5px; width: auto; }
    .contact-card, .service-modal { padding: 23px; }
    .modal-form, .enquiry-modal-head { padding-left: 21px; padding-right: 21px; }
    .floating-contact { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }
    .floating-contact span { display: none; }
    .cookie-notice { align-items: stretch; flex-direction: column; }
    .cookie-notice button { width: 100%; }
}

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

/* =========================================================
   Immersive image experience, v3.1
   Transparent cutout imagery integrated into the approved UI.
   ========================================================= */
.hero-product {
    min-height: 620px;
}
.hero-product .product-window {
    width: 94%;
    margin-left: auto;
    transform: translate(-14px, 26px) scale(.94);
    transform-origin: center;
}
.hero-human {
    position: absolute;
    z-index: 3;
    right: -92px;
    bottom: -72px;
    width: min(420px, 64%);
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 28px 36px rgba(7, 29, 60, .24));
}
.hero-product .chip-one,
.hero-product .chip-two {
    z-index: 5;
}
.hero-product .chip-one {
    left: -30px;
    top: 58px;
}
.hero-product .chip-two {
    right: -5px;
    bottom: 34px;
}

.immersive-section {
    position: relative;
    padding: 112px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 198, 64, .13), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(73, 194, 255, .17), transparent 27%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.immersive-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .34;
    pointer-events: none;
    background-image: radial-gradient(#b8cbe5 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.immersive-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}
.immersive-orb-one {
    width: 300px;
    height: 300px;
    left: -160px;
    bottom: 20px;
    background: rgba(51, 203, 184, .11);
}
.immersive-orb-two {
    width: 390px;
    height: 390px;
    right: -210px;
    top: -150px;
    background: rgba(38, 117, 232, .09);
}
.immersive-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 72px;
}
.immersive-copy h2 {
    max-width: 620px;
    margin: 14px 0 18px;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 1.02;
}
.immersive-copy > p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.8;
}
.immersive-points {
    display: grid;
    gap: 13px;
    margin: 28px 0 30px;
}
.immersive-points > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid rgba(214, 225, 239, .92);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 30px rgba(7, 29, 60, .045);
}
.immersive-points i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: var(--soft-blue);
    font-size: 1.1rem;
}
.immersive-points span {
    display: grid;
}
.immersive-points strong {
    font-family: "Space Grotesk";
    font-size: .88rem;
}
.immersive-points small {
    margin-top: 3px;
    color: var(--muted);
    line-height: 1.45;
}
.immersive-gallery {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    grid-template-rows: 1fr 1fr;
    gap: 17px;
}
.immersive-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(210, 224, 240, .95);
    border-radius: 28px;
    background: linear-gradient(160deg, #edf6ff, #ffffff 72%);
    box-shadow: 0 24px 70px rgba(7, 29, 60, .10);
}
.immersive-card-main {
    grid-row: 1 / 3;
    min-height: 660px;
    background: linear-gradient(155deg, #eaf5ff 0%, #f3efff 52%, #ffffff 100%);
}
.immersive-card-lab {
    background: linear-gradient(155deg, #e8fff8, #ffffff 76%);
}
.immersive-card-human {
    background: linear-gradient(155deg, #fff3df, #ffffff 76%);
}
.immersive-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -65px;
    top: -60px;
    border-radius: 50%;
    background: rgba(38, 117, 232, .09);
}
.immersive-card img {
    position: absolute;
    z-index: 1;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(7, 29, 60, .15));
}
.immersive-card-main img {
    width: 118%;
    left: -18%;
    bottom: -14%;
}
.immersive-card-lab img {
    width: 72%;
    right: -2%;
    bottom: -27%;
}
.immersive-card-human img {
    width: 76%;
    right: -8%;
    bottom: -30%;
}
.immersive-label {
    position: absolute;
    z-index: 3;
    left: 20px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 26px rgba(7,29,60,.08);
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.immersive-card > div {
    position: absolute;
    z-index: 3;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: grid;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 17px;
    color: var(--navy);
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 38px rgba(7,29,60,.10);
}
.immersive-card > div strong {
    font-family: "Space Grotesk";
    font-size: .94rem;
}
.immersive-card > div small {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .hero-human {
        right: -40px;
        width: 57%;
    }
    .immersive-layout {
        gap: 42px;
    }
}
@media (max-width: 991px) {
    .hero-product {
        min-height: 590px;
    }
    .hero-product .product-window {
        width: 92%;
        margin: 0 auto;
        transform: translateY(20px) scale(.93);
    }
    .hero-human {
        right: -10px;
        bottom: -58px;
        width: 48%;
    }
    .immersive-layout {
        grid-template-columns: 1fr;
    }
    .immersive-copy {
        max-width: 760px;
    }
    .immersive-gallery {
        min-height: 650px;
    }
}
@media (max-width: 720px) {
    .hero-product {
        min-height: 470px;
    }
    .hero-product .product-window {
        width: 100%;
        transform: translateY(12px) scale(.9);
    }
    .hero-human {
        right: -45px;
        bottom: -40px;
        width: 58%;
    }
    .hero-product .chip-one {
        left: 2px;
        top: 22px;
    }
    .hero-product .chip-two {
        right: 0;
        bottom: 12px;
    }
    .immersive-section {
        padding: 78px 0;
    }
    .immersive-copy h2 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }
    .immersive-gallery {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    .immersive-card,
    .immersive-card-main {
        grid-row: auto;
        min-height: 490px;
    }
    .immersive-card-lab,
    .immersive-card-human {
        min-height: 430px;
    }
    .immersive-card-main img {
        width: 105%;
        left: -9%;
        bottom: -18%;
    }
    .immersive-card-lab img,
    .immersive-card-human img {
        width: 84%;
        bottom: -18%;
    }
}
@media (max-width: 520px) {
    .hero-product {
        min-height: 400px;
    }
    .hero-product .product-window {
        transform: translateY(4px) scale(.82);
    }
    .hero-human {
        right: -44px;
        bottom: -20px;
        width: 62%;
    }
    .hero-product .floating-chip {
        padding: 9px 10px;
    }
    .hero-product .floating-chip > i {
        width: 30px;
        height: 30px;
    }
    .hero-product .floating-chip strong {
        font-size: .61rem;
    }
    .hero-product .floating-chip small {
        font-size: .49rem;
    }
    .immersive-points > div {
        grid-template-columns: 42px 1fr;
    }
    .immersive-points i {
        width: 42px;
        height: 42px;
    }
    .immersive-card,
    .immersive-card-main,
    .immersive-card-lab,
    .immersive-card-human {
        min-height: 410px;
        border-radius: 22px;
    }
    .immersive-card-main img,
    .immersive-card-lab img,
    .immersive-card-human img {
        width: 96%;
        right: -8%;
        left: auto;
        bottom: -12%;
    }
}
