
/* ==================== */
/* CSS RESET & BASE */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-blue: #0066ff;
    --accent-gold: #ffd700;
    --gray-dark: #1a1a1a;
    --gray-medium: #2a2a2a;
    --gray-light: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition-speed: 0.3s;
    --shadow-primary: 0 10px 40px rgba(0, 102, 255, 0.3);
    --shadow-secondary: 0 5px 20px rgba(255, 215, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 102, 255, 0.2);
}

body:not(.loaded) {
    overflow: hidden;
}

body.loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==================== */
/* LOADING SCREEN */
/* ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: stars-float 20s ease-in-out infinite;
    opacity: 0.3;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

/* Money Printer Animation */
.money-printer {
    position: relative;
    width: 200px;
    height: 150px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.printer-body {
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, var(--gray-medium), var(--gray-dark));
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.printer-slot {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.printer-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: printer-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-gold);
}

@keyframes printer-blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--accent-gold);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--accent-gold);
    }
}

.money-bills {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.bill {
    position: absolute;
    width: 110px;
    height: 55px;
    border-radius: 8px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* €10 Bill - Red */
.bill-10 {
    background: linear-gradient(135deg, #d63031 0%, #e74c3c 50%, #c0392b 100%);
    border: 2px solid #a93226;
}

.bill-10 .bill-content::before {
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
}

/* €20 Bill - Blue */
.bill-20 {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 50%, #1e6fa5 100%);
    border: 2px solid #1a5990;
}

.bill-20 .bill-content::before {
    background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.2), transparent 50%);
}

/* €50 Bill - Orange */
.bill-50 {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #d68910 100%);
    border: 2px solid #b8750a;
}

.bill-50 .bill-content::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.bill-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
}

.bill-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
}

.bill-content::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.bill-value {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
    letter-spacing: -2px;
}

.bill-symbol {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.bill-1 {
    animation: print-money 2.5s ease-in-out infinite;
}

.bill-2 {
    animation: print-money 2.5s ease-in-out 0.4s infinite;
}

.bill-3 {
    animation: print-money 2.5s ease-in-out 0.8s infinite;
}

@keyframes print-money {
    0% {
        opacity: 0;
        top: -10px;
        transform: translateX(-50%) scale(0.8);
    }
    20% {
        opacity: 1;
        top: 0;
        transform: translateX(-50%) scale(1);
    }
    40% {
        opacity: 1;
        top: 30px;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
    60% {
        opacity: 0.8;
        top: 60px;
        transform: translateX(-50%) scale(1.05) rotate(-5deg);
    }
    80% {
        opacity: 0.3;
        top: 90px;
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }
    100% {
        opacity: 0;
        top: 120px;
        transform: translateX(-50%) scale(1.2) rotate(-15deg);
    }
}

/* Loading Text */
.loading-text {
    animation: fadeInUp 1s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.loading-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.loading-bar {
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading-progress 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--primary-blue);
}

@keyframes loading-progress {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }
    50% {
        width: 70%;
        background-position: 100% 50%;
    }
    100% {
        width: 100%;
        background-position: 200% 50%;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo {
        font-size: 2rem;
    }

    .money-printer {
        width: 150px;
        height: 120px;
    }

    .printer-body {
        width: 140px;
        height: 80px;
    }

    .printer-slot {
        width: 90px;
        height: 15px;
    }

    .bill {
        width: 90px;
        height: 45px;
    }

    .bill-value {
        font-size: 1.6rem;
    }

    .bill-symbol {
        font-size: 1.4rem;
    }

    .loading-text h3 {
        font-size: 1.2rem;
    }

    .loading-bar {
        width: 200px;
    }
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.logo-prim {
    color: var(--primary-white);
}

.logo-euro {
    color: var(--primary-blue);
}

.logo-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.nav-social-icon::after {
    display: none;
}

.nav-social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    filter: brightness(1.15);
}

.nav-social-icon svg {
    width: 18px;
    height: 18px;
}

.nav-social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 2px 8px rgba(214, 36, 159, 0.35);
}

.nav-social-ig:hover {
    box-shadow: 0 4px 14px rgba(214, 36, 159, 0.5);
}

.nav-social-tg {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    box-shadow: 0 2px 8px rgba(34, 158, 217, 0.35);
}

.nav-social-tg:hover {
    box-shadow: 0 4px 14px rgba(34, 158, 217, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:focus,
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
    background: transparent;
    outline: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    pointer-events: none;
}

.stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: stars-float 20s ease-in-out infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes stars-float {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-prim-large {
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-euro-large {
    color: var(--primary-blue);
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

.logo-stars-large {
    color: var(--accent-gold);
    font-size: 3.5rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px var(--accent-gold));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image */
.hero-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.75s both;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.hero-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.15);
}

.hero-social-icon svg {
    width: 20px;
    height: 20px;
}

.hero-social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 2px 10px rgba(214, 36, 159, 0.4);
}

.hero-social-ig:hover {
    box-shadow: 0 4px 16px rgba(214, 36, 159, 0.55);
}

.hero-social-tg {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    box-shadow: 0 2px 10px rgba(34, 158, 217, 0.4);
}

.hero-social-tg:hover {
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.55);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-tertiary {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: var(--primary-black);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== */
/* SECTIONS COMMON */
/* ==================== */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== */
/* HOW WE WORK */
/* ==================== */
.how-we-work {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--gray-dark) 50%, var(--primary-black) 100%);
    position: relative;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.how-we-work::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.steps-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    transition: all var(--transition-speed);
    opacity: 0;
    transform: translateY(-30px);
    animation: slideInDown 0.6s ease-out forwards;
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 180px;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.step-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-white);
}

.step-content {
    width: 100%;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ==================== */
/* SERVICES GRID */
/* ==================== */
.services {
    background: var(--primary-black);
    padding: 6rem 0 8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 2rem 0;
}

.service-card {
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Service Image */
.service-image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: transparent;
}

.service-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* What you get section */
.service-includes {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.includes-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.includes-list li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--primary-white);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--gray-dark) 50%, var(--primary-black) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-speed);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        min-width: auto;
        flex-shrink: 1;
    }

    /* Make How We Work vertical on mobile */
    .steps-container {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-width: auto;
        flex-shrink: 1;
        padding: 1.5rem;
    }

    .service-image-container {
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .includes-title {
        font-size: 0.8rem;
    }

    .includes-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .btn-service {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-speed);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-logo {
        font-size: 2.5rem;
    }

    .logo-stars-large {
        font-size: 2rem;
    }

    .hero-image-container {
        max-width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .hero-social {
        margin-bottom: 2.5rem;
        gap: 1rem;
    }

    .hero-social-icon {
        width: 46px;
        height: 46px;
    }

    .hero-social-icon svg {
        width: 22px;
        height: 22px;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        padding: 2rem;
    }

    .step:hover {
        transform: translateY(-5px);
    }

    .service-card {
        padding: 2rem;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-logo {
        font-size: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image-container {
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-social {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .hero-social-icon {
        width: 46px;
        height: 46px;
    }

    .hero-social-icon svg {
        width: 22px;
        height: 22px;
    }

    .btn {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-image-container {
        margin-bottom: 0.875rem;
        border-radius: 8px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .step {
        padding: 1.75rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* ==================== */
/* MOBILE ENHANCEMENTS */
/* ==================== */

/* Prevent text size adjustment on mobile devices */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Improve touch scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure all interactive elements have adequate touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent layout shift from scrollbar */
    body {
        scrollbar-gutter: stable;
    }
}

/* Very small devices optimizations */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
}

/* ==================== */
/* PROP-USE DISCLAIMER BANNER */
/* ==================== */
.prop-banner {
    position: relative;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 215, 0, 0.18) 50%, rgba(255, 215, 0, 0.06) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.35);
    border-bottom: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    line-height: 1.35;
    text-transform: uppercase;
}

.prop-banner-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
    animation: prop-banner-pulse 2.4s ease-in-out infinite;
}

@keyframes prop-banner-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 640px) {
    .prop-banner {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        padding: 0.5rem 0.75rem;
    }
}

/* ==================== */
/* HERO TAGLINE */
/* ==================== */
.hero-tagline {
    margin: 0.85rem auto 1.75rem;
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.hero-tagline strong {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .hero-tagline {
        font-size: 0.92rem;
        margin: 0.6rem auto 1.4rem;
    }
}

/* ==================== */
/* PROP-USE ACKNOWLEDGEMENT (checkout) */
/* ==================== */
.prop-acknowledge {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 10px;
}

.prop-acknowledge-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.prop-acknowledge-label input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.18rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.prop-acknowledge-label strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==================== */
/* LEGAL PAGES (disclaimer / terms / privacy) */
/* ==================== */
.legal-page {
    padding: 4rem 0 5rem;
    min-height: 70vh;
}

.legal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.legal-section {
    margin-bottom: 2.25rem;
    max-width: 820px;
}

.legal-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(0, 102, 255, 0.35);
    display: inline-block;
}

.legal-section p,
.legal-section li {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.4rem;
    margin-bottom: 0.75rem;
}

.legal-section li::marker {
    color: var(--primary-blue);
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.legal-section a:hover {
    color: #3388ff;
    text-decoration-color: var(--primary-blue);
}

.legal-section strong {
    color: var(--primary-white);
    font-weight: 600;
}

.legal-callout {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.legal-callout p {
    color: var(--primary-white);
    font-size: 1rem;
    margin-bottom: 0;
}

.legal-callout strong {
    color: var(--accent-gold);
}

.legal-back {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-back a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.legal-back a:hover {
    color: #3388ff;
}

@media (max-width: 640px) {
    .legal-page {
        padding: 2.5rem 0 3.5rem;
    }
    .legal-section h2 {
        font-size: 1.15rem;
    }
    .legal-section p,
    .legal-section li {
        font-size: 0.92rem;
    }
    .legal-callout {
        padding: 1.1rem 1.2rem;
    }
}

/* ============================================================ */
/* V2 — PREMIUM ECOMMERCE UPGRADE                                */
/* ============================================================ */

/* ---- Announcement bar ---- */
.announce-bar {
    position: relative;
    z-index: 1100;
    overflow: hidden;
    background: linear-gradient(90deg, #000 0%, #06112a 50%, #000 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.18);
    padding: 0.55rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e7e7e7;
}
.announce-track {
    display: inline-flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: announce-scroll 35s linear infinite;
    padding-left: 100%;
}
.announce-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.7);
}
@keyframes announce-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Nav CTA button ---- */
.nav-cta-wrap { display: inline-flex; }
.nav-cta {
    display: inline-flex !important;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: #000 !important;
    border-radius: 999px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.28);
    transition: all var(--transition-speed) ease;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 215, 0, 0.45);
}
.nav-cta::after { display: none !important; }

/* ---- Hero v2 ---- */
.hero-v2 { padding: 7rem 0 5rem; }
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-blue {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0,102,255,0.65), transparent 60%);
    top: -120px; left: -80px;
}
.hero-orb-gold {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,215,0,0.35), transparent 60%);
    bottom: -80px; right: -60px;
    animation-delay: 3s;
}
.hero-orb-violet {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(138,92,246,0.35), transparent 60%);
    top: 40%; left: 55%;
    animation-delay: 7s;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-copy { text-align: left; }
.hero-copy .hero-logo {
    justify-content: flex-start;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}
.hero-copy .logo-stars-large { font-size: 2rem; }
.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.8s ease-out;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d7d7d7;
    backdrop-filter: blur(10px);
}
.hero-pill-star {
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.hero-pill-alt {
    background: linear-gradient(90deg, rgba(0,102,255,0.15), rgba(255,215,0,0.1));
    border-color: rgba(0, 102, 255, 0.35);
    color: #fff;
}

.hero-title-xl {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-align: left;
    background: linear-gradient(135deg, #fff 0%, #d0e0ff 60%, #88a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffaa00 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-copy .hero-tagline { text-align: left; margin-left: 0; }

.hero-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.4rem;
    margin: 0 0 1.75rem;
    max-width: 520px;
}
.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: #cfd4dc;
}
.hero-feature-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #00d2ff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.45);
}

.hero-copy .hero-buttons { justify-content: flex-start; margin-bottom: 1.25rem; }
.hero-copy .hero-social { justify-content: flex-start; margin-bottom: 0; }

.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
}
.btn-glow:hover::before { transform: translateX(120%); }

/* Hero visual stack */
.hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
}
.hero-stack-card {
    position: absolute;
    width: 78%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-stack-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-stack-chip {
    position: absolute;
    bottom: 0.7rem;
    right: 0.7rem;
    padding: 0.3rem 0.7rem;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(10px);
}
.hero-stack-10 {
    top: 4%; left: 0;
    transform: rotate(-10deg);
    animation: stack-float-a 6s ease-in-out infinite;
}
.hero-stack-20 {
    top: 18%; left: 22%;
    z-index: 3;
    transform: rotate(2deg);
    animation: stack-float-b 7s ease-in-out infinite;
}
.hero-stack-50 {
    top: 40%; right: 0;
    z-index: 2;
    transform: rotate(11deg);
    animation: stack-float-c 8s ease-in-out infinite;
}
@keyframes stack-float-a {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-10px); }
}
@keyframes stack-float-b {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-14px); }
}
@keyframes stack-float-c {
    0%, 100% { transform: rotate(11deg) translateY(0); }
    50% { transform: rotate(9deg) translateY(-8px); }
}
.hero-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(0,102,255,0.35), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}
.hero-stack-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.hero-stack-badge-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}
.hero-stack-badge-sub {
    display: block;
    font-size: 0.7rem;
    color: #cfd4dc;
    margin-top: 2px;
}

.hero-stats-v2 {
    margin-top: 4rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 2rem;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
    align-self: center;
}

/* ---- Trust strip ---- */
.trust-strip {
    padding: 2.5rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-strip-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}
.trust-dot { color: rgba(255, 215, 0, 0.5); font-size: 0.9rem; }
.trust-logo {
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.trust-logo:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ---- Section eyebrow ---- */
.section-eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7aa9ff;
    margin-bottom: 1rem;
}

/* ---- Use Cases ---- */
.use-cases {
    background: linear-gradient(180deg, #000 0%, #05070f 100%);
    position: relative;
}
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.use-case-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.use-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.use-case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.45);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.22);
}
.use-case-card:hover::before { opacity: 1; }
.use-case-card > * { position: relative; z-index: 1; }
.use-case-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,102,255,0.18), rgba(0,102,255,0.04));
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #7aa9ff;
    margin-bottom: 1.25rem;
}
.use-case-icon svg { width: 26px; height: 26px; }
.use-case-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}
.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.use-case-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* ---- Services v2 ---- */
.services-v2 {
    background: radial-gradient(ellipse at top, #0a1228 0%, #000 60%);
}
.services-grid-v2 { gap: 2rem; }
.service-card-v2 {
    padding: 1.75rem;
    background: linear-gradient(160deg, #161b2c 0%, #0a0c16 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 50%, rgba(255,255,255,0.04));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.service-card-v2::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from var(--angle, 0deg), transparent 0%, rgba(0, 102, 255, 0.35) 10%, transparent 20%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: conic-rotate 6s linear infinite;
}
.service-card-v2:hover::after { opacity: 0.85; }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes conic-rotate { to { --angle: 360deg; } }

.service-card-v2.featured {
    transform: scale(1.03);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.18);
}
.service-card-v2.featured::before {
    background: linear-gradient(135deg, rgba(255,215,0,0.45), transparent 50%, rgba(0,102,255,0.25));
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.25);
}
.service-card-v2.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.tone-10 { --tone: #e74c3c; }
.tone-20 { --tone: #3498db; }
.tone-50 { --tone: #f39c12; }

.service-card-v2 .service-badge {
    background: linear-gradient(135deg, var(--tone, var(--primary-blue)), rgba(255,255,255,0.2));
    box-shadow: 0 4px 14px color-mix(in srgb, var(--tone, var(--primary-blue)) 40%, transparent);
}
.service-card-v2 .badge-best {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: #000;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.45);
}
.service-card-v2 .badge-premium {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.45);
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.service-stars {
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.service-card-v2 .service-image-container {
    position: relative;
    border-radius: 12px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #000 0%, #0a0c16 100%);
}
.service-card-v2 .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card-v2:hover .service-image { transform: scale(1.06); }
.service-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--tone, var(--primary-blue)) 35%, transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.service-card-v2:hover .service-image-glow { opacity: 1; }

.service-card-v2 .service-pricing {
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}
.price-strike {
    font-size: 0.9rem;
    color: #777;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 100, 100, 0.6);
}
.price-save {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #22c55e;
    padding: 0.2rem 0.55rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 6px;
}

.btn-service-v2 {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--tone, var(--primary-blue)), color-mix(in srgb, var(--tone, var(--primary-blue)) 70%, #000));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--tone, var(--primary-blue)) 35%, transparent);
}
.btn-service-v2 svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn-service-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--tone, var(--primary-blue)) 50%, transparent);
}
.btn-service-v2:hover svg { transform: translateX(4px); }

/* ---- Shop assurances row ---- */
.shop-assurances {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}
.assurance {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.assurance-icon {
    font-size: 1.5rem;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,102,255,0.18), rgba(0,102,255,0.04));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 10px;
}
.assurance strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}
.assurance span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ---- Why Us ---- */
.why-us {
    background: linear-gradient(180deg, #000 0%, #05070f 50%, #000 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.why-card {
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition: all 0.4s ease;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.15);
}
.why-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.why-icon svg { width: 28px; height: 28px; }
.why-icon-blue { background: linear-gradient(135deg, rgba(0,102,255,0.25), rgba(0,102,255,0.05)); color: #7aa9ff; border: 1px solid rgba(0,102,255,0.4); }
.why-icon-gold { background: linear-gradient(135deg, rgba(255,215,0,0.22), rgba(255,215,0,0.05)); color: var(--accent-gold); border: 1px solid rgba(255,215,0,0.4); }
.why-icon-violet { background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(168,85,247,0.05)); color: #c4a0ff; border: 1px solid rgba(168,85,247,0.4); }
.why-icon-emerald { background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(34,197,94,0.05)); color: #7aeba5; border: 1px solid rgba(34,197,94,0.4); }
.why-icon-pink { background: linear-gradient(135deg, rgba(236,72,153,0.25), rgba(236,72,153,0.05)); color: #f4a8d0; border: 1px solid rgba(236,72,153,0.4); }
.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---- Bulk CTA ---- */
.bulk-cta { padding: 4rem 0; background: #000; }
.bulk-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,102,255,0.25), transparent 60%),
        radial-gradient(circle at 85% 80%, rgba(255,215,0,0.18), transparent 60%),
        linear-gradient(135deg, #0a1228 0%, #050810 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.bulk-eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.bulk-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}
.bulk-copy p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.bulk-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.bulk-stats > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.bulk-stats strong {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bulk-stats span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.bulk-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
}
.bulk-actions .btn { min-width: 220px; text-align: center; }
.bulk-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.bulk-note::before {
    content: '●';
    color: #22c55e;
    font-size: 0.7rem;
    animation: pulse 2s infinite;
}

/* ---- Steps upgraded ---- */
.step {
    position: relative;
    padding-top: 2.5rem;
}
.step-number {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(0,102,255,0.6), rgba(255,215,0,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    letter-spacing: -0.04em;
}

/* ---- Testimonials ---- */
.testimonials {
    background: linear-gradient(180deg, #05070f 0%, #000 100%);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.testimonial-card {
    padding: 2rem;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.25;
}
.featured-testimonial {
    background: linear-gradient(160deg, rgba(255,215,0,0.06) 0%, rgba(0,102,255,0.03) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.08);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.35);
}
.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}
.testimonial-quote {
    color: #e5e5e5;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}
.testimonial-avatar-gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: #000;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
}
.testimonial-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}
.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.testimonial-footer {
    text-align: center;
}

/* ---- Community CTA ---- */
.community-cta { padding: 5rem 0; background: #000; }
.community-panel {
    padding: 3.5rem 2.5rem;
    text-align: center;
    background:
        radial-gradient(circle at 20% 30%, rgba(34,158,217,0.3), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,102,255,0.25), transparent 50%),
        linear-gradient(135deg, #0a1228 0%, #050810 100%);
    border: 1px solid rgba(34, 158, 217, 0.35);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(34, 158, 217, 0.15);
}
.community-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #7aeba5;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.community-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}
.community-panel p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}
.community-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.btn-tg, .btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-tg {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(34, 158, 217, 0.4);
}
.btn-tg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 158, 217, 0.55);
}
.btn-ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}
.btn-ig:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220, 39, 67, 0.5);
}

/* ---- Footer badges ---- */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.footer-badge {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #cfd4dc;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- FAQ refinements ---- */
.faq-item {
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
}
.faq-item:hover {
    background: linear-gradient(160deg, rgba(0,102,255,0.05), rgba(255,255,255,0.01));
}
.faq-item.active {
    border-color: rgba(0, 102, 255, 0.45);
    background: linear-gradient(160deg, rgba(0,102,255,0.07), rgba(255,255,255,0.01));
}

/* ---- Responsive breakpoints for v2 ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-copy { text-align: center; }
    .hero-copy .hero-logo { justify-content: center; }
    .hero-copy .hero-tagline { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-feature-list {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy .hero-buttons { justify-content: center; }
    .hero-copy .hero-social { justify-content: center; }
    .hero-trust-pills { justify-content: center; }
    .hero-stack {
        max-width: 380px;
        margin: 0 auto;
    }
    .bulk-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
        text-align: center;
    }
    .bulk-stats { justify-content: center; }
    .bulk-actions { align-items: center; }
    .hero-stats-v2 { flex-wrap: wrap; gap: 1.5rem; }
    .stat-divider { display: none; }
}

@media (max-width: 768px) {
    .hero-v2 { padding: 6rem 0 3rem; }
    .hero-title-xl { font-size: clamp(2rem, 7vw, 2.8rem); }
    .hero-trust-pills { font-size: 0.7rem; }
    .hero-feature-list {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .announce-bar { font-size: 0.68rem; }
    .hero-stats-v2 { padding: 1.25rem; }
    .services-grid-v2 { grid-template-columns: 1fr; }
    .service-card-v2.featured { transform: none; }
    .service-card-v2.featured:hover { transform: translateY(-8px); }
    .trust-logos { font-size: 1rem; gap: 0.85rem; }
    .bulk-panel { padding: 2rem 1.5rem; }
    .bulk-stats { gap: 1.5rem; }
    .bulk-stats strong { font-size: 1.4rem; }
    .community-panel { padding: 2.5rem 1.5rem; }
    .shop-assurances { grid-template-columns: 1fr 1fr; }
    .step-number { font-size: 1.8rem; }
    .nav-links .nav-cta-wrap { margin-top: 0.5rem; }
}

@media (max-width: 480px) {
    .hero-stack { max-width: 280px; }
    .hero-visual { min-height: 320px; }
    .shop-assurances { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.25rem; }
    .trust-logos { font-size: 0.9rem; }
    .section-eyebrow { font-size: 0.65rem; }
}

/* Honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .announce-track,
    .hero-orb,
    .hero-stack-10,
    .hero-stack-20,
    .hero-stack-50,
    .service-card-v2::after,
    .bulk-note::before,
    .prop-banner-dot {
        animation: none !important;
    }
}

/* ============================================================ */
/* V3 — EDITORIAL LUXURY REDESIGN                                */
/* ============================================================ */

:root {
    --ink: #0a0a0a;
    --ink-2: #111114;
    --paper: #fafaf7;
    --paper-dim: #a0a0a5;
    --paper-hint: #55555a;
    --line: rgba(250, 250, 247, 0.08);
    --line-strong: rgba(250, 250, 247, 0.18);
    --gold: #0066ff;
    --gold-bright: #4da3ff;
    --accent: #0066ff;
    --radius-lg: 20px;
    --radius-md: 12px;
    --max: 1320px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.v3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ink);
    color: var(--paper);
    background-image: none;
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
}

body.v3 .container { max-width: var(--max); padding: 0 2rem; }

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    z-index: 9999;
    pointer-events: none;
    transition: width 0.1s ease;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.45);
}

/* ============================================================ */
/* LOADING SCREEN — v3                                           */
/* ============================================================ */
.loader-v3 {
    background: #000 !important;
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2.5rem 2rem;
    z-index: 10000;
    overflow: hidden;
}
.loader-v3::before { display: none; }
.loader-noise {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.06), transparent 50%);
}
.loader-noise::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1.5px 1.5px at 45% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 25% 75%, rgba(255,255,255,0.2), transparent);
    background-size: 500px 500px;
    opacity: 0.5;
}
.loader-topbar {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: rgba(250,250,247,0.6);
    animation: l-fade-in 0.8s ease-out 0.1s both;
}
.loader-core {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.loader-eyebrow {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 2.5rem;
    animation: l-fade-up 0.8s ease-out 0.2s both;
}
.loader-mark {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--paper);
    display: flex;
    gap: 0.04em;
    margin-bottom: 1.75rem;
}
.loader-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: l-letter-rise 0.8s var(--ease) forwards;
}
.loader-letter:nth-child(1) { animation-delay: 0.30s; }
.loader-letter:nth-child(2) { animation-delay: 0.36s; }
.loader-letter:nth-child(3) { animation-delay: 0.42s; }
.loader-letter:nth-child(4) { animation-delay: 0.48s; }
.loader-letter:nth-child(5) { animation-delay: 0.54s; color: var(--gold); font-style: italic; font-weight: 400; }
.loader-letter:nth-child(6) { animation-delay: 0.60s; }
.loader-letter:nth-child(7) { animation-delay: 0.66s; }
.loader-letter:nth-child(8) { animation-delay: 0.72s; }
.loader-letter:nth-child(9) { animation-delay: 0.78s; }
.loader-dot { color: var(--gold) !important; font-weight: 300 !important; }
.loader-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--paper-dim);
    text-transform: uppercase;
    animation: l-fade-up 0.8s ease-out 0.9s both;
}
.loader-sub em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0;
}
.loader-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    animation: l-fade-up 0.8s ease-out 1.1s both;
}
.loader-meter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--paper);
}
.loader-count, .loader-max { min-width: 2ch; }
.loader-max { color: var(--paper-dim); }
.loader-track {
    width: clamp(160px, 30vw, 240px);
    height: 1px;
    background: rgba(250,250,247,0.15);
    position: relative;
    overflow: hidden;
}
.loader-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    animation: l-fill 2.2s ease-out 0.3s forwards;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}
.loader-legal {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: rgba(250,250,247,0.35);
}
.loader-curtain {
    position: absolute;
    left: 0;
    right: 0;
    height: 50vh;
    background: #000;
    z-index: 3;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateY(0);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}
.loader-curtain-top { top: 0; }
.loader-curtain-bottom { bottom: 0; }
body.loaded .loader-v3 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
body.loaded .loader-v3 .loader-core,
body.loaded .loader-v3 .loader-topbar,
body.loaded .loader-v3 .loader-footer {
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.6s var(--ease);
}

@keyframes l-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes l-fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes l-letter-rise {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes l-fill { to { width: 100%; } }

/* Hide v2 loading-content inside v3 loader (safety) */
.loader-v3 .loading-content,
.loader-v3 .money-printer,
.loader-v3 .loading-text { display: none !important; }

/* ============================================================ */
/* TICKER BAR                                                    */
/* ============================================================ */
.ticker-bar {
    position: relative;
    z-index: 1100;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    color: rgba(250,250,247,0.55);
    text-transform: uppercase;
}
.ticker-track {
    display: inline-flex;
    gap: 2rem;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker-scroll 42s linear infinite;
}
.ticker-item { display: inline-block; }
.ticker-sep { color: var(--gold); opacity: 0.7; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Hide v2 announce bar if it sneaks in */
body.v3 .announce-bar { display: none; }

/* ============================================================ */
/* NAV v3                                                        */
/* ============================================================ */
body.v3 .navbar {
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
}
body.v3 .navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background: rgba(10, 10, 10, 0.92);
}
body.v3 .nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 0.8rem 0;
}
body.v3 .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
}
body.v3 .logo-prim { color: var(--paper); }
body.v3 .logo-euro { color: var(--gold); }
body.v3 .logo-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: 0.2rem;
}
body.v3 .nav-links {
    justify-self: center;
    gap: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.v3 .nav-links a {
    font-weight: 500;
    color: var(--paper);
    opacity: 0.85;
    transition: opacity 0.25s ease, color 0.25s ease;
}
body.v3 .nav-links a:hover { opacity: 1; color: var(--gold); }
body.v3 .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
body.v3 .nav-links a:hover::after { width: 100%; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-icon-link {
    color: var(--paper);
    opacity: 0.7;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
}
.nav-icon-link:hover { opacity: 1; transform: translateY(-1px); border-color: var(--gold); color: var(--gold); }
.nav-cta-v3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--paper);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(250, 250, 247, 0.08);
}
.nav-cta-v3:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}
body.v3 .mobile-menu-toggle span {
    background: var(--paper);
    height: 1.5px;
}

/* ============================================================ */
/* PROP BANNER — refined for v3                                  */
/* ============================================================ */
body.v3 .prop-banner {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.08) 50%, transparent 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    padding: 0.6rem 1rem;
    font-weight: 500;
}
body.v3 .prop-banner-dot { background: var(--gold); box-shadow: 0 0 8px rgba(0, 102, 255, 0.5); }

/* ============================================================ */
/* HERO v3                                                       */
/* ============================================================ */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 4rem;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
body.v3 .hero-v3 { display: block; }
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(250,250,247,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250,250,247,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.hero-v3 .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}
.hero-orb-a {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.5), transparent 60%);
    top: -200px; left: -150px;
    animation: orb-drift-a 18s ease-in-out infinite;
}
.hero-orb-b {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.35), transparent 60%);
    bottom: -200px; right: -100px;
    animation: orb-drift-b 22s ease-in-out infinite;
}
@keyframes orb-drift-a {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(60px, 40px); }
}
@keyframes orb-drift-b {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(-40px, -30px); }
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 7rem);
}
.hero-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 3rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: rgba(250,250,247,0.55);
    text-transform: uppercase;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-tag-mono { color: rgba(250,250,247,0.5); }
.hero-live {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
.hero-text { max-width: 620px; }
.hero-v3 .hero-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.75rem;
}
.hero-hed {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--paper);
    margin-bottom: 2rem;
}
.hero-hed .hero-line { display: block; }
.hero-hed em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.hero-line-accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--paper) 0%, var(--gold) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 2.5rem;
    position: relative;
}
.hero-line-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1.5px;
    background: var(--gold);
    transform: translateY(-50%);
}

.hero-v3 .hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(250,250,247,0.78);
    margin-bottom: 2.25rem;
    max-width: 540px;
    font-weight: 400;
}
.hero-sub-dim {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--paper-hint);
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.hero-cta-row {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.btn-v3 {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-v3-primary {
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 6px 24px rgba(250, 250, 247, 0.12);
}
.btn-v3-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}
.btn-v3-primary svg { transition: transform 0.35s var(--ease); }
.btn-v3-primary:hover svg { transform: translateX(4px); }
.btn-v3-ghost {
    background: transparent;
    color: var(--paper);
    border-color: var(--line-strong);
}
.btn-v3-ghost:hover {
    border-color: var(--paper);
    background: rgba(250, 250, 247, 0.05);
    transform: translateY(-2px);
}
.btn-v3-lg { padding: 1.2rem 2rem; font-size: 0.88rem; }

.hero-trustline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: var(--paper-dim);
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    max-width: 360px;
}
.hero-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-shadow: 0 0 8px rgba(0, 102, 255, 0.35);
}

/* Hero visual */
.hero-v3 .hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-v3 .hero-stack {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
}
.hero-v3 .hero-stack-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(250, 250, 247, 0.06) inset;
    transition: transform 0.8s var(--ease);
}
.hero-v3 .hero-stack-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-v3 .hs-chip {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    padding: 0.3rem 0.7rem;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(250, 250, 247, 0.18);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--paper);
    backdrop-filter: blur(10px);
}
.hero-v3 .hs-rear {
    width: 65%;
    top: 6%;
    left: 4%;
    transform: rotate(-11deg);
    opacity: 0.85;
    animation: hs-float-a 8s ease-in-out infinite;
}
.hero-v3 .hs-mid {
    width: 70%;
    top: 28%;
    right: 6%;
    transform: rotate(9deg);
    z-index: 2;
    animation: hs-float-b 9s ease-in-out infinite;
}
.hero-v3 .hs-front {
    width: 75%;
    bottom: 6%;
    left: 8%;
    transform: rotate(-4deg);
    z-index: 3;
    animation: hs-float-c 10s ease-in-out infinite;
}
@keyframes hs-float-a { 0%,100% { transform: rotate(-11deg) translateY(0); } 50% { transform: rotate(-9deg) translateY(-12px); } }
@keyframes hs-float-b { 0%,100% { transform: rotate(9deg) translateY(0); } 50% { transform: rotate(7deg) translateY(-16px); } }
@keyframes hs-float-c { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }

.hs-badge {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    padding: 0.85rem 1.1rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(14px);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: hs-badge-fade 0.8s ease-out 1.2s both;
}
.hs-badge-k {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.hs-badge-s {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: rgba(250,250,247,0.6);
    text-transform: uppercase;
}
.hs-ring {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.35) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: hs-ring-pulse 6s ease-in-out infinite;
}
@keyframes hs-ring-pulse { 0%,100%{opacity:0.5;transform:scale(1);} 50%{opacity:0.85;transform:scale(1.08);} }
@keyframes hs-badge-fade {
    from { opacity: 0; transform: translate(10px, 10px); }
    to { opacity: 1; transform: translate(0,0); }
}

.hero-foot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    margin-top: 3rem;
    gap: 2rem;
}
.hero-metric { display: flex; flex-direction: column; gap: 0.4rem; }
.hero-metric .metric-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    color: var(--paper);
    letter-spacing: -0.02em;
}
.hero-metric .metric-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    text-decoration: none;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
}
.hero-scroll-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--paper-dim);
}

/* ============================================================ */
/* SECTION HEADER v3                                             */
/* ============================================================ */
body.v3 section { padding: 7rem 0; scroll-margin-top: 100px; }

.section-head {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.eyebrow {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.eyebrow-light { color: var(--paper); opacity: 0.7; }
.section-hed {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin: 0;
}
.section-hed em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.section-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(250,250,247,0.65);
    max-width: 360px;
    margin: 0;
    padding-bottom: 0.4rem;
}
.section-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ */
/* MANIFESTO                                                     */
/* ============================================================ */
.manifesto {
    background: #000;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.manifesto .container {
    max-width: 980px;
    text-align: center;
}
.manifesto .eyebrow { margin-bottom: 2rem; }
.manifesto-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--paper);
    margin: 0 auto 2.5rem;
    max-width: 820px;
}
.manifesto-quote em {
    display: block;
    font-style: italic;
    color: var(--gold);
    margin: 0.5rem 0;
}
.manifesto-sign {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: var(--paper-dim);
    text-transform: uppercase;
}
.sign-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

/* ============================================================ */
/* RIBBON                                                        */
/* ============================================================ */
.ribbon {
    overflow: hidden;
    background: var(--ink);
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.ribbon-track {
    display: inline-flex;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--paper);
    gap: 1.5rem;
    animation: ribbon-scroll 35s linear infinite;
    padding-left: 0;
}
.ribbon-track span:nth-child(even) {
    color: var(--gold);
    font-style: normal;
    font-weight: 300;
}
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================ */
/* COLLECTION                                                    */
/* ============================================================ */
.collection { background: var(--ink); }
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.coll-card {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}
.coll-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, color-mix(in srgb, var(--accent, #c94b4b) 22%, transparent), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 0;
}
.coll-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent, var(--gold));
    box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px color-mix(in srgb, var(--accent, #c94b4b) 35%, transparent);
}
.coll-card:hover::before { opacity: 1; }
.coll-featured {
    border-color: rgba(0, 102, 255, 0.35);
    background: linear-gradient(160deg, #14141c, #0d0d12);
}
.coll-featured::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.coll-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
}
.coll-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease), filter 0.5s ease;
    filter: saturate(0.95) contrast(1.02);
}
.coll-card:hover .coll-media img {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.05);
}
.coll-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    padding: 0.4rem 0.75rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--paper);
    backdrop-filter: blur(10px);
    z-index: 2;
}
.coll-tag-featured {
    background: var(--gold);
    color: #000;
    border-color: transparent;
}

.coll-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
.coll-hd {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.coll-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.85;
    color: var(--accent);
    letter-spacing: -0.04em;
    font-style: italic;
    flex-shrink: 0;
    opacity: 0.9;
}
.coll-hd h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.coll-hd p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(250,250,247,0.65);
    margin: 0;
}
.coll-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
}
.coll-rating { color: var(--paper-dim); }
.coll-rating em {
    font-style: normal;
    color: var(--gold);
    font-weight: 600;
    margin-left: 0.2rem;
}
.coll-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--paper);
    letter-spacing: -0.01em;
}
.coll-price em {
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--paper-dim);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-right: 0.3rem;
    text-transform: uppercase;
    font-style: normal;
}
.coll-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--paper);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    margin-top: auto;
}
.coll-cta:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.coll-cta:hover svg { transform: translateX(4px); }
.coll-cta svg { transition: transform 0.3s var(--ease); }
.coll-cta-featured {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.coll-cta-featured:hover {
    background: var(--paper);
    color: #000;
    border-color: var(--paper);
}

.collection-assurances {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--paper-dim);
    text-transform: uppercase;
}
.collection-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.collection-assurances i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

/* ============================================================ */
/* PROCESS                                                       */
/* ============================================================ */
.process {
    background: #000;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-step {
    position: relative;
    padding: 2.5rem 1.75rem 2.5rem 0;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.process-step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 1px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}
.process-step:hover::before { width: 80%; }
.proc-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
}
.proc-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.proc-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250,250,247,0.68);
    margin: 0;
}

/* ============================================================ */
/* AUDIENCE                                                      */
/* ============================================================ */
.audience { background: var(--ink); }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    min-height: 720px;
}
.aud-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    min-height: 340px;
    isolation: isolate;
    transition: transform 0.5s var(--ease);
}
.aud-tile:hover { transform: translateY(-4px); }
.aud-tile-lg { grid-column: span 2; grid-row: span 2; }
.aud-tile-wd { grid-column: span 2; }
.aud-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(0.3) contrast(1.08) brightness(0.7);
    transition: transform 1s var(--ease), filter 0.6s ease;
}
.aud-tile:hover .aud-media {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.12) brightness(0.85);
}
.aud-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.2) 100%);
    transition: opacity 0.6s ease;
}
.aud-tile:hover .aud-overlay { opacity: 0.8; }
.aud-label {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    z-index: 2;
    color: var(--paper);
}
.aud-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}
.aud-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.aud-label p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(250,250,247,0.8);
    margin: 0;
    max-width: 380px;
}

/* ============================================================ */
/* CRAFT                                                         */
/* ============================================================ */
.craft {
    background: #000;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.craft-card {
    padding: 2.5rem 1.75rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s ease;
    position: relative;
}
.craft-card:nth-child(3n) { border-right: none; }
.craft-card:nth-last-child(-n+3) { border-bottom: none; }
.craft-card:hover { background: rgba(250,250,247,0.02); }
.craft-card:hover::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}
.craft-num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 2rem;
}
.craft-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.85rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.craft-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250,250,247,0.65);
    margin: 0;
}

/* ============================================================ */
/* VOICES (testimonials)                                         */
/* ============================================================ */
.voices { background: var(--ink); }
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.voice-card {
    position: relative;
    padding: 2.25rem;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin: 0;
    transition: all 0.5s var(--ease);
}
.voice-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.voice-card::before {
    content: '“';
    position: absolute;
    top: -18px;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.9;
}
.voice-card-gold {
    background: linear-gradient(160deg, rgba(0, 102, 255,0.08), rgba(0,102,255,0.04));
    border-color: rgba(0, 102, 255, 0.3);
}
.voice-stars {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 8px rgba(0, 102, 255,0.3);
}
.voice-card blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--paper);
    margin: 0 0 1.75rem;
    letter-spacing: -0.005em;
}
.voice-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.voice-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #0052cc);
    color: var(--paper);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
}
.voice-avatar-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000;
}
.voice-card figcaption strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--paper);
}
.voice-card figcaption em {
    display: block;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--paper-dim);
    margin-top: 0.2rem;
    text-transform: uppercase;
}
.voices-link {
    display: inline-block;
    margin-top: 2.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}
.voices-link:hover { color: var(--paper); transform: translateX(4px); }

/* ============================================================ */
/* FAQ v3                                                        */
/* ============================================================ */
body.v3 .faq {
    background: #000;
    border-top: 1px solid var(--line);
    padding: 7rem 0;
}
body.v3 .faq .faq-container {
    max-width: 900px;
    margin: 0;
}
body.v3 .faq-item {
    background: transparent;
    border: none;
    border-top: 1px solid var(--line);
    border-radius: 0;
    margin-bottom: 0;
    transition: background 0.3s ease;
}
body.v3 .faq-item:last-child { border-bottom: 1px solid var(--line); }
body.v3 .faq-item:hover { background: rgba(250,250,247,0.02); }
body.v3 .faq-question {
    padding: 1.75rem 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--paper);
    letter-spacing: -0.005em;
}
body.v3 .faq-question:hover { color: var(--gold); }
body.v3 .faq-icon {
    width: 20px; height: 20px;
    color: var(--gold);
    transition: transform 0.4s var(--ease);
}
body.v3 .faq-item.active .faq-icon { transform: rotate(45deg); }
body.v3 .faq-answer p {
    padding: 0 0.5rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(250,250,247,0.7);
    max-width: 720px;
}
body.v3 .faq-item.active .faq-answer { max-height: 600px; }

/* ============================================================ */
/* FINAL CTA                                                     */
/* ============================================================ */
.final-cta {
    position: relative;
    background: var(--ink);
    overflow: hidden;
    padding: 9rem 0 !important;
    border-top: 1px solid var(--line);
}
.final-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.final-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255,0.14) 0%, rgba(0,102,255,0.08) 40%, transparent 70%);
    filter: blur(60px);
}
.final-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.final-hed {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--paper);
    margin: 1.5rem 0 1.5rem;
}
.final-hed em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold) 0%, var(--paper) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.final-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(250,250,247,0.7);
    margin-bottom: 2.5rem;
}
.final-cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.final-fineprint {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--paper-hint);
    text-transform: uppercase;
}

/* ============================================================ */
/* FOOTER v3                                                     */
/* ============================================================ */
.footer-v3 {
    background: #000;
    border-top: 1px solid var(--line);
    padding: 5rem 0 2rem !important;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}
.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.footer-brand .footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250,250,247,0.6);
    max-width: 320px;
}
body.v3 .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
body.v3 .footer-badge {
    padding: 0.35rem 0.75rem;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: var(--paper-dim);
    text-transform: uppercase;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
body.v3 .footer-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
body.v3 .footer-links { gap: 0.85rem; }
body.v3 .footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(250,250,247,0.72);
    transition: color 0.25s ease, transform 0.25s ease;
}
body.v3 .footer-links a:hover { color: var(--gold); transform: translateX(4px); }

body.v3 .footer-bottom {
    padding-top: 2rem;
    border-top: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--paper-hint);
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-line { color: var(--gold); }

/* ============================================================ */
/* MOBILE CTA BAR                                                */
/* ============================================================ */
.mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    gap: 0.5rem;
    align-items: center;
    justify-content: stretch;
}
.mcta-primary {
    flex: 1;
    padding: 0.95rem 1.25rem;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(250,250,247,0.12);
    transition: all 0.3s ease;
}
.mcta-primary:active { transform: scale(0.98); background: var(--gold); }
.mcta-secondary {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: var(--paper);
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
}

/* ============================================================ */
/* MOBILE NAV OVERLAY                                            */
/* ============================================================ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-inner {
    height: 100%;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 420px;
    margin: 0 auto;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}
.mobile-nav ul li {
    border-bottom: 1px solid var(--line);
}
.mobile-nav ul a {
    display: block;
    padding: 1.25rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--paper);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav ul a:hover,
.mobile-nav ul a:active {
    color: var(--gold);
    padding-left: 0.75rem;
}
.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.mobile-nav-cta .btn-v3 {
    justify-content: center;
    width: 100%;
}
.mobile-nav-foot {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: var(--paper-hint);
    text-align: center;
    text-transform: uppercase;
    margin-top: auto;
}

/* ============================================================ */
/* RESPONSIVE v3                                                 */
/* ============================================================ */
@media (max-width: 1100px) {
    body.v3 section { padding: 5rem 0; }
    .section-head {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-text { max-width: 720px; }
    .hero-visual .hero-stack { max-width: 380px; margin: 0 auto; }
    .collection-grid { grid-template-columns: 1fr 1fr; }
    .coll-card:nth-child(3) { grid-column: span 2; max-width: 600px; margin: 0 auto; width: 100%; }
    .process-list { grid-template-columns: 1fr 1fr; }
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    .aud-tile-lg, .aud-tile-wd { grid-column: span 2; }
    .aud-tile { min-height: 280px; }
    .craft-grid { grid-template-columns: 1fr 1fr; }
    .craft-card:nth-child(3n) { border-right: 1px solid var(--line); }
    .craft-card:nth-child(2n) { border-right: none; }
    .craft-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .craft-card:nth-last-child(-n+2) { border-bottom: none; }
    .voices-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-cols { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    body.v3 .container { padding: 0 1.25rem; }
    body.v3 section { padding: 4rem 0; }
    body.v3 .nav-links {
        position: fixed;
        top: -200vh;
        display: none;
    }
    body.v3 .nav-content {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    .nav-right .nav-cta-v3 { display: none; }
    .nav-right .nav-icon-link { display: none; }
    body.v3 .mobile-menu-toggle { display: flex; }

    .hero-v3 { padding: 6rem 0 8rem; min-height: auto; }
    .hero-topbar {
        font-size: 0.6rem;
        letter-spacing: 0.18em;
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    .hero-tag-mono { display: none; }
    .hero-hed { font-size: clamp(2.4rem, 12vw, 4rem); }
    .hero-line-accent { padding-left: 0; }
    .hero-line-accent::before { display: none; }
    .hero-v3 .hero-sub { font-size: 0.95rem; }
    .hero-cta-row { flex-direction: column; width: 100%; }
    .hero-cta-row .btn-v3 { justify-content: center; width: 100%; }
    .hero-v3 .hero-visual { min-height: 340px; }
    .hero-v3 .hero-stack { max-width: 280px; }
    .hero-foot {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
        margin-top: 2rem;
    }
    .hero-metric .metric-num { font-size: 1.8rem; }
    .hero-metric .metric-lbl { font-size: 0.62rem; }
    .hero-scroll { display: none; }

    .section-hed { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .manifesto-quote { font-size: clamp(1.35rem, 5vw, 1.8rem); }

    .ribbon { padding: 1.25rem 0; }
    .ribbon-track { font-size: 1.15rem; gap: 1rem; }

    .collection-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .coll-card:nth-child(3) { grid-column: span 1; max-width: none; }
    .coll-hd { gap: 1rem; }
    .coll-num { font-size: 3rem; }
    .coll-body { padding: 1.5rem; gap: 1.25rem; }
    .collection-assurances { gap: 1rem; font-size: 0.62rem; }

    .process-list { grid-template-columns: 1fr; }
    .process-step { padding: 2rem 0; }
    .proc-num { font-size: 2.2rem; }

    .audience-grid { grid-template-columns: 1fr; }
    .aud-tile-lg, .aud-tile-wd { grid-column: span 1; }
    .aud-tile { min-height: 260px; }
    .aud-label { bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }

    .craft-grid { grid-template-columns: 1fr; }
    .craft-card { border-right: none !important; border-bottom: 1px solid var(--line) !important; padding: 2rem 0; }
    .craft-card:last-child { border-bottom: none !important; }

    .voice-card { padding: 1.75rem 1.5rem; }
    .voice-card blockquote { font-size: 0.98rem; }

    body.v3 .faq { padding: 4rem 0; }
    body.v3 .faq-question { font-size: 1rem; padding: 1.25rem 0.25rem; }
    body.v3 .faq-answer p { padding: 0 0.25rem 1.25rem; font-size: 0.88rem; }

    .final-cta { padding: 6rem 0 !important; }
    .final-hed { font-size: clamp(2rem, 9vw, 3rem); }
    .final-cta-row { flex-direction: column; width: 100%; }
    .final-cta-row .btn-v3 { justify-content: center; width: 100%; }

    .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
    body.v3 .footer-bottom { flex-direction: column; text-align: center; }

    .mobile-cta { display: flex; }
    body.v3 { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    body.v3 .container { padding: 0 1rem; }
    .hero-hed { font-size: clamp(2rem, 13vw, 3rem); }
    .hero-line-accent { padding-left: 0; }
    .coll-body { padding: 1.25rem; }
    .coll-num { font-size: 2.6rem; }
    .footer-cols { grid-template-columns: 1fr; }
    .ticker-bar { font-size: 0.62rem; letter-spacing: 0.18em; }
    .voices-link { font-size: 0.72rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ticker-track, .ribbon-track,
    .hero-orb-a, .hero-orb-b,
    .hero-v3 .hs-rear, .hero-v3 .hs-mid, .hero-v3 .hs-front,
    .hs-ring, .live-dot, .hero-scroll-line,
    .loader-fill, .loader-letter {
        animation: none !important;
    }
    .loader-letter { opacity: 1; transform: none; }
}

/* ============================================================ */
/* V4 — FUTURISTIC LAYER (electric blue, HUD, scanlines)         */
/* ============================================================ */

:root {
    --pulse: #0066ff;
    --pulse-bright: #4da3ff;
    --pulse-cyan: #00d4ff;
    --pulse-soft: rgba(0, 102, 255, 0.45);
    --pulse-glow: rgba(0, 102, 255, 0.6);
}

/* --- Subtle page-wide scanline overlay --- */
body.v3::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 3px,
        rgba(255, 255, 255, 0.012) 3px,
        rgba(255, 255, 255, 0.012) 4px
    );
    mix-blend-mode: overlay;
    opacity: 0.5;
}

/* --- Updated scroll-progress bar (pure blue with cyan glow) --- */
.scroll-progress {
    height: 2px;
    background: linear-gradient(90deg, var(--pulse), var(--pulse-cyan));
    box-shadow: 0 0 12px var(--pulse-glow), 0 0 24px rgba(0, 212, 255, 0.25);
}

/* ============================================================ */
/* LOADER v4 — TERMINAL + SCAN                                   */
/* ============================================================ */
.loader-v3 {
    background: radial-gradient(ellipse at center, #05080f 0%, #000 70%) !important;
}
.loader-v3 .loader-noise::after {
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(77, 163, 255, 0.5), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 45% 50%, rgba(0, 212, 255, 0.4), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 25% 75%, rgba(77, 163, 255, 0.4), transparent);
    background-size: 500px 500px;
    animation: noise-drift 30s linear infinite;
}
@keyframes noise-drift {
    from { background-position: 0 0; }
    to { background-position: 500px 500px; }
}

/* Horizontal scan bar sweeping down */
.loader-v3::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--pulse-cyan) 40%, var(--pulse) 60%, transparent 100%);
    box-shadow: 0 0 16px var(--pulse-cyan), 0 0 32px var(--pulse-soft);
    top: 0;
    opacity: 0;
    animation: scan-sweep 3.2s cubic-bezier(0.77, 0, 0.175, 1) 0.1s infinite;
    z-index: 2;
}
@keyframes scan-sweep {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* HUD corner brackets on the loader */
.loader-v3 .loader-core::before,
.loader-v3 .loader-core::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--pulse);
    opacity: 0.7;
}
.loader-v3 .loader-core::before {
    top: -10px; left: -10px;
    border-right: none;
    border-bottom: none;
}
.loader-v3 .loader-core::after {
    bottom: -10px; right: -10px;
    border-left: none;
    border-top: none;
}
.loader-v3 .loader-core {
    position: relative;
    padding: 2rem;
}

/* Letter accent: middle dot becomes cyan */
.loader-v3 .loader-letter:nth-child(5) {
    color: var(--pulse-cyan);
}
.loader-v3 .loader-dot {
    color: var(--pulse-cyan) !important;
    text-shadow: 0 0 12px var(--pulse-cyan);
}

.loader-v3 .loader-eyebrow {
    color: var(--pulse-bright);
    text-shadow: 0 0 8px rgba(77, 163, 255, 0.35);
}
.loader-v3 .loader-sub em {
    color: var(--pulse-bright);
}

/* Terminal log below loader */
.loader-log {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: rgba(77, 163, 255, 0.7);
    text-transform: uppercase;
    min-height: 1.2em;
    animation: l-fade-up 0.8s ease-out 0.6s both;
}
.loader-log::before {
    content: '> ';
    color: var(--pulse-cyan);
}
.loader-log-caret {
    display: inline-block;
    width: 7px;
    height: 0.9em;
    background: var(--pulse-cyan);
    vertical-align: -2px;
    margin-left: 3px;
    animation: caret-blink 1s steps(2, end) infinite;
}
@keyframes caret-blink {
    50% { opacity: 0; }
}

/* Loader fill with pulsing cyan */
.loader-v3 .loader-fill {
    background: linear-gradient(90deg, var(--pulse), var(--pulse-cyan));
    box-shadow: 0 0 10px var(--pulse-cyan), 0 0 20px var(--pulse-soft);
}
.loader-v3 .loader-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 0;
    width: 6px;
    background: var(--pulse-cyan);
    box-shadow: 0 0 12px var(--pulse-cyan);
    opacity: 0;
    animation: track-glint 2.4s ease-in-out 0.3s infinite;
}
@keyframes track-glint {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ============================================================ */
/* TICKER / RIBBON — adjusted colors                             */
/* ============================================================ */
.ticker-sep { color: var(--pulse-cyan); opacity: 0.75; }
.ribbon-track span:nth-child(even) {
    color: var(--pulse-cyan);
    opacity: 0.85;
}

/* ============================================================ */
/* HERO v4 — HUD BRACKETS, PARTICLES, AURORA                     */
/* ============================================================ */
.hero-v3 .hero-orb-a {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.55), transparent 60%);
}
.hero-v3 .hero-orb-b {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 60%);
}

/* Aurora gradient softly panning */
.hero-aurora {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(45% 60% at 20% 30%, rgba(0, 102, 255, 0.22), transparent 60%),
        radial-gradient(40% 50% at 80% 70%, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(35% 40% at 50% 100%, rgba(77, 163, 255, 0.14), transparent 60%);
    filter: blur(40px);
    opacity: 0.8;
    animation: aurora-pan 24s ease-in-out infinite;
    pointer-events: none;
}
@keyframes aurora-pan {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -2%) scale(1.05); }
    66% { transform: translate(-3%, 2%) scale(0.98); }
}

/* Subtle floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--pulse-cyan);
    box-shadow: 0 0 6px var(--pulse-cyan);
    opacity: 0;
    animation: particle-float 10s linear infinite;
}
.hero-particle:nth-child(1)  { left: 10%;  top: 80%; animation-delay: 0s;    animation-duration: 12s; }
.hero-particle:nth-child(2)  { left: 22%;  top: 85%; animation-delay: 1.3s;  animation-duration: 14s; }
.hero-particle:nth-child(3)  { left: 35%;  top: 78%; animation-delay: 2.7s;  animation-duration: 11s; opacity: 0.5; background: var(--pulse-bright); box-shadow: 0 0 4px var(--pulse-bright); }
.hero-particle:nth-child(4)  { left: 48%;  top: 82%; animation-delay: 4s;    animation-duration: 13s; }
.hero-particle:nth-child(5)  { left: 62%;  top: 88%; animation-delay: 0.5s;  animation-duration: 15s; }
.hero-particle:nth-child(6)  { left: 75%;  top: 79%; animation-delay: 3.2s;  animation-duration: 12s; }
.hero-particle:nth-child(7)  { left: 88%;  top: 84%; animation-delay: 5.5s;  animation-duration: 14s; background: var(--pulse-bright); box-shadow: 0 0 4px var(--pulse-bright); }
.hero-particle:nth-child(8)  { left: 15%;  top: 70%; animation-delay: 6.2s;  animation-duration: 13s; }
.hero-particle:nth-child(9)  { left: 55%;  top: 90%; animation-delay: 1.8s;  animation-duration: 16s; }
.hero-particle:nth-child(10) { left: 70%;  top: 72%; animation-delay: 7s;    animation-duration: 11s; }
@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    15% { opacity: 0.9; }
    85% { opacity: 0.9; }
    100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

/* HUD corner brackets on hero container */
.hero-v3 .hero-container { position: relative; }
.hud-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 3;
}
.hud-bracket::before,
.hud-bracket::after {
    content: '';
    position: absolute;
    background: var(--pulse);
    box-shadow: 0 0 8px var(--pulse-soft);
}
.hud-bracket::before { width: 100%; height: 1px; }
.hud-bracket::after { height: 100%; width: 1px; }
.hud-tl { top: -14px; left: -14px; }
.hud-tl::before { top: 0; left: 0; }
.hud-tl::after  { top: 0; left: 0; }
.hud-tr { top: -14px; right: -14px; }
.hud-tr::before { top: 0; right: 0; }
.hud-tr::after  { top: 0; right: 0; }
.hud-bl { bottom: -14px; left: -14px; }
.hud-bl::before { bottom: 0; left: 0; }
.hud-bl::after  { bottom: 0; left: 0; }
.hud-br { bottom: -14px; right: -14px; }
.hud-br::before { bottom: 0; right: 0; }
.hud-br::after  { bottom: 0; right: 0; }

/* HUD topbar clock + callsign */
.hero-clock {
    color: var(--pulse-cyan);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2em;
}
.hero-topbar { gap: 1.25rem; }
.hero-topbar .hero-live { order: 2; }
.hero-topbar .hero-clock { order: 3; margin-left: auto; }

.hero-topbar .hero-tag-mono {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-topbar .hero-tag-mono::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--pulse);
    box-shadow: 0 0 6px var(--pulse);
    border-radius: 50%;
}

/* Hero headline — subtle electric glitch on hover */
.hero-hed { position: relative; }
.hero-line-accent {
    background: linear-gradient(135deg, var(--paper) 0%, var(--pulse-cyan) 50%, var(--pulse) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-line-accent::before { background: var(--pulse); box-shadow: 0 0 10px var(--pulse-soft); }

/* Hero eyebrow and underline refinements */
.hero-v3 .hero-eyebrow {
    color: var(--pulse-bright);
    position: relative;
    padding-left: 1.2rem;
}
.hero-v3 .hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 0.8rem;
    height: 1px;
    background: var(--pulse);
    transform: translateY(-50%);
}

/* Hero stars — keep blue tint */
.hero-stars, .voice-stars, .coll-rating em {
    color: var(--pulse-bright);
    text-shadow: 0 0 8px rgba(77, 163, 255, 0.35);
}
.service-stars { color: var(--pulse-bright); text-shadow: 0 0 10px rgba(77, 163, 255, 0.3); }

/* Hero visual — ring + badge */
.hs-ring {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.45) 0%, rgba(0, 212, 255, 0.15) 40%, transparent 70%);
}
.hs-badge {
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(10, 10, 10, 0.75);
}
.hs-badge-k { color: var(--pulse-bright); }

/* Corner-bracket accent on hero visual */
.hero-v3 .hero-stack::before,
.hero-v3 .hero-stack::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid var(--pulse);
    opacity: 0.6;
    pointer-events: none;
    z-index: 4;
}
.hero-v3 .hero-stack::before {
    top: -8px; left: -8px;
    border-right: none;
    border-bottom: none;
}
.hero-v3 .hero-stack::after {
    bottom: -8px; right: -8px;
    border-left: none;
    border-top: none;
}

/* --- HUD scan line decoration in hero topbar --- */
.hero-topbar {
    position: relative;
}
.hero-topbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pulse-cyan), transparent);
    transform-origin: left;
    animation: topbar-glow 6s ease-in-out infinite;
}
@keyframes topbar-glow {
    0%, 100% { opacity: 0.2; transform: scaleX(0.6); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Hero metrics — subtle glow on count */
.hero-metric .metric-num {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
}

/* ============================================================ */
/* SECTION HEAD — hair-line accent                               */
/* ============================================================ */
.eyebrow {
    color: var(--pulse-bright);
    position: relative;
    padding-left: 1.2rem;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 0.8rem;
    height: 1px;
    background: var(--pulse);
    transform: translateY(-50%);
}

/* ============================================================ */
/* SPOTLIGHT CURSOR on cards                                     */
/* ============================================================ */
.coll-card,
.craft-card,
.voice-card,
.aud-tile {
    --spot-x: 50%;
    --spot-y: 50%;
    --spot-o: 0;
    position: relative;
}
.coll-card::after,
.craft-card::after,
.voice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--spot-x) var(--spot-y), rgba(0, 102, 255, 0.15), transparent 40%);
    opacity: var(--spot-o, 0);
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.coll-card:hover::after,
.craft-card:hover::after,
.voice-card:hover::after {
    --spot-o: 1;
}

/* ============================================================ */
/* COLLECTION — futuristic card accents                          */
/* ============================================================ */
.coll-featured {
    border-color: rgba(0, 102, 255, 0.35);
    background: linear-gradient(160deg, #0c1524, #070a12);
}
.coll-featured::after {
    background: linear-gradient(90deg, transparent, var(--pulse-cyan), transparent);
    box-shadow: 0 0 12px var(--pulse-cyan);
}
.coll-tag-featured {
    background: linear-gradient(135deg, var(--pulse), var(--pulse-cyan));
    color: #000;
    box-shadow: 0 0 16px var(--pulse-soft);
}
.coll-cta-featured {
    background: linear-gradient(135deg, var(--pulse), var(--pulse-bright));
    color: #fff;
    border-color: var(--pulse);
    box-shadow: 0 6px 20px var(--pulse-soft);
}
.coll-cta-featured:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}

/* Glowing dashed frame for featured */
.coll-featured .coll-media::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.coll-featured:hover .coll-media::after { opacity: 1; }

.coll-num {
    color: var(--pulse);
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

/* ============================================================ */
/* PROCESS — glowing connecting line                             */
/* ============================================================ */
.process-step::before {
    background: linear-gradient(90deg, var(--pulse), var(--pulse-cyan));
    box-shadow: 0 0 8px var(--pulse-soft);
}
.proc-num {
    color: var(--pulse);
    text-shadow: 0 0 16px rgba(0, 102, 255, 0.25);
}

/* ============================================================ */
/* CRAFT — grid pattern behind                                   */
/* ============================================================ */
.craft { position: relative; overflow: hidden; }
.craft::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.craft .container { position: relative; z-index: 1; }
.craft-card:hover::before {
    background: linear-gradient(90deg, var(--pulse), var(--pulse-cyan));
    box-shadow: 0 0 12px var(--pulse-soft);
}
.craft-num {
    color: var(--pulse-bright);
}

/* ============================================================ */
/* AUDIENCE — animated border reveal                             */
/* ============================================================ */
.aud-tile {
    box-shadow: 0 0 0 1px transparent, 0 0 0 0 transparent;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.aud-tile:hover {
    box-shadow:
        0 0 0 1px rgba(0, 102, 255, 0.35),
        0 20px 50px rgba(0, 102, 255, 0.22);
}
.aud-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--pulse) 50%, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.aud-tile:hover::after { opacity: 1; }

/* Audience tile tags — blue */
.aud-eyebrow {
    color: var(--pulse-bright);
}

/* ============================================================ */
/* FAQ — +/× indicator glow                                      */
/* ============================================================ */
body.v3 .faq-icon {
    color: var(--pulse-bright);
}
body.v3 .faq-item.active {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.03), transparent);
}
body.v3 .faq-question:hover { color: var(--pulse-bright); }

/* ============================================================ */
/* FINAL CTA — futuristic                                        */
/* ============================================================ */
.final-glow {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 70%);
}
.final-grid-lines {
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.final-hed em {
    background: linear-gradient(135deg, var(--pulse-cyan) 0%, var(--paper) 50%, var(--pulse) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Final CTA HUD corners */
.final-inner {
    position: relative;
    padding: 2rem 0;
}
.final-inner .hud-bracket { opacity: 0.5; }

/* ============================================================ */
/* BUTTON — hover sweep                                          */
/* ============================================================ */
.btn-v3-primary:hover {
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35), 0 0 0 1px rgba(0, 102, 255, 0.2);
}
.btn-v3 { position: relative; overflow: hidden; }
.btn-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--ease);
    pointer-events: none;
}
.btn-v3:hover::before { transform: translateX(120%); }
.btn-v3-ghost:hover {
    border-color: var(--pulse-bright);
    background: rgba(0, 102, 255, 0.04);
    color: var(--pulse-bright);
}

/* ============================================================ */
/* NAV — futuristic underline                                    */
/* ============================================================ */
body.v3 .nav-links a:hover { color: var(--pulse-bright); }
body.v3 .nav-links a::after {
    background: linear-gradient(90deg, var(--pulse), var(--pulse-cyan));
    height: 1px;
    box-shadow: 0 0 6px var(--pulse-soft);
}
.nav-icon-link:hover {
    border-color: var(--pulse-bright);
    color: var(--pulse-bright);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.08);
}
.nav-cta-v3:hover {
    background: linear-gradient(135deg, var(--pulse), var(--pulse-cyan));
    color: var(--paper);
    box-shadow: 0 0 20px var(--pulse-soft), 0 6px 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

/* Logo – EURO word to electric blue */
body.v3 .logo-euro { color: var(--pulse); }
body.v3 .logo-stars { color: var(--pulse-cyan); }

/* ============================================================ */
/* PROP BANNER                                                   */
/* ============================================================ */
body.v3 .prop-banner {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.08) 50%, transparent 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.22);
    border-bottom: 1px solid rgba(0, 102, 255, 0.22);
    color: var(--pulse-bright);
}
body.v3 .prop-banner-dot { background: var(--pulse-cyan); box-shadow: 0 0 8px var(--pulse-cyan); }

/* ============================================================ */
/* MANIFESTO — futuristic accent                                 */
/* ============================================================ */
.manifesto-quote em { color: var(--pulse-bright); }
.manifesto { position: relative; overflow: hidden; }
.manifesto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}
.manifesto .container { position: relative; z-index: 1; }
.sign-line { background: var(--pulse); }

/* ============================================================ */
/* SECTION HEDS — italic em stays electric                       */
/* ============================================================ */
.section-hed em { color: var(--pulse-bright); }

/* ============================================================ */
/* TYPEWRITER-READY SCRAMBLE TEXT                                */
/* ============================================================ */
.scramble { display: inline-block; }

/* Glitch on section reveal (tiny chromatic wobble) */
.scramble-glitch {
    position: relative;
    animation: subtle-shift 0.45s ease-out;
}
@keyframes subtle-shift {
    0% { transform: translateX(0); filter: blur(0); }
    30% { transform: translateX(-1px); filter: blur(0.3px); }
    60% { transform: translateX(1px); filter: blur(0.2px); }
    100% { transform: translateX(0); filter: blur(0); }
}

/* ============================================================ */
/* MOBILE CTA — futuristic                                       */
/* ============================================================ */
.mcta-primary:active {
    background: var(--pulse-cyan);
    color: var(--ink);
}
.mcta-secondary {
    background: linear-gradient(135deg, var(--pulse), var(--pulse-cyan));
    box-shadow: 0 0 16px var(--pulse-soft);
}

/* ============================================================ */
/* FOOTER — accent colors                                        */
/* ============================================================ */
body.v3 .footer-title { color: var(--pulse-bright); }
body.v3 .footer-links a:hover { color: var(--pulse-bright); }
.footer-line { color: var(--pulse-bright); }

/* ============================================================ */
/* REDUCED MOTION                                                */
/* ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-aurora, .hero-particle,
    .hero-v3::before, .loader-v3::after,
    .topbar-glow, .track-glint, .scan-sweep,
    .noise-drift, .caret-blink {
        animation: none !important;
    }
}

/* Hide first mono tag on mobile (keeps live + clock only) */
@media (max-width: 768px) {
    .hero-topbar .hero-tag-mono:first-child { display: none; }
    .hero-topbar { justify-content: space-between; }
    .hero-clock { font-size: 0.6rem; }

    /* Hero CTA row — primary pair full-width, Reviews+Blog side-by-side */
    .hero-v3 .hero-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    .hero-v3 .hero-cta-row > .btn-v3 { width: auto; min-width: 0; }
    .hero-v3 .hero-cta-row > .btn-v3:nth-child(-n+2) { width: 100%; }
    .hero-v3 .hero-cta-row > .btn-v3:nth-child(n+3) {
        flex: 1 1 calc(50% - 0.3rem);
        padding: 0.85rem 0.9rem;
        font-size: 0.78rem;
    }
}
@media (max-width: 480px) {
    .hero-clock { letter-spacing: 0.14em; }
}

/* ============================================================ */
/* V5 — MINIMAL POPPINS, SIMPLIFIED                              */
/* ============================================================ */

/* Force Poppins across the whole site */
body.v5,
body.v5 *,
body.v5 input,
body.v5 button,
body.v5 select,
body.v5 textarea {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Drop italics from all display elements */
body.v5 em,
body.v5 blockquote,
body.v5 .hero-hed em,
body.v5 .section-hed em,
body.v5 .final-hed em,
body.v5 .coll-num,
body.v5 .proc-num,
body.v5 .manifesto-quote em,
body.v5 .voice-card blockquote,
body.v5 .hs-badge-k,
body.v5 .voice-card figcaption em {
    font-style: normal !important;
}

/* Base body type — clean + modern */
body.v5 {
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Section headlines — tight, bold, no italic */
body.v5 .hero-hed,
body.v5 .section-hed,
body.v5 .final-hed,
body.v5 .manifesto-quote,
body.v5 .footer-cta h2 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
body.v5 .hero-hed {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    max-width: 600px;
}
body.v5 .section-hed {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* Remove decorative serif eyebrow quirk */
body.v5 .coll-hd h3,
body.v5 .craft-card h3,
body.v5 .proc-body h3,
body.v5 .aud-label h3,
body.v5 .voice-card figcaption strong,
body.v5 .faq-question {
    font-weight: 600;
    letter-spacing: -0.01em;
}

body.v5 .coll-hd h3 { font-size: 1.15rem; }
body.v5 .proc-body h3 { font-size: 1.2rem; }
body.v5 .faq-question { font-size: 1rem; font-weight: 500; }

/* Big numerals — bold sans instead of italic serif */
body.v5 .coll-num {
    font-weight: 800;
    font-size: 3.4rem;
    letter-spacing: -0.04em;
    color: var(--pulse);
    line-height: 0.9;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}
body.v5 .proc-num {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    color: var(--pulse);
}
body.v5 .hero-metric .metric-num {
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

/* Eyebrows — minimal uppercase */
body.v5 .eyebrow,
body.v5 .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pulse-bright);
}

/* Clean up paragraph text */
body.v5 .hero-sub,
body.v5 .section-note,
body.v5 .proc-body p,
body.v5 .coll-hd p,
body.v5 .voice-card blockquote,
body.v5 .footer-description,
body.v5 .footer-cta p {
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}
body.v5 .hero-sub { font-size: 1rem; max-width: 520px; }
body.v5 .voice-card blockquote { font-size: 0.95rem; color: var(--paper); }

/* Logo */
body.v5 .logo,
body.v5 .footer-logo,
body.v5 .loader-mark-simple {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Loader simpler */
body.v5 .loader-v3 {
    padding: 2rem 1.5rem;
}
body.v5 .loader-v3 .loader-core::before,
body.v5 .loader-v3 .loader-core::after { display: none; }
body.v5 .loader-v3 .loader-core {
    padding: 0;
    gap: 2rem;
}
.loader-mark-simple {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    display: flex;
    gap: 0.02em;
    margin-bottom: 1rem;
    line-height: 1;
}
.loader-mark-simple .logo-prim { color: var(--paper); }
.loader-mark-simple .logo-euro { color: var(--pulse); text-shadow: 0 0 20px var(--pulse-soft); }

body.v5 .loader-v3::after { /* keep scan sweep subtle */
    opacity: 0;
    animation-duration: 3s;
}
body.v5 .loader-meter {
    gap: 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--paper);
}
body.v5 .loader-legal {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: rgba(250,250,247,0.4);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Simpler nav */
body.v5 .navbar { padding: 0.35rem 0; }
body.v5 .nav-content { padding: 0.75rem 0; }
body.v5 .nav-links {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    gap: 2rem;
}
body.v5 .logo { font-size: 1.25rem; }
body.v5 .logo-stars { display: none; }
body.v5 .nav-cta-v3 {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
}

/* Prop banner cleaner */
body.v5 .prop-banner {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* Hero — tighter */
body.v5 .hero-v3 { padding: 5.5rem 0 3rem; min-height: auto; }
body.v5 .hero-container { min-height: auto; }
body.v5 .hero-topbar {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
body.v5 .hero-main {
    padding: 1rem 0;
    gap: 3rem;
    align-items: center;
}
body.v5 .hero-eyebrow { padding-left: 1rem; margin-bottom: 1.25rem; }
body.v5 .hero-hed { margin-bottom: 1.25rem; }
body.v5 .hero-sub { margin-bottom: 1.75rem; }
body.v5 .hero-cta-row { margin-bottom: 1.5rem; }

/* Hero stack — remove the floating badge complexity (not in HTML anymore) */
body.v5 .hero-visual { min-height: 380px; }
body.v5 .hero-stack { max-width: 420px; }

/* Hero stats cleaner */
body.v5 .hero-foot {
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 1.5rem;
}
body.v5 .hero-metric .metric-lbl {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    font-weight: 500;
}

/* Buttons — simpler */
body.v5 .btn-v3 {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 600;
    padding: 0.95rem 1.5rem;
}
body.v5 .btn-v3 svg { width: 16px; height: 16px; }

/* Section spacing tighter */
body.v5 section { padding: 5rem 0; }
body.v5 .section-head {
    grid-template-columns: 1.8fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    align-items: end;
}
body.v5 .section-note { font-size: 0.9rem; color: rgba(250,250,247,0.6); }

/* Collection cards — cleaner */
body.v5 .coll-card { border-radius: 14px; }
body.v5 .coll-body { padding: 1.75rem 1.5rem; gap: 1.25rem; }
body.v5 .coll-hd { gap: 1rem; }
body.v5 .coll-hd p {
    font-size: 0.85rem;
    color: rgba(250,250,247,0.6);
}
body.v5 .coll-meta {
    font-size: 0.8rem;
    padding: 0.85rem 0;
}
body.v5 .coll-rating em { font-weight: 600; font-size: 0.82rem; }
body.v5 .coll-price {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
body.v5 .coll-price em {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}
body.v5 .coll-cta {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 600;
    padding: 0.9rem 1.2rem;
}
body.v5 .coll-tag {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
}
body.v5 .collection-assurances {
    gap: 1.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    font-weight: 500;
}

/* Process — cleaner */
body.v5 .process-step {
    padding: 2rem 1.25rem 2rem 0;
    gap: 1.25rem;
}
body.v5 .proc-body p { font-size: 0.88rem; }

/* Voices / testimonials — simpler */
body.v5 .voice-card { padding: 1.75rem; border-radius: 14px; }
body.v5 .voice-card::before { display: none; }
body.v5 .voice-card blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
body.v5 .voice-avatar { width: 38px; height: 38px; font-size: 0.95rem; font-weight: 700; }
body.v5 .voice-card figcaption strong {
    font-size: 0.88rem;
    font-weight: 600;
}
body.v5 .voice-card figcaption em {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--paper-dim);
    text-transform: none;
}

/* FAQ — cleaner */
body.v5 .faq-question { padding: 1.25rem 0.25rem; }
body.v5 .faq-answer p { font-size: 0.88rem; padding: 0 0.25rem 1.25rem; }

/* Footer CTA banner */
.footer-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 3rem;
}
.footer-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--paper);
    margin-bottom: 0.5rem;
}
.footer-cta p {
    font-size: 0.92rem;
    color: rgba(250,250,247,0.6);
    margin: 0;
}
.footer-cta-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

/* Footer v5 */
body.v5 .footer-v3 { padding: 3.5rem 0 2rem !important; }
body.v5 .footer-top { padding-bottom: 2.5rem; gap: 3rem; }
body.v5 .footer-brand .footer-description { font-size: 0.88rem; max-width: 300px; }
body.v5 .footer-title {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--paper);
    text-transform: uppercase;
    opacity: 0.7;
}
body.v5 .footer-links a { font-size: 0.85rem; font-weight: 400; }
body.v5 .footer-bottom {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: none;
    font-weight: 400;
}
body.v5 .footer-line { font-weight: 500; }

/* Ticker simpler */
body.v5 .ticker-bar {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    font-weight: 500;
    padding: 0.55rem 0;
}

/* Mobile CTA */
body.v5 .mcta-primary {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 600;
}

/* Mobile nav overlay simpler */
body.v5 .mobile-nav ul a {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Responsive tightening */
@media (max-width: 1024px) {
    body.v5 .section-head { grid-template-columns: 1fr; gap: 1rem; }
    body.v5 .footer-cta { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
    body.v5 section { padding: 3.5rem 0; }
    body.v5 .hero-v3 { padding: 5rem 0 2rem; }
    body.v5 .hero-hed { font-size: clamp(2rem, 9vw, 3rem); }
    body.v5 .section-hed { font-size: clamp(1.5rem, 6vw, 1.9rem); }
    body.v5 .hero-foot { grid-template-columns: 1fr 1fr; }
    body.v5 .coll-num { font-size: 2.6rem; }
    body.v5 .proc-num { font-size: 1.8rem; }
    body.v5 .footer-cta { padding: 2rem 0; }
    body.v5 .footer-cta h2 { font-size: 1.5rem; }
    body.v5 .footer-cta-actions { width: 100%; }
    body.v5 .footer-cta-actions .btn-v3 { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
    body.v5 .hero-hed { font-size: clamp(1.75rem, 10vw, 2.4rem); }
    body.v5 .hero-sub { font-size: 0.92rem; }
    body.v5 .btn-v3 { font-size: 0.78rem; padding: 0.9rem 1.25rem; }
    body.v5 .collection-assurances { gap: 0.85rem; font-size: 0.62rem; }
    body.v5 .voice-card { padding: 1.5rem 1.25rem; }
}

.post-media {
    margin-top: 10px;
    text-align: center;
}

.post-media img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}