@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* =========================================================
   FUBO SERVICES
   Modern Digital Services Theme
   ========================================================= */


/* ================= ROOT ================= */

:root {

    --bg: #f4f5f7;
    --surface: #ffffff;
    --surface-dark: #111318;
    --surface-soft: #e9ebef;

    --text: #111318;
    --text-soft: #606773;
    --text-light: #9298a2;

    --accent: #c8ff3d;
    --accent-dark: #9dcc18;

    --line: #dfe2e7;
    --line-dark: #292d35;

    --white: #ffffff;
    --black: #090a0d;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;

    --container: 1240px;

    --display: "Space Grotesk", sans-serif;
    --body: "DM Sans", sans-serif;

}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--accent);
    color: var(--black);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}


/* ================= GLOBAL ================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--text-soft);

    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-tag::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h1 span,
h2 span {
    color: var(--accent-dark);
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--accent-dark);
}

p {
    color: var(--text-soft);
}


/* ================= BUTTONS ================= */

.btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 0 23px;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn span {
    font-size: 17px;

    transition:
        transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover span {
    transform: translate(3px, -3px);
}

.btn-primary {
    background: var(--text);
    color: var(--white);
}

.btn-primary:hover {
    background: #252a32;

    box-shadow:
        0 15px 30px rgba(17, 19, 24, 0.14);
}

.btn-outline {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--text);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    background: rgba(244, 245, 247, 0.9);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(18px);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: baseline;

    color: var(--text);

    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;

    letter-spacing: -0.055em;
}

.brand span {
    color: var(--accent-dark);

    font-size: 10px;
    margin-left: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links > a:not(.nav-cta) {
    position: relative;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-links > a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background: var(--accent-dark);

    transition: width 0.25s ease;
}

.nav-links > a:not(.nav-cta):hover {
    color: var(--text);
}

.nav-links > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 0 17px;

    border-radius: 100px;

    background: var(--text);
    color: var(--white) !important;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.nav-cta:hover {
    background: var(--accent-dark);
    color: var(--black) !important;

    transform: translateY(-2px);
}

.nav-cta span {
    font-size: 14px;
}


/* Mobile menu */

.mobile-menu {
    display: none;

    width: 43px;
    height: 43px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    border-radius: 50%;

    background: var(--surface);
    border: 1px solid var(--line);

    cursor: pointer;
}

.mobile-menu span {
    width: 19px;
    height: 1.5px;

    background: var(--text);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--bg);

    border-bottom: 1px solid var(--line);
}

.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 90px;

    padding-top: 80px;
    padding-bottom: 90px;
}


/* Background glow */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    background: rgba(200, 255, 61, 0.13);
}

.hero-glow-two {
    width: 300px;
    height: 300px;

    bottom: -200px;
    left: -100px;

    background: rgba(200, 255, 61, 0.08);
}


/* Hero main */

.hero-main {
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 27px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.hero-label-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent-dark);

    box-shadow:
        0 0 0 5px rgba(200, 255, 61, 0.15);
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(60px, 7vw, 94px);
}

.hero h1 span {
    display: block;

    color: var(--accent-dark);
}

.hero-description {
    max-width: 570px;

    margin-top: 28px;

    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 34px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 500;
}

.hero-note-line {
    width: 28px;
    height: 1px;

    background: var(--accent-dark);
}


/* =========================================================
   HERO DASHBOARD
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    position: relative;

    width: min(100%, 510px);

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--surface-dark);

    box-shadow:
        0 35px 70px rgba(17, 19, 24, 0.2);

    transform: rotate(1.5deg);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.dashboard-card:hover {
    transform: rotate(0) translateY(-6px);

    box-shadow:
        0 42px 85px rgba(17, 19, 24, 0.24);
}

.dashboard-header {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    border-bottom: 1px solid var(--line-dark);
}

.dashboard-brand {
    color: var(--white);

    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.dashboard-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);
}

.dashboard-content {
    padding: 38px 30px 30px;
}

.dashboard-eyebrow {
    color: rgba(255, 255, 255, 0.42);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.dashboard-title {
    max-width: 280px;

    margin-top: 12px;

    color: var(--white);

    font-family: var(--display);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.dashboard-title strong {
    color: var(--accent);
    font-weight: 500;
}


/* Chart */

.dashboard-chart {
    position: relative;

    height: 170px;

    margin-top: 35px;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-grid {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid span {
    display: block;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.07);
}

.chart-line {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 12px;

    height: 125px;

    display: flex;
    align-items: flex-end;
    justify-content: space-around;

    padding: 0 8px;
}

.chart-line i {
    width: 9%;

    min-height: 18px;

    border-radius: 6px 6px 2px 2px;

    background: var(--accent);

    opacity: 0.9;

    transform-origin: bottom;

    animation: chartGrow 1.1s ease both;
}

.chart-line i:nth-child(1) {
    height: 28%;
}

.chart-line i:nth-child(2) {
    height: 44%;
    animation-delay: 0.08s;
}

.chart-line i:nth-child(3) {
    height: 36%;
    animation-delay: 0.16s;
}

.chart-line i:nth-child(4) {
    height: 63%;
    animation-delay: 0.24s;
}

.chart-line i:nth-child(5) {
    height: 76%;
    animation-delay: 0.32s;
}

.chart-line i:nth-child(6) {
    height: 92%;
    animation-delay: 0.4s;
}

@keyframes chartGrow {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }

}


/* Dashboard stats */

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 1px;

    margin-top: 20px;

    background: var(--line-dark);
}

.dashboard-stats > div {
    padding: 17px;

    background: var(--surface-dark);
}

.dashboard-stats small {
    display: block;

    color: rgba(255, 255, 255, 0.38);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.dashboard-stats strong {
    display: block;

    margin-top: 3px;

    color: var(--white);

    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
}

.dashboard-footer {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    border-top: 1px solid var(--line-dark);

    color: rgba(255, 255, 255, 0.3);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.13em;
}


/* Floating cards */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 15px;

    border: 1px solid var(--line);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 16px 35px rgba(17, 19, 24, 0.1);

    backdrop-filter: blur(12px);

    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-one {
    left: -15px;
    bottom: 58px;
}

.floating-card-two {
    top: 45px;
    right: -15px;

    flex-direction: column;
    align-items: flex-start;

    min-width: 105px;

    animation-delay: 0.8s;
}

.floating-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--accent);

    color: var(--black);

    font-size: 14px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--text);

    font-family: var(--display);
    font-size: 11px;
}

.floating-card small,
.floating-card-two span {
    color: var(--text-light);

    font-size: 8px;
}

.floating-card-two strong {
    font-size: 25px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* Hero scroll */

.hero-scroll {
    position: absolute;

    bottom: 25px;
    left: 50%;

    display: flex;
    align-items: center;
    gap: 12px;

    transform: translateX(-50%);

    color: var(--text-light);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero-scroll div {
    width: 38px;
    height: 1px;

    background: var(--line);
}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
    overflow: hidden;

    background: var(--accent);

    border-bottom: 1px solid var(--text);
}

.marquee-track {
    min-height: 72px;

    display: flex;
    align-items: center;

    width: max-content;

    gap: 32px;

    padding: 0 25px;

    animation: marquee 24s linear infinite;
}

.marquee-track span {
    color: var(--black);

    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.marquee-track b {
    color: var(--black);

    font-size: 13px;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }

}


/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
    padding: 140px 0;

    background: var(--surface);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.25fr 0.75fr;

    gap: 70px;
}

.intro-number {
    color: var(--text-light);

    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
}

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    max-width: 800px;

    margin-top: 22px;

    font-size: clamp(47px, 5.7vw, 76px);
}

.intro-content h2 em {
    color: var(--text-light);
}

.intro-content p {
    max-width: 690px;

    margin-top: 27px;

    font-size: 15px;
    line-height: 1.85;
}

.intro-content p + p {
    margin-top: 12px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    border-bottom: 1px solid var(--text);

    padding-bottom: 6px;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.arrow-link span {
    font-size: 15px;
}

.arrow-link:hover {
    color: var(--accent-dark);

    gap: 17px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    padding: 130px 0;

    background: var(--bg);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 60px;
}

.section-heading h2 {
    max-width: 700px;

    margin-top: 20px;

    font-size: clamp(45px, 5vw, 68px);
}

.section-heading h2 em {
    color: var(--text-light);
}

.section-heading > p {
    max-width: 350px;

    margin-bottom: 3px;

    font-size: 13px;
    line-height: 1.8;
}


/* Service grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 530px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    background: var(--surface);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #c9cdd3;

    box-shadow:
        0 25px 55px rgba(17, 19, 24, 0.08);
}

.service-featured {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-number {
    color: var(--text-light);

    font-family: var(--display);
    font-size: 10px;
    font-weight: 600;
}

.service-featured .service-number {
    color: rgba(255, 255, 255, 0.35);
}

.service-arrow {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);

    border-radius: 50%;

    color: var(--text);

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.service-card:hover .service-arrow {
    background: var(--accent);

    border-color: var(--accent);

    transform: rotate(45deg);
}

.service-featured .service-arrow {
    border-color: var(--line-dark);
    color: var(--white);
}


/* Service icons */

.service-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 65px;
    margin-bottom: 28px;

    border-radius: 19px;

    background: var(--surface-soft);
}

.service-featured .service-icon {
    background: var(--accent);
}


/* Website icon */

.service-icon-web {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    align-content: center;
    justify-content: center;
    gap: 5px;
}

.service-icon-web span {
    width: 8px;
    height: 8px;

    border-radius: 2px;

    background: var(--text);
}

.service-icon-web span:nth-child(2) {
    opacity: 0.55;
}

.service-icon-web span:nth-child(3) {
    opacity: 0.25;
}


/* AI icon */

.service-icon-ai span {
    color: var(--black);

    font-size: 28px;
}


/* Growth icon */

.service-icon-growth {
    gap: 4px;

    align-items: flex-end;

    padding-bottom: 18px;
}

.service-icon-growth span {
    width: 8px;

    border-radius: 3px 3px 1px 1px;

    background: var(--text);
}

.service-icon-growth span:nth-child(1) {
    height: 15px;
}

.service-icon-growth span:nth-child(2) {
    height: 24px;
}

.service-icon-growth span:nth-child(3) {
    height: 34px;
}

.service-icon-growth span:nth-child(4) {
    height: 44px;
}


/* Service content */

.service-content {
    flex: 1;
}

.service-type {
    color: var(--text-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.service-featured .service-type {
    color: rgba(255, 255, 255, 0.42);
}

.service-content h3 {
    margin-top: 10px;

    color: var(--text);

    font-size: 30px;
}

.service-featured .service-content h3 {
    color: var(--white);
}

.service-content p {
    max-width: 320px;

    margin-top: 15px;

    font-size: 12px;
    line-height: 1.8;
}

.service-featured .service-content p {
    color: rgba(255, 255, 255, 0.53);
}


/* Service tags */

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    padding-top: 25px;

    border-top: 1px solid var(--line);
}

.service-featured .service-tags {
    border-color: var(--line-dark);
}

.service-tags span {
    padding: 5px 9px;

    border: 1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    font-size: 8px;
    font-weight: 600;
}

.service-featured .service-tags span {
    border-color: var(--line-dark);
    color: rgba(255, 255, 255, 0.48);
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach-section {
    padding: 135px 0;

    background: var(--surface-dark);

    color: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 120px;
}

.approach-statement {
    max-width: 480px;
}

.approach-statement .section-tag {
    color: rgba(255, 255, 255, 0.45);
}

.approach-statement h2 {
    margin-top: 24px;

    color: var(--white);

    font-size: clamp(48px, 5.5vw, 72px);
}

.approach-statement h2 span {
    display: block;

    color: var(--accent);
}

.approach-statement p {
    max-width: 350px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;
    line-height: 1.8;
}


/* Steps */

.approach-steps {
    border-top: 1px solid var(--line-dark);
}

.approach-step {
    position: relative;

    display: grid;
    grid-template-columns: 55px 1fr 35px;

    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid var(--line-dark);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.approach-step:hover {
    padding-left: 10px;
}

.step-marker {
    color: var(--accent);

    font-family: var(--display);
    font-size: 10px;
    font-weight: 600;
}

.step-content h3 {
    color: var(--white);

    font-size: 27px;
}

.step-content p {
    max-width: 520px;

    margin-top: 9px;

    color: rgba(255, 255, 255, 0.44);

    font-size: 12px;
    line-height: 1.8;
}

.step-arrow {
    align-self: center;

    color: rgba(255, 255, 255, 0.25);

    font-size: 18px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.approach-step:hover .step-arrow {
    color: var(--accent);

    transform: translate(3px, -3px);
}


/* =========================================================
   RESULTS
   ========================================================= */

.results-section {
    padding: 125px 0;

    background: var(--bg);
}

.results-heading {
    max-width: 760px;

    margin-bottom: 65px;
}

.results-heading h2 {
    margin-top: 20px;

    font-size: clamp(45px, 5vw, 67px);
}

.results-heading h2 em {
    color: var(--text-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.result-item {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: var(--surface);
}

.result-item strong {
    color: var(--text);

    font-family: var(--display);
    font-size: 57px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.06em;
}

.result-item span {
    max-width: 150px;

    margin-top: 14px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.result-highlight {
    background: var(--accent);
    border-color: var(--accent);
}

.result-highlight strong {
    color: var(--black);
}

.result-highlight span {
    color: rgba(9, 10, 13, 0.58);
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    padding: 130px 0;

    background: var(--surface);
}

.section-heading.centered {
    display: block;

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading.centered .section-tag {
    justify-content: center;
}

.section-heading.centered h2 {
    margin-top: 20px;
}

.section-heading.centered > p {
    max-width: 520px;

    margin: 22px auto 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 60px;
}

.review-card {
    min-height: 380px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    background: var(--surface);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(17, 19, 24, 0.07);
}

.review-dark {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-mark {
    color: var(--accent-dark);

    font-family: var(--display);
    font-size: 43px;
    line-height: 0.7;
}

.review-stars {
    color: var(--accent-dark);

    font-size: 9px;
    letter-spacing: 2px;
}

.review-dark .review-mark,
.review-dark .review-stars {
    color: var(--accent);
}

.review-card blockquote {
    margin-top: 37px;

    color: var(--text);

    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.review-dark blockquote {
    color: var(--white);
}

.review-person {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: auto;
    padding-top: 30px;
}

.review-avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--surface-soft);

    color: var(--text);

    font-family: var(--display);
    font-size: 11px;
    font-weight: 600;
}

.review-dark .review-avatar {
    background: var(--accent);
}

.review-person > div:last-child {
    display: flex;
    flex-direction: column;
}

.review-person strong {
    color: var(--text);

    font-size: 10px;
    font-weight: 700;
}

.review-dark .review-person strong {
    color: var(--white);
}

.review-person span {
    color: var(--text-light);

    font-size: 8px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding: 135px 0;

    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;

    gap: 110px;
}

.faq-heading {
    max-width: 440px;
}

.faq-heading h2 {
    margin-top: 22px;

    font-size: clamp(45px, 5vw, 65px);
}

.faq-heading h2 em {
    color: var(--text-light);
}

.faq-heading p {
    max-width: 370px;

    margin-top: 22px;

    font-size: 13px;
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 25px 0;

    background: transparent;

    color: var(--text);

    text-align: left;

    cursor: pointer;
}

.faq-question > span:first-child {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.faq-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);

    border-radius: 50%;

    color: var(--text);

    font-size: 18px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: var(--accent);

    border-color: var(--accent);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.faq-answer p {
    max-width: 650px;

    padding-bottom: 0;

    font-size: 12px;
    line-height: 1.8;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-answer p {
    padding-bottom: 25px;

    opacity: 1;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    overflow: hidden;

    background: var(--accent);

    color: var(--black);
}

.final-cta-grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(9, 10, 13, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(9, 10, 13, 0.12) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.final-cta-inner {
    position: relative;
    z-index: 2;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.final-cta-copy {
    max-width: 780px;
}

.final-cta .section-tag {
    color: rgba(9, 10, 13, 0.58);
}

.final-cta h2 {
    margin-top: 20px;

    color: var(--black);

    font-size: clamp(48px, 6vw, 78px);
}

.final-cta h2 span {
    color: var(--black);
}

.final-cta p {
    max-width: 550px;

    margin-top: 20px;

    color: rgba(9, 10, 13, 0.58);

    font-size: 13px;
}

.cta-circle {
    width: 150px;
    height: 150px;

    flex: 0 0 150px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border-radius: 50%;

    background: var(--black);
    color: var(--white);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.cta-circle:hover {
    transform: rotate(-8deg) scale(1.05);

    background: var(--surface-dark);
}

.cta-circle span {
    font-size: 10px;
    font-weight: 600;
}

.cta-circle strong {
    margin-top: 5px;

    color: var(--accent);

    font-size: 27px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--surface-dark);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);

    gap: 60px;

    padding-top: 75px;
    padding-bottom: 70px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 11px;
    line-height: 1.8;
}

.footer-email {
    display: inline-block;

    margin-top: 21px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 600;

    transition:
        color 0.25s ease;
}

.footer-email:hover {
    color: var(--white);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 9px;

    color: var(--white);

    font-family: var(--body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;

    transition:
        color 0.25s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-phone {
    color: var(--white) !important;
    font-weight: 600;
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--line-dark);
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.25);

    font-size: 8px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal-element {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-element.revealed {
    opacity: 1;

    transform: translateY(0);
}

.service-card:nth-child(2),
.approach-step:nth-child(2),
.review-card:nth-child(2),
.faq-item:nth-child(2),
.result-item:nth-child(2) {
    transition-delay: 0.08s;
}

.service-card:nth-child(3),
.approach-step:nth-child(3),
.review-card:nth-child(3),
.faq-item:nth-child(3),
.result-item:nth-child(3) {
    transition-delay: 0.16s;
}

.result-item:nth-child(4) {
    transition-delay: 0.24s;
}

.site-header.scrolled {
    box-shadow:
        0 10px 35px rgba(17, 19, 24, 0.07);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .nav-links {
        gap: 19px;
    }

    .hero-inner {
        grid-template-columns: 1fr 0.85fr;

        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(55px, 7vw, 78px);
    }

    .floating-card-one {
        left: -5px;
    }

    .floating-card-two {
        right: -5px;
    }

    .services-grid {
        gap: 10px;
    }

    .service-card {
        padding: 23px;
    }

    .approach-grid {
        gap: 70px;
    }

    .faq-grid {
        gap: 70px;
    }

    .footer-main {
        gap: 35px;
    }

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 70px;

        padding-top: 80px;
        padding-bottom: 90px;
    }

    .hero-main {
        max-width: 750px;
    }

    .hero-visual {
        width: 100%;
        max-width: 620px;

        margin: 0 auto;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .section-heading > p {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 460px;
    }

    .service-icon {
        margin-top: 45px;
    }

    .approach-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .approach-statement {
        max-width: 650px;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 320px;
    }

    .faq-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .faq-heading {
        max-width: 650px;
    }

    .final-cta-inner {
        min-height: 400px;
    }

    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 34px);
    }

    .nav-container {
        min-height: 70px;
    }

    .brand {
        font-size: 19px;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-open {
        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 14px 17px 19px;

        background: var(--surface);

        border-bottom: 1px solid var(--line);

        box-shadow:
            0 20px 40px rgba(17, 19, 24, 0.08);
    }

    .nav-links.mobile-open > a {
        width: 100%;

        padding: 14px 0;

        border-bottom: 1px solid var(--line);

        font-size: 12px;
    }

    .nav-links.mobile-open > a:last-child {
        border-bottom: 0;
    }

    .nav-links.mobile-open .nav-cta {
        justify-content: center;

        margin-top: 10px;

        padding: 12px;
    }


    /* Hero */

    .hero-inner {
        gap: 50px;

        padding-top: 60px;
        padding-bottom: 75px;
    }

    .hero-label {
        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(47px, 13vw, 63px);
    }

    .hero-description {
        margin-top: 22px;

        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;

        margin-top: 27px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-note {
        align-items: flex-start;

        font-size: 9px;
    }

    .hero-scroll {
        display: none;
    }


    /* Dashboard */

    .hero-visual {
        min-height: 390px;
    }

    .dashboard-card {
        width: 100%;

        transform: rotate(0.7deg);
    }

    .dashboard-content {
        padding: 30px 22px 22px;
    }

    .dashboard-title {
        font-size: 31px;
    }

    .dashboard-chart {
        height: 135px;
    }

    .floating-card {
        padding: 10px 11px;
    }

    .floating-card-one {
        left: -5px;
        bottom: 28px;
    }

    .floating-card-two {
        top: 12px;
        right: -5px;
    }


    /* Marquee */

    .marquee-track {
        min-height: 62px;

        gap: 24px;
    }

    .marquee-track span {
        font-size: 14px;
    }


    /* Sections */

    .intro-section,
    .services-section,
    .approach-section,
    .results-section,
    .reviews-section,
    .faq-section {
        padding: 85px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .intro-content h2 {
        font-size: clamp(42px, 11vw, 54px);
    }

    .intro-content p {
        font-size: 13px;
    }


    /* Section headings */

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: clamp(41px, 11vw, 54px);
    }

    .section-heading > p {
        font-size: 12px;
    }


    /* Services */

    .service-card {
        min-height: 470px;

        padding: 24px;

        border-radius: 22px;
    }

    .service-icon {
        width: 58px;
        height: 58px;

        margin-top: 43px;
    }

    .service-content h3 {
        font-size: 27px;
    }

    .service-content p {
        font-size: 11px;
    }


    /* Approach */

    .approach-statement h2 {
        font-size: clamp(43px, 11vw, 55px);
    }

    .approach-step {
        grid-template-columns: 35px 1fr 25px;

        gap: 12px;

        padding: 27px 0;
    }

    .step-content h3 {
        font-size: 23px;
    }

    .step-content p {
        font-size: 11px;
    }


    /* Results */

    .results-heading {
        margin-bottom: 45px;
    }

    .results-heading h2 {
        font-size: clamp(42px, 11vw, 54px);
    }

    .result-item {
        min-height: 155px;

        padding: 20px;
    }

    .result-item strong {
        font-size: 42px;
    }

    .result-item span {
        margin-top: 10px;

        font-size: 8px;
    }


    /* Reviews */

    .reviews-grid {
        margin-top: 40px;
    }

    .review-card {
        min-height: 330px;

        padding: 26px;

        border-radius: 22px;
    }

    .review-card blockquote {
        margin-top: 30px;

        font-size: 18px;
    }


    /* FAQ */

    .faq-grid {
        gap: 45px;
    }

    .faq-heading h2 {
        font-size: clamp(42px, 11vw, 54px);
    }

    .faq-question {
        padding: 21px 0;
    }

    .faq-question > span:first-child {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 11px;
    }


    /* CTA */

    .final-cta-inner {
        min-height: 520px;

        align-items: flex-start;
        justify-content: center;
        flex-direction: column;

        padding-top: 75px;
        padding-bottom: 75px;

        gap: 35px;
    }

    .final-cta h2 {
        font-size: clamp(45px, 12vw, 59px);
    }

    .final-cta p {
        font-size: 12px;
    }

    .cta-circle {
        width: 115px;
        height: 115px;

        flex-basis: 115px;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

        padding-top: 60px;
        padding-bottom: 55px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        min-height: 90px;

        align-items: flex-start;
        justify-content: center;
        flex-direction: column;

        gap: 5px;
    }

}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .dashboard-title {
        font-size: 28px;
    }

    .dashboard-chart {
        height: 115px;
    }

    .floating-card-one {
        left: -3px;
    }

    .floating-card-two {
        right: -3px;
    }

    .floating-card-one small {
        display: none;
    }

    .service-card {
        min-height: 485px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-item {
        min-height: 130px;
    }

    .review-card {
        min-height: 350px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================================
   ACCESSIBILITY / 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-element {
        opacity: 1;
        transform: none;
    }

    .dashboard-card {
        transform: none;
    }

}