/* ═══ ABP Studio — Brand Variables & Overrides ═══
 * Parent brand: abpstudio.co
 * Primary: #0E9BAD (teal) — matches official logo
 * ABP-50
 */

/* ── Core brand variables (required by base.css / components.css) ── */
:root {
    --color-primary: #0E9BAD;
    --color-primary-dark: #0B8494;
    --color-primary-light: #D1F5FA;
    --color-primary-rgb: 14, 155, 173;
    --color-secondary: #0F172A;
    --color-bg: #F7F7F5;
    --color-text: #1A1A1A;
    --color-text-light: #5C5C5C;
    --color-white: #FFFFFF;
    --color-dark-bg: #0C0F1A;

    /* Brand accent colors */
    --color-48site: #F97316;
    --color-launch48: #1A3D6D;
    --color-readysite: #EC4899;
}

/* ═══ NAV ═══ */
.nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.625rem;
}

.nav__logo-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.nav__logo-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C0F1A;
    letter-spacing: -0.02em;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    text-transform: uppercase;
}

.nav__logo-bold {
    font-weight: 800;
    color: #0E9BAD;
    letter-spacing: 0.04em;
}

.nav__logo-domain {
    font-size: 0.65rem;
    color: #0E9BAD;
    letter-spacing: 0.15em;
    font-family: system-ui, sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-top: 2px;
}

.nav__links {
    display: none;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Small CTA in nav */
.cta-btn--sm {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
    min-height: auto !important;
    width: auto !important;
    min-width: auto !important;
}

/* Mobile hamburger */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

/* Mobile nav open state */
.nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 49;
}


/* ═══════════════════════════════════════════════
   HERO — Full visual overhaul
   ═══════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, #0C0F1A 0%, #131831 40%, #0C0F1A 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0 calc(var(--space-xl) + 40px);
    text-align: center;
}

/* Radial glow accents */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 40%, rgba(var(--color-primary-rgb), 0.18) 0%, transparent 45%),
                radial-gradient(circle at 75% 70%, rgba(var(--color-primary-rgb), 0.12) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated subtle grid pattern */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--color-primary-rgb), 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle--1 { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle--2 { width: 4px; height: 4px; top: 60%; left: 85%; animation-delay: 1.5s; animation-duration: 9s; }
.particle--3 { width: 8px; height: 8px; top: 40%; left: 50%; animation-delay: 3s; animation-duration: 11s; }
.particle--4 { width: 3px; height: 3px; top: 75%; left: 25%; animation-delay: 2s; animation-duration: 8s; }
.particle--5 { width: 5px; height: 5px; top: 15%; left: 70%; animation-delay: 4s; animation-duration: 10s; }
.particle--6 { width: 4px; height: 4px; top: 85%; left: 55%; animation-delay: 5.5s; animation-duration: 7.5s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.6; }
    50% { opacity: 0.4; transform: translateY(-40px) scale(1); }
    80% { opacity: 0.6; }
}

.hero__container {
    position: relative;
    z-index: 1;
}

/* Split layout: text + image */
.hero__content-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.hero__text {
    flex: 1;
}

/* ── Animated Browser SVG ── */
.hero__browser-wrap {
    flex: 0 0 auto;
    max-width: 520px;
    width: 100%;
    perspective: 1200px;
}

.hero__browser {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)) drop-shadow(0 0 60px rgba(14,155,173,0.12));
}

.hero__browser-wrap:hover .hero__browser {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Animation: Nav slides in from top */
.browser__nav {
    opacity: 0;
    animation: slideNavIn 0.6s ease-out 0.4s forwards;
}

/* Animation: Hero image fades/scales in */
.browser__hero-img {
    opacity: 0;
    animation: fadeScaleIn 0.7s ease-out 1.6s forwards;
}

/* Animation: Text lines type in one by one */
.browser__text-lines rect:nth-child(1) { opacity: 0; animation: typeLineIn 0.4s ease-out 3.0s forwards; }
.browser__text-lines rect:nth-child(2) { opacity: 0; animation: typeLineIn 0.4s ease-out 3.3s forwards; }
.browser__text-lines rect:nth-child(3) { opacity: 0; animation: typeLineIn 0.4s ease-out 3.6s forwards; }
/* Card on the right */
.browser__text-lines rect:nth-child(4) { opacity: 0; animation: fadeScaleIn 0.5s ease-out 3.8s forwards; }
.browser__text-lines rect:nth-child(5) { opacity: 0; animation: typeLineIn 0.3s ease-out 4.1s forwards; }
.browser__text-lines rect:nth-child(6) { opacity: 0; animation: typeLineIn 0.3s ease-out 4.3s forwards; }
.browser__text-lines rect:nth-child(7) { opacity: 0; animation: typeLineIn 0.3s ease-out 4.5s forwards; }

/* Animation: CTA button pops in */
.browser__cta {
    opacity: 0;
    transform-origin: 240px 296px;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 5.2s forwards;
}

/* Animation: Checkmark appears */
.browser__check {
    opacity: 0;
    transform-origin: 240px 190px;
    animation: checkIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 6.2s forwards;
}

/* Pulse glow after completion */
.browser__frame {
    animation: framePulse 2s ease-in-out 7s 3;
}

/* ── Keyframes ── */
@keyframes slideNavIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typeLineIn {
    from {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }
    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes framePulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(14, 155, 173, 0));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(14, 155, 173, 0.3));
    }
}

/* ── Reduced motion: show final state instantly ── */
@media (prefers-reduced-motion: reduce) {
    .browser__nav,
    .browser__hero-img,
    .browser__text-lines rect,
    .browser__cta,
    .browser__check {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
    .browser__frame {
        animation: none !important;
    }
    .hero__browser {
        transform: none;
    }
}

@media (min-width: 900px) {
    .hero {
        padding: 120px 0 calc(120px + 40px);
        text-align: left;
    }

    .hero__content-split {
        flex-direction: row;
        text-align: left;
    }

    .hero__text {
        flex: 1 1 55%;
    }

    .hero__browser-wrap {
        flex: 1 1 45%;
    }

    .hero__ctas {
        justify-content: flex-start;
    }
}

.hero__title {
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    max-width: 800px;
}

/* Gradient text accent on "In 48 Hours." */
.hero__title-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5CE1F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

/* Subtle glow behind accent text */
.hero__title-accent::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(20px);
    opacity: 0.4;
    background: linear-gradient(135deg, var(--color-primary) 0%, #5CE1F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    z-index: -1;
}

.hero__sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

@media (min-width: 900px) {
    .hero__sub {
        margin-left: 0;
    }
}

.hero__ctas {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero .cta-btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.hero .cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}


/* ═══ GLOWING CTA BUTTON ═══ */
.cta-btn--glow {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0BC5DB 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #5CE1F2 50%, var(--color-primary) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.cta-btn--glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.4);
}

.cta-btn--glow:hover::before {
    opacity: 1;
}

.cta-btn--glow:active {
    transform: translateY(0);
}

/* Shimmer effect on glow button */
.cta-btn--glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}


/* ═══ WAVE & VISUAL SEPARATORS ═══ */

.wave-separator {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.wave-separator--bottom {
    bottom: -1px;
}

.wave-separator--top {
    top: -1px;
}

.wave-separator svg {
    width: 100%;
    height: 40px;
    display: block;
}

@media (min-width: 768px) {
    .wave-separator svg {
        height: 60px;
    }
}

/* Diagonal cut separator */
.diagonal-separator {
    height: 60px;
    background: linear-gradient(to bottom right, var(--color-white) 49.5%, var(--color-white) 50.5%);
    position: relative;
}

.diagonal-separator::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.3), transparent);
}

/* Gradient line separator */
.gradient-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--color-primary-rgb), 0.4) 50%, transparent 100%);
    margin: 0;
}


/* ═══ SECTION TITLES (shared pattern) ═══ */
.section__title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section__sub {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   JOURNEY ANIMATION — Design → Develop → Launch
   ═══════════════════════════════════════════════ */

.journey {
    background: var(--color-white);
    padding-bottom: 0;
    overflow: hidden;
}

.journey__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: nowrap;
}

.journey__scene {
    width: 280px;
    height: auto;
    flex-shrink: 0;
}

.journey__arrow {
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

/* Mobile: stack vertically */
@media (max-width: 899px) {
    .journey__stage {
        flex-direction: column;
        gap: 1rem;
    }

    .journey__scene {
        width: 260px;
    }

    .journey__arrow {
        transform: rotate(90deg);
        width: 40px;
    }
}

/* ── Scene 1: Wireframe / Sketch ── */

/* Pencil animation — moves across the paper */
.journey__pencil {
    animation: pencilDraw 8s ease-in-out infinite;
}

@keyframes pencilDraw {
    0%   { transform: translate(120px, 44px); }
    15%  { transform: translate(240px, 44px); }
    20%  { transform: translate(80px, 76px); }
    40%  { transform: translate(240px, 76px); }
    45%  { transform: translate(80px, 130px); }
    60%  { transform: translate(152px, 130px); }
    65%  { transform: translate(164px, 130px); }
    80%  { transform: translate(236px, 130px); }
    85%  { transform: translate(160px, 177px); }
    95%  { transform: translate(200px, 177px); }
    100% { transform: translate(120px, 44px); }
}

/* Wireframe lines appear sequentially */
.journey__wire {
    opacity: 0;
    animation: wireAppear 8s ease-in-out infinite;
}

.journey__wire--1 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: wireDraw 8s ease-in-out infinite;
}

@keyframes wireDraw {
    0%, 5%    { stroke-dashoffset: 160; opacity: 0; }
    8%        { opacity: 1; }
    20%       { stroke-dashoffset: 0; opacity: 1; }
    100%      { stroke-dashoffset: 0; opacity: 1; }
}

.journey__wire--2 { animation-delay: 0.8s; }
.journey__wire--3 { animation-delay: 1.8s; }
.journey__wire--4 { animation-delay: 2.5s; }
.journey__wire--5 { animation-delay: 3.2s; }

@keyframes wireAppear {
    0%, 10%  { opacity: 0; transform: scale(0.95); }
    20%      { opacity: 1; transform: scale(1); }
    100%     { opacity: 1; transform: scale(1); }
}

/* ── Scene 2: Code / Development ── */

/* Code lines typing effect */
.journey__code-line {
    opacity: 0;
    animation: codeType 10s ease-in-out infinite;
}

.journey__code-line--1  { animation-delay: 0.3s; }
.journey__code-line--2  { animation-delay: 0.8s; }
.journey__code-line--3,
.journey__code-line--3b,
.journey__code-line--3c { animation-delay: 1.3s; }
.journey__code-line--4  { animation-delay: 2.0s; }
.journey__code-line--5  { animation-delay: 2.6s; }
.journey__code-line--6,
.journey__code-line--6b,
.journey__code-line--6c,
.journey__code-line--6d { animation-delay: 3.2s; }
.journey__code-line--7  { animation-delay: 3.9s; }
.journey__code-line--8  { animation-delay: 4.5s; }
.journey__code-line--9  { animation-delay: 5.1s; }

@keyframes codeType {
    0%, 3%   { opacity: 0; transform: translateX(-4px); }
    8%       { opacity: 1; transform: translateX(0); }
    85%      { opacity: 1; }
    95%      { opacity: 0; }
    100%     { opacity: 0; }
}

/* Cursor blink */
.journey__cursor {
    animation: cursorBlink 1s step-end infinite, cursorMove 10s ease-in-out infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes cursorMove {
    0%   { transform: translate(-60px, -96px); }
    10%  { transform: translate(-52px, -84px); }
    20%  { transform: translate(-2px, -72px); }
    30%  { transform: translate(-52px, -60px); }
    40%  { transform: translate(-52px, -48px); }
    50%  { transform: translate(-44px, -36px); }
    65%  { transform: translate(-36px, -24px); }
    75%  { transform: translate(-44px, -12px); }
    90%  { transform: translate(-52px, 0px); }
    100% { transform: translate(-60px, -96px); }
}

/* ── Scene 3: Launch ── */

/* Globe outline draws in */
.journey__globe-outline {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: globeDraw 3s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes globeDraw {
    to { stroke-dashoffset: 0; }
}

/* Globe fill pulses subtly */
.journey__globe-fill {
    animation: globePulse 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes globePulse {
    0%, 100% { opacity: 0.6; }
    50%      { opacity: 1; }
}

/* Rocket launch */
.journey__rocket {
    transform: translate(160px, 200px);
    animation: rocketLaunch 6s ease-in-out infinite;
}

@keyframes rocketLaunch {
    0%       { transform: translate(160px, 200px); opacity: 0; }
    15%      { transform: translate(160px, 200px); opacity: 1; }
    50%      { transform: translate(160px, 105px) rotate(-30deg); opacity: 1; }
    70%      { transform: translate(220px, 40px) rotate(-45deg); opacity: 1; }
    85%      { transform: translate(260px, -10px) rotate(-45deg); opacity: 0; }
    100%     { transform: translate(160px, 200px); opacity: 0; }
}

/* Rocket flame flicker */
.journey__flame {
    animation: flameFlicker 0.15s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0%   { transform: scaleY(1) scaleX(1); }
    100% { transform: scaleY(1.2) scaleX(0.85); }
}

/* Signal waves expanding from globe */
.journey__signal {
    animation: signalPulse 4s ease-out infinite;
}

.journey__signal--1 { animation-delay: 3s; }
.journey__signal--2 { animation-delay: 3.5s; }
.journey__signal--3 { animation-delay: 4s; }

@keyframes signalPulse {
    0%   { r: 70; opacity: 0.5; }
    100% { r: 110; opacity: 0; }
}

/* Sparkles twinkling */
.journey__sparkle {
    animation: sparkle 3s ease-in-out infinite;
}

.journey__sparkle--1 { animation-delay: 3.5s; }
.journey__sparkle--2 { animation-delay: 4.0s; }
.journey__sparkle--3 { animation-delay: 4.3s; }
.journey__sparkle--4 { animation-delay: 3.8s; }
.journey__sparkle--5 { animation-delay: 4.5s; }
.journey__sparkle--6 { animation-delay: 3.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50%      { opacity: 1; transform: scale(1.5); }
}

/* Arrows animate in */
.journey__arrow-line {
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
    animation: arrowDraw 1.5s ease-out forwards;
}

.journey__arrow--1 .journey__arrow-line { animation-delay: 2s; }
.journey__arrow--2 .journey__arrow-line { animation-delay: 4s; }

.journey__arrow-head {
    opacity: 0;
    animation: arrowHeadAppear 0.3s ease-out forwards;
}

.journey__arrow--1 .journey__arrow-head { animation-delay: 3s; }
.journey__arrow--2 .journey__arrow-head { animation-delay: 5s; }

@keyframes arrowDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes arrowHeadAppear {
    to { opacity: 1; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .journey__pencil,
    .journey__wire,
    .journey__wire--1,
    .journey__code-line,
    .journey__cursor,
    .journey__globe-outline,
    .journey__globe-fill,
    .journey__rocket,
    .journey__flame,
    .journey__signal,
    .journey__sparkle,
    .journey__arrow-line,
    .journey__arrow-head {
        animation: none !important;
        opacity: 1 !important;
        stroke-dashoffset: 0 !important;
        transform: none !important;
    }

    .journey__rocket {
        transform: translate(220px, 50px) rotate(-45deg) !important;
    }

    .journey__pencil {
        transform: translate(200px, 177px) !important;
    }
}


/* ═══════════════════════════════════════════════
   BRANDS — Cards with images & rich hover
   ═══════════════════════════════════════════════ */

.brands {
    background: var(--color-white);
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.brand-card {
    background: #fff;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E4E4E7;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.brand-card:hover,
.brand-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Per-brand border glow on hover */
.brand-card--48site:hover { border-color: var(--color-48site); box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15); }
.brand-card--launch48:hover { border-color: var(--color-launch48); box-shadow: 0 20px 40px rgba(26, 61, 109, 0.15); }
.brand-card--readysite:hover { border-color: var(--color-readysite); box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15); }

/* Card top image */
.brand-card__img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.brand-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-card:hover .brand-card__img {
    transform: scale(1.08);
}

.brand-card__img-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.brand-card__img-overlay--48site { background: linear-gradient(180deg, transparent 30%, rgba(249, 115, 22, 0.8) 100%); }
.brand-card__img-overlay--launch48 { background: linear-gradient(180deg, transparent 30%, rgba(26, 61, 109, 0.8) 100%); }
.brand-card__img-overlay--readysite { background: linear-gradient(180deg, transparent 30%, rgba(236, 72, 153, 0.8) 100%); }

.brand-card__body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -44px auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-card__icon--48site { background: var(--color-48site); }
.brand-card__icon--launch48 { background: var(--color-launch48); }
.brand-card__icon--readysite { background: var(--color-readysite); }

.brand-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.brand-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-card__link {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
}

.brand-card__link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.brand-card__link--48site { background: var(--color-48site); }
.brand-card__link--48site:hover { box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4); }
.brand-card__link--launch48 { background: var(--color-launch48); }
.brand-card__link--launch48:hover { box-shadow: 0 4px 16px rgba(26, 61, 109, 0.4); }
.brand-card__link--readysite { background: var(--color-readysite); }
.brand-card__link--readysite:hover { box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4); }

/* Brand card feature bullets */
.brand-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    text-align: left;
    width: 100%;
}

.brand-card__features li {
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 0.25rem 0;
    line-height: 1.5;
}

.brand-card__features li::before {
    content: "\2713 ";
    color: var(--color-primary);
    font-weight: 700;
}

/* Brand card price */
.brand-card__price {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.brand-card__price strong {
    color: var(--color-text);
    font-size: 1.1rem;
}


/* ═══ OTHER INDUSTRIES (form) ═══ */
.industries {
    background: #F8FAFC;
}

.industries__form-wrap {
    max-width: 560px;
    margin: 2rem auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #E4E4E7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.industries__form .form-group {
    margin-bottom: 1.25rem;
}

.industries__form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
    color: var(--color-text);
}

.industries__form input,
.industries__form select,
.industries__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D4D4D8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.industries__form input:focus,
.industries__form select:focus,
.industries__form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.industries__form input::placeholder,
.industries__form textarea::placeholder {
    color: #A0A0A0;
}

.industries__form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Full-width CTA button */
.cta-btn--full {
    width: 100%;
    margin-top: var(--space-xs);
}

/* Form feedback messages */
.form-feedback {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-feedback--success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form-feedback--error {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.form-feedback--error a {
    color: #DC2626;
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS — Enhanced steps
   ═══════════════════════════════════════════════ */

.how-it-works {
    background: var(--color-white);
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .how-it-works .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.how-it-works .step {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.how-it-works .step:hover {
    background: #F8FAFC;
    transform: translateY(-4px);
}

.how-it-works .step__number {
    background: linear-gradient(135deg, var(--color-primary), #0BC5DB);
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
    transition: transform 0.3s ease;
}

.how-it-works .step:hover .step__number {
    transform: scale(1.1);
}

.how-it-works .step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-it-works .step__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Connector lines between steps (desktop) */
@media (min-width: 768px) {
    .how-it-works .steps {
        position: relative;
    }

    .how-it-works .step {
        position: relative;
    }

    .how-it-works .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        right: -1rem;
        width: calc(2rem);
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary), rgba(var(--color-primary-rgb), 0.2));
        pointer-events: none;
    }
}


/* ═══════════════════════════════════════════════
   NUMBERS — Enhanced with icons & glass effect
   ═══════════════════════════════════════════════ */

.numbers {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0BC5DB 50%, var(--color-primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay on numbers */
.numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.numbers__item {
    padding: var(--space-md);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.numbers__item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.numbers__item-icon {
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.numbers__item-icon svg {
    display: inline-block;
}

.numbers__item-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.numbers__item-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════
   ABOUT — Centered layout with stats + SVG
   ═══════════════════════════════════════════════ */

.about {
    background: var(--color-bg);
}

.about__body {
    max-width: 720px;
    margin: var(--space-lg) auto 0;
    text-align: center;
}

.about__body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Stats grid */
.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 640px;
    margin: var(--space-lg) auto 0;
    text-align: center;
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.about__stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
}

.about__stat-label {
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 2rem;
    }
}

/* ── Narrative SVG Animation ── */
.about__animation {
    text-align: center;
    margin: var(--space-lg) auto var(--space-md);
    max-width: 600px;
}

.about__svg-narrative {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Frame visibility — 12s loop total */
.about__frame { opacity: 0; }

.about__frame--1 {
    animation: aboutFrame1 12s ease-in-out infinite;
}
.about__frame--2 {
    animation: aboutFrame2 12s ease-in-out infinite;
}
.about__frame--3 {
    animation: aboutFrame3 12s ease-in-out infinite;
}

@keyframes aboutFrame1 {
    0%      { opacity: 0; }
    2%      { opacity: 1; }
    20%     { opacity: 1; }
    25%     { opacity: 0; }
    100%    { opacity: 0; }
}

@keyframes aboutFrame2 {
    0%      { opacity: 0; }
    25%     { opacity: 0; }
    30%     { opacity: 1; }
    53%     { opacity: 1; }
    58%     { opacity: 0; }
    100%    { opacity: 0; }
}

@keyframes aboutFrame3 {
    0%      { opacity: 0; }
    58%     { opacity: 0; }
    63%     { opacity: 1; }
    88%     { opacity: 1; }
    95%     { opacity: 0; }
    100%    { opacity: 0; }
}

/* Frame 2 — connecting line dash animation */
.about__connect-line {
    stroke-dashoffset: 40;
    animation: aboutDashDraw 12s ease-in-out infinite;
}
@keyframes aboutDashDraw {
    0%, 25%     { stroke-dashoffset: 40; }
    35%         { stroke-dashoffset: 0; }
    58%, 100%   { stroke-dashoffset: 0; }
}

/* Frame 2 — clock hand spinning */
.about__clock-hand {
    transform-origin: 220px 140px;
    animation: aboutClockSpin 12s linear infinite;
}
@keyframes aboutClockSpin {
    0%, 25%     { transform: rotate(0deg); }
    55%         { transform: rotate(720deg); }
    100%        { transform: rotate(720deg); }
}

/* Frame 2 — brand dots pulsing */
.about__dot {
    animation: aboutDotPulse 12s ease-in-out infinite;
}
.about__dot--48site   { animation-delay: 0s; }
.about__dot--launch48 { animation-delay: 0.3s; }
.about__dot--readysite{ animation-delay: 0.6s; }

@keyframes aboutDotPulse {
    0%, 25%     { r: 8; opacity: 0.4; }
    32%         { r: 8; opacity: 1; }
    38%         { r: 12; opacity: 1; }
    44%         { r: 8; opacity: 0.7; }
    58%, 100%   { r: 8; opacity: 0.4; }
}

/* Frame 2 — build lines appearing sequentially */
.about__build-line {
    transform: scaleX(0);
    transform-origin: left;
}
.about__build-line--1 { animation: aboutBuildLine 12s ease-out infinite; animation-delay: 0s; }
.about__build-line--2 { animation: aboutBuildLine 12s ease-out infinite; animation-delay: 0.4s; }
.about__build-line--3 { animation: aboutBuildLine 12s ease-out infinite; animation-delay: 0.8s; }
.about__build-line--4 { animation: aboutBuildLine 12s ease-out infinite; animation-delay: 1.2s; }

@keyframes aboutBuildLine {
    0%, 30%     { transform: scaleX(0); }
    40%         { transform: scaleX(1); }
    58%, 100%   { transform: scaleX(1); }
}

/* Frame 3 — notifications floating in */
.about__notif {
    animation: aboutNotifIn 12s ease-out infinite;
}
.about__notif--phone    { animation-delay: 0s; }
.about__notif--email    { animation-delay: 0.5s; }
.about__notif--calendar { animation-delay: 1s; }

@keyframes aboutNotifIn {
    0%, 60%     { opacity: 0; transform: translateY(10px); }
    68%         { opacity: 1; transform: translateY(0); }
    88%         { opacity: 1; transform: translateY(0); }
    95%, 100%   { opacity: 0; transform: translateY(10px); }
}

/* Frame 3 — ring waves */
.about__ring {
    animation: aboutRingWave 12s ease-out infinite;
}
.about__ring--1 { animation-delay: 0.2s; }
.about__ring--2 { animation-delay: 0.5s; }

@keyframes aboutRingWave {
    0%, 63%     { opacity: 0; }
    68%         { opacity: 0.6; }
    72%         { opacity: 0; }
    76%         { opacity: 0.6; }
    80%         { opacity: 0; }
    84%         { opacity: 0.5; }
    88%, 100%   { opacity: 0; }
}

/* Frame 3 — customers walking in */
.about__person {
    animation: aboutPersonWalk 12s ease-out infinite;
}
.about__person--1 { animation-delay: 0.3s; }
.about__person--2 { animation-delay: 0.8s; }
.about__person--3 { animation-delay: 1.3s; }

@keyframes aboutPersonWalk {
    0%, 63%     { opacity: 0; transform: translateX(30px); }
    73%         { opacity: 1; transform: translateX(0); }
    88%         { opacity: 1; transform: translateX(0); }
    95%, 100%   { opacity: 0; transform: translateX(30px); }
}

/* Frame 3 — globe gentle rotation */
.about__globe {
    transform-origin: 90px 55px;
    animation: aboutGlobeRotate 12s linear infinite;
}
@keyframes aboutGlobeRotate {
    0%, 58%     { transform: rotate(0deg); }
    88%         { transform: rotate(360deg); }
    100%        { transform: rotate(360deg); }
}

/* Accessibility: reduced motion — show final frame static */
@media (prefers-reduced-motion: reduce) {
    .about__frame--1,
    .about__frame--2 {
        animation: none;
        opacity: 0;
    }
    .about__frame--3 {
        animation: none;
        opacity: 1;
    }
    .about__frame--3 .about__notif,
    .about__frame--3 .about__person,
    .about__frame--3 .about__ring,
    .about__frame--3 .about__globe {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .about__connect-line,
    .about__clock-hand,
    .about__dot,
    .about__build-line {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


/* ═══ FAQ ═══ */
.faq {
    background: #F8FAFC;
}

.faq__list {
    max-width: 720px;
    margin: 2rem auto 0;
}

.faq__item {
    border-bottom: 1px solid #E4E4E7;
    padding: 1.25rem 0;
}

.faq__question {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb), 0.1);
}

.faq__item.active .faq__question::after {
    content: '\2212';
    transform: rotate(180deg);
    background: var(--color-primary);
    color: #fff;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}


/* ═══ SECTION BACKGROUNDS (alternating) ═══ */
#brands h2,
#how-it-works h2,
#about h2,
#faq h2,
#contact h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}


/* ═══════════════════════════════════════════════
   CTA FINAL — Dark with glow
   ═══════════════════════════════════════════════ */

.cta-final {
    background: linear-gradient(135deg, #0C0F1A 0%, #131831 50%, #0C0F1A 100%);
    padding: calc(var(--space-xl) + 40px) 0 var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Radial glow behind CTA */
.cta-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final__container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: #fff;
    margin-bottom: var(--space-sm);
    font-size: 2rem;
}

@media (min-width: 768px) {
    .cta-final h2 {
        font-size: 2.5rem;
    }
}

.cta-final p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ═══ FOOTER ═══ */
.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: var(--space-sm);
}

.footer__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer__brands {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: var(--space-sm) 0;
    flex-wrap: wrap;
}

.footer__brands a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__brands a:hover {
    color: #fff;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* ═══ ABOUT HIGHLIGHTS ═══ */
.about__highlights {
    list-style: none;
    padding: 0;
    margin: var(--space-md) auto 0;
    max-width: 480px;
}

.about__highlights li {
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 0.5rem 0;
    line-height: 1.5;
    text-align: left;
}

.about__highlights li::before {
    content: "\2713 ";
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 0.5rem;
}


/* ═══ COLLAPSIBLE NOTE FIELD ═══ */
.form-group__toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.form-group__toggle:hover {
    text-decoration: underline;
}

.form-group__collapsible-content {
    margin-top: 0.5rem;
}


/* ═══ LEGAL PAGES (privacy, terms) ═══ */
.legal h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal ul {
    padding-left: 1.5rem;
    margin: var(--space-sm) 0;
}

.legal ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal a {
    color: var(--color-primary);
    text-decoration: underline;
}


/* ═══ PRICING CARD ENHANCEMENTS ═══ */
.pricing__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing__card--featured:hover {
    box-shadow: 0 16px 40px rgba(var(--color-primary-rgb), 0.2);
}

.pricing__card .cta-btn {
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.pricing__card .cta-btn:hover {
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

/* Featured card glow */
.pricing__card--featured {
    border-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.pricing__card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #5CE1F2, var(--color-primary));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
    .brands__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .numbers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .industries__form-wrap {
        padding: 1.5rem;
    }

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

}

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


/* ═══ STAGGERED REVEAL ANIMATIONS ═══ */
.brands__grid .reveal:nth-child(1) { transition-delay: 0s; }
.brands__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.brands__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.steps .reveal:nth-child(1) { transition-delay: 0s; }
.steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing__grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.pricing__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.numbers__grid .reveal:nth-child(1) { transition-delay: 0s; }
.numbers__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.numbers__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.numbers__grid .reveal:nth-child(4) { transition-delay: 0.3s; }


/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    .hero__grid,
    .particle,
    .cta-btn--glow::after,
    .pricing__card--featured::before {
        animation: none;
    }

    .numbers {
        animation: none;
    }

    .brand-card,
    .pricing__card,
    .numbers__item,
    .how-it-works .step {
        transition: none;
    }

}
