/* ============================================
   SADAN AHMAD — PORTFOLIO CSS
   Dark Theme | Modern | World-Class
   ============================================ */

:root {
    --bg: #080808;
    --bg-2: #0e0e0e;
    --bg-3: #141414;
    --surface: #1a1a1a;
    --border: rgba(255, 255, 255, 0.07);
    --border-2: rgba(255, 255, 255, 0.12);

    --text: #f0ede8;
    --text-2: #9a9690;
    --text-3: #5a5652;
    --text-4: #080808;

    --accent: #c8f542;
    --accent-2: #9900FF;
    --accent-dim: rgba(200, 245, 66, 0.12);
    --accent-glow: rgba(200, 245, 66, 0.25);

    --font-display: 'Funnel Display', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-hero: 'Neue Regrade', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* ← ADD this */
    max-width: 100%;
    /* ← ADD this */
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    overflow-x: hidden;
    /* ← ADD this */
    max-width: 100%;
    /* ← ADD this */
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-display);
}

/* === SELECTION === */
::selection {
    background: var(--accent-2);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.10s var(--ease-out);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(200, 245, 66, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
        transform 0.06s linear, opacity 0.3s;
}

.cursor-follower.hover {
    width: 40px;
    height: 40px;
    border-color: var(--accent);
    background: var(--accent-dim);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease-out), transform 0.8s var(--ease-out);
    /* CSS failsafe: auto hide after 2.8s even without JS */
    animation: loaderAutoHide 2s ease-out 2.8s both;
}

@keyframes loaderAutoHide {
    to {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
    }
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--surface);
    border-radius: 99px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--accent), #e8ff9a);
    border-radius: 99px;
    transition: width 0.5s linear;
    /* CSS fallback: auto-fill in 2s if JS doesn't run */
    animation: loaderAutoFill 2s ease-out 0.3s both;
}

@keyframes loaderAutoFill {
    0% {
        width: 0;
    }

    80% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    transition: background 1s var(--ease-out);
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-2);
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--accent);
    font-size: 0.7rem;
}

.nav-links {
    position: absolute;
    /* ← take it out of flex flow */
    left: 50%;
    /* ← start at center */
    transform: translateX(-50%);
    /* ← pull back by half its own width */
    display: flex;
    gap: 25px;

}

.nav-link {
    font-family: var(--font-display);
    font-size: 1.057rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}

.nav-link {
    font-size: 1.057rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    overflow: hidden;
    /* hides the bottom text until hover */
    display: inline-flex;
    transition: color 0.2s;
}

.nav-link-inner {
    display: flex;
    flex-direction: column;
    /* stacks top and bottom text */
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-link-top {
    display: block;
}

.nav-link-bottom {
    display: block;
    position: absolute;
    /* sits below, out of view */
    transform: translateY(100%);
    color: var(--accent);
    /* accent color when it rolls in */
}

/* On hover — roll the inner up */
.nav-link:hover .nav-link-inner {
    transform: translateY(-100%);
}

.nav-link:hover {
    color: var(--text);
}

/* NAV COMBO — Badge + Button */

.nav-combo-btn {
    position: relative;
    /* ← required */
    overflow: hidden;
    /* ← required */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Normal state gradient */
    background-image: linear-gradient(35deg, var(--accent-2) 10%, var(--accent) 75%);

    color: var(--text-4);
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 22px;
    height: 44px;
    white-space: nowrap;
    z-index: 1;
}

/* ✅ CORRECT — transition works on BOTH mouse enter and exit */
.nav-combo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(235deg, var(--accent-2) 10%, var(--accent) 75%);
    opacity: 0;
    transition: opacity 0.5s ease;
    /* ← must be HERE, not in :hover */
    z-index: -1;
}

.nav-combo-btn:hover::before {
    box-shadow: var(--accent);
    opacity: 1;
    /* ← only change opacity here, nothing else */
}

@media (max-width: 768px) {
    .nav-combo {
        display: none;
        /* hidden on mobile, burger menu handles nav */
    }
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    animation: pulse 2s ease-in-out infinite;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.nav-burger.active span:first-child {
    background: var(--accent);
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-burger.active span:last-child {
    background: var(--accent);
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-2);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.4s;
    pointer-events: none;
}

.mobile-menu-combo {
    padding: 16px 48px;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    padding: 16px 48px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s;
    border-bottom: 1px solid var(--border);
}

/* Base state — hidden and shifted left */
.mobile-link,
.mobile-menu-combo {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.40s ease, transform 0.40s ease;
}

/* When menu is open — animate IN */
.mobile-menu.open .mobile-link,
.mobile-menu.open .mobile-menu-combo {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger each link one by one */
.mobile-menu.open .mobile-link:nth-child(1) {
    transition-delay: 0.08s;
}

.mobile-menu.open .mobile-link:nth-child(2) {
    transition-delay: 0.16s;
}

.mobile-menu.open .mobile-link:nth-child(3) {
    transition-delay: 0.24s;
}

.mobile-menu.open .mobile-link:nth-child(4) {
    transition-delay: 0.32s;
}

.mobile-menu.open .mobile-link:nth-child(5) {
    transition-delay: 0.40s;
}

.mobile-menu.open .mobile-menu-combo {
    transition-delay: 0.48s;
}

/* Instant reset when menu closes */
.mobile-link,
.mobile-menu-combo {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.25s var(--ease-out);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

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

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

.btn-ghost {
    color: var(--text);
    border: 1px solid var(--border-2);
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(30px);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* FORM Fill BLOB BUTTON - FORM SUBMIT BUTTON */

.btn-full .btn-magnetic {
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: var(--text-4);
    z-index: 0;
    transition: color 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-full .btn-magnetic-fill {
    width: 100%;
    position: absolute;
    width: 850px;
    height: 250px;
    border-radius: 100%;
    background: var(--accent-2);
    /* ← your accent 2 color */
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 2s ease-out;
    opacity: 0;
}

.btn-full .btn-magnetic:hover .btn-magnetic-fill {
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── DIRECTIONAL FILL BUTTON - DETECTS MOUSE ENTRY DIRECTION AND ANIMATES FILL FROM THAT DIRECTION ── */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: var(--text-4);
    z-index: 0;
    transition: color 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* The fill blob */
.btn-magnetic-fill {
    position: absolute;
    width: 385px;
    height: 220px;
    border-radius: 100%;
    background: var(--accent-2);
    /* ← your accent 2 color */
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s ease-out;
    opacity: 0;
}

/* On hover — blob scales up and fills */
.btn-magnetic:hover .btn-magnetic-fill {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

/* Text stays on top */
.btn-label,
.btn-magnetic svg {
    position: relative;
    z-index: 1;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text color flips when filled */
.btn-magnetic:hover {
    color: var(--text);
}

.btn-magnetic:hover svg {
    color: var(--text);
}

.btn-magnetic svg {
    position: relative;
    z-index: 1;
    transition: transform 0.5s var(--ease-out),
        color 0.50s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 17px;
    padding: 5px 12px 5px 12px;
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-2);
    border: 1px solid var(--border);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 5vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-label em {
    color: var(--accent);
}

.section-header {
    margin-bottom: 64px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.75;
    /* animation: orbFloat 5s ease-in-out infinite; */
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: var(--accent);
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: var(--accent-2);
    /* animation-delay: -2s; */
}

/* @keyframes orbFloat {

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

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
} */

.hero-grid {
    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.07) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    overflow: visible;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    margin-top: 32px;
    overflow: visible;
    /* allows icons to escape when they pop out */
}

/* Base — all line wraps */
.line-wrap {
    display: block;
    overflow: hidden;
}

/* Override — only the last one (Convert.) needs to show icons */
.line-wrap:last-child {
    overflow: visible;
    /* ← allows icons to escape */
}

.line {
    display: block;
    z-index: 5;
    animation: slideUp 0.9s var(--ease-out) both;
}

.line-wrap:nth-child(1) .line {
    animation-delay: 1.4s;
}

.line-wrap:nth-child(2) .line {
    animation-delay: 1.55s;
}

.line-wrap:nth-child(3) .line {
    animation-delay: 1.7s;
}

/* .accent-line {
    background: linear-gradient(135deg, var(--accent) 0%, #e8ff9a 100%);
    -webkit-background-clip: text;
    z-index: 5;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

/* ── TILT WORD EFFECT ── */
.hero-tilt-word {
    z-index: 5;
    color: var(--accent);
    position: relative;
    cursor: default;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

/* Blurred pill background behind text */
.hero-tilt-word::before {
    content: '';
    position: absolute;
    inset: 0px -25px;
    background: var(--accent-2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1000px;
    border: 1px solid var(--border-2);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -5;
}

/* Tilt + show background on hover */
.hero-tilt-word:hover {
    transform: rotate(-40deg) scale(1.04);
}

.hero-tilt-word:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ── FLOATING ICON BUBBLES ── */
.tilt-icon {
    position: absolute;
    z-index: 5;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(55px);
    border: 1.5px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.tilt-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
}

/* Icon positions — scattered around the word */
.tilt-icon-1 {
    top: -30px;
    left: 20%;
    transform: translateY(10px) scale(0.8);
    transition-delay: 0.05s;
}

.tilt-icon-2 {
    top: -20px;
    right: 10%;
    transform: translateY(10px) scale(0.8);
    transition-delay: 0.1s;
}

.tilt-icon-3 {
    bottom: -23px;
    left: 35%;
    transform: translateY(-10px) scale(0.8);
    transition-delay: 0.15s;
}

/* Show icons on hover with stagger */
.hero-tilt-word:hover .tilt-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes slideUp {
    from {
        transform: translateY(110%);
        opacity: 0;
    }

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

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

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

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-2);
    max-width: 590px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 0.9s var(--ease-out) 1.9s both;
}

.hero-sub strong {
    color: var(--text);
}

/* Wrapper keeps name and photo inline together */
.inline-photo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

/* The circular headshot */
.inline-photo {
    display: inline-block;
    width: 41px;
    /* slightly bigger than text */
    height: 41px;
    border-radius: 50%;
    /* perfect circle */
    object-fit: cover;
    /* crops photo nicely */
    object-position: top;
    /* focuses on face */
    border: 2px solid var(--border-2);
    /* lime green ring */
    vertical-align: middle;
    margin: 0 2px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 120px;
    animation: fadeUp 0.8s var(--ease-out) 2s both;
}

.hero-stats {
    display: flex;
    margin: 0 0px 75px 0px;
    align-items: center;
    justify-content: center;
    gap: 85px;
    animation: fadeUp 0.9s var(--ease-out) 2.5s both;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-num {
    display: block;
    font-family: var(--font-hero);
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}

.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-hero);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.stat-suffix-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    align-self: flex-end;
    /* ← sits at top like superscript */
    margin-bottom: 3px;
    /* ← fine tune vertical position */
    flex-shrink: 0;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-hero);
    color: var(--text-2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 3px;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
        transform-origin: top;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ticker-strip::before,
.ticker-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.ticker-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-2), transparent);
}

.ticker-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-2), transparent);
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}

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

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 44px;
    padding: 0 24px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.ticker-dot {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ============================================
   WORK / PROJECTS
   ============================================ */
.work {
    padding: 120px 0;
    background: var(--bg);
}

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

.project-card--wide {
    grid-column: 1 / -1;
}

.project-card {
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    overflow: hidden;
    transition: border-color 1s, transform 1s var(--ease-out);
    cursor: pointer;
}

.project-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8;
}

.project-card--wide .project-img-wrap {
    aspect-ratio: 21 / 9;
}

/* .project-img-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
} */

.project-img-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(3, 14, 254, 1) 55%);
    /* fallback while loading */
}

.project-img-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(239, 191, 63, 1) 55%);
    /* fallback while loading */
}

.project-img-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(0, 181, 64, 1) 55%);
    /* fallback while loading */
}

.project-img-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(243, 160, 2, 1) 55%);
    /* fallback while loading */
}

.project-img-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(154, 104, 59, 1) 55%);
    /* fallback while loading */
}

.project-img-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(162, 114, 116, 1) 55%);
    /* fallback while loading */
}

.project-img-7 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(126, 17, 31, 1) 55%);
    /* fallback while loading */
}

.project-img-8 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(1, 157, 135, 1) 55%);
    /* fallback while loading */
}

.project-img-9 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(255, 106, 0, 1) 55%);
    /* fallback while loading */
}

.project-img-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(159, 110, 254, 1) 55%);
    /* fallback while loading */
}

.project-img-11 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(18, 95, 205, 1) 55%);
    /* fallback while loading */
}

.project-img-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s var(--ease-out);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background: var(--bg-3); */
    background: linear-gradient(235deg,
            var(--bg-3) 30%,
            rgba(43, 180, 217, 1) 55%);
    /* fallback while loading */
}

.project-screenshot {
    width: 500px;
    height: 100%;
    object-fit: contain;
    /* fills card perfectly */
    object-position: bottom;
    /* shows top of website first */
    display: block;
    transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* .project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            var(--bg-2) 90%);
    pointer-events: none;
} */

/* .project-card:hover .project-img {
    transform: scale(1.03);
} */

/* Mockup browser */
.project-mockup {
    width: 72%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mockup-bar {
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
}

.mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.mockup-line.w-30 {
    width: 30%;
}

.mockup-line.w-40 {
    width: 40%;
}

.mockup-line.w-45 {
    width: 45%;
}

.mockup-line.w-50 {
    width: 50%;
}

.mockup-line.w-60 {
    width: 60%;
}

.mockup-line.w-70 {
    width: 70%;
}

.mockup-line.w-80 {
    width: 80%;
}

.mockup-block {
    height: 60px;
    border-radius: 6px;
    background: rgba(200, 245, 66, 0.15);
    margin-bottom: 8px;
}

.mockup-block-lg {
    height: 80px;
    border-radius: 6px;
    background: rgba(200, 245, 66, 0.12);
    margin-bottom: 8px;
}

.mockup-hero-block {
    height: 80px;
    border-radius: 6px;
    background: rgba(66, 179, 245, 0.15);
    margin-bottom: 8px;
}

.mockup-btn-mock {
    height: 28px;
    width: 100px;
    border-radius: 100px;
    background: rgba(200, 245, 66, 0.25);
}

.mockup-cards-row {
    display: flex;
    gap: 6px;
}

.mockup-card-sm {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

/* Wide mockup layout */
.project-mockup--wide {
    width: 75%;
}

.mockup-content--wide {
    flex-direction: row;
    gap: 12px;
}

.mockup-sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    transform: translateY(0px);
    color: var(--text);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(30px);

    transition: transform 0.2s var(--ease-out),
        background-color 0.2s var(--ease-out),
        color 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out);
}

.project-card:hover .project-view-btn {
    transform: translateY(-5px);
}

.project-view-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-7px) !important;
}

.project-info {
    padding: 24px;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.project-num {
    font-size: 0.7rem;
    font-family: var(--font-display);
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--surface);
    color: var(--accent);
    border: 1px solid var(--border-2);
    letter-spacing: 0.02em;
}

.project-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    font-family: var(--font-display);
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-2);
    border: 1px solid var(--border-2);
    letter-spacing: 0.02em;
}

.project-flag {
    width: 27px;
    height: 17px;
    border-radius: 9px;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.27rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.project-card:hover .project-title {
    color: var(--accent);
}

.project-desc {
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 100px;
}

.about-img-wrap {
    position: relative;
    margin-top: 40px;
    display: inline-block;
}

.about-img-placeholder {
    width: 260px;
    height: 300px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-initials {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.about-img-tag {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    animation: pulse 2s ease-in-out infinite;
}

.about-bio {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-bio.lead {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.75;
}

.about-bio strong {
    color: var(--text);
    font-family: var(--font-display);
    padding: 2px 7px 2px 7px;
    background: var(--accent-glow);
    border-radius: var(--radius);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 36px 0 36px;
    padding: 27px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.value-icon {
    font-size: 1.1rem;
    color: var(--accent);
    /* margin-top: 2px; */
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ============================================
   INLINE ANIMATED ICONS
   ============================================ */
.inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 1.2em;
    /* ← THIS controls actual emoji size */
    width: 1em;
    height: 1em;
    position: relative;
    top: -0.1em;
    margin: 0 2px;
}

.inline-icon svg {
    width: 100%;
    height: 100%;
}

/* ── WAVE (Hand) ── */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(18deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(18deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(12deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.icon-wave {
    animation: wave 1.5s ease-in-out infinite;
    transform-origin: 70% 80%;
    display: inline-block;
}

/* ── PULSE (Sunglasses / confident) ── */
@keyframes pulse-scale {

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

    50% {
        transform: scale(1.18);
    }
}

.icon-pulse {
    animation: pulse-scale 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ── WRITE (Pen) ── */
@keyframes write {
    0% {
        transform: rotate(-10deg) translate(0, 0);
    }

    25% {
        transform: rotate(-5deg) translate(2px, -2px);
    }

    50% {
        transform: rotate(-10deg) translate(4px, 0);
    }

    75% {
        transform: rotate(-5deg) translate(2px, 2px);
    }

    100% {
        transform: rotate(-10deg) translate(0, 0);
    }
}

.icon-write {
    animation: write 1.5s ease-in-out infinite;
    display: inline-block;
    transform-origin: bottom right;
}

/* ── SPARKLE ── */
@keyframes sparkle {

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

    25% {
        transform: scale(1.3) rotate(15deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(0.85) rotate(-10deg);
        opacity: 1;
    }

    75% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.9;
    }
}

.icon-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ── BULB (lightbulb flicker) ── */
@keyframes bulb {

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

    92% {
        opacity: 0.6;
        transform: scale(0.95);
    }

    94% {
        opacity: 1;
        transform: scale(1.05);
    }

    96% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    98% {
        opacity: 1;
        transform: scale(1);
    }
}

.icon-bulb {
    animation: bulb 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ── FIRE ── */
@keyframes fire {

    0%,
    100% {
        transform: scaleY(1) rotate(-3deg);
    }

    25% {
        transform: scaleY(1.12) rotate(2deg);
    }

    50% {
        transform: scaleY(0.95) rotate(-2deg);
    }

    75% {
        transform: scaleY(1.08) rotate(3deg);
    }
}

.icon-fire {
    animation: fire 1.5s ease-in-out infinite;
    transform-origin: bottom center;
    display: inline-block;
}

/* ── GEM (rotate shimmer) ── */
@keyframes gem {

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

    30% {
        transform: rotateY(20deg) scale(1.1);
    }

    60% {
        transform: rotateY(-15deg) scale(1.05);
    }
}

.icon-gem {
    animation: gem 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ── PEACE (subtle bounce) ── */
@keyframes peace {

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

    30% {
        transform: translateY(-4px) rotate(-5deg);
    }

    60% {
        transform: translateY(0) rotate(3deg);
    }
}

.icon-peace {
    animation: peace 1.5s ease-in-out infinite;
    display: inline-block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

/* ── SERVICE ROW ── */
.service-row {
    position: relative;
    border-bottom: 1px solid var(--border-2);
    cursor: pointer;
    overflow: hidden;
}

.service-row:first-child {
    border-top: 1px solid var(--border-2);
}

/* Left-to-right slide background */
.service-row-bg {
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.service-row:hover .service-row-bg {
    transform: scaleX(1);
}

/* Row inner layout */
.service-row-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    transition: padding 0.5s var(--ease-out);
}

.service-row:hover .service-row-inner {
    padding: 28px 12px;
}

/* Left side */
.service-left {
    display: flex;
    align-items: center;
    gap: 17px;
}

.service-dash {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-2);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.2s var(--ease-out),
        transform 0.2s var(--ease-out);
}

.service-row:hover .service-dash {
    opacity: 1;
    transform: translateX(0);
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.2s var(--ease-out);
}

.service-row:hover .service-name {
    color: #080808;
}

/* Right side */
.service-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-2);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 5px 12px 5px 12px;
    transition: color 0.2s, border-color 0.3s, background 0.3s;
}

.service-row:hover .service-tag {
    color: #080808;
    border-color: #080808;
}

.service-arrow {
    width: 50px;
    height: 50px;
    color: var(--text);
    transition: color 0.2s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.service-row:hover .service-arrow {
    color: #080808;
    transform: rotate(-135deg);
    /* points straight up-right on hover */
}

/* ============================================
   SERVICES — MOBILE SPACING REFINEMENT
   ============================================ */

@media (max-width: 768px) {
    .services .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .service-row-inner {
        padding: 24px 0 24px 30px;
    }

    .service-left {
        gap: 10px;
    }

    .service-dash {
        display: none;
    }
}

/* ── SERVICE POPOVER ── */
.service-popover {
    position: fixed;
    width: 375px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95) translateY(8px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* Position set by JS */
    top: 0;
    left: 0;
}

.service-popover.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.popover-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border-bottom: 1px solid var(--border-2);
}

.popover-header-headings {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popover-title-icon {
    width: 27px;
    height: 22px;
}

.popover-header strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.popover-header p {
    font-size: 0.75rem;
    color: var(--text-2);
    font-weight: 500;
    font-family: var(--font-display);
    line-height: 1.4;
}

.popover-desc {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 400;
    font-family: var(--font-body);
    line-height: 1.65;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-2);
    padding: 25px 25px 25px 25px;
}

.popover-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 15px 25px 15px 25px;
}

.popover-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-2);
    font-weight: 400;
    font-family: var(--font-body);
    line-height: 1.4;
}

.benefit-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-2);
    flex-shrink: 0;
}

/* ============================================
   PRICING V2 — Vercel Style
   Add to bottom of style.css
   (Remove or replace old pricing CSS first)
   ============================================ */

.pricing {
    padding: 120px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border-2);
}

/* ── HEADER ── */
.pricing-header {
    margin-bottom: 64px;
}

.pricing-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-2);
    margin-top: 16px;
    max-width: 500px;
    line-height: 1.7;
}

/* ── PRICING TABLE ── */
.pricing-table {
    position: relative;
}

/* ── COLUMNS GRID ── */
.pricing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
}

/* ── SINGLE COLUMN ── */
.pricing-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border-2);
    transition: background 0.3s;
}

.pricing-col:last-child {
    border-right: none;
}

.pricing-col-body {
    padding: 40px 32px 32px;
    flex: 1;
}

.pricing-col-footer {
    padding: 0 32px 36px;
}

/* ── TIER NAME ── */
.pricing-tier-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ── DESCRIPTION ── */
.pricing-tier-desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 20px;
    min-height: 72px;
}

/* ── PRICE ── */
.pricing-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-2);
    margin-bottom: 6px;
}

.pricing-price strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: var(--text);
}

/* ── TIMELINE ── */
.pricing-timeline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-2);
    padding-top: 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-architect-scope {
    border-left: 1px solid var(--border-2);
    padding-left: 16px;
}

/* ── FEATURES LIST ── */
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.845rem;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.5;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--text);
    margin-top: 1px;
}

.pricing-features li em {
    color: var(--text-3);
}

/* ── CTA BUTTONS ── */
.pricing-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-2);
    /* full pill — exactly like Vercel */
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    font-family: var(--font-display);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s var(--ease-out),
        background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pricing-cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s var(--ease-out);
}

.pricing-cta-btn--outline svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s var(--ease-out);
}

.pricing-cta-btn:hover {
    border-color: var(--accent);
}

.pricing-cta-btn--outline:hover {
    border-color: var(--text);
}

/* Outline small — for dual buttons */
.pricing-cta-btn--outline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 100px;
    /* full pill — exactly like Vercel */
    font-size: 0.875rem;
    background: var(--text);
    color: var(--text-4);
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s var(--ease-out),
        background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pricing-cta-btn--outline:hover {
    color: var(--text-4);
    background: rgba(240, 237, 232, 0.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .pricing-cols {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
    }

    .pricing-col {
        border-right: none;
        border-bottom: 1px solid var(--border-2);
    }

    .pricing-col:last-child {
        border-bottom: none;
    }

    .pricing-popular-badge {
        top: -16px;
        left: 32px;
        transform: none;
    }

    .pricing-tier-desc {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .pricing-col-body {
        padding: 32px 24px 24px;
    }

    .pricing-col-footer {
        padding: 0 24px 28px;
    }

    .pricing-cta-btn--outline {
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================
   COMPARISON TABLE — V1 Updated
   3 Changes Applied:
   1. All columns equal — no popular styling
   2. Sticky header fixed properly
   3. Border only on Features column
   
   Delete ALL old cmp- CSS first, paste this
   ============================================ */

/* ── WRAP ── */
.cmp-table-wrap {
    margin-top: 50px;
}

.cmp-table-header {
    margin-bottom: 40px;
}

.cmp-table-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-top: 12px;
}

.cmp-table-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

/* ── SCROLL CONTAINER ── */
.cmp-scroll {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* ← hides scrollbar Firefox */
    scrollbar-color: transparent transparent;
}

/* Hide scrollbar Chrome/Safari */
.cmp-scroll::-webkit-scrollbar {
    display: none;
}

/* ── TABLE ── */
.cmp-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    table-layout: fixed;
}

/* ════════════════════════════════
   STICKY THEAD — CSS only
   ════════════════════════════════ */
/* ── TH ── */
.cmp-th {
    padding: 25px 30px;
    text-align: center;
    vertical-align: middle;
    /* NO border on th cells */
    border: none;
    background: var(--bg-2);
}

.cmp-th--feature {
    text-align: left;
    width: 25%;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
    /* Only features column gets right border */
    border-right: 1px solid var(--border-2) !important;
}

/* Plan name + tier */
.cmp-plan-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}

.cmp-plan-tier {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 2px 8px;
}

/* ── ROWS ── */
.cmp-tr {
    border-bottom: 1px solid var(--border-2);
    border-top: 1px solid var(--border-2);
    transition: background 0.1s;
}

.cmp-tr:hover {
    background: var(--bg-2)
}

/* ── CELLS ── */
.cmp-td {
    padding: 17px 30px;
    font-size: 0.825rem;
    font-weight: 400;
    color: var(--text-2);
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    border: none;
    /* NO border on any regular cell */
}

/* ONLY the Features label column gets a border */
.cmp-td--label {
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.850rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
    border-right: 1px solid var(--border-2) !important;
    /* ← ONLY border */
}

/* ── PRICE ── */
.cmp-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* ── YES / NO INDICATORS ── */
.cmp-yes,
.cmp-no,
.cmp-yes-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cmp-yes {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.cmp-yes svg {
    width: 12px;
    height: 12px;
}

.cmp-no {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #ef4444;
}

.cmp-no svg {
    width: 11px;
    height: 11px;
}

.cmp-yes-text {
    font-size: 0.82rem;
    color: var(--text-2);
    font-weight: 500;
}

.cmp-yes-text svg {
    width: 12px;
    height: 12px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 5px;
    padding: 2px;
    flex-shrink: 0;
}

/* ── CTA ROW ── */
.cmp-cta-row {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border-2);
}

.cmp-cta-row .cmp-td {
    padding: 20px 24px;
}

/* ── CTA BUTTONS — all identical ── */
.cmp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border-2);
    color: var(--accent);
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.cmp-cta-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmp-cta-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cmp-cta-btn:hover svg {
    transform: translateX(3px);
}

.cmp-cta-btn--highlight {
    background: var(--text);
    border: none;
    color: var(--text-4);
}

.cmp-cta-btn--highlight:hover {
    color: var(--text-4);
    background: rgba(240, 237, 232, 0.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

    /* On mobile, nav is not fixed so sticky offset = 0 */
    .cmp-thead {
        top: 0;
    }

    .cmp-th,
    .cmp-td {
        padding: 14px 14px;
    }

    .cmp-cta-row {
        display: none;
    }

    .cmp-td,
    .cmp-td--label {
        font-size: 0.78rem;
    }

    .cmp-table {
        min-width: 520px;
    }

    /* Reduce cell padding — this saves the most space */
    .cmp-th,
    .cmp-td {
        padding: 10px 8px;
        /* was 16px 24px — much tighter now */
    }

    /* Smaller font size so text fits in narrow columns */
    .cmp-td {
        font-size: 0.7rem;
    }

    .cmp-td--label {
        font-size: 0.72rem;
        font-weight: 700;
    }

    /* Plan names smaller */
    .cmp-plan-name {
        font-size: 0.78rem;
    }

    .cmp-plan-tier {
        font-size: 0.55rem;
        padding: 1px 5px;
    }

    /* Price text smaller */
    .cmp-price {
        font-size: 0.82rem;
    }

    /* Yes/No indicators smaller */
    .cmp-yes,
    .cmp-no {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .cmp-yes svg,
    .cmp-no svg {
        width: 10px;
        height: 10px;
    }

    /* Remove min-width so table shrinks to screen */
    .cmp-table {
        min-width: unset;
        width: 100%;
    }

    /* Feature column slightly narrower */
    .cmp-th--feature {
        width: 22%;
    }
}

/* ============================================
   PROCESS SECTION V4
   Row 1: 3 equal | Row 2: 2 equal | Row 3: full
   All illustrations static — no animations
   Replace all old process- CSS
   ============================================ */

.process-section {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

/* ── HEADER ── */
.process-header {
    max-width: 640px;
    margin-bottom: 64px;
}

.process-sub {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 480px;
}

/* ════════════════════════════════
   GRID LAYOUT
   ════════════════════════════════ */
.pb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 equal columns */
    gap: 14px;
}

/* ── CARD BASE ── */
.pb-card {
    background: var(--bg-2);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s var(--ease-out);
}

.pb-card:hover {
    border: 1px solid var(--border-2);
}

/* Row 3: Full width card */
.pb-card--full {
    grid-column: 1 / -1;
    /* spans all 3 columns */
    flex-direction: row;
    align-items: center;
    min-height: 280px;
    overflow: hidden;
}

/* Accent card */
.pb-card--accent {
    background: var(--bg-2);
}

/* ── ILLUSTRATIONS ── */
.pb-illus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Row 2 cards — taller illus */
.pb-card--half .pb-illus {
    height: 220px;
}

/* Row 2 wrapper — spans full width, splits into 2 equal cols */
.pb-row-2 {
    grid-column: 1 / -1;
    /* full width across all 3 columns */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* exactly 50% / 50% */
    gap: 14px;
}

/* ── TEXT BLOCK ── */
.pb-text {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Step tag */
.pb-step-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.10em;
    color: var(--text-2);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 3px 10px;
    width: fit-content;
    display: block;
    margin-bottom: 4px;
}

.pb-step-tag--accent {
    color: var(--accent);
    border-color: var(--accent);
}

/* Title */
.pb-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
}

.pb-title--large {
    font-size: 1.8rem;
    letter-spacing: -0.03em;
}

/* Desc */
.pb-desc {
    font-size: 0.845rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ════════════════════════════════
   LAUNCH CARD LAYOUT
   ════════════════════════════════ */
.pb-launch-left {
    flex: 1;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.pb-launch-right {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
}

/* Launch list */
.pb-launch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.pb-launch-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.845rem;
    color: var(--text-2);
}

.pb-launch-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ════════════════════════════════
   LAUNCH DASHBOARD ILLUSTRATION
   ════════════════════════════════ */
.launch-dashboard {
    width: 100%;
    background: rgba(10, 14, 10, 0.9);
    border: 1px solid rgba(153, 0, 255, 0.2);
    border-radius: 17px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Subtle top glow */
.launch-dashboard::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(153, 0, 255, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

/* ── TOP STATS ROW ── */
.ld-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ld-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ld-stat-label {
    font-size: 0.62rem;
    color: var(--text-2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ld-stat-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.ld-stat-change {
    font-size: 0.65rem;
    font-weight: 600;
}

.ld-up {
    color: var(--accent-2);
}

/* ── CHART ── */
.ld-chart {
    position: relative;
    height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 12px 8px;
}

/* Bars */
.ld-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.ld-bar {
    flex: 1;
    height: var(--h);
    background: rgba(200, 245, 66, 0.12);
    border-radius: 3px 3px 0 0;
    border: 1px solid rgba(200, 245, 66, 0.15);
    transition: background 0.2s;
}

.ld-bar--accent {
    background: rgba(200, 245, 66, 0.35);
    border-color: rgba(200, 245, 66, 0.5);
    box-shadow: 0 0 12px rgba(200, 245, 66, 0.2);
}

/* Trend line SVG */
.ld-trend-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Peak dot at top-right */
.ld-peak-dot {
    position: absolute;
    top: 6px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(200, 245, 66, 0.7);
    z-index: 4;
}

.ld-peak-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(200, 245, 66, 0.35);
}

/* ── STATUS ROW ── */
.ld-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ld-status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    color: var(--text-2);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 10px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.ld-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ld-status-dot--green {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.ld-status-dot--blue {
    background: #42b3f5;
    box-shadow: 0 0 6px rgba(66, 179, 245, 0.5);
}

.ld-status-dot--lime {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(200, 245, 66, 0.5);
}

/* ════════════════════════════════
   ILLUSTRATION 1 — DISCOVERY
   Static chat bubbles
   ════════════════════════════════ */
.pb-illus--discovery {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 28px;
    justify-content: center;
}

.disc-bubble {
    border-radius: 14px;
    padding: 10px 14px;
    position: relative;
    z-index: 2;
}

.disc-bubble--1 {
    background: rgba(200, 245, 66, 0.1);
    border: 1px solid rgba(200, 245, 66, 0.18);
    display: flex;
    gap: 5px;
    align-items: center;
    align-self: flex-start;
}

.disc-bubble--2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-end;
    min-width: 150px;
}

.disc-bubble--3 {
    background: rgba(200, 245, 66, 0.06);
    border: 1px solid rgba(200, 245, 66, 0.12);
    align-self: flex-start;
    min-width: 90px;
}

.disc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.8;
}

.disc-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 5px;
}

.disc-line:last-child {
    margin-bottom: 0;
}

.disc-line--1 {
    width: 80%;
}

.disc-line--2 {
    width: 50%;
}

.disc-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: var(--text);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 4px 10px;
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    font-weight: 400;
}

.disc-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* ════════════════════════════════
   ILLUSTRATION 2 — PROPOSAL
   Document stack — static
   ════════════════════════════════ */
.pb-illus--proposal {
    align-items: center;
    justify-content: center;
}

.prop-doc {
    position: absolute;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--border-2);
}

.prop-doc--back {
    width: 155px;
    height: 190px;
    transform: rotate(6deg) translate(18px, 8px);
    opacity: 0.45;
    z-index: 1;
}

.prop-doc--mid {
    width: 155px;
    height: 190px;
    transform: rotate(2deg) translate(7px, 3px);
    opacity: 0.65;
    z-index: 2;
}

.prop-doc--front {
    width: 155px;
    height: 190px;
    transform: rotate(-1deg);
    z-index: 3;
    background: var(--text);
    border-color: var(--border);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prop-doc-bar {
    height: 18px;
    background: var(--accent-2);
    border-radius: 4px;
    margin-bottom: 4px;
}

.prop-line {
    height: 5px;
    border-radius: 3px;
    background: var(--accent);
}

.prop-line--w80 {
    width: 80%;
}

.prop-line--w60 {
    width: 60%;
}

.prop-line--w70 {
    width: 70%;
}

.prop-line--w40 {
    width: 40%;
}

.prop-divider {
    height: 1px;
    background: var(--accent-2);
    margin: 2px 0;
}

.prop-sign {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.prop-sign-line {
    flex: 1;
    height: 2px;
    background: var(--accent-2);
    border-radius: 1px;
}

.prop-sign-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
}

/* ════════════════════════════════
   ILLUSTRATION 3 — DESIGN
   Concentric frames — static
   ════════════════════════════════ */
.pb-illus--design {
    align-items: center;
    justify-content: center;
}

.des-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(200, 245, 66, 0.14);
    background: rgba(200, 245, 66, 0.02);
    /* NO animation */
}

.des-frame--outer {
    width: 150px;
    height: 150px;
}

.des-frame--mid {
    width: 100px;
    height: 100px;
    border-radius: 13px;
    border-color: rgba(200, 245, 66, 0.2);
    background: rgba(200, 245, 66, 0.03);
}

.des-frame--inner {
    width: 58px;
    height: 58px;
    border-radius: 9px;
    border-color: rgba(200, 245, 66, 0.32);
    background: rgba(200, 245, 66, 0.07);
}

.des-frame-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.85;
    box-shadow: 0 0 14px rgba(200, 245, 66, 0.5);
}

/* Color swatches — static */
.des-swatch {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
}

.des-swatch--1 {
    width: 18px;
    height: 18px;
    background: var(--accent);
    top: 22px;
    right: 32px;
    box-shadow: 0 0 10px rgba(200, 245, 66, 0.4);
}

.des-swatch--2 {
    width: 13px;
    height: 13px;
    background: var(--accent-2);
    bottom: 28px;
    right: 24px;
    box-shadow: 0 0 8px rgba(66, 179, 245, 0.4);
}

.des-swatch--3 {
    width: 11px;
    height: 11px;
    background: var(--accent-2);
    top: 32px;
    left: 24px;
    box-shadow: 0 0 7px rgba(236, 72, 153, 0.4);
}

/* ════════════════════════════════
   ILLUSTRATION 4 — DEVELOPMENT
   Code editor — static
   ════════════════════════════════ */
.pb-illus--dev {
    padding: 20px;
    align-items: center;
}

.dev-editor {
    width: 100%;
    max-width: 340px;
    background: rgba(8, 10, 16, 0.95);
    border: 1px solid rgba(66, 179, 245, 0.18);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.dev-editor-bar {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.dev-dot--red {
    background: #ff5f57;
}

.dev-dot--yellow {
    background: #febc2e;
}

.dev-dot--green {
    background: #28c840;
}

.dev-code {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dev-line {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.dev-line--indent {
    padding-left: 18px;
}

.dev-kw {
    color: var(--accent-2);
}

.dev-var {
    color: #f0ede8;
}

.dev-str {
    color: rgba(255, 255, 255, 0.35);
}

.dev-fn {
    color: #c8f542;
}

.dev-acc {
    color: var(--accent);
}

/* ════════════════════════════════
   ILLUSTRATION 5 — REVIEW
   Static radar (no sweep animation)
   ════════════════════════════════ */
.pb-illus--review {
    align-items: center;
    justify-content: center;
}

.rev-radar {
    position: relative;
    width: 135px;
    height: 135px;
    z-index: 2;
}

.rev-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 245, 66, 0.14);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rev-ring--1 {
    width: 100%;
    height: 100%;
}

.rev-ring--2 {
    width: 66%;
    height: 66%;
    border-color: rgba(200, 245, 66, 0.2);
}

.rev-ring--3 {
    width: 34%;
    height: 34%;
    border-color: rgba(200, 245, 66, 0.32);
}

/* Static line instead of rotating sweep */
.rev-static-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1.5px;
    transform-origin: 0 50%;
    transform: rotate(-40deg);
    background: linear-gradient(to right, var(--accent-2), transparent);
    opacity: 0.7;
    z-index: 2;
}

.rev-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(200, 245, 66, 0.5);
    z-index: 3;
}

.rev-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.65;
    z-index: 3;
}

.rev-dot--1 {
    background: var(--accent-2);
    width: 5px;
    height: 5px;
    top: 22%;
    left: 62%;
}

.rev-dot--2 {
    width: 4px;
    height: 4px;
    top: 62%;
    left: 24%;
}

/* ════════════════════════════════
   ILLUSTRATION 6 — LAUNCH
   Browser — static
   ════════════════════════════════ */
.pb-illus--launch {
    position: relative;
    padding: 0;
    height: auto;
    width: 100%;
}

.launch-browser {
    width: 100%;
    background: rgba(12, 16, 10, 0.95);
    border: 1px solid rgba(200, 245, 66, 0.22);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(200, 245, 66, 0.08);
}

.launch-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(200, 245, 66, 0.08);
}

.launch-browser-bar>span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.launch-url {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(200, 245, 66, 0.05);
    border: 1px solid rgba(200, 245, 66, 0.12);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.6rem;
    color: var(--accent);
    margin-left: 8px;
    flex: 1;
    font-family: monospace;
    letter-spacing: 0.02em;
}

.launch-lock {
    width: 8px;
    height: 9px;
    color: var(--accent);
    flex-shrink: 0;
}

.launch-lock svg {
    width: 100%;
    height: 100%;
}

.launch-browser-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.launch-body-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(200, 245, 66, 0.12);
}

.launch-body-line--h {
    width: 55%;
    height: 12px;
}

.launch-body-line--s {
    width: 85%;
}

.launch-body-line--short {
    width: 45%;
}

.launch-body-blocks {
    display: flex;
    gap: 8px;
    margin: 4px 0;
}

.launch-block {
    height: 40px;
    border-radius: 6px;
    background: rgba(200, 245, 66, 0.07);
}

.launch-block--1 {
    flex: 1.5;
}

.launch-block--2 {
    flex: 1;
}

/* Live badge */
.launch-live-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #080808;
    background: var(--accent);
    border-radius: 100px;
    padding: 4px 10px;
    z-index: 5;
}

.launch-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #080808;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .pb-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pb-card {
        border: 1px solid var(--border-2);
    }

    /* Row 1: 3 cards → first is wide */
    .pb-card:nth-child(1) {
        grid-column: span 1;
    }

    .pb-card:nth-child(2) {
        grid-column: span 1;
    }

    .pb-card:nth-child(3) {
        grid-column: span 1;
    }

    /* Row 2: 2 half cards */
    .pb-card--half:nth-child(4) {
        grid-column: span 1;
    }

    .pb-card--half:nth-child(5) {
        grid-column: span 1;
    }

    /* Row 3: full */
    .pb-card--full {
        flex-direction: column;
    }

    .pb-launch-right {
        width: 100%;
        padding: 0 32px 32px;
    }

    .pb-launch-left {
        padding: 32px 32px 20px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .pb-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pb-card:nth-child(1),
    .pb-card:nth-child(2),
    .pb-card:nth-child(3),
    .pb-card--half:nth-child(4),
    .pb-card--half:nth-child(5),
    .pb-card--full {
        grid-column: 1;
    }

    .pb-card:hover {
        transform: none;
    }

    .pb-illus {
        height: 180px;
    }

    .pb-card--full {
        flex-direction: column;
    }

    .pb-launch-right {
        width: 100%;
        padding: 0 24px 28px;
    }

    .pb-launch-left {
        padding: 28px 24px 16px;
    }

    .pb-title--large {
        font-size: 1.4rem;
    }

    .pb-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS — Infinite Marquee
   ============================================ */

.testi-section {
    padding: 120px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

/* ── HEADER ── */
.testi-header {
    margin-bottom: 64px;
}

.testi-sub {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 480px;
}

/* ════════════════════════════════
   MARQUEE WRAPPER
   ════════════════════════════════ */
.testi-marquee-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 17px;
    /* overflow hidden to clip cards */
    overflow: hidden;
}

/* ── FADE EDGES ── */
.testi-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 10;
    pointer-events: none;
}

.testi-fade--left {
    left: 0;
    background: linear-gradient(to right,
            var(--bg-2) 0%,
            var(--bg-2) 20%,
            transparent 100%);
}

.testi-fade--right {
    right: 0;
    background: linear-gradient(to left,
            var(--bg-2) 0%,
            var(--bg-2) 20%,
            transparent 100%);
}

/* ════════════════════════════════
   ROW
   ════════════════════════════════ */
.testi-row {
    display: flex;
    overflow: hidden;
    width: 100%;
}

/* ════════════════════════════════
   TRACK — the scrolling strip
   ════════════════════════════════ */
.testi-track {
    display: flex;
    gap: 16px;
    /* width set by JS or set very wide */
    width: max-content;
    will-change: transform;
}

/* Row 1 — left to right (positive translateX) */
.testi-row[data-direction="left"] .testi-track {
    animation: marqueeLeft 35s linear infinite;
}

/* Row 2 — right to left (negative translateX) */
.testi-row[data-direction="right"] .testi-track {
    animation: marqueeRight 35s linear infinite;
}

/* Pause on hover */
.testi-row:hover .testi-track {
    animation-play-state: paused;
}

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

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

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ════════════════════════════════
   CARD
   ════════════════════════════════ */
.testi-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: border-color 0.2s, transform 0.2s var(--ease-out);
}

.testi-card:hover {
    border-color: var(--border-2);
}

/* ── REVIEW TEXT ── */
.testi-card p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

/* ── AUTHOR ── */
.testi-card-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.testi-card-author strong {
    font-size: 0.845rem;
    font-weight: 500;
    font-family: var(--font-display);
    color: var(--text);
    display: block;
}

.testi-card-author span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-3);
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .testi-section {
        padding: 80px 0;
    }

    .testi-card {
        width: 280px;
        padding: 22px;
    }

    .testi-fade--left,
    .testi-fade--right {
        width: 80px;
    }

    .testi-row[data-direction="left"] .testi-track {
        animation-duration: 25s;
    }

    .testi-row[data-direction="right"] .testi-track {
        animation-duration: 25s;
    }
}

/* ============================================
   CONTACT SECTION — Redesigned
   Replace all old contact- CSS
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border-2);
}

/* ── LAYOUT ── */
.contact-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 25px;
    align-items: start;
}

/* ════════════════════════════════
   LEFT — PROFILE CARD
   ════════════════════════════════ */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-label-wrap .section-label {
    display: inline-block;
}

/* ── PROFILE CARD ── */
.profile-card {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.profile-card:hover {
    border-color: var(--border-2);
}

/* Background glow */
.profile-card-glow {
    position: absolute;
    top: -80px;
    left: 10%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(153, 0, 255, 0.3) 5%,
            transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

/* LinkedIn icon */
.profile-linkedin {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s var(--ease-out);
    z-index: 2;
}

.profile-linkedin svg {
    width: 16px;
    height: 16px;
}

.profile-linkedin:hover {
    background: var(--accent-2);
    border: 0px solid transparent;
    transform: scale(1.08);
}

/* Photo */
.profile-photo-wrap {
    display: flex;
    justify-content: left;
    position: relative;
    z-index: 1;
}

.profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.profile-photo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    width: 100%;
    height: 100%;
}

/* Info */
.profile-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    z-index: 1;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text);
}

.profile-role {
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.profile-bio {
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 280px;
}

/* Divider */
.profile-divider {
    height: 1px;
    background: var(--border-2);
    position: relative;
    z-index: 1;
}

/* Action buttons */
.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    width: 180px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s var(--ease-out);
    white-space: nowrap;
}

.profile-btn--primary {
    background: var(--accent);
    color: #080808;
}

.whatsapp-btn-profile {
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--border-2);
    background: rgba(8, 8, 8, 0.5);
}

.whatsapp-btn-profile:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Email row */
.profile-email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s;
}

.profile-email-row:hover {
    border-color: var(--border-2);
}

.profile-email-text {
    font-size: 0.82rem;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-email-copy {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.profile-email-copy svg {
    width: 15px;
    height: 15px;
}

.profile-email-copy:hover {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
}

.profile-email-copy.copied {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
}

/* ════════════════════════════════
   RIGHT — CONTACT FORM
   ════════════════════════════════ */
.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-form-wrap {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form-wrap:hover {
    border-color: var(--border-2);
}

/* ── FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--text-2);
    letter-spacing: 0.03em;
}

.custom-select label {
    font-size: 0.78rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--text-2);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--text);
    outline: none;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border: 1px solid var(--border-2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

/* Select arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5652' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-3);
    color: var(--text);
}

/* Pricing tier options inside service dropdown */
.cs-option-tier {
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.cs-option-tier span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-option-tier strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.cs-option-tier small {
    font-size: 0.72rem;
    color: var(--text-3);
    line-height: 1.3;
}

.cs-option-tier em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 100px;
    background: var(--accent-dim);
    white-space: nowrap;
}

.cs-option-tier:hover {
    background: rgba(200, 245, 66, 0.06);
}

.cs-option-tier.selected {
    background: rgba(200, 245, 66, 0.08);
}

/* Budget locked state */
.custom-select.is-locked .cs-trigger {
    cursor: not-allowed;
}

.custom-select.is-locked .cs-placeholder {
    color: var(--text);
}

.custom-select.is-locked .cs-arrow {
    opacity: 0;
}

.custom-select.is-locked .cs-trigger::after {
    content: 'Locked by service';
    font-size: 0.65rem;
    color: var(--text-2);
    margin-left: auto;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .custom-select.is-locked .cs-trigger::after {
        display: none;
    }

    .cs-option-tier {
        padding: 13px 14px;
    }
}

/* ── FORM ACTIONS ── */
.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

/* Attach button */
.form-attach-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius);
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    color: var(--text-2);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
    white-space: nowrap;
    flex-shrink: 0;
}

.form-attach-btn svg {
    width: 15px;
    height: 15px;
}

.form-attach-btn:hover {
    border-color: var(--text);
    color: var(--text);
}

/* Attach remove button */
.attach-remove-btn {
    display: none;
    /* hidden until file selected */
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: grey;
    border: none;
    color: var(--text-4);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
    flex-shrink: 0;
}

.attach-remove-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Submit button */
.form-submit-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 100px;
    background: var(--accent);
    color: var(--text-4);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FORM Fill BLOB BUTTON - FORM SUBMIT BUTTON */

.btn-full .btn-magnetic {
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: var(--text-4);
    z-index: 0;
    transition: color 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-full .btn-magnetic-fill {
    width: 100%;
    position: absolute;
    width: 700px;
    height: 200px;
    border-radius: 100%;
    background: var(--accent-2);
    /* ← your accent 2 color */
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.2s ease-out;
    opacity: 0;
}

.btn-full .btn-magnetic:hover .btn-magnetic-fill {
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success state */
.form-submit-btn.success {
    background: #4ade80;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-btn-profile {
        text-align: center;
        align-items: center;
        display: inline-flex;
        justify-content: center;
    }

    .profile-email-row {
        border: 1px solid var(--border-2);
    }

    .contact-left {
        position: static;
    }

    .profile-card {
        max-width: 420px;
    }
}

@media (max-width: 768px) {

    .profile-card {
        border: 1px solid var(--border-2);
    }

    .contact-right {
        border: 1px solid var(--border-2);
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-attach-btn,
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-card {
        max-width: 100%;
    }
}

/* CUSTOM DESIGNED DROPDOWNS */
/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
    margin-top: 7px;
}

.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
    padding: 12px 16px;
    margin-top: 7px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select.open .cs-trigger {
    border-color: var(--accent);
}

.cs-placeholder {
    font-size: 0.875rem;
    color: var(--text-3);
    transition: color 0.2s;
}

.cs-placeholder.has-value {
    color: var(--text);
}

.cs-arrow {
    width: 15px;
    height: 15px;
    color: var(--text-3);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}

.custom-select.open .cs-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.cs-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    /* Hidden by default */
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.custom-select.open .cs-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Options */
.cs-option {
    padding: 11px 16px;
    font-size: 0.875rem;
    color: var(--text-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.15s, color 0.15s;
}

.cs-option:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

/* Checkmark — shown when selected */
.cs-option::after {
    content: '✓';
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.15s;
}

.cs-option.selected::after {
    opacity: 1;
}

.cs-option.selected {
    color: var(--text);
}

/* ============================================
   CLIENT LOGOS STRIP
   ============================================ */

.client-logos-section {
    margin-top: -75px;
    padding: 0 0 120px;
}

.client-logos-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
    gap: 25px;
}

.client-logo-item,
.client-logo-placeholder {
    min-height: 50px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition:
        opacity 0.2s var(--ease-out),
        transform 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out),
        background 0.2s var(--ease-out);
}

.client-logo-item img {
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;

    filter: grayscale(1);
    opacity: 0.55;

    transition:
        filter 0.2s var(--ease-out),
        opacity 0.2s var(--ease-out),
        transform 0.2s var(--ease-out);
}

.client-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo-placeholder {
    border: 1.5px dashed rgba(255, 255, 255, 0.25);
    color: var(--text-2);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.client-logo-placeholder:hover {
    color: var(--text);
    border-color: var(--text);
    opacity: 1;
}

.client-logo-placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .client-logos-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .client-logo-item,
    .client-logo-placeholder {
        min-height: 78px;
    }

    .client-logo-item img {
        max-width: 125px;
        max-height: 38px;
    }
}

@media (max-width: 576px) {
    .client-logos-section {
        padding: 26px 0;
    }

    .client-logos-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .client-logo-item,
    .client-logo-placeholder {
        min-height: 70px;
        border-radius: 14px;
    }

    .client-logo-item img {
        max-width: 110px;
        max-height: 34px;
    }

    .client-logo-placeholder {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-2);
    background: var(--bg-2);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo span {
    color: var(--accent);
    font-size: 0.5rem;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--text-2);
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 400;
    transition: transform 0.2s var(--ease-out);
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================
   PRIVACY POLICY POPUP — MINIMAL VERSION
   ============================================ */

.privacy-trigger {
    font-size: 0.85rem;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s var(--ease-out);
}

.privacy-trigger:hover {
    color: var(--accent);
    text-decoration: underline;
}

.privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.75);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out);
}

.privacy-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.privacy-popup {
    position: fixed;
    right: 75px;
    bottom: 37px;
    width: min(400px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 130px));

    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);

    padding: 24px;

    z-index: 99;
    opacity: 0;
    pointer-events: none;

    transform: translateY(14px) scale(0.96);
    transform-origin: bottom right;

    transition:
        opacity 0.25s var(--ease-out),
        transform 0.25s var(--ease-out);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

    overflow-y: auto;
    overflow-x: hidden;

    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-2) transparent;
}

.privacy-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.privacy-popup * {
    max-width: 100%;
    box-sizing: border-box;
}

.privacy-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 32px;
    height: 32px;
    border-radius: 50%;

    background: var(--surface);
    border: 1px solid var(--border-2);
    color: var(--text-2);

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

    font-family: var(--font-display);
    font-size: 0.8rem;

    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.privacy-close:hover {
    color: var(--text);
    border-color: var(--text);
}

.privacy-popup-header {
    padding-right: 44px;
    margin-bottom: 20px;
}

.privacy-popup-header .section-label {
    margin-bottom: 14px;
    font-size: 0.62rem;
    padding: 5px 11px;
}

.privacy-popup-header h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 8px;
}

.privacy-popup-header p {
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.65;
}

.privacy-popup-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.privacy-item {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.privacy-item:last-child {
    padding-bottom: 0;
}

.privacy-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.35;
}

.privacy-item p {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
}

.privacy-item strong {
    color: var(--accent);
    font-weight: 600;
}

body.privacy-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .privacy-popup {
        right: 16px;
        left: 16px;
        bottom: 20px;
        width: auto;
        max-height: calc(100vh - 40px);
        padding: 22px;
        border-radius: var(--radius-lg);
    }

    .privacy-popup-header h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

.reveal-delay-7 {
    transition-delay: 0.7s;
}

.reveal-delay-8 {
    transition-delay: 0.8s;
}

.reveal-delay-9 {
    transition-delay: 0.9s;
}

.reveal-delay-10 {
    transition-delay: 0.10s;
}

.reveal-delay-11 {
    transition-delay: 0.11s;
}

.reveal-delay-12 {
    transition-delay: 0.12s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .nav {
        padding: 0 32px;
    }

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

    .process-connector {
        display: none;
    }

    .testimonials-track {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-num,
    .stat-suffix {
        font-size: 1.7rem;
    }

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

    .project-card--wide {
        grid-column: auto;
    }

    .project-card--wide .project-img-wrap {
        aspect-ratio: 16/9;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-left {
        position: static;
    }

    .about-img-placeholder {
        width: 200px;
        height: 240px;
    }

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

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

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        display: block;
    }

    .testimonial-card:nth-child(2) {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .work,
    .about,
    .skills,
    .process,
    .testimonials,
    .contact {
        padding: 80px 0;
    }
}

/* ============================================
   FOOTER — MOBILE LAYOUT ONLY
   ============================================ */

@media (max-width: 576px) {
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        row-gap: 20px;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        margin-left: 25px;
    }

    .footer-links {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        margin-right: 25px;
    }

    .footer-copy {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .client-logos-row>*:nth-child(5) {
        display: none;
    }
}

/* ============================================
   HERO CTA — MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn {
        flex: 1;
        width: auto;
        min-width: 0;
        justify-content: center;
        padding: 16px 40px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.7rem;
        font-weight: 500;
        font-family: var(--font-hero);
        color: var(--text-2);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-top: 3px;
    }
}

@media (max-width: 380px) {
    .hero-actions {
        gap: 8px;
        max-width: 100%;
    }

    .hero-actions .btn {
        padding: 13px 25px;
        font-size: 0.88rem;
    }
}

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CURSOR HIDE ON TOUCH
   ============================================ */
@media (hover: none) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}