/* =========================================================
   ROOT
========================================================= */

:root {
    --bg: #f4f6f8;
    --white: #ffffff;
    --ink: #10151c;
    --ink-soft: #4f5965;
    --muted: #7d8792;

    --dark: #0a0f15;
    --dark-2: #101720;
    --dark-3: #17212d;

    --line: rgba(16, 21, 28, 0.10);
    --line-dark: rgba(255, 255, 255, 0.12);

    --accent: #d7ff5f;
    --accent-dark: #a9d72d;

    --shadow-sm:
        0 8px 30px rgba(12, 18, 28, 0.06);

    --shadow-md:
        0 25px 70px rgba(12, 18, 28, 0.10);

    --shadow-lg:
        0 40px 100px rgba(5, 12, 20, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1240px;

    --font-body:
        "DM Sans",
        Arial,
        sans-serif;

    --font-display:
        "Manrope",
        Arial,
        sans-serif;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.legal-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}

::selection {
    background: var(--accent);
    color: var(--ink);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 22px;

    background: var(--dark);

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mark {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
}

.loader-mark span {
    width: 6px;
    border-radius: 4px;

    background: var(--accent);

    animation:
        loaderBar 0.9s
        ease-in-out
        infinite;
}

.loader-mark span:nth-child(1) {
    height: 18px;
}

.loader-mark span:nth-child(2) {
    height: 28px;
    animation-delay: 0.12s;
}

.loader-mark span:nth-child(3) {
    height: 38px;
    animation-delay: 0.24s;
}

.loader-text {
    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@keyframes loaderBar {
    0%,
    100% {
        transform: scaleY(0.7);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;

    pointer-events: none;

    z-index: 99998;

    transform:
        translate3d(-50%, -50%, 0);
}

.cursor-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    transition:
        transform 0.12s ease,
        width 0.25s ease,
        height 0.25s ease;
}

.cursor-ring {
    width: 34px;
    height: 34px;

    border: 1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

body.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;

    border-color: var(--accent);

    background:
        rgba(215, 255, 95, 0.05);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 9000;

    height: 86px;

    display: flex;
    align-items: center;

    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        height 0.4s ease;
}

.site-header.scrolled {
    height: 74px;

    background:
        rgba(10, 15, 21, 0.82);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;

    color: #fff;
}

.brand-symbol {
    position: relative;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: flex-end;
    gap: 3px;

    overflow: hidden;
}

.symbol-line {
    display: block;

    width: 8px;

    border-radius: 4px 4px 0 0;

    background: var(--accent);

    transform-origin: bottom;

    animation:
        logoFloat 3s ease-in-out infinite;
}

.line-one {
    height: 15px;
}

.line-two {
    height: 23px;
    animation-delay: 0.15s;
}

.line-three {
    height: 31px;
    animation-delay: 0.3s;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: scaleY(0.88);
    }

    50% {
        transform: scaleY(1);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-family: var(--font-display);

    font-size: 17px;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.brand-text span {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    font-weight: 500;

    transition:
        color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 17px;

    border: 1px solid
        rgba(255, 255, 255, 0.17);

    border-radius: 999px;

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);

    color: var(--ink);

    transform: translateY(-2px);
}

.arrow,
.btn-arrow {
    font-size: 15px;

    transition:
        transform var(--transition);
}

.nav-cta:hover .arrow,
.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: transparent;
}

.mobile-toggle span {
    width: 22px;
    height: 1px;

    background: #fff;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 8999;

    display: flex;
    align-items: center;

    background:
        rgba(8, 12, 17, 0.98);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    width: min(
        calc(100% - 48px),
        600px
    );

    margin-inline: auto;

    display: flex;
    flex-direction: column;
}

.mobile-menu-inner > a {
    padding: 17px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);

    color: #fff;

    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 700;

    letter-spacing: -0.04em;
}

.mobile-menu-cta {
    margin-top: 25px;

    padding: 15px 20px !important;

    border: 0 !important;

    border-radius: 999px;

    background: var(--accent);

    color: var(--ink) !important;

    text-align: center;

    font-family: var(--font-body) !important;
    font-size: 14px !important;
}


/* =========================================================
   HERO
========================================================= */

.section-dark {
    background:
        var(--dark);

    color: #fff;
}

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    padding:
        150px 0
        110px;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.045)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045)
            1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 95%
        );
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}

.hero-glow-one {
    width: 600px;
    height: 600px;

    top: 8%;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(215, 255, 95, 0.10),
            transparent 65%
        );

    animation:
        glowFloat 8s ease-in-out infinite;
}

.hero-glow-two {
    width: 500px;
    height: 500px;

    bottom: -220px;
    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(70, 110, 255, 0.08),
            transparent 65%
        );

    animation:
        glowFloat 10s
        ease-in-out
        infinite reverse;
}

@keyframes glowFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -28px, 0);
    }
}

.floating-orb {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 7px
        rgba(215, 255, 95, 0.04),
        0 0 28px
        rgba(215, 255, 95, 0.22);

    animation:
        orbFloat 6s ease-in-out infinite;
}

.orb-one {
    top: 23%;
    left: 11%;
}

.orb-two {
    top: 63%;
    right: 7%;

    animation-delay: 1.5s;
}

.orb-three {
    bottom: 14%;
    left: 46%;

    animation-delay: 2.7s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(20px, -25px, 0);
    }
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 90px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px
        rgba(215, 255, 95, 0.07);
}

.hero h1 {
    max-width: 760px;

    margin: 0;

    font-family: var(--font-display);

    font-size:
        clamp(
            48px,
            6vw,
            88px
        );

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.065em;
}

.hero h1 span {
    display: block;

    color: rgba(255, 255, 255, 0.42);
}

.hero-description {
    max-width: 610px;

    margin:
        31px
        0
        0;

    color:
        rgba(255, 255, 255, 0.63);

    font-size: 17px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 27px;

    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 54px;

    padding:
        0
        23px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--ink);

    box-shadow:
        0 10px 30px
        rgba(215, 255, 95, 0.12);
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(215, 255, 95, 0.18);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    font-weight: 600;

    transition:
        color var(--transition);
}

.text-link span {
    transition:
        transform var(--transition);
}

.text-link:hover {
    color: #fff;
}

.text-link:hover span {
    transform: translateX(5px);
}

.hero-trust {
    display: flex;
    align-items: center;

    margin-top: 65px;
}

.trust-item {
    display: flex;
    flex-direction: column;

    min-width: 120px;
}

.trust-item strong {
    color: #fff;

    font-family: var(--font-display);
    font-size: 15px;
}

.trust-item span {
    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-divider {
    width: 1px;
    height: 30px;

    margin:
        0
        22px;

    background:
        rgba(255, 255, 255, 0.14);
}


/* =========================================================
   HERO DASHBOARD
========================================================= */

.hero-visual {
    position: relative;

    min-height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    position: relative;

    width: 100%;

    padding: 27px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.35);

    backdrop-filter:
        blur(18px);

    animation:
        dashboardFloat
        7s
        ease-in-out
        infinite;
}

@keyframes dashboardFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotateX(0deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotateX(1deg);
    }
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.small-label {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dashboard-top h3 {
    margin: 0;

    color: #fff;

    font-family: var(--font-display);

    font-size: 20px;
    line-height: 1.15;

    letter-spacing: -0.04em;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 10px;

    border:
        1px solid
        rgba(215, 255, 95, 0.14);

    border-radius: 999px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 9px;
    font-weight: 600;
}

.dashboard-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 12px
        rgba(215, 255, 95, 0.7);
}

.chart-area {
    position: relative;

    height: 245px;

    margin-top: 35px;
}

.chart-grid-line {
    position: absolute;
    left: 0;
    right: 0;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.07);
}

.line-a {
    top: 15%;
}

.line-b {
    top: 38%;
}

.line-c {
    top: 61%;
}

.line-d {
    top: 84%;
}

.growth-chart {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.chart-fill {
    fill:
        url(#chartGradient);
}

.chart-line {
    fill: none;

    stroke: var(--accent);

    stroke-width: 3;

    stroke-linecap: round;

    stroke-dasharray: 1;

    stroke-dashoffset: 1;

    animation:
        chartDraw
        2.8s
        0.7s
        cubic-bezier(0.65, 0, 0.35, 1)
        forwards;
}

@keyframes chartDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-point {
    fill: var(--accent);

    filter:
        drop-shadow(
            0 0 10px
            rgba(215, 255, 95, 0.65)
        );

    animation:
        pointPulse
        2s
        ease-in-out
        infinite;
}

@keyframes pointPulse {
    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

.dashboard-bottom {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    padding-top: 19px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.metric {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.metric + .metric {
    padding-left: 15px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.metric span {
    color:
        rgba(255, 255, 255, 0.37);

    font-size: 9px;
}

.metric strong {
    color: #fff;

    font-size: 12px;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    background:
        rgba(15, 22, 30, 0.83);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.22);

    backdrop-filter:
        blur(15px);

    z-index: 5;
}

.floating-card-one {
    left: -35px;
    bottom: 55px;

    animation:
        floatSmall
        5s
        ease-in-out
        infinite;
}

.floating-card-two {
    right: -28px;
    top: 70px;

    animation:
        floatSmall
        5s
        1s
        ease-in-out
        infinite;
}

@keyframes floatSmall {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.mini-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(215, 255, 95, 0.08);
}

.mini-icon span {
    width: 10px;
    height: 10px;

    border-radius: 3px;

    background: var(--accent);
}

.floating-card small {
    display: block;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 8px;
}

.floating-card strong {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 11px;
}

.pulse-ring {
    width: 27px;
    height: 27px;

    border:
        1px solid
        var(--accent);

    border-radius: 50%;

    position: relative;
}

.pulse-ring::before {
    content: "";

    position: absolute;
    inset: 7px;

    border-radius: 50%;

    background: var(--accent);
}

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;
    align-items: center;
    gap: 13px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    position: relative;

    width: 1px;
    height: 38px;

    background:
        rgba(255, 255, 255, 0.18);

    overflow: hidden;
}

.scroll-line::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 1px;
    height: 50%;

    background: var(--accent);

    animation:
        scrollLine
        2.2s
        ease-in-out
        infinite;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
    overflow: hidden;

    padding: 22px 0;

    background: var(--accent);

    color: var(--ink);

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.08);
}

.marquee-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation:
        marquee
        30s
        linear
        infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 40px;

    padding:
        0
        30px;

    font-family: var(--font-display);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: -0.02em;

    white-space: nowrap;
}

.marquee-item span {
    font-size: 19px;
}

@keyframes marquee {
    to {
        transform:
            translateX(-50%);
    }
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 135px 0;
}

.section-light {
    background: #edf1f3;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading.centered {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

.section-heading h2 {
    max-width: 780px;

    margin:
        18px
        0
        0;

    font-family: var(--font-display);

    font-size:
        clamp(
            40px,
            5vw,
            67px
        );

    line-height: 1.03;

    letter-spacing: -0.065em;
}

.section-heading.centered p {
    max-width: 680px;

    margin:
        24px
        auto
        0;

    color: var(--ink-soft);

    font-size: 16px;
    line-height: 1.8;
}

.split-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.6fr);

    align-items: end;

    gap: 80px;
}

.heading-side {
    padding-bottom: 5px;
}

.heading-side p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 15px;
    line-height: 1.8;
}

.underlined-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    padding-bottom: 7px;

    border-bottom:
        1px solid
        var(--ink);

    font-size: 12px;
    font-weight: 700;
}

.underlined-link span {
    transition:
        transform var(--transition);
}

.underlined-link:hover span {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--bg);
}

.about-layout {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;
}

.about-statement {
    padding:
        42px 0;

    border-top:
        1px solid
        var(--line);
}

.statement-number,
.feature-number {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.about-statement h3 {
    max-width: 500px;

    margin:
        45px
        0
        25px;

    font-family: var(--font-display);

    font-size: 38px;
    line-height: 1.08;

    letter-spacing: -0.05em;
}

.about-statement p {
    max-width: 530px;

    color: var(--ink-soft);

    font-size: 14px;
    line-height: 1.9;
}

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    background:
        var(--line);

    border:
        1px solid
        var(--line);
}

.feature-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 30px;

    background:
        rgba(255, 255, 255, 0.45);

    transition:
        background var(--transition),
        transform var(--transition);
}

.feature-card:hover {
    background: #fff;

    transform:
        translateY(-5px);
}

.feature-card h4 {
    margin: 35px 0 10px;

    font-family: var(--font-display);

    font-size: 19px;

    letter-spacing: -0.035em;
}

.feature-card p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.service-card {
    position: relative;

    min-height: 465px;

    padding: 30px;

    border:
        1px solid
        rgba(16, 21, 28, 0.08);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.65);

    overflow: hidden;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 255, 95, 0.22),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.5s ease;
}

.service-card:hover {
    transform:
        translateY(-9px);

    background: #fff;

    box-shadow:
        var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-large {
    grid-column: span 1;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-index {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.1em;
}

.service-arrow {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--line);

    border-radius: 50%;

    color: var(--ink);

    transition:
        transform var(--transition),
        background var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--accent);

    transform:
        translate(3px, -3px);
}

.service-icon {
    width: 54px;
    height: 54px;

    margin-top: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--dark);

    color: var(--accent);
}

.service-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin:
        28px
        0
        13px;

    font-family: var(--font-display);

    font-size: 24px;
    line-height: 1.1;

    letter-spacing: -0.045em;
}

.service-card > p {
    min-height: 72px;

    margin: 0;

    color: var(--ink-soft);

    font-size: 12px;
    line-height: 1.75;
}

.service-card ul {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin:
        25px
        0
        0;

    padding: 20px 0 0;

    border-top:
        1px solid
        var(--line);

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 16px;

    color: #39424c;

    font-size: 10px;
}

.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent-dark);
}


/* =========================================================
   STATEMENT
========================================================= */

.statement-section {
    position: relative;

    padding:
        145px
        0;

    overflow: hidden;
}

.statement-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -280px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 255, 95, 0.10),
            transparent 70%
        );
}

.statement-inner {
    position: relative;

    max-width: 950px;
}

.statement-inner h2 {
    margin:
        25px
        0
        30px;

    font-family: var(--font-display);

    font-size:
        clamp(
            48px,
            7vw,
            92px
        );

    line-height: 0.99;

    letter-spacing: -0.075em;
}

.statement-inner h2 span {
    color:
        rgba(255, 255, 255, 0.35);
}

.statement-inner p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: var(--bg);
}

.process-timeline {
    position: relative;

    padding-top: 10px;
}

.process-line {
    position: absolute;

    left: 30px;
    top: 20px;
    bottom: 80px;

    width: 1px;

    background:
        rgba(16, 21, 28, 0.11);

    overflow: hidden;
}

.process-line-progress {
    display: block;

    width: 100%;
    height: 0;

    background: var(--accent-dark);

    transition:
        height 0.2s linear;
}

.process-step {
    position: relative;

    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        150px;

    gap: 45px;

    padding:
        30px
        0
        75px;
}

.process-marker {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--line);

    border-radius: 50%;

    background: var(--bg);

    font-size: 10px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.process-step:hover .process-marker {
    background: var(--accent);

    border-color: var(--accent);
}

.process-content {
    padding-top: 8px;
}

.process-label {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.process-content h3 {
    margin:
        13px
        0
        14px;

    font-family: var(--font-display);

    font-size: 36px;

    letter-spacing: -0.055em;
}

.process-content p {
    max-width: 630px;

    margin: 0;

    color: var(--ink-soft);

    font-size: 14px;

    line-height: 1.85;
}

.process-side {
    padding-top: 12px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-align: right;
}


/* =========================================================
   INSIGHTS
========================================================= */

.insight-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.insight-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 31px;

    border:
        1px solid
        rgba(16, 21, 28, 0.09);

    border-radius: 20px;

    background: #fff;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.insight-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-md);
}

.insight-number {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
}

.insight-category {
    margin-top: 62px;

    color: var(--accent-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.insight-card h3 {
    margin:
        14px
        0
        14px;

    font-family: var(--font-display);

    font-size: 25px;

    line-height: 1.12;

    letter-spacing: -0.05em;
}

.insight-card p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 12px;

    line-height: 1.8;
}

.insight-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 25px;

    font-size: 11px;
    font-weight: 700;
}

.insight-card a span {
    transition:
        transform var(--transition);
}

.insight-card a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-cta {
    position: relative;

    padding:
        140px
        0;

    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.4;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.08)
            1px,
            transparent 1px
        );

    background-size: 24px 24px;

    mask-image:
        radial-gradient(
            ellipse at center,
            #000,
            transparent 72%
        );
}

.contact-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: center;
}

.contact-copy h2 {
    max-width: 700px;

    margin:
        23px
        0
        25px;

    font-family: var(--font-display);

    font-size:
        clamp(
            45px,
            5.2vw,
            70px
        );

    line-height: 1;

    letter-spacing: -0.065em;
}

.contact-copy > p {
    max-width: 530px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.85;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 16px;

    margin-top: 50px;
}

.contact-detail {
    display: flex;
    align-items: center;

    gap: 15px;

    width: fit-content;
}

.detail-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 11px;

    color: var(--accent);

    font-size: 12px;
}

.contact-detail small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 8px;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.contact-detail strong {
    display: block;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 11px;
    font-weight: 600;
}

.contact-card {
    padding: 35px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.045);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.22);

    backdrop-filter:
        blur(18px);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 11px;
    font-weight: 700;
}

.card-number {
    color:
        rgba(255, 255, 255, 0.3);

    font-size: 9px;
}

.contact-form {
    padding-top: 25px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding:
        13px
        14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    outline: none;

    background:
        rgba(0, 0, 0, 0.14);

    color: #fff;

    font-size: 12px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:
        rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color:
        rgba(215, 255, 95, 0.5);

    background:
        rgba(0, 0, 0, 0.22);
}

.form-group select {
    appearance: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            rgba(255, 255, 255, 0.55) 50%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 16px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.form-group select option {
    background: var(--dark);
    color: #fff;
}

.form-group textarea {
    resize: vertical;

    min-height: 115px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin:
        5px
        0
        20px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 9px;

    line-height: 1.5;

    cursor: pointer;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
}

.custom-checkbox {
    flex-shrink: 0;

    width: 15px;
    height: 15px;

    margin-top: 1px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 4px;

    transition:
        background var(--transition),
        border-color var(--transition);
}

.checkbox-label input:checked
+ .custom-checkbox {
    background: var(--accent);

    border-color: var(--accent);

    box-shadow:
        inset 0 0 0 3px
        var(--dark);
}

.btn-full {
    width: 100%;
}

.form-note {
    margin:
        13px
        0
        0;

    color:
        rgba(255, 255, 255, 0.26);

    font-size: 8px;

    line-height: 1.6;

    text-align: center;
}

.form-success {
    display: none;

    margin-top: 16px;

    padding: 12px;

    border:
        1px solid
        rgba(215, 255, 95, 0.2);

    border-radius: 9px;

    background:
        rgba(215, 255, 95, 0.06);

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 10px;

    line-height: 1.6;
}

.form-success.show {
    display: block;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    background: #fff;
}

.location-wrapper {
    display: grid;

    grid-template-columns:
        0.65fr
        1.35fr;

    min-height: 510px;

    overflow: hidden;

    border-radius: 28px;

    background: var(--dark);

    color: #fff;

    box-shadow:
        var(--shadow-lg);
}

.location-info {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 60px;
}

.location-info h2 {
    margin:
        23px
        0
        18px;

    font-family: var(--font-display);

    font-size: 50px;

    line-height: 1;

    letter-spacing: -0.06em;
}

.location-info h2 span {
    display: block;

    color:
        rgba(255, 255, 255, 0.34);
}

.location-info p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.location-info address {
    margin-top: 8px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 12px;

    line-height: 1.8;

    font-style: normal;
}

.location-actions {
    margin-top: 35px;
}

.btn-dark {
    background: #fff;

    color: var(--ink);
}

.btn-dark:hover {
    background: var(--accent);

    transform:
        translateY(-3px);
}

.map-container {
    position: relative;

    min-height: 510px;

    overflow: hidden;

    background: #dfe4e6;
}

.map-container iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(100%)
        contrast(1.05);
}

.map-overlay-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 15px;

    border-radius: 12px;

    background:
        rgba(10, 15, 21, 0.9);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.2);

    backdrop-filter:
        blur(10px);
}

.map-pin {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--accent);

    color: var(--ink);

    font-size: 12px;
}

.map-overlay-card strong {
    display: block;

    color: #fff;

    font-size: 10px;
}

.map-overlay-card small {
    display: block;

    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 8px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 85px 0;

    background: var(--accent);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.final-cta h2 {
    max-width: 700px;

    margin:
        18px
        0
        0;

    font-family: var(--font-display);

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -0.065em;
}

.final-cta .section-kicker {
    color: var(--ink);
}

.final-cta .btn-primary {
    background: var(--ink);

    color: #fff;

    box-shadow: none;
}

.final-cta .btn-primary:hover {
    background: #fff;

    color: var(--ink);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        75px
        0
        35px;

    background: var(--dark);

    color: #fff;
}

.footer-top {
    display: grid;

    grid-template-columns:
        1.4fr
        0.7fr
        0.9fr
        1fr;

    gap: 60px;
}

.footer-brand-link {
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 310px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 11px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-column h4 {
    margin:
        0
        0
        12px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    width: fit-content;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 10px;

    line-height: 1.65;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact span {
    line-height: 1.8;
}

.footer-divider {
    height: 1px;

    margin:
        60px
        0
        25px;

    background:
        rgba(255, 255, 255, 0.08);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-copyright {
    color:
        rgba(255, 255, 255, 0.25);

    font-size: 9px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;

    gap: 17px;
}

.legal-links a {
    color:
        rgba(255, 255, 255, 0.32);

    font-size: 9px;

    transition:
        color var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 900px;

    margin-top: 28px;
}

.footer-disclaimer p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.22);

    font-size: 8px;

    line-height: 1.8;
}


/* =========================================================
   LEGAL PAGE
========================================================= */

.legal-page {
    position: fixed;
    inset: 0;

    z-index: 12000;

    padding:
        70px
        25px;

    background:
        rgba(7, 11, 15, 0.97);

    backdrop-filter:
        blur(20px);

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}

.legal-page.open {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.legal-page-inner {
    width: min(
        900px,
        100%
    );

    margin-inline: auto;

    position: relative;
}

.legal-close {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);
}

.legal-close span {
    position: absolute;

    width: 20px;
    height: 1px;

    background: #fff;
}

.legal-close span:first-child {
    transform: rotate(45deg);
}

.legal-close span:last-child {
    transform: rotate(-45deg);
}

.legal-content {
    padding:
        50px
        0
        100px;
}

.legal-section {
    display: none;

    color: rgba(255, 255, 255, 0.7);
}

.legal-section.active {
    display: block;

    animation:
        legalFade
        0.4s
        ease;
}

@keyframes legalFade {
    from {
        opacity: 0;
        transform:
            translateY(15px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

.legal-section h1 {
    margin:
        20px
        0
        12px;

    color: #fff;

    font-family: var(--font-display);

    font-size:
        clamp(
            44px,
            7vw,
            72px
        );

    line-height: 1;

    letter-spacing: -0.07em;
}

.legal-section h2 {
    margin:
        45px
        0
        13px;

    color: #fff;

    font-family: var(--font-display);

    font-size: 24px;

    letter-spacing: -0.04em;
}

.legal-section p,
.legal-section li {
    color:
        rgba(255, 255, 255, 0.52);

    font-size: 14px;

    line-height: 1.9;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-updated {
    color:
        rgba(255, 255, 255, 0.28) !important;

    font-size: 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
    position: fixed;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 11000;

    max-width: 820px;

    margin-inline: auto;

    padding: 18px 20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 15px;

    background:
        rgba(10, 15, 21, 0.94);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.3);

    backdrop-filter:
        blur(18px);

    color: #fff;

    transform:
        translateY(calc(100% + 50px));

    transition:
        transform 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.cookie-banner.visible {
    transform:
        translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.cookie-content strong {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;
}

.cookie-content p {
    max-width: 550px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    line-height: 1.65;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-actions {
    display: flex;
    gap: 8px;

    flex-shrink: 0;
}

.cookie-primary,
.cookie-secondary {
    padding:
        9px
        14px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;
}

.cookie-primary {
    background: var(--accent);

    color: var(--ink);
}

.cookie-secondary {
    background:
        rgba(255, 255, 255, 0.07);

    color: #fff;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 8000;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(16, 21, 28, 0.12);

    border-radius: 50%;

    background: #fff;

    color: var(--ink);

    box-shadow:
        var(--shadow-sm);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.9s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        transform 0.9s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}

.reveal-delay {
    transition-delay: 0.18s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        gap: 50px;
    }

    .hero h1 {
        font-size:
            clamp(
                48px,
                6vw,
                70px
            );
    }

    .floating-card-one {
        left: -15px;
    }

    .floating-card-two {
        right: -15px;
    }

    .about-layout {
        gap: 50px;
    }

    .contact-layout {
        gap: 60px;
    }

}


@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;

        padding:
            145px
            0
            110px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 470px;

        margin-top: 20px;
    }

    .about-layout,
    .contact-layout,
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 55px;
    }

    .map-container {
        min-height: 450px;
    }

    .services-grid,
    .insight-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .split-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-top {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .container {
        width:
            min(
                calc(100% - 32px),
                var(--container)
            );
    }

    .site-header {
        height: 72px;
    }

    .site-header.scrolled {
        height: 66px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 7px;
    }

    .hero {
        padding:
            120px
            0
            95px;
    }

    .hero h1 {
        font-size: 49px;

        line-height: 0.99;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

    .hero-trust {
        flex-wrap: wrap;

        gap: 15px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        min-width: 95px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .dashboard-card {
        padding: 20px;
    }

    .dashboard-top h3 {
        font-size: 17px;
    }

    .chart-area {
        height: 190px;
    }

    .floating-card-one {
        left: -5px;
        bottom: 20px;
    }

    .floating-card-two {
        right: -5px;
        top: 35px;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .about-layout {
        gap: 45px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 210px;
    }

    .services-grid,
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 25px;
    }

    .service-icon {
        margin-top: 35px;
    }

    .service-card > p {
        min-height: auto;
    }

    .statement-section {
        padding: 95px 0;
    }

    .statement-inner h2 {
        font-size: 51px;
    }

    .process-step {
        grid-template-columns:
            50px
            1fr;

        gap: 20px;

        padding-bottom: 55px;
    }

    .process-marker {
        width: 50px;
        height: 50px;
    }

    .process-side {
        display: none;
    }

    .process-line {
        left: 25px;
    }

    .process-content h3 {
        font-size: 30px;
    }

    .contact-cta {
        padding: 95px 0;
    }

    .contact-layout {
        gap: 55px;
    }

    .contact-copy h2 {
        font-size: 48px;
    }

    .contact-card {
        padding: 23px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 40px 28px;
    }

    .location-info h2 {
        font-size: 44px;
    }

    .map-container {
        min-height: 390px;
    }

    .final-cta {
        padding: 65px 0;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 45px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-divider {
        margin-top: 45px;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-links {
        gap: 11px;
    }

    .cookie-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-primary,
    .cookie-secondary {
        flex: 1;
    }

    .legal-page {
        padding:
            75px
            18px
            30px;
    }

    .legal-content {
        padding-bottom: 70px;
    }

    .legal-section h1 {
        font-size: 45px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}