@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {

    /* Base */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;

    /* Headings */
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 40px;
    --text-4xl: 56px;

    /* ========= MODERN (OKLCH) ========= */
    --bg: oklch(0.09 0 0);
    --bg2: oklch(0.09 0 0);
    --bg3: oklch(0.09 0 0);

    --red: oklch(62.944% 0.25583 25.982);
    --red2: oklch(54.187% 0.21198 24.926);
    --red-op: oklch(52% 0.22 25 / 0.31);

    --gold: oklch(0.75 0.10 85);

    --white: oklch(92.046% 0.01066 100.933);
    --muted: oklch(0.92 0.01 95 / 0.44);
    --border: oklch(0.92 0.01 95 / 0.13);

    --card: oklch(1 0 0 / 0.01);
    --white-10: oklch(1 0 0 / 0.1);
    --white-05: oklch(1 0 0 / 0.05);
    --white-03: oklch(0.55 0.21 25 / 0.04);


    /* Other Stuff */
    --primary-font: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --border-radius-1: 16px;
    --border-radius-2: 12px;
    --border-radius-3: 8px;
    --border-radius-99: 99px;
}




/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: -0.012em;

}

html {
    background: var(--bg) !important;
}

#cursor,
#cursorRing {
    display: none;
}

/* BODY */
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--primary-font);
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 72px;
    display: flex;
    height: 72px;
    justify-content: space-between;
    z-index: 1000;
    align-items: center;
    border-bottom: 0.78px solid transparent;
    transition: border-color 0.3s ease, transform 0.5s ease, padding 0.5s ease;
    transform: translateY(12px);

    .mob-btn-primary {
        background: transparent !important;
        border: 1px solid var(--red) !important;
        color: var(--red) !important;
        transition: border-color 0.3s ease, transform 0.5s ease, padding 0.5s ease, background 0.3s ease, color 0.3s ease;
    }

}

/* Active when scrolled */
header.scrolled {
    border-bottom: 0.78px solid var(--border);
    transform: translateY(0px);
    padding: 8px 56px;
    backdrop-filter: blur(100px);


    .mob-btn-primary {
        background: var(--red) !important;
        border: 1px solid transparent !important;
        color: var(--white) !important;
    }

}

/* BUTTON */
.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--border-radius-99);
    text-decoration: none;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: var(--border-radius-99);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 0.6px solid rgba(232, 37, 30, 0.5);
    border-radius: var(--border-radius-99);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor {
    transform: translate(-50%, -50%);
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); */
    pointer-events: none;
    z-index: 9000;
    opacity: 0.4;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: var(--border-radius-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-size: var(--text-lg);
    color: var(--white);
}

.logo-text {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--white);
}

.logo-text span {
    color: var(--red);
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 400;
    transition: color 0.2s;
    padding: 8px 16px;

}

nav a:hover {
    color: var(--white);
    background: var(--white-10);
    border-radius: var(--border-radius-99);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 11px 24px;
    border-radius: var(--border-radius-99);
    font-family: var(--primary-font);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: var(--border-radius-99);
    font-family: var(--primary-font);
    font-size: var(--text-sm);
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: var(--white-03);
}

/* HERO */
#hero {
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(193, 18, 31, 0.18) 0%, rgba(193, 18, 31, 0.10) 28%, rgba(193, 18, 31, 0.04) 55%, transparent 75%); */
    pointer-events: none;
    background-image: url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0.6px solid var(--red-op);
    color: var(--red);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    padding: 6px 16px 6px 12px;
    border-radius: var(--border-radius-99);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

h1 {
    font-family: var(--primary-font);
    font-size: var(--text-4xl);
    line-height: 1;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

h1 em {
    font-style: normal;
    color: var(--red);
    -webkit-text-stroke: 0px;
    font-family: 'Playfair Display', serif !important;
}

em {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 200;
}

.hero-sub {
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-ctas .btn-primary {
    padding: 14px 24px;
    font-size: var(--text-md);
}

.hero-ctas .btn-secondary {
    padding: 14px 24px;
    font-size: var(--text-md);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TICKER */
.ticker-wrap {
    border-bottom: 0.6px solid var(--border);
    border-top: 0.6px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    background: var(--bg1);
    width: 50%;
    margin: auto;
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 28px;
    font-size: var(--text-sm);
    font-weight: 300;
    color: var(--muted);
}

.ticker-item span {
    color: var(--red);
    font-size: var(--text-xs);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* METRICS */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 50%;
    margin: auto;
    max-width: 848px;
    margin: 0 auto;
    padding: 72px;

}

.metric-card {
    border: 0.6px solid var(--border);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    border-radius: var(--border-radius-1);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.metric-card:hover {
    background: var(--white-03);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-num {
    font-family: var(--primary-font);
    font-size: var(--text-3xl);
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-label {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
}

/* SECTION HEADER */
.section-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    padding: 6px 16px;
    border-radius: var(--border-radius-1);
    border: 0.6px solid var(--red-op);
    letter-spacing: 0.05px;
}

.section-title {
    font-family: var(--primary-font);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    /* margin-bottom: 20px; */
}

.section-sub {
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
}

/* SERVICES */
#services {
    padding: 120px 48px;
    background: var(--bg2);
    position: relative;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    border: 0.6px solid var(--border);
    padding: 32px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
    border-radius: var(--border-radius-1);
}

.service-card:hover {
    background: var(--white-03);
    /* background: rgba(232, 37, 30, 0.04); */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-num {
    font-family: var(--primary-font);
    font-size: var(--text-md);
    color: var(--red);
    margin-bottom: 32px;
    opacity: 0.7;
}

.service-icon {
    display: none !important;
    width: 44px;
    height: 44px;
    background: rgba(232, 37, 30, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: var(--text-xl);
}

.service-name {
    font-family: var(--primary-font);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: 14px;
}

.service-desc {
    font-size: var(--text-md);
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* WHY CHOOSE US */
#why {
    padding: 120px 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 0.78px solid var(--border);
    align-items: flex-start;
}

.why-item:first-child {
    border-top: 0.7px solid var(--border);
}

.why-num {
    font-family: var(--primary-font);
    font-size: var(--text-md);
    color: var(--red);
    min-width: 28px;
    padding-top: 3px;
}

.why-content h4 {
    font-family: var(--primary-font);
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 6px;
}

.why-content p {
    font-size: var(--text-md);
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

.why-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg2);
    border-radius: 16px;
    border: 0.6px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-visual-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.big-stat {
    font-family: var(--primary-font);
    font-size: var(--text-3xl);
    color: var(--white);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}

.big-stat-label {
    font-size: var(--text-sm);
    color: var(--muted);
    font-weight: 300;
}

.why-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/wrs.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* PORTFOLIO */
#work {
    padding: 120px 48px;
    background: var(--bg2);
}

.work-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    aspect-ratio: 0.72;
    background: var(--bg3);
    border-radius: 12px;
    border: 0.6px solid var(--border);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: url('https://images.unsplash.com/photo-1776549821543-dc2d97ec7804?q=80&w=2670&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.99) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-play {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: var(--border-radius-99);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    font-size: var(--text-lg);
    color: var(--white)
}

.portfolio-item:hover .portfolio-play {
    opacity: 1;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    opacity: 0.07;
}

.portfolio-client {
    font-family: var(--primary-font);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white)
}

.portfolio-stat {
    font-size: var(--text-md);
    color: var(--muted);
    font-weight: 300;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .video-meta {
        bottom: 148px !important;
    }
}

.video-meta {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: var(--border-radius-2);
    width: 100%;
}

.video-client {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 2px;
}

.video-stat {
    font-size: var(--text-md);
    color: var(--muted);
    text-align: center;
}


.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.video-modal.active {
    display: flex;
}

.video-backdrop {
    position: absolute;
    inset: 0;
    background: oklch(0 0 0 / 0.7);
    backdrop-filter: blur(20px);
}

.video-content {
    position: relative;
    width: min(90%, 1280px);
    z-index: 2;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    border: 1px solud var(--border);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;

    border: 1px solid var(--border);
    border-radius: var(--border-radius-1);
    /* 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;

    header {
        display: none;
    }
}

.video-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: var(--white-10);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-99);
    width: 48px;
    height: 48px;
    cursor: pointer;
    backdrop-filter: blur(40px);
    font-size: 20px;
}

/* PROCESS */
#process {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.process-step {
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.step-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg2);
    border: 0.6px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-family: var(--primary-font);
    font-size: 22px;
    color: var(--muted);
    position: relative;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.process-step:hover .step-dot {
    background: var(--red-op);
    border-color: var(--red-op);
    color: var(--white);
}

.step-title {
    font-family: var(--primary-font);
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 12px;
}

.step-desc {
    font-size: var(--text-md);
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

/* PRICING */
#pricing {
    padding: 120px 48px;
    background: var(--bg2);
}

.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 72px;
    text-align: left;
}

.pricing-card {
    background: var(--bg);
    border: 0.6px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card.luxe {
    border: 0.6px solid var(--gold);
    background: radial-gradient(ellipse 110% 90% at 50% 50%,
            rgba(203, 169, 96, 0.22) 0%,
            rgba(160, 130, 70, 0.12) 40%,
            rgba(100, 80, 40, 0.05) 65%,
            transparent 80%);
}


.pricing-card.featured {
    border-color: var(--red);
    background: rgba(232, 37, 30, 0.04);
}

.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--red);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 400;
    padding: 6px 14px;
    border-top-right-radius: var(--border-radius-1);
    border-bottom-left-radius: var(--border-radius-1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s, height 0.3s;
}

.pricing-card:hover::before {
    opacity: 1;
    height: 3px;

}


.pricing-card.luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s, height 0.3s;
}

.pricing-card.luxe:hover::before {
    opacity: 1;
    height: 4px;
}

.btn-plan-luxe {
    border: unset !important;
    background: var(--gold) !important;
    color: var(--bg) !important;
}

.btn-plan-luxe:hover {
    background: oklch(0.75 0.10 85 / 0.9) !important;
    color: var(--bg) !important;
}

.plan-name {
    font-family: var(--primary-font);
    font-size: var(--text-md);
    font-weight: 300;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.plan-price {
    font-family: var(--primary-font);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--white);
}

.plan-price sup {
    font-size: var(--text-xl);
    vertical-align: top;
    margin-top: 12px;
    margin-right: 2px;
}

.plan-cadence {
    font-size: var(--text-sm);
    color: var(--muted);
    margin-bottom: 32px;
}

.plan-divider {
    height: 0.7px;
    background: var(--border);
    margin-bottom: 28px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    height: 100%;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-md);
    color: var(--muted);
    font-weight: 300;
}

.plan-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('./assets/checkbox.svg');
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-99);
}

.btn-plan {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-size: var(--text-lg);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.btn-plan-outline {
    border: 0.6px solid var(--border);
    color: var(--white);
    background: transparent;
    border-radius: var(--border-radius-99);
}

.btn-plan-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--white-03);
}

.btn-plan-red {
    background: var(--red);
    color: var(--white);
    border: 0.6px solid var(--red);
    border-radius: var(--border-radius-99);
}

.btn-plan-red:hover {
    background: var(--red2);
}

/* TESTIMONIALS */
#testimonials {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 72px;
}

.testi-card {
    background: var(--bg2);
    border: 0.6px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: border-color 0.3s;
}


.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: var(--text-sm);
}

.testi-stars img {
    width: 24px;
    height: 24px;
}

.testi-quote {
    font-size: var(--text-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-result {
    font-family: var(--primary-font);
    font-size: var(--text-2xl);
    color: var(--red);
    margin-bottom: 4px;
    font-weight: 600;
    display: none;
}

.testi-result-label {
    font-size: var(--text-xs);
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: none;
}

.testi-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-size: var(--text-md);
    font-weight: 500;
    background: var(--white-10);
    /* border: 0.6px solid var(--white-10); */

}

.testi-name {
    font-family: var(--primary-font);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.testi-role {
    font-size: var(--text-xs);
    color: var(--muted);
}

/* FINAL CTA */
#cta {
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232, 37, 30, 0.1), transparent 70%);
    pointer-events: none;
}

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

.cta-inner h2 {
    font-family: var(--primary-font);
    font-size: var(--text-3xl);
    line-height: 0.92;
    margin-bottom: 28px;
}

.cta-inner p {
    font-size: var(--text-xl);
    color: var(--muted);
    font-weight: 300;
    max-width: 440px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-btn-group .btn-primary {
    padding: 16px 40px;
    font-size: var(--text-md);
}

.cta-btn-group .btn-secondary {
    padding: 16px 40px;
    font-size: var(--text-md);
}

/* FOOTER */
footer {
    padding: 60px 48px;
    border-top: 0.7px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-nav {
    display: flex;
    gap: 4px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: var(--text-md);
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 0.6px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: var(--text-md);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(232, 37, 30, 0.05);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    border-top: 0.7px solid var(--border);
}

.footer-copy {
    font-size: var(--text-sm);
    color: var(--muted);
    font-weight: 300;
    letter-spacing: unset !important;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* MOBILE */
@media (max-width: 900px) {
    header {
        padding: 8px 24px;
        height: 70px;
    }

    header.scrolled {
        padding: 8px 24px;
    }

    nav {
        display: none;
    }

    h1 {
        font-size: var(--text-4xl);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        margin: unset ! IMPORTANT;
        padding: unset;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .mob-btn-primary {
        padding: 10px 14px !important;
    }

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

    .why-visual {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }


    .process-steps::before {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .step-dot {
        margin: 0 0 32px 0;
    }

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

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

    .btn-plan {
        font-size: var(--text-md);
    }

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

    #metrics,
    #why,
    #process,
    #testimonials {
        padding: 80px 24px;
    }

    #services,
    #work,
    #pricing,
    #cta {
        padding: 80px 24px;
    }

    .services-inner,
    .work-inner,
    .pricing-inner {
        padding: 0;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    footer {
        padding: 48px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: var(--text-3xl);
        line-height: 1.1;
    }

    .ticker-wrap {
        width: calc(100% - 48px);
    }

    .hero-ctas {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        width: 100%;

        .btn-primary,
        .btn-secondary {
            width: 100%;
            padding: 16px 24px;
            font-size: var(--text-md);

        }
    }

    .footer-nav a {
        padding: 12px 16px;
        font-size: var(--text-md);
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: var(--text-md);
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-btn-group {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        width: 100%;

        .btn-primary,
        .btn-secondary {
            width: 100%;
            padding: 16px 24px;
            font-size: var(--text-md);
        }
    }
}