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

/* Custom style for Will Berkowitz testimonial */
/* Custom style for Will Berkowitz testimonial - photo left, text right, less space above */
/* Even more compact Will Berkowitz testimonial */
/* Tighter spacing for Will Berkowitz testimonial */
.results-card__author--will {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    margin-top: -0.3rem;
    margin-bottom: 0;
    padding: 0;
}

.results-card__meta--will {
    text-align: left;
    gap: 0;
    line-height: 1.05;
    padding: 0;
    margin: 0;
}

.results-card__photo--will {
    width: 34px;
    height: 34px;
    margin: 0;
    flex-shrink: 0;
}

.results-card__author--will .results-card__name {
    font-size: 0.88rem;
    margin-bottom: 0.05rem;
}

.results-card__author--will .results-card__gym {
    font-size: 0.78rem;
    margin-top: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-accent-hover: #d63a54;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-main: 'Poppins', sans-serif;
}


html {
    scroll-behavior: smooth;
}

:root {
    --font-main: 'Poppins', Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-light);
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

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

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

/* ── Navigation ── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2rem;
    background: rgba(20, 20, 35, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.nav__logo span {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav__links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--color-white);
}

.nav__cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--color-accent-hover);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav__hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    background: var(--color-primary);
    color: var(--color-white);
    min-height: 85vh;
    overflow: hidden;
    perspective: 1200px;
}

.hero__tiles {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 140%;
    height: 140%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.72;
    transform: rotate(-8deg);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(.25, .46, .45, .94), opacity 0.35s ease-out;
}

.hero__brick-row {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
    height: 25%;
}

.hero__brick-row--offset {
    margin-left: -8%;
}

.hero__tile {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    flex: 1 0 16%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 12px rgba(233, 69, 96, 0.15),
        0 0 30px rgba(233, 69, 96, 0.05),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease;
}

/* Vertical + horizontal misalignment for organic scattered look */
.hero__tile:nth-child(1) {
    transform: translate(4px, -12px);
}

.hero__tile:nth-child(2) {
    transform: translate(-7px, 8px);
}

.hero__tile:nth-child(3) {
    transform: translate(10px, 5px);
}

.hero__tile:nth-child(4) {
    transform: translate(-3px, -9px);
}

.hero__tile:nth-child(5) {
    transform: translate(6px, 14px);
}

.hero__tile:nth-child(6) {
    transform: translate(-11px, -4px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(1) {
    transform: translate(8px, 6px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(2) {
    transform: translate(-5px, -11px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(3) {
    transform: translate(12px, -3px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(4) {
    transform: translate(-9px, 10px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(5) {
    transform: translate(3px, -7px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(6) {
    transform: translate(-6px, 13px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(1) {
    transform: translate(-8px, 11px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(2) {
    transform: translate(5px, -6px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(3) {
    transform: translate(-12px, 3px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(4) {
    transform: translate(7px, -14px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(5) {
    transform: translate(-4px, 9px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(6) {
    transform: translate(11px, -2px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(1) {
    transform: translate(6px, -10px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(2) {
    transform: translate(-10px, 4px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(3) {
    transform: translate(3px, 12px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(4) {
    transform: translate(-7px, -5px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(5) {
    transform: translate(9px, 8px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(6) {
    transform: translate(-2px, -13px);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.15) 0%, rgba(26, 26, 46, 0.75) 65%),
        linear-gradient(to bottom, rgba(26, 26, 46, 0.25) 0%, rgba(26, 26, 46, 0.92) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes tilesFloat {
    0% {
        transform: rotate(-8deg) translate(0, 0);
        opacity: 0.72;
    }

    50% {
        opacity: 0.82;
    }

    100% {
        transform: rotate(-8deg) translate(-20px, -15px);
        opacity: 0.72;
    }
}

.hero__tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.18);
    color: var(--color-accent);
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(233, 69, 96, 0.25);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero__highlight {
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn--primary:hover {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.btn--large {
    padding: 1.2rem 3rem;
    font-size: 1.35rem;
}

/* ── Hero Extras ── */
.hero__subtext {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 0.3rem;
    font-style: italic;
}

.hero__micro {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.55;
    margin-top: 0.6rem;
}

/* ── Results / Testimonials Section ── */
.results-section {
    background: var(--color-light);
    padding: 3rem 5% calc(3rem + 48px);
    position: relative;
    overflow: hidden;
    margin-bottom: -48px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 50% 100%, 0 calc(100% - 48px));
}

.results-section__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.results-section__heading {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.results-section__videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    max-width: 1060px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.results-video {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: var(--color-white, #fff);
    border-radius: 14px;
    padding: 0.6rem 0.6rem 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.results-video--dimmed {
    opacity: 0.45;
    transform: scale(0.97);
}

.results-video__embed {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* 9:16 vertical */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-video--active .results-video__embed {
    border-color: var(--color-accent);
    box-shadow:
        0 0 12px rgba(233, 69, 96, 0.35),
        0 0 30px rgba(233, 69, 96, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.12);
}

.results-video__embed iframe,
.results-video__embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    cursor: pointer;
}

.results-video__sound {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: 0 2px 12px rgba(233, 69, 96, 0.35);
}

.results-video__sound svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.results-video__sound:hover {
    background: rgba(233, 69, 96, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: scale(1.1);
}

.results-video__sound--active {
    background: rgba(233, 69, 96, 0.7);
    border-color: rgba(233, 69, 96, 0.5);
    color: #fff;
    animation: soundPulse 1.5s ease-in-out infinite;
}

@keyframes soundPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(233, 69, 96, 0);
    }
}

.results-section__cta {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.btn--glow {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(233, 69, 96, 0.3),
        0 0 40px rgba(233, 69, 96, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    animation: btnShimmer 2.5s ease-in-out infinite;
}

.btn--glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgba(233, 69, 96, 0.45),
        0 0 50px rgba(233, 69, 96, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    60% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.results-video__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.55);
    text-align: center;
    padding-top: 0.15rem;
}

.results-video__result {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.35;
    padding: 0.1rem 0.15rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-section__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.results-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.1);
}

.results-card__quote {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-primary);
    font-style: italic;
    margin: 0;
}

.results-card__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.results-card__photo {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(26, 26, 46, 0.10);
    border: 1.5px solid #fff;
    background: #f5f5f5;
    display: block;
    margin: 0;
    flex-shrink: 0;
}

.results-card__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.05rem;
}

.results-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.results-card__gym {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(26, 26, 46, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .results-section__videos {
        grid-template-columns: repeat(2, 1fr);
        max-width: 92%;
        gap: 0.75rem;
    }

    .results-video__result {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .results-video__name {
        font-size: 0.65rem;
    }

    .results-section__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 0.6rem;
    }

    .results-card {
        padding: 0.8rem 1rem;
    }

    .results-card__quote {
        font-size: 1rem;
        line-height: 1.5;
    }

    .results-card__photo {
        width: 42px;
        height: 42px;
    }

    .results-card__name {
        font-size: 1rem;
    }

    .results-card__gym {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .results-section__videos {
        max-width: 96%;
        gap: 0.5rem;
    }

    .results-section__cards {
        max-width: 320px;
        gap: 0.5rem;
    }

    .results-card {
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
    }

    .results-card__quote {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .results-card__author {
        gap: 0.4rem;
    }

    .results-card__photo {
        width: 36px;
        height: 36px;
    }

    .results-card__name {
        font-size: 0.85rem;
    }

    .results-card__gym {
        font-size: 0.65rem;
    }
}

/* ── Logo Scroller ── */
.logo-scroller {
    background: #0d0d1a;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    border-top: 1px solid rgba(233, 69, 96, 0.10);
    border-bottom: 1px solid rgba(233, 69, 96, 0.06);
}

.logo-scroller__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Twinkling stars container */
.logo-scroller__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.logo-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

.logo-star--bright {
    background: #fff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 14px rgba(255, 255, 255, 0.3);
    animation-name: starTwinkleBright;
}

@keyframes starTwinkle {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.15;
        transform: scale(0.9);
    }
}

@keyframes starTwinkleBright {
    0% {
        opacity: 0.25;
        transform: scale(1);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.4);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 18px rgba(255, 255, 255, 0.25);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.85);
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    }
}

.logo-scroller__title {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.logo-scroller__track {
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-scroller__slide {
    display: flex;
    gap: clamp(1.25rem, 3vw, 4rem);
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-scroller__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(95px, 10vw, 170px);
    height: clamp(40px, 4.5vw, 60px);
    background: transparent;
    border: none;
    padding: 0;
}

.logo-scroller__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.55;
    transition: all 0.4s ease;
}

.logo-scroller__item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 0.85;
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.15);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-scroller {
        padding: 1.25rem 0;
    }

    .logo-scroller__title {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
    }

    .logo-scroller__slide {
        gap: 1rem;
    }

    .logo-scroller__item {
        width: 90px;
        height: 38px;
    }
}

/* ── Pain Section ── */
.pain__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .pain__grid {
        grid-template-columns: 1fr;
    }
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--color-accent);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pain-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-style: italic;
}

.pain-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── What You Get (tile background) ── */
.wyg {
    position: relative;
    background: var(--color-primary);
    padding: 0;
    padding-top: 50px;
    text-align: center;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wyg__tiles {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 130%;
    height: 130%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.5;
    transform: rotate(6deg);
    animation: wygFloat 22s ease-in-out infinite alternate;
}

@keyframes wygFloat {
    0% {
        transform: rotate(6deg) translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: rotate(5deg) translate(-12px, 8px);
        opacity: 0.55;
    }

    100% {
        transform: rotate(7deg) translate(8px, -6px);
        opacity: 0.48;
    }
}

.wyg__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.2) 0%, rgba(26, 26, 46, 0.8) 65%),
        linear-gradient(to bottom, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.93) 100%);
    z-index: 1;
}

.wyg__content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 5% 3rem;
    width: 100%;
}

.wyg__heading {
    position: relative;
    z-index: 10;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7);
}

.wyg__sub {
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* ── Funnel ── */
.funnel {
    position: relative;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SVG funnel outline behind everything */
.funnel__shape {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 280%;
    height: 130%;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 16px 40px rgba(233, 69, 96, 0.12)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Falling stick figures inside funnel */
.funnel__drop {
    animation: funnelFall 4s ease-in infinite;
    opacity: 0;
}

.funnel__drop--1 {
    animation-delay: 0s;
}

.funnel__drop--2 {
    animation-delay: 0.8s;
}

.funnel__drop--3 {
    animation-delay: 1.6s;
}

.funnel__drop--4 {
    animation-delay: 2.4s;
}

.funnel__drop--5 {
    animation-delay: 3.2s;
}

.funnel__drop--6 {
    animation-delay: 1.2s;
    animation-name: funnelFall6;
}

.funnel__drop--7 {
    animation-delay: 2.0s;
    animation-name: funnelFall7;
}

.funnel__drop--8 {
    animation-delay: 2.8s;
    animation-name: funnelFall8;
}

@keyframes funnelFall {
    0% {
        transform: translate(280px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    25% {
        transform: translate(310px, 140px);
        opacity: 0.7;
    }

    50% {
        transform: translate(295px, 300px);
        opacity: 0.6;
    }

    75% {
        transform: translate(300px, 440px);
        opacity: 0.4;
    }

    95% {
        opacity: 0.3;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

/* Vary horizontal positions */
.funnel__drop--1 {
    animation-name: funnelFall1;
}

@keyframes funnelFall1 {
    0% {
        transform: translate(220px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    25% {
        transform: translate(260px, 140px);
        opacity: 0.7;
    }

    50% {
        transform: translate(280px, 300px);
        opacity: 0.6;
    }

    75% {
        transform: translate(290px, 440px);
        opacity: 0.4;
    }

    95% {
        opacity: 0.3;
    }

    100% {
        transform: translate(295px, 590px);
        opacity: 0;
    }
}

.funnel__drop--2 {
    animation-name: funnelFall2;
}

@keyframes funnelFall2 {
    0% {
        transform: translate(370px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(340px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(315px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(305px, 440px);
        opacity: 0.35;
    }

    95% {
        opacity: 0.25;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

.funnel__drop--3 {
    animation-name: funnelFall3;
}

@keyframes funnelFall3 {
    0% {
        transform: translate(300px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    25% {
        transform: translate(300px, 140px);
        opacity: 0.55;
    }

    50% {
        transform: translate(300px, 300px);
        opacity: 0.45;
    }

    75% {
        transform: translate(300px, 440px);
        opacity: 0.3;
    }

    95% {
        opacity: 0.2;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

.funnel__drop--4 {
    animation-name: funnelFall4;
}

@keyframes funnelFall4 {
    0% {
        transform: translate(160px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(240px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(275px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(290px, 440px);
        opacity: 0.35;
    }

    95% {
        opacity: 0.2;
    }

    100% {
        transform: translate(298px, 590px);
        opacity: 0;
    }
}

.funnel__drop--5 {
    animation-name: funnelFall5;
}

@keyframes funnelFall5 {
    0% {
        transform: translate(420px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.55;
    }

    25% {
        transform: translate(355px, 140px);
        opacity: 0.5;
    }

    50% {
        transform: translate(320px, 300px);
        opacity: 0.4;
    }

    75% {
        transform: translate(308px, 440px);
        opacity: 0.3;
    }

    95% {
        opacity: 0.15;
    }

    100% {
        transform: translate(302px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall6 {
    0% {
        transform: translate(250px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.75;
    }

    25% {
        transform: translate(275px, 140px);
        opacity: 0.65;
    }

    50% {
        transform: translate(290px, 300px);
        opacity: 0.55;
    }

    75% {
        transform: translate(296px, 440px);
        opacity: 0.35;
    }

    100% {
        transform: translate(299px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall7 {
    0% {
        transform: translate(390px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(350px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(320px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(307px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(301px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall8 {
    0% {
        transform: translate(180px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.65;
    }

    25% {
        transform: translate(250px, 140px);
        opacity: 0.55;
    }

    50% {
        transform: translate(280px, 300px);
        opacity: 0.45;
    }

    75% {
        transform: translate(295px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

/* Cash stacks replaced with dollar signs */
.funnel__cashpile {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
    min-height: 30px;
}

.funnel__cashstack {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2ecc71;
    opacity: 0;
    animation: dollarPop 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
}

.funnel__cashstack--1 {
    animation-delay: 0s;
}

.funnel__cashstack--2 {
    animation-delay: 0.5s;
}

.funnel__cashstack--3 {
    animation-delay: 1s;
}

.funnel__cashstack--4 {
    animation-delay: 1.5s;
}

.funnel__cashstack--5 {
    animation-delay: 2s;
}

.funnel__cashstack--6 {
    animation-delay: 2.5s;
}

.funnel__cashstack--7 {
    animation-delay: 0.3s;
}

.funnel__cashstack--8 {
    animation-delay: 1.8s;
}

@keyframes dollarPop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.7);
    }

    15% {
        opacity: 1;
        transform: translateY(-4px) scale(1.1);
    }

    50% {
        opacity: 0.85;
        transform: translateY(-12px) scale(1);
    }

    85% {
        opacity: 0.4;
        transform: translateY(-20px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(-26px) scale(0.8);
    }
}

/* Each tier row */
.funnel__tier {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.2rem 0;
}

.funnel__tier--1 {
    width: 100%;
}

.funnel__tier--2 {
    width: 72%;
    margin-top: 3.65rem;
}

.funnel__tier--3 {
    width: 50%;
    margin-top: 3.9rem;
}

/* Stage label – horizontal, inside funnel above cards */
.funnel__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 0;
}

/* Cards container */
.funnel__cards {
    display: flex;
    gap: 0.6rem;
    flex: 1;
    justify-content: center;
}

/* Individual card */
.funnel__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    max-width: 210px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.funnel__card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.funnel__card--wide {
    max-width: 320px;
}

.funnel__card--accent {
    background: #162b1f;
    border-color: #22c55e;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15), 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: none;
    max-width: 260px;
}

.funnel__card-icon {
    font-size: 1rem;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.funnel__card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.funnel__card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.wyg__support {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-top: 1.2rem;
}

.wyg__cta {
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 700px) {
    .wyg__content {
        padding: 2rem 5% 5rem;
    }

    .wyg__heading {
        font-size: 1.5rem;
    }

    .wyg__support {
        font-size: 0.8rem;
        transform: translateY(50px);
    }

    .wyg__cta {
        transform: translateY(50px);
    }

    .funnel {
        max-width: 100%;
        padding: 0;
    }

    .funnel__shape {
        width: 500%;
        height: 150%;
        top: -20%;
    }

    .funnel__tier--1 {
        width: 100%;
    }

    .funnel__tier--2 {
        width: 68%;
        margin-top: calc(2.2rem + 10px);
    }

    .funnel__tier--3 {
        width: 52%;
        margin-top: 2rem;
        transform: translateY(35px);
    }

    .funnel__cashpile {
        transform: translateY(35px);
        margin-top: 1rem;
    }

    .funnel__cards {
        flex-direction: column;
        align-items: center;
    }

    /* Tier-1 cards: inverted pyramid on mobile */
    .funnel__tier--1 .funnel__cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem;
    }

    .funnel__tier--1 .funnel__card {
        max-width: 48%;
        width: auto;
        min-width: 0;
        flex: 0 1 auto;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
    }

    .funnel__tier--1 .funnel__card:last-child {
        flex-basis: auto;
        max-width: 52%;
    }

    .funnel__tier--1 .funnel__card h4 {
        font-size: 14px;
        white-space: nowrap;
        line-height: 1.2;
    }

    .funnel__tier--1 .funnel__card .funnel__card-icon {
        display: inline;
        font-size: 0.65rem;
        margin-right: 0.1rem;
    }

    .funnel__tier--1 .funnel__card p {
        display: block;
        font-size: 12px;
        line-height: 1.3;
        margin-top: 0.1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card {
        max-width: 180px;
        width: 100%;
        min-width: 0;
        padding: 0.35rem 0.4rem;
        border-radius: 8px;
    }

    .funnel__card h4 {
        font-size: 0.75rem;
        white-space: normal;
        word-break: break-word;
    }

    .funnel__card p {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--paid p,
    .funnel__card--organic p,
    .funnel__card--website p,
    .funnel__tier--1 .funnel__card--paid p,
    .funnel__tier--1 .funnel__card--organic p,
    .funnel__tier--1 .funnel__card--website p {
        font-size: 0 !important;
        color: transparent !important;
    }

    .funnel__card--paid p::after {
        content: 'Highly effective ads';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--organic p::after {
        content: 'Get leads for free';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--website p::after {
        content: 'Supercharge your lead flow';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--wide {
        max-width: 180px;
    }

    .funnel__card--accent {
        max-width: 160px;
    }

    .funnel__card--wide p {
        display: block;
        font-size: 11px;
        line-height: 1.35;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card-icon {
        font-size: 0.85rem;
        margin-right: 0.15rem;
    }

    .funnel__label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.65rem;
        margin-right: 0;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__tier {
        gap: 0.2rem;
        padding: 0.6rem 0;
        flex-direction: column;
    }

    .funnel__people--enter {
        width: 120px;
    }
}

/* ── How It Works (compact dark) ── */
.hiw {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0d1a 30%, #0a1628 60%, #1a0a2e 100%);
    padding: 4.5rem 5% 4rem;
    text-align: center;
    overflow: hidden;
    max-width: 96%;
    width: 100%;
    margin: 3rem auto 0;
    border: 1px solid rgba(233, 69, 96, 0.25);
    border-radius: 20px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(233, 69, 96, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hiw--hidden {
    opacity: 0;
    transform: translateY(40px);
}

.hiw--visible {
    opacity: 1;
    transform: translateY(0);
}

.hiw::before,
.hiw::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 3;
}

.hiw::before {
    top: 0;
    background: linear-gradient(90deg, transparent 5%, rgba(233, 69, 96, 0.5) 30%, rgba(100, 60, 255, 0.4) 70%, transparent 95%);
}

.hiw::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent 5%, rgba(60, 100, 255, 0.4) 30%, rgba(233, 69, 96, 0.5) 70%, transparent 95%);
}

.hiw__canvas {
    display: none;
}

/* ── Animated mesh-glow background ── */
.hiw__wave {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
}

.hiw__wave--1 {
    width: 550px;
    height: 550px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.5) 0%, rgba(200, 50, 120, 0.25) 40%, transparent 70%);
    animation: hiwOrb1 10s ease-in-out infinite alternate;
}

.hiw__wave--2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(60, 100, 255, 0.45) 0%, rgba(30, 180, 220, 0.2) 40%, transparent 70%);
    animation: hiwOrb2 12s ease-in-out infinite alternate;
}

.hiw__wave--3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(160, 60, 220, 0.35) 0%, rgba(120, 40, 200, 0.15) 40%, transparent 70%);
    animation: hiwOrb3 14s ease-in-out infinite alternate;
}

@keyframes hiwOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(80px, 40px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes hiwOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-70px, -30px) scale(1.15);
        opacity: 0.55;
    }
}

@keyframes hiwOrb3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-40%, -55%) scale(1.25);
        opacity: 0.45;
    }
}

.hiw__wave--4 {
    width: 350px;
    height: 350px;
    top: -40px;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 100, 180, 0.35) 0%, rgba(255, 60, 130, 0.15) 40%, transparent 70%);
    animation: hiwOrb4 11s ease-in-out infinite alternate;
}

@keyframes hiwOrb4 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.65;
    }

    100% {
        transform: translate(-40px, 50px) scale(1.1);
        opacity: 0.5;
    }
}

.hiw__heading {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hiw__sub {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.4);
}

.hiw__track {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hiw__line {
    display: none;
}

/* connecting line (desktop) */
@media (min-width: 701px) {
    .hiw__line {
        display: block;
        position: absolute;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-accent), rgba(100, 60, 255, 0.6), transparent);
        opacity: 0.4;
        z-index: 0;
    }
}

.hiw__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 0 14px rgba(233, 69, 96, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    z-index: 2;
}

.hiw__num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0;
}

.hiw__step {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 2rem 1.5rem 1.8rem;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hiw__step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hiw__step--active {
    border-color: rgba(233, 69, 96, 0.3);
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.03) 100%);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(233, 69, 96, 0.1);
}

.hiw__step h3,
.hiw__step p {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hiw__step--active h3,
.hiw__step--active p {
    opacity: 1;
}

.hiw__step:not(.hiw__step--active) .hiw__num {
    background: #a83450;
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.hiw__step--active .hiw__num {
    transform: scale(1.15);
    box-shadow: 0 0 24px rgba(233, 69, 96, 0.7), 0 0 48px rgba(233, 69, 96, 0.3);
}

.hiw__step--active .hiw__num::after {
    animation: ringPulse 1.5s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

.hiw__step h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
    transition: color 0.4s;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.hiw__step p {
    text-align: center;
    width: 100%;
}

.hiw__step--active h3 {
    color: var(--color-accent);
}

.hiw__step p {
    font-size: 0.88rem;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

@media (min-width: 1200px) {
    .hiw {
        max-width: 96%;
    }
}

@media (max-width: 1199px) and (min-width: 901px) {
    .hiw {
        max-width: 94%;
    }
}

@media (max-width: 900px) and (min-width: 701px) {
    .hiw {
        max-width: 92%;
    }
}

@media (max-width: 700px) {
    .hiw {
        padding: 2.5rem 5% 2rem;
        max-width: 100%;
        border-radius: 14px;
    }

    .hiw__heading {
        font-size: 1.5rem;
    }

    .hiw__track {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .hiw__step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        max-width: 340px;
        width: 100%;
        padding: 1rem 1.2rem;
    }

    .hiw__num {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .hiw__step h3 {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
        text-align: left;
    }

    .hiw__step p {
        font-size: 0.82rem;
        text-align: left;
    }
}

/* ── Section Shared ── */
.section {
    padding: 5rem 5%;
}

.section--gray {
    background: var(--color-light);
}

.section--dark {
    background: #0d0d1a;
    color: var(--color-white);
}

.section--dark .section__header h2,
.section--dark .section__header p {
    color: var(--color-white);
}

.section--dark .section__header p {
    opacity: 0.6;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section__header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Services ── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Section Divider with Arrow ── */
.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.section-divider__line {
    flex: 1;
    height: 1px;
}

.section-divider__line--left {
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.15) 10%, rgba(233, 69, 96, 0.5) 50%, rgba(233, 69, 96, 0.6) 100%);
}

.section-divider__line--right {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.6) 0%, rgba(233, 69, 96, 0.5) 50%, rgba(233, 69, 96, 0.15) 90%, transparent 100%);
}

.section-divider__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 0 12px;
    flex-shrink: 0;
}

.section-divider__chevron {
    width: 28px;
    height: 16px;
    color: rgba(233, 69, 96, 0.2);
    animation: dividerChevron 2s ease-in-out infinite;
}

.section-divider__chevron--1 {
    animation-delay: 0s;
}

.section-divider__chevron--2 {
    animation-delay: 0.15s;
}

.section-divider__chevron--3 {
    animation-delay: 0.3s;
}

@keyframes dividerChevron {
    0% {
        color: rgba(233, 69, 96, 0.15);
        transform: translateY(-2px);
    }

    30% {
        color: rgba(233, 69, 96, 0.9);
        transform: translateY(0);
        filter: drop-shadow(0 0 6px rgba(233, 69, 96, 0.5));
    }

    60% {
        color: rgba(160, 60, 220, 0.6);
        transform: translateY(2px);
        filter: drop-shadow(0 0 4px rgba(160, 60, 220, 0.3));
    }

    100% {
        color: rgba(233, 69, 96, 0.15);
        transform: translateY(-2px);
        filter: none;
    }
}

/* ── Final CTA ── */
.final-cta {
    position: relative;
    text-align: center;
    padding: 6rem 5%;
    padding-top: 5rem;
    background: linear-gradient(165deg, #2a0a1e 0%, #1a0a2e 25%, #0d0d1a 50%, #0a1628 75%, #1a0a2e 100%);
    color: var(--color-white);
    overflow: visible;
    border-top: none;
}

.final-cta::before {
    display: none;
}

.final-cta__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.18) 0%, rgba(160, 60, 220, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: ctaGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaGlowPulse {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(233, 69, 96, 0.35);
    border-radius: 50px;
    background: rgba(233, 69, 96, 0.08);
    margin-bottom: 1.8rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.2);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(233, 69, 96, 0.15);
    }
}

.final-cta__heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.final-cta__highlight {
    color: var(--color-accent);
    position: relative;
}

.final-cta__sub {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.final-cta__proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.final-cta__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta__stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.final-cta__stat-label {
    font-size: 0.8rem;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.final-cta__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.final-cta__btn {
    font-size: 1.15rem;
    padding: 1rem 2.8rem;
}

.final-cta__micro {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .final-cta {
        padding: 4rem 5%;
    }

    .final-cta__heading {
        font-size: 2rem;
    }

    .final-cta__sub {
        font-size: 0.95rem;
    }

    .final-cta__proof {
        gap: 1.2rem;
    }

    .final-cta__stat-num {
        font-size: 1.6rem;
    }

    .final-cta__btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 340px;
    }
}

/* ── Booking Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-white, #fff);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 540px;
    width: 92%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(26, 26, 46, 0.4);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
}

.modal__close:hover {
    color: var(--color-accent);
}

.modal__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal__header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.modal__header h2 span {
    color: var(--color-accent);
}

.modal__header p {
    font-size: 0.9rem;
    color: rgba(26, 26, 46, 0.6);
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal__field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal__field input,
.modal__field select,
.modal__field textarea {
    padding: 0.65rem 0.8rem;
    border: 1.5px solid rgba(26, 26, 46, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--color-primary);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.modal__field input:focus,
.modal__field select:focus,
.modal__field textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.modal__field textarea {
    resize: vertical;
    min-height: 60px;
}

.modal__submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

@media (max-width: 540px) {
    .modal {
        padding: 1.8rem 1.5rem 1.5rem;
        border-radius: 12px;
    }

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

    .modal__header h2 {
        font-size: 1.25rem;
    }
}

/* ── Footer ── */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 5% 1rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__brand {
    max-width: 300px;
}

.footer__brand h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.footer__brand h3 span {
    color: var(--color-accent);
}

.footer__brand p {
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer__links h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer__links ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

.footer__links li {
    margin-bottom: 0;
}

.footer__links a {
    font-size: 0.8rem;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__bottom {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav {
        width: 94%;
        max-width: calc(100vw - 1rem);
        padding: 0.7rem 1rem;
        justify-content: space-between;
        border-radius: 12px;
    }

    .nav__logo {
        display: block;
        font-size: 1.35rem;
    }

    .nav__hamburger {
        display: none !important;
    }

    .nav__links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .nav__cta {
        font-size: 0.9rem;
        padding: 0.55rem 1.2rem;
        text-align: center;
        white-space: nowrap;
    }

    .hero {
        padding: 6.5rem 5% 3rem;
        min-height: auto;
    }

    .btn--large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .stats {
        gap: 2rem;
    }

    .book-layout {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .career-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .for__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .results-section {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
        margin-bottom: -28px;
        padding-bottom: calc(3rem + 28px);
    }

    .wyg {
        padding-top: 30px;
    }

    .funnel__card {
        max-width: 220px;
        padding: 0.5rem 0.6rem;
    }

    .funnel__card h4 {
        font-size: 0.85rem;
    }

    .funnel__card p {
        font-size: 0.78rem;
    }
}

/* ── Page Hero ── */
.page-hero {
    text-align: center;
    padding: 7rem 5% 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero--small {
    padding: 3.5rem 5% 2rem;
}

/* ── Content Block ── */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block__text h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.content-block__text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ── Book / Contact Form ── */
.book-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.book-info h2,
.book-form h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.book-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-info__list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.book-info__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.book-info__list strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.book-info__list p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__group label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* ── Case Studies ── */
.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-study-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-card__header h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.case-study-card__tag {
    background: rgba(233, 69, 96, 0.1);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card__challenge,
.case-study-card__solution {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.case-study-card__results {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.case-study-card__stat {
    text-align: center;
}

.case-study-card__stat .stat__number {
    font-size: 2rem;
}

.case-study-card__stat .stat__label {
    font-size: 0.85rem;
}

/* ── Process Steps ── */
.process-steps {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-step__number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.process-step__content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ── FAQ ── */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ── Careers ── */
.careers-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.career-card__info h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.career-card__info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.career-card__tags {
    display: flex;
    gap: 0.5rem;
}

.career-card__tags span {
    background: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ── Client Wins Feed ── */
.wins-feed {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.win-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.win-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.win-card__content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.win-card__content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.win-card__date {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ── Legal Content ── */
.legal-content {
    max-width: 750px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    color: var(--color-text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* ── Error / Utility Pages ── */
.error-page {
    text-align: center;
    padding: 6rem 5%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--color-text-light);
    max-width: 450px;
    font-size: 1.05rem;
}