    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
     :root {
        --mint: #2ECC8F;
        --mint-light: #4EDBA3;
        --mint-dark: #1A9966;
        --mint-pale: #E8F9F2;
        --obsidian: #0D0F0E;
        --charcoal: #1A1D1C;
        --slate: #2C3130;
        --mist: #8A9490;
        --fog: #B8C4BF;
        --pearl: #F0F4F2;
        --white: #FAFCFB;
        --gold: #C9A96E;
        --gold-light: #E8C98A;
        --font-display: 'Poppins', system-ui, sans-serif;
        --font-body: 'Poppins', system-ui, sans-serif;
        --font-mono: 'DM Mono', monospace;
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-xl: 40px;
        --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
        --shadow-card: 0 8px 48px rgba(0, 0, 0, 0.10);
        --shadow-lift: 0 20px 80px rgba(0, 0, 0, 0.18);
        --shadow-mint: 0 12px 48px rgba(46, 204, 143, 0.20);
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: var(--font-body);
        background: var(--white);
        color: var(--charcoal);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
    /* ─── SCROLLBAR ─── */
    
     ::-webkit-scrollbar {
        width: 6px;
    }
    
     ::-webkit-scrollbar-track {
        background: var(--pearl);
    }
    
     ::-webkit-scrollbar-thumb {
        background: var(--mint);
        border-radius: 3px;
    }
    /* ─── NOISE OVERLAY ─── */
    
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.4;
    }
    /* ─── NAVIGATION ─── */
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0 40px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.4s ease;
    }
    
    nav.scrolled {
        background: rgba(250, 252, 251, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(46, 204, 143, 0.12);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-logo-img {
        height: 38px;
        width: auto;
        display: block;
    }
    
    .footer-brand .nav-logo-img {
        height: 52px;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
    }
    
    .nav-links a {
        text-decoration: none;
        color: var(--slate);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.02em;
        transition: color 0.2s;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--mint);
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover {
        color: var(--obsidian);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .nav-cta {
        background: var(--obsidian);
        color: var(--white) !important;
        padding: 10px 22px !important;
        border-radius: var(--radius-sm);
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-cta::after {
        display: none !important;
    }
    
    .nav-cta:hover {
        background: var(--mint) !important;
        color: var(--obsidian) !important;
        transform: translateY(-1px);
    }
    
    .nav-hamburger {
        display: none;
        box-sizing: border-box;
        flex-shrink: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 10px;
        background: transparent;
        color: var(--obsidian);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
        appearance: none;
        position: relative;
        z-index: 1002;
    }

    .nav-hamburger:focus {
        outline: none;
    }

    .nav-hamburger:focus-visible {
        outline: 2px solid rgba(46, 204, 143, 0.55);
        outline-offset: 2px;
    }

    .nav-hamburger-bar {
        display: block;
        flex-shrink: 0;
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.25s ease;
        transform-origin: center;
    }
    /* ─── HERO ─── */
    
    #hero {
        min-height: 100vh;
        padding: 160px 40px 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        position: relative;
    }
    
    .hero-bg {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }
    
    .hero-bg-gradient {
        position: absolute;
        top: -20%;
        right: -10%;
        width: 70vw;
        height: 80vh;
        background: radial-gradient(ellipse at center, rgba(46, 204, 143, 0.08) 0%, rgba(46, 204, 143, 0.03) 50%, transparent 70%);
        border-radius: 50%;
    }
    
    .hero-bg-circle {
        position: absolute;
        bottom: 10%;
        left: -5%;
        width: 40vw;
        height: 40vw;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .hero-grid-lines {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(46, 204, 143, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 204, 143, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 0%, transparent 100%);
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(46, 204, 143, 0.08);
        border: 1px solid rgba(46, 204, 143, 0.25);
        border-radius: 100px;
        padding: 7px 16px;
        font-size: 12px;
        font-weight: 500;
        color: var(--mint-dark);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 32px;
        animation: fadeUp 0.8s ease both;
    }
    
    .hero-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--mint);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.5;
            transform: scale(0.8);
        }
    }
    
    .hero-headline {
        font-family: var(--font-display);
        font-size: clamp(48px, 3vw, 80px);
        font-weight: 300;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--obsidian);
        margin-bottom: 24px;
        animation: fadeUp 0.8s ease 0.1s both;
    }
    
    .hero-headline em {
        font-style: italic;
        color: var(--mint-dark);
    }
    
    .hero-headline strong {
        font-weight: 600;
        display: block;
    }
    
    .hero-sub {
        font-size: 17px;
        line-height: 1.7;
        color: var(--mist);
        max-width: 480px;
        margin-bottom: 44px;
        font-weight: 300;
        animation: fadeUp 0.8s ease 0.2s both;
    }

    .mintqr-seo-summary {
        font-size: 15px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.76);
        max-width: 520px;
        margin: -28px 0 36px;
        font-weight: 400;
    }
    
    .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeUp 0.8s ease 0.3s both;
    }
    
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--mint);
        color: var(--obsidian);
        text-decoration: none;
        padding: 16px 32px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.01em;
        transition: all 0.3s ease;
        border: 2px solid var(--mint);
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--obsidian), var(--charcoal));
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    
    .btn-primary:hover::before {
        transform: translateX(0);
    }
    
    .btn-primary:hover {
        border-color: var(--obsidian);
        color: var(--white);
    }
    
    .btn-primary span {
        position: relative;
        z-index: 1;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 48px rgba(13, 15, 14, 0.28);
    }
    
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: var(--obsidian);
        text-decoration: none;
        padding: 16px 28px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        font-weight: 400;
        border: 1.5px solid rgba(44, 49, 48, 0.2);
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        border-color: var(--mint);
        color: var(--mint-dark);
        transform: translateY(-2px);
    }
    
    .hero-trust {
        margin-top: 52px;
        display: flex;
        align-items: center;
        gap: 24px;
        animation: fadeUp 0.8s ease 0.4s both;
    }
    
    .hero-trust-divider {
        width: 1px;
        height: 32px;
        background: var(--fog);
    }
    
    .hero-trust-item {
        text-align: center;
    }
    
    .hero-trust-num {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 500;
        color: var(--obsidian);
        line-height: 1;
    }
    
    .hero-trust-label {
        font-size: 11px;
        color: var(--mist);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-top: 4px;
    }
    
    .hero-trust-num.hero-trust-word {
        font-size: clamp(17px, 2.2vw, 22px);
        letter-spacing: 0.02em;
        line-height: 1.1;
    }
    /* ─── HERO VISUAL ─── */
    
    .hero-visual {
        position: relative;
        z-index: 1;
        animation: fadeIn 1.2s ease 0.4s both;
    }
    
    .hero-device-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-phone {
        width: 260px;
        height: 520px;
        background: var(--obsidian);
        border-radius: 40px;
        border: 6px solid #2a2d2c;
        position: relative;
        box-shadow: var(--shadow-lift), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        z-index: 2;
        overflow: hidden;
    }
    
    .hero-phone::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 28px;
        background: #1a1d1c;
        border-radius: 0 0 16px 16px;
        z-index: 10;
    }
    
    .hero-phone-screen {
        width: 100%;
        height: 100%;
        border-radius: 35px;
        overflow: hidden;
        background: linear-gradient(160deg, #1a1d1c 0%, #0f1210 100%);
        display: flex;
        flex-direction: column;
    }
    
    .phone-header {
        padding: 44px 20px 16px;
        background: linear-gradient(180deg, rgba(46, 204, 143, 0.15) 0%, transparent 100%);
    }
    
    .phone-logo-area {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .phone-logo-img {
        height: 26px;
        width: auto;
        display: block;
    }
    
    .phone-venue-name {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 500;
        color: var(--white);
        letter-spacing: 0.02em;
    }
    
    .phone-category-pills {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    
    .phone-pill {
        flex-shrink: 0;
        padding: 5px 12px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.04em;
    }
    
    .phone-pill.active {
        background: var(--mint);
        color: var(--obsidian);
    }
    
    .phone-pill:not(.active) {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.5);
    }
    
    .phone-menu-items {
        flex: 1;
        padding: 16px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow: hidden;
    }
    
    .phone-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        gap: 10px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .phone-item-img {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        flex-shrink: 0;
        background: linear-gradient(135deg, rgba(46, 204, 143, 0.3), rgba(46, 204, 143, 0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .phone-item-info {
        flex: 1;
        min-width: 0;
    }
    
    .phone-item-name {
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .phone-item-desc {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .phone-item-price {
        font-size: 11px;
        font-weight: 600;
        color: var(--mint);
    }
    
    .phone-item-add {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        background: var(--mint);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 14px;
        color: var(--obsidian);
        font-weight: bold;
        line-height: 1;
    }
    
    .hero-phone-float {
        position: absolute;
        width: 180px;
        height: 320px;
        background: var(--pearl);
        border-radius: 28px;
        border: 4px solid rgba(255, 255, 255, 0.8);
        box-shadow: var(--shadow-card);
        overflow: hidden;
    }
    
    .hero-phone-float.left {
        left: -60px;
        top: 60px;
        transform: rotate(-8deg) translateX(-20px);
        z-index: 1;
        animation: float 6s ease-in-out infinite;
    }
    
    .hero-phone-float.right {
        right: -50px;
        bottom: 40px;
        transform: rotate(6deg) translateX(20px);
        z-index: 1;
        animation: float 6s ease-in-out 2s infinite;
    }
    
    .float-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(160deg, #fafcfb 0%, #f0f4f2 100%);
        padding: 16px 12px;
    }
    
    .float-header-bar {
        height: 6px;
        width: 60%;
        background: linear-gradient(90deg, var(--mint), var(--mint-light));
        border-radius: 3px;
        margin-bottom: 8px;
    }
    
    .float-header-bar.short {
        width: 35%;
        height: 4px;
        background: rgba(44, 49, 48, 0.15);
    }
    
    .float-item-row {
        display: flex;
        gap: 8px;
        margin-top: 12px;
    }
    
    .float-img-placeholder {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(46, 204, 143, 0.2), rgba(201, 169, 110, 0.2));
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    
    .float-text-lines {
        flex: 1;
    }
    
    .float-line {
        height: 5px;
        background: rgba(44, 49, 48, 0.12);
        border-radius: 3px;
        margin-bottom: 5px;
    }
    
    .float-line:first-child {
        width: 80%;
    }
    
    .float-line:nth-child(2) {
        width: 55%;
    }
    
    .float-line:nth-child(3) {
        width: 30%;
        background: rgba(46, 204, 143, 0.4);
    }
    
    .hero-qr-badge {
        position: absolute;
        top: -20px;
        right: -30px;
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 14px 18px;
        box-shadow: var(--shadow-card);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 10;
        animation: float 5s ease-in-out 1s infinite;
        border: 1px solid rgba(46, 204, 143, 0.15);
    }
    
    .qr-icon {
        width: 40px;
        height: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    
    .qr-cell {
        background: var(--obsidian);
        border-radius: 2px;
    }
    
    .qr-cell.empty {
        background: transparent;
    }
    
    .qr-cell.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .hero-qr-text {
        font-size: 11px;
    }
    
    .hero-qr-text strong {
        display: block;
        font-size: 12px;
        color: var(--obsidian);
        font-weight: 600;
    }
    
    .hero-qr-text span {
        color: var(--mist);
        font-size: 10px;
    }
    
    .hero-lang-badge {
        position: absolute;
        bottom: 20px;
        left: -40px;
        background: var(--obsidian);
        color: var(--white);
        border-radius: var(--radius-md);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 10;
        box-shadow: var(--shadow-lift);
        animation: float 5s ease-in-out 3s infinite;
    }
    
    .lang-flags {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .lang-text {
        font-size: 11px;
    }
    
    .lang-text strong {
        display: block;
        font-size: 12px;
        font-weight: 500;
    }
    
    .lang-text span {
        color: var(--fog);
        font-size: 10px;
    }
    
    @keyframes float {
        0%,
        100% {
            transform: translateY(0) rotate(var(--rot, 0deg));
        }
        50% {
            transform: translateY(-12px) rotate(var(--rot, 0deg));
        }
    }
    
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    /* ─── SECTION COMMONS ─── */
    
    section {
        padding: 100px 40px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--mint-dark);
        margin-bottom: 20px;
    }
    
    .section-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--mint);
    }
    
    .section-title {
        font-family: var(--font-display);
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 300;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--obsidian);
        margin-bottom: 20px;
    }
    
    .section-title em {
        font-style: italic;
        color: var(--mint-dark);
    }
    
    .section-title strong {
        font-weight: 600;
    }
    
    .section-sub {
        font-size: 16px;
        line-height: 1.7;
        color: var(--mist);
        max-width: 560px;
        font-weight: 300;
    }
    /* ─── VALUE PROPS ─── */
    
    #value {
        background: var(--pearl);
        position: relative;
        overflow: hidden;
    }
    
    #value::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle at top right, rgba(46, 204, 143, 0.07), transparent 70%);
        pointer-events: none;
    }
    
    .value-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 60px;
    }
    
    .value-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .value-card {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 28px;
        border: 1px solid rgba(46, 204, 143, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--mint), transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    .value-card:hover {
        box-shadow: var(--shadow-card);
        transform: translateY(-4px);
    }
    
    .value-card:hover::after {
        transform: scaleX(1);
    }
    
    .value-card-icon {
        width: 48px;
        height: 48px;
        background: var(--mint-pale);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .value-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--obsidian);
        margin-bottom: 8px;
    }
    
    .value-card p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--mist);
        font-weight: 300;
    }
    
    .value-card.featured {
        grid-column: span 2;
        background: var(--obsidian);
        border-color: transparent;
    }
    
    .value-card.featured h3 {
        color: var(--white);
    }
    
    .value-card.featured p {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .value-card.featured .value-card-icon {
        background: rgba(46, 204, 143, 0.15);
    }
    
    .value-visual {
        position: relative;
    }
    
    .value-visual-img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: var(--radius-xl);
        /* box-shadow: var(--shadow-lift); */
        object-fit: contain;
    }
    
    .value-screen {
        width: 100%;
        aspect-ratio: 4/5;
        background: var(--obsidian);
        border-radius: var(--radius-xl);
        overflow: hidden;
        position: relative;
        box-shadow: var(--shadow-lift);
    }
    
    .value-screen-inner {
        padding: 32px 28px;
        height: 100%;
        background: linear-gradient(160deg, #1a1d1c 0%, #0d0f0e 100%);
    }
    
    .vs-venue-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }
    
    .vs-venue-info h2 {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 400;
        color: var(--white);
        line-height: 1.2;
    }
    
    .vs-venue-info p {
        font-size: 11px;
        color: var(--mist);
        margin-top: 4px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    
    .vs-lang-switch {
        display: flex;
        gap: 4px;
    }
    
    .vs-lang {
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.04em;
    }
    
    .vs-lang.active {
        background: var(--mint);
        color: var(--obsidian);
    }
    
    .vs-lang:not(.active) {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.4);
    }
    
    .vs-section-title {
        font-size: 10px;
        color: var(--mint);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 14px;
    }
    
    .vs-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .vs-item {
        display: flex;
        gap: 12px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .vs-item-thumb {
        width: 52px;
        height: 52px;
        border-radius: 8px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    .vs-item-thumb.c1 {
        background: linear-gradient(135deg, #2d4a3e, #1a2e25);
    }
    
    .vs-item-thumb.c2 {
        background: linear-gradient(135deg, #3a2a1a, #2a1c0e);
    }
    
    .vs-item-thumb.c3 {
        background: linear-gradient(135deg, #1a2a3a, #0e1c2a);
    }
    
    .vs-item-details {
        flex: 1;
    }
    
    .vs-item-name {
        font-size: 12px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3px;
    }
    
    .vs-item-tags {
        display: flex;
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .vs-tag {
        font-size: 9px;
        padding: 2px 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
    }
    
    .vs-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .vs-price {
        font-size: 13px;
        font-weight: 600;
        color: var(--mint);
    }
    
    .vs-add-btn {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        background: rgba(46, 204, 143, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mint);
        font-size: 14px;
        font-weight: bold;
    }
    /* ─── HOW IT WORKS ─── */
    
    #how {
        background: var(--white);
        position: relative;
    }
    
    .how-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 72px;
    }
    
    .how-header .section-label {
        justify-content: center;
    }
    
    .how-header .section-sub {
        margin: 0 auto;
        text-align: center;
    }
    
    .how-live-pitch {
        text-align: center;
        max-width: 36rem;
        margin: 48px auto 0;
        padding: 0 16px;
    }
    
    .how-live-title {
        margin: 0 auto;
        font-size: clamp(1.05rem, 2.1vw, 1.25rem);
        font-weight: 700;
        line-height: 1.35;
        color: var(--mint-dark);
        letter-spacing: -0.02em;
    }
    
    .how-live-sub {
        margin: 0.65rem auto 0;
        max-width: 28rem;
        font-size: 0.9375rem;
        line-height: 1.55;
        color: var(--mist);
        opacity: 0.92;
    }
    
    .how-cta {
        display: flex;
        justify-content: center;
        margin-top: 28px;
    }
    
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        position: relative;
    }
    
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 52px;
        left: calc(16.67% + 28px);
        right: calc(16.67% + 28px);
        height: 1px;
        background: linear-gradient(90deg, var(--mint), transparent 40%, transparent 60%, var(--mint));
        border-bottom: 1px dashed rgba(46, 204, 143, 0.3);
    }
    
    .step-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }
    
    .step-num-wrap {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--mint);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
        box-shadow: 0 0 0 8px var(--white);
    }
    
    .step-num {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 300;
        color: var(--mint-dark);
    }
    
    .step-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .step-card h3 {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 400;
        color: var(--obsidian);
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .step-card p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--mist);
        font-weight: 300;
    }
    
    .step-detail {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .step-detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: var(--mist);
    }
    
    .step-detail-item::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--mint);
        flex-shrink: 0;
    }
    /* ─── SHOWCASE ─── */
    
    #showcase {
        background: var(--obsidian);
        position: relative;
        overflow: hidden;
    }
    
    #showcase::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -200px;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(46, 204, 143, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .showcase-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 60px;
    }
    
    .showcase-header .section-title {
        color: var(--white);
    }
    
    .showcase-header .section-sub {
        color: rgba(255, 255, 255, 0.45);
    }
    
    .showcase-tabs {
        display: flex;
        gap: 8px;
    }
    
    .showcase-tab {
        padding: 10px 20px;
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-weight: 400;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s;
        background: transparent;
    }
    
    .showcase-tab.active,
    .showcase-tab:hover {
        background: var(--mint);
        color: var(--obsidian);
        border-color: var(--mint);
        font-weight: 500;
    }
    
    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
    
    .showcase-card {
        display: block;
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
        cursor: pointer;
        transition: transform 0.4s ease;
        text-decoration: none;
        color: inherit;
    }
    
    .showcase-card:hover {
        transform: scale(1.02);
    }
    
    .showcase-card:hover .showcase-overlay {
        opacity: 1;
    }
    
    .showcase-card-bg {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .showcase-card-bg.resto {
        background: #fff0e0;
    }
    
    .showcase-card-bg.cafe {
        background: #f8ef1d;
    }
    
    .showcase-card-bg.bar {
        background: #faf9f4;
    }
    
    .showcase-card-bg.deli {
        background: #741019;
    }
    
    .showcase-card-bg.deli .showcase-venue-logo {
        filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
    }
    
    .showcase-venue-logo-wrap {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 20px 16px;
        box-sizing: border-box;
    }
    
    .showcase-venue-logo {
        max-width: min(200px, 72%);
        max-height: 88px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.12));
    }
    
    .showcase-phone-mock {
        width: 120px;
        position: relative;
        z-index: 1;
    }
    
    .mock-screen {
        width: 120px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 18px;
        border: 2px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        padding: 12px 10px;
    }
    
    .mock-brand-bar {
        height: 6px;
        border-radius: 3px;
        margin-bottom: 6px;
    }
    
    .resto .mock-brand-bar {
        background: #5DAA68;
    }
    
    .cafe .mock-brand-bar {
        background: #C9A96E;
    }
    
    .bar .mock-brand-bar {
        background: #7B6FD4;
    }
    
    .mock-content-lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 10px;
    }
    
    .mock-line {
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mock-line:nth-child(1) {
        width: 75%;
    }
    
    .mock-line:nth-child(2) {
        width: 50%;
    }
    
    .mock-item-block {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 8px;
    }
    
    .mock-item-thumb {
        width: 100%;
        height: 36px;
        border-radius: 5px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .resto .mock-item-thumb {
        background: rgba(93, 170, 104, 0.2);
    }
    
    .cafe .mock-item-thumb {
        background: rgba(201, 169, 110, 0.2);
    }
    
    .bar .mock-item-thumb {
        background: rgba(123, 111, 212, 0.2);
    }
    
    .mock-item-price {
        font-size: 9px;
        font-weight: 600;
    }
    
    .resto .mock-item-price {
        color: #5DAA68;
    }
    
    .cafe .mock-item-price {
        color: #C9A96E;
    }
    
    .bar .mock-item-price {
        color: #7B6FD4;
    }
    
    .showcase-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s;
        display: flex;
        align-items: flex-end;
        padding: 24px;
    }
    
    .showcase-info h4 {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 4px;
    }
    
    .showcase-info p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* ─── WHY MINTQR ─── */
    
    #why {
        background: var(--pearl);
        position: relative;
        overflow: hidden;
    }
    
    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 60px;
    }
    
    .why-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .why-item {
        padding: 28px 0;
        border-bottom: 1px solid rgba(44, 49, 48, 0.08);
        display: flex;
        gap: 20px;
        align-items: flex-start;
        transition: all 0.3s;
        cursor: default;
    }
    
    .why-item:first-child {
        border-top: 1px solid rgba(44, 49, 48, 0.08);
    }
    
    .why-item:hover {
        padding-left: 8px;
    }
    
    .why-item-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        background: var(--white);
        border: 1px solid rgba(46, 204, 143, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        margin-top: 2px;
        transition: all 0.3s;
    }
    
    .why-item:hover .why-item-icon {
        background: var(--mint-pale);
        border-color: var(--mint);
    }
    
    .why-item-content h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--obsidian);
        margin-bottom: 6px;
    }
    
    .why-item-content p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--mist);
        font-weight: 300;
    }
    
    .why-visual {
        position: relative;
    }
    
    .why-dashboard {
        background: var(--white);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lift);
        border: 1px solid rgba(46, 204, 143, 0.1);
    }
    
    .why-dash-header {
        background: var(--obsidian);
        padding: 16px 24px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .dash-dots {
        display: flex;
        gap: 6px;
    }
    
    .dash-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    
    .dash-dot:nth-child(1) {
        background: #FF5F57;
    }
    
    .dash-dot:nth-child(2) {
        background: #FFBD2E;
    }
    
    .dash-dot:nth-child(3) {
        background: #28C840;
    }
    
    .dash-url-bar {
        flex: 1;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        padding: 6px 14px;
        font-family: var(--font-mono);
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
    }
    
    .why-dash-body {
        padding: 28px;
    }
    
    .why-menu-note {
        font-size: 11px;
        font-weight: 500;
        color: var(--mist);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    
    .why-menu-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .why-menu-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        background: var(--pearl);
        border-radius: var(--radius-sm);
        font-size: 13px;
    }
    
    .why-menu-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        color: var(--charcoal);
        min-width: 0;
        flex: 1;
    }
    
    .why-menu-emoji {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .why-menu-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .why-menu-price {
        font-family: var(--font-display);
        color: var(--mint-dark);
        font-weight: 500;
        flex-shrink: 0;
    }
    
    .why-menu-status {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 4px 8px;
        border-radius: 4px;
        background: rgba(46, 204, 143, 0.15);
        color: var(--mint-dark);
        flex-shrink: 0;
    }
    
    .why-menu-status.is-off {
        background: rgba(44, 49, 48, 0.08);
        color: var(--mist);
    }
    
    .why-menu-foot {
        margin-top: 20px;
        text-align: center;
        padding: 12px;
        border-radius: var(--radius-sm);
        background: var(--obsidian);
        color: var(--white);
        font-size: 12px;
        font-weight: 500;
    }
    /* ─── FEATURES ─── */
    
    #features {
        background: var(--white);
    }
    
    .features-header {
        text-align: center;
        margin-bottom: 64px;
    }
    
    .features-header .section-label {
        justify-content: center;
    }
    
    .features-header .section-sub {
        margin: 0 auto;
        text-align: center;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 28px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(44, 49, 48, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        background: var(--white);
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(46, 204, 143, 0.04) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s;
    }
    
    .feature-card:hover {
        border-color: rgba(46, 204, 143, 0.3);
        transform: translateY(-6px);
        box-shadow: var(--shadow-card);
    }
    
    .feature-card:hover::before {
        opacity: 1;
    }
    
    .feature-card.highlight {
        background: var(--obsidian);
        border-color: transparent;
        color: var(--white);
    }
    
    .feature-card.highlight::before {
        display: none;
    }
    
    .feature-icon {
        font-size: 32px;
        margin-bottom: 20px;
        display: block;
    }
    
    .feature-card h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--obsidian);
        margin-bottom: 10px;
    }
    
    .feature-card.highlight h3 {
        color: var(--white);
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--mist);
        font-weight: 300;
    }
    
    .feature-card.highlight p {
        color: rgba(255, 255, 255, 0.45);
    }
    
    .feature-tag {
        display: inline-flex;
        margin-top: 16px;
        padding: 4px 10px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 500;
        background: var(--mint-pale);
        color: var(--mint-dark);
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    
    .feature-card.highlight .feature-tag {
        background: rgba(46, 204, 143, 0.15);
        color: var(--mint);
    }
    /* ─── PRICING ─── */
    
    #pricing {
        background: var(--pearl);
        position: relative;
        overflow: hidden;
    }
    
    #pricing::before {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 64px;
    }
    
    .pricing-header .section-label {
        justify-content: center;
    }
    
    .pricing-header .section-sub {
        margin: 0 auto;
        text-align: center;
    }
    
    .pricing-header-title-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
        gap: 12px 28px;
        margin-bottom: 20px;
    }
    
    .pricing-header-main-title {
        margin-bottom: 0;
        text-align: center;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: start;
    }
    
    .pricing-unified-caption {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 36px;
        font-size: 14px;
        line-height: 1.65;
        color: var(--mist);
        font-weight: 300;
    }
    
    .pricing-unified-caption strong {
        color: var(--mint-dark);
        font-weight: 600;
    }
    
    .pricing-unified {
        display: grid;
        grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.86fr) minmax(0, 0.86fr);
        gap: 24px;
        align-items: stretch;
        width: 100%;
    }
    
    .pricing-unified__main {
        min-width: 0;
        display: flex;
    }
    
    .pricing-unified .pricing-card--unified-main {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        transform: none;
        padding: 44px 36px 48px;
        box-shadow: var(--shadow-lift);
    }
    
    .pricing-unified .pricing-card--unified-main:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
    }
    
    .pricing-unified .pricing-card--unified-main .pricing-price {
        font-size: clamp(44px, 4.5vw, 56px);
    }
    
    .pricing-unified .pricing-card--unified-main .pricing-cta {
        margin-top: auto;
    }
    
    .pricing-unified .pricing-addon-card--unified {
        min-width: 0;
        padding: 20px 18px 24px;
    }
    
    .pricing-unified .pricing-addon-card--unified .pricing-addon-media {
        aspect-ratio: 5 / 4;
        margin-bottom: 16px;
    }
    
    .pricing-unified .pricing-addon-card--unified .pricing-addon-intro {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .pricing-unified .pricing-addon-card--unified .pricing-addon-list {
        margin-bottom: 14px;
    }
    
    .pricing-unified .pricing-addon-card--unified .pricing-addon-list li {
        font-size: 11px;
        padding: 4px 0 4px 15px;
    }
    
    .pricing-commit-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
        padding: 16px 18px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .pricing-commit-row span {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.45;
    }
    
    .pricing-commit-row strong {
        color: var(--mint-light);
        font-weight: 600;
    }

    .pricing-old-price {
        text-decoration: line-through;
        opacity: 0.7;
        margin: 0 4px;
    }

    .pricing-new-price {
        color: #00c48c;
        font-weight: 800;
        text-shadow: 0 0 14px rgba(0, 196, 140, 0.22);
        margin-right: 4px;
    }

    .pricing-offer-label {
        display: inline-block;
        font-weight: 600;
        color: #00c48c;
        margin-bottom: 6px;
    }

    .pricing-discount-badge {
        margin-left: 6px;
        font-weight: 600;
        color: #00c48c;
    }

    .pricing-offer-note {
        opacity: 0.8;
        font-size: 0.9em;
    }

    .pricing-coupon-code {
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .pricing-coupon-copy {
        margin-left: 8px;
        padding: 2px 8px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.88);
        font-size: 11px;
        line-height: 1.5;
        cursor: pointer;
    }

    .pricing-coupon-copy:hover {
        background: rgba(255, 255, 255, 0.14);
    }

    .pricing-coupon-copy:disabled {
        opacity: 0.7;
        cursor: default;
    }

    .pricing-coupon-cta-line {
        display: block;
    }

    .pricing-onboarding-tail-line {
        display: block;
    }
    
    .pricing-setup-blurb {
        font-size: 12px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.42);
        margin: 16px 0 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .addons-eyebrow {
        display: block;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--mint-dark);
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .addons-eyebrow.addons-eyebrow--inline {
        display: inline-flex;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .pricing-addon-card {
        background: rgba(250, 252, 251, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(44, 49, 48, 0.08);
        box-shadow: var(--shadow-soft);
        padding: 24px 22px 28px;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    }
    
    .pricing-addon-card:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
        border-color: rgba(46, 204, 143, 0.2);
    }
    
    .pricing-addon-media {
        border-radius: var(--radius-md);
        overflow: hidden;
        /* background: linear-gradient(160deg, var(--pearl) 0%, rgba(240, 244, 242, 0.5) 100%); */
        margin-bottom: 20px;
        aspect-ratio: 4 / 3;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pricing-addon-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 14px;
    }
    
    .pricing-addon-name {
        font-family: var(--font-body);
        font-size: 17px;
        font-weight: 600;
        color: var(--obsidian);
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }
    
    .pricing-addon-intro {
        font-size: 13px;
        line-height: 1.6;
        color: var(--mist);
        font-weight: 300;
        margin-bottom: 16px;
    }
    
    .pricing-addon-price-line {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 6px 8px;
        margin-bottom: 18px;
    }
    
    .pricing-addon-from {
        font-size: 12px;
        font-weight: 500;
        color: var(--mist);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }
    
    .pricing-addon-amount {
        font-family: var(--font-display);
        font-size: 1.85rem;
        font-weight: 400;
        color: var(--mint-dark);
        line-height: 1;
    }
    
    .pricing-addon-unit {
        font-size: 12px;
        color: var(--mist);
        font-weight: 400;
    }
    
    .pricing-addon-specs-label {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--slate);
        opacity: 0.85;
        margin-bottom: 8px;
    }
    
    .pricing-addon-list {
        list-style: none;
        margin-bottom: 18px;
    }
    
    .pricing-addon-list li {
        font-size: 12px;
        line-height: 1.5;
        color: var(--slate);
        padding: 5px 0 5px 16px;
        position: relative;
        font-weight: 400;
    }
    
    .pricing-addon-list--specs li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 11px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--mint);
        opacity: 0.65;
    }
    
    .pricing-addon-list--checks li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 4px;
        font-size: 11px;
        color: var(--mint-dark);
        font-weight: 600;
    }
    
    .pricing-addon-cta {
        margin-top: auto;
        padding-top: 8px;
        font-size: 12px;
        font-weight: 600;
        color: var(--mint-dark);
        text-decoration: none;
        letter-spacing: 0.03em;
        align-self: flex-start;
    }
    
    .pricing-addon-cta:hover {
        color: var(--obsidian);
        text-decoration: underline;
    }
    
    .pricing-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 36px;
        border: 1px solid rgba(44, 49, 48, 0.08);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }
    
    .pricing-card.featured {
        background: var(--obsidian);
        border-color: transparent;
        transform: scale(1.04);
        box-shadow: var(--shadow-lift);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.04) translateY(-4px);
    }
    
    .pricing-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--mint);
        color: var(--obsidian);
        font-size: 11px;
        font-weight: 600;
        padding: 5px 16px;
        border-radius: 100px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .pricing-plan-name {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--mist);
        margin-bottom: 12px;
    }
    
    .pricing-card.featured .pricing-plan-name {
        color: rgba(255, 255, 255, 0.45);
    }
    
    .pricing-price {
        font-family: var(--font-display);
        font-size: 52px;
        font-weight: 300;
        line-height: 1;
        color: var(--obsidian);
        margin-bottom: 4px;
    }
    
    .pricing-card.featured .pricing-price {
        color: var(--white);
    }
    
    .pricing-price sup {
        font-size: 22px;
        vertical-align: top;
        margin-top: 12px;
        display: inline-block;
        font-weight: 400;
    }
    
    .pricing-price-period {
        font-size: 13px;
        color: var(--mist);
        margin-bottom: 28px;
    }
    
    .pricing-card.featured .pricing-price-period {
        color: rgba(255, 255, 255, 0.35);
    }
    
    .pricing-divider {
        height: 1px;
        background: rgba(44, 49, 48, 0.08);
        margin-bottom: 28px;
    }
    
    .pricing-card.featured .pricing-divider {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .pricing-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 36px;
    }
    
    .pricing-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--charcoal);
    }
    
    .pricing-card.featured .pricing-feature {
        color: rgba(255, 255, 255, 0.75);
    }
    
    .pricing-feature-check {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--mint-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-shrink: 0;
        color: var(--mint-dark);
    }
    
    .pricing-card.featured .pricing-feature-check {
        background: rgba(46, 204, 143, 0.15);
        color: var(--mint);
    }
    
    .pricing-cta {
        display: block;
        text-align: center;
        text-decoration: none;
        padding: 14px;
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .pricing-card:not(.featured) .pricing-cta {
        border: 1.5px solid rgba(44, 49, 48, 0.2);
        color: var(--obsidian);
    }
    
    .pricing-card:not(.featured) .pricing-cta:hover {
        border-color: var(--mint);
        color: var(--mint-dark);
    }
    
    .pricing-card.featured .pricing-cta {
        background: var(--mint);
        color: var(--obsidian);
    }
    
    .pricing-card.featured .pricing-cta:hover {
        background: var(--mint-light);
        transform: translateY(-1px);
    }
    /* ─── FAQ ─── */
    
    #faq {
        background: var(--white);
    }
    
    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        margin-top: 60px;
        align-items: start;
    }
    
    .faq-sidebar {
        position: sticky;
        top: 100px;
    }
    
    .faq-contact-card {
        background: var(--obsidian);
        border-radius: var(--radius-lg);
        padding: 36px;
        margin-top: 36px;
    }
    
    .faq-contact-card h4 {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 10px;
    }
    
    .faq-contact-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .faq-contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--mint);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: gap 0.2s;
    }
    
    .faq-contact-link:hover {
        gap: 14px;
    }
    
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .faq-item {
        border-bottom: 1px solid rgba(44, 49, 48, 0.08);
    }
    
    .faq-item:first-child {
        border-top: 1px solid rgba(44, 49, 48, 0.08);
    }
    
    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 24px 0;
        text-align: left;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
        font-weight: 500;
        color: var(--obsidian);
        transition: color 0.3s;
    }
    
    .faq-item.open .faq-question-text {
        color: var(--mint-dark);
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid rgba(44, 49, 48, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 18px;
        color: var(--mist);
        transition: all 0.3s;
    }
    
    .faq-item.open .faq-icon {
        background: var(--mint-pale);
        border-color: var(--mint);
        color: var(--mint-dark);
        transform: rotate(45deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.3s;
    }
    
    .faq-item.open .faq-answer {
        max-height: 300px;
        padding-bottom: 24px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--mist);
        font-weight: 300;
    }
    /* ─── FINAL CTA ─── */
    
    #cta {
        background: var(--obsidian);
        position: relative;
        overflow: hidden;
        text-align: center;
        padding: 140px 40px;
    }
    
    #cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80vw;
        height: 80vh;
        background: radial-gradient(ellipse, rgba(46, 204, 143, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 680px;
        margin: 0 auto;
    }
    
    .cta-eyebrow {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--mint);
        margin-bottom: 24px;
    }
    
    .cta-headline {
        font-family: var(--font-display);
        font-size: clamp(44px, 5vw, 72px);
        font-weight: 300;
        color: var(--white);
        line-height: 1.08;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }
    
    .cta-headline em {
        font-style: italic;
        color: var(--mint);
    }
    
    .cta-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 48px;
        line-height: 1.7;
        font-weight: 300;
    }
    
    .cta-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .btn-cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--mint);
        color: var(--obsidian);
        text-decoration: none;
        padding: 18px 40px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-cta-primary:hover {
        background: var(--mint-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow-mint);
    }
    
    .btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        padding: 18px 28px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.3s;
    }
    
    .btn-cta-secondary:hover {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .cta-note {
        margin-top: 28px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
    }
    /* ─── FOOTER ─── */
    
    footer {
        background: #080A09;
        padding: 60px 40px 36px;
    }
    
    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 0;
        padding-bottom: 48px;
    }
    
    .footer-brand p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.7;
        margin-top: 16px;
        max-width: 280px;
        font-weight: 300;
    }
    
    .footer-col h5 {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 20px;
    }
    
    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-col a {
        text-decoration: none;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s;
    }
    
    .footer-col a:hover {
        color: var(--mint);
    }
    
    .footer-col ul.footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    
    .footer-col a.footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-decoration: none;
        transition: color 0.2s, background 0.2s, border-color 0.2s;
    }
    
    .footer-col a.footer-social-link:hover {
        color: var(--mint);
        background: rgba(46, 204, 143, 0.12);
        border-color: rgba(46, 204, 143, 0.35);
    }
    
    .footer-col a.footer-social-link:focus-visible {
        outline: 2px solid var(--mint);
        outline-offset: 2px;
    }
    
    .footer-social-icon {
        display: block;
        flex-shrink: 0;
    }

    .footer-languages {
        margin: 28px 0 0;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-languages__title {
        margin: 0 0 16px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.42);
    }

    /* Multi-column layout: 2 languages per column, then next column */
    .footer-languages__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        grid-auto-columns: minmax(140px, 220px);
        column-gap: clamp(20px, 4vw, 40px);
        row-gap: 2px;
        max-width: 960px;
    }

    .footer-languages__list > li {
        margin: 0;
        padding: 0;
    }

    .footer-languages__link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px 8px 6px;
        margin: 0 -6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.58);
        border-radius: 8px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .footer-languages__link:hover {
        color: var(--mint);
        background: rgba(255, 255, 255, 0.06);
    }

    .footer-languages__link--current {
        color: var(--mint);
        font-weight: 500;
        background: rgba(46, 204, 143, 0.1);
    }

    @media (max-width: 520px) {
        .footer-languages__list {
            grid-template-rows: none;
            grid-auto-flow: row;
            grid-template-columns: 1fr;
            grid-auto-columns: auto;
            max-width: none;
        }
    }

    .footer-languages__flag {
        display: block;
        flex-shrink: 0;
        width: 22px;
        height: auto;
        border-radius: 2px;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    }
    
    footer .footer-capsulet {
        margin: 0 auto 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(46, 204, 143, 0.18);
    }
    
    footer .footer-capsulet p {
        color: rgba(255, 255, 255, 0.55);
    }
    
    footer .footer-capsulet a {
        color: var(--mint);
    }
    
    footer .footer-capsulet a:hover {
        color: #fff;
    }
    
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .footer-copy {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.2);
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 24px;
        list-style: none;
    }
    
    .footer-bottom-links a {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.2);
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .footer-bottom-links a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
    /* ─── REVEAL ANIMATIONS ─── */
    
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 {
        transition-delay: 0.1s;
    }
    
    .reveal-delay-2 {
        transition-delay: 0.2s;
    }
    
    .reveal-delay-3 {
        transition-delay: 0.3s;
    }
    
    .reveal-delay-4 {
        transition-delay: 0.4s;
    }
    /* ─── RESPONSIVE ─── */
    
    @media (max-width: 1024px) {
        #hero {
            grid-template-columns: 1fr;
            padding-top: 120px;
        }
        .hero-visual {
            display: none;
        }
        .value-grid,
        .why-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 480px;
            margin: 0 auto;
        }
        .pricing-unified {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .pricing-unified__main {
            grid-column: 1 / -1;
        }
        .pricing-unified .pricing-addon-card--unified .pricing-addon-media {
            aspect-ratio: 4 / 3;
        }
        .pricing-card.featured:not(.pricing-card--unified-main) {
            transform: none;
        }
        .pricing-card.featured:not(.pricing-card--unified-main):hover {
            transform: translateY(-4px);
        }
        .faq-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .faq-sidebar {
            position: static;
        }
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .steps-grid {
            grid-template-columns: 1fr;
        }
        .steps-grid::before {
            display: none;
        }
        .showcase-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }
    }
    
    @media (max-width: 768px) {
        section {
            padding: 72px 24px;
        }
        .value-cards {
            grid-template-columns: 1fr;
        }
        .value-card.featured {
            grid-column: span 1;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .showcase-grid {
            grid-template-columns: 1fr;
        }
        .showcase-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        .footer-top {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
        .cta-actions {
            flex-direction: column;
        }
        .hero-trust {
            flex-wrap: wrap;
            gap: 16px;
        }
        .hero-clients {
            margin-top: 28px;
        }
        .pricing-unified-caption {
            font-size: 13px;
            margin-bottom: 28px;
            padding: 0 4px;
        }
        .pricing-unified {
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 440px;
            margin: 0 auto;
        }
        .pricing-unified__main {
            grid-column: auto;
        }
        .pricing-unified .pricing-card--unified-main {
            padding: 36px 24px 40px;
        }
        .pricing-unified .pricing-addon-card--unified .pricing-addon-list li {
            font-size: 12px;
        }
    }
    /* ─── v4: hero client strip ─── */
    
    .hero-clients {
        margin-top: 40px;
        animation: fadeUp 0.8s ease 0.45s both;
    }
    
    .hero-clients-label {
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--mist);
        margin-bottom: 16px;
    }
    
    .hero-clients-logos {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px 28px;
    }
    
    .hero-clients-logos img {
        height: 32px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
        opacity: 0.65;
        filter: grayscale(100%);
        transition: opacity 0.3s, filter 0.3s;
    }
    
    .hero-clients-logos img:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
    /* ─── trust pillars (before client logos) — full content width, centered row ─── */
    
    #trust-pillars {
        background: var(--pearl);
        padding: 56px 40px 48px;
        border-bottom: 1px solid rgba(46, 204, 143, 0.08);
    }
    
    #trust-pillars .trust-pillars-inner.container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    #trust-pillars .trust-pillars-row.hero-trust {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 12px 16px;
        flex-wrap: nowrap;
    }
    
    #trust-pillars .trust-pillars-row .hero-trust-item {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
    }
    
    #trust-pillars .trust-pillars-row .hero-trust-divider {
        flex-shrink: 0;
    }
    
    @media (max-width: 900px) {
        #trust-pillars .trust-pillars-row.hero-trust {
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 24px;
        }
        #trust-pillars .trust-pillars-row .hero-trust-item {
            flex: 1 1 40%;
            min-width: 140px;
        }
        #trust-pillars .trust-pillars-row .hero-trust-divider {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        #trust-pillars {
            padding: 40px 24px 36px;
        }
    }
    /* ─── v4: trust section ─── */
    
    #trust {
        background: var(--white);
        padding: 72px 40px 88px;
        border-bottom: 1px solid rgba(46, 204, 143, 0.1);
    }
    
    .trust-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 40px;
    }
    
    .trust-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 28px 40px;
    }
    
    .trust-logos img {
        min-height: 55px;
        height: 55px;
        min-width: 140px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
        opacity: 0.7;
        filter: grayscale(100%);
        transition: all 0.3s;
    }
    
    .trust-logos img:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
    
    .trust-capsulet {
        margin: 48px auto 0;
        max-width: 720px;
        padding: 28px 32px;
        background: var(--pearl);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(46, 204, 143, 0.12);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 24px;
        text-align: left;
    }
    
    .trust-capsulet img {
        height: 52px;
        width: auto;
    }
    
    .trust-capsulet p {
        flex: 1;
        min-width: 220px;
        font-size: 14px;
        line-height: 1.65;
        color: var(--mist);
    }
    
    .trust-capsulet a {
        color: var(--mint-dark);
        font-weight: 600;
        text-decoration: none;
    }
    
    .trust-capsulet a:hover {
        text-decoration: underline;
    }
    
    .lang-switch {
        display: inline-flex;
        gap: 4px;
        font-family: var(--font-mono);
        font-size: 11px;
        margin-left: 12px;
        vertical-align: middle;
    }
    
    .lang-switch a {
        padding: 4px 10px;
        border-radius: 6px;
        text-decoration: none;
        color: var(--slate);
        border: 1px solid transparent;
    }
    
    .lang-switch a:hover {
        color: var(--obsidian);
    }
    
    .lang-switch a.active {
        border-color: rgba(46, 204, 143, 0.35);
        background: var(--mint-pale);
        color: var(--mint-dark);
    }

    /* Language menu: pill trigger + round flags (not form-select styling) */
    .lang-select-stripe {
        vertical-align: middle;
    }

    .lang-select-stripe--details {
        position: relative;
        display: inline-block;
        margin-left: 12px;
    }

    /* Header nav: language sits in .nav-links row; no extra offset */
    .nav-links .lang-switch-wrap {
        display: flex;
        align-items: center;
        list-style: none;
    }

    .nav-links .lang-switch-wrap .lang-select-stripe--details {
        margin-left: 0;
    }

    .lang-select-stripe__summary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        list-style: none;
        cursor: pointer;
        font-family: var(--font-ui, 'Poppins', system-ui, -apple-system, sans-serif);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -0.01em;
        color: var(--obsidian);
        background: transparent;
        border: none;
        border-radius: 999px;
        padding: 6px 12px 6px 8px;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        transition: background 0.15s ease, box-shadow 0.15s ease;
    }

    .lang-select-stripe__summary::-webkit-details-marker {
        display: none;
    }

    .lang-select-stripe__summary::marker {
        content: '';
    }

    .lang-select-stripe__label {
        flex: 0 1 auto;
        text-align: left;
        line-height: 1.25;
        max-width: 9.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lang-select-stripe__caret {
        display: flex;
        flex-shrink: 0;
        color: var(--slate);
        opacity: 0.75;
        transition: transform 0.15s ease, opacity 0.15s ease;
    }

    .lang-select-stripe--details[open] .lang-select-stripe__caret {
        transform: rotate(180deg);
        opacity: 1;
    }

    .lang-select-stripe__summary:hover {
        background: rgba(15, 23, 42, 0.05);
    }

    .lang-select-stripe__summary:focus {
        outline: none;
    }

    .lang-select-stripe__summary:focus-visible {
        box-shadow: 0 0 0 2px rgba(46, 204, 143, 0.35);
    }

    .lang-select-stripe--details[open] > .lang-select-stripe__summary {
        background: rgba(15, 23, 42, 0.06);
        box-shadow: none;
    }

    .lang-select-stripe__menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 13.5rem;
        margin: 0;
        padding: 6px;
        list-style: none;
        background: rgba(255, 255, 255, 0.99);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 14px;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.8) inset,
            0 12px 40px rgba(15, 23, 42, 0.14),
            0 4px 12px rgba(15, 23, 42, 0.06);
        z-index: 1002;
    }

    .lang-select-stripe__menu li {
        margin: 0;
        padding: 0;
    }

    .lang-select-stripe__opt {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        margin: 2px 0;
        font-size: 13px;
        font-weight: 500;
        color: var(--obsidian);
        text-decoration: none;
        border-radius: 10px;
        transition: background 0.12s ease;
    }

    .lang-select-stripe__opt:hover {
        background: rgba(15, 23, 42, 0.04);
    }

    .lang-select-stripe__opt--current {
        background: rgba(46, 204, 143, 0.1);
        color: var(--mint-dark);
    }

    .lang-select-flag-slot {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
        box-shadow:
            0 0 0 1px rgba(15, 23, 42, 0.08),
            0 1px 2px rgba(15, 23, 42, 0.05);
    }

    .lang-select-flag-slot--trigger {
        width: 28px;
        height: 28px;
    }

    .lang-select-flag {
        flex-shrink: 0;
        display: block;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
    }

    .lang-select-flag--trigger {
        width: 20px;
        height: 20px;
    }

    .lang-select-flag--menu {
        width: 24px;
        height: 24px;
        box-shadow: none;
    }

    .lang-select-flag-slot .lang-select-flag--menu {
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 15, 14, 0.42);
        z-index: 999;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    /* ─── v4: responsive nav (tablet + phone) ─── */
    @media (max-width: 1024px) {
        nav {
            padding: 0 20px;
        }

        .nav-links {
            display: none;
        }

        .nav-hamburger {
            display: inline-flex;
        }

        .nav-hamburger:hover {
            background: rgba(15, 23, 42, 0.06);
        }

        .nav-hamburger:active {
            background: rgba(15, 23, 42, 0.1);
        }

        body.nav-open {
            overflow: hidden;
            touch-action: none;
        }

        body.nav-open .nav-backdrop {
            display: block;
        }

        nav.nav-open .nav-links {
            display: flex !important;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            height: 100vh;
            max-height: 100vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            flex-direction: column;
            align-items: stretch;
            background: rgba(250, 252, 251, 0.98);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: calc(72px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
            gap: 0;
            border-bottom: 1px solid rgba(46, 204, 143, 0.12);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
            z-index: 1001;
            list-style: none;
        }

        nav.nav-open .nav-links li {
            border-bottom: 1px solid rgba(44, 49, 48, 0.06);
        }

        nav.nav-open .nav-links a {
            display: block;
            padding: 14px 0;
        }

        nav.nav-open .nav-links a::after {
            display: none;
        }

        nav.nav-open .lang-switch-wrap {
            padding: 8px 0 4px;
        }

        nav.nav-open .lang-select-stripe--details {
            margin-left: 0;
            width: 100%;
            box-sizing: border-box;
            padding: 6px 0 10px;
        }

        nav.nav-open .lang-select-stripe__summary {
            width: 100%;
            min-width: 0;
        }

        nav.nav-open .lang-select-stripe__menu {
            left: 0;
            right: 0;
            min-width: 0;
        }

        nav.nav-open .nav-links .lang-select-stripe__opt {
            display: flex !important;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
        }

        nav.nav-open .nav-cta {
            margin: 8px 0 4px;
            text-align: center;
            display: block;
        }

        nav.nav-open .nav-hamburger-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        nav.nav-open .nav-hamburger-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        nav.nav-open .nav-hamburger-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
    }
    /* ─── v4: showcase with image + filter ─── */
    
    .showcase-card-bg.has-photo {
        position: relative;
    }
    
    .showcase-card-bg.has-photo .showcase-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.45;
    }
    
    .showcase-card-bg.has-photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, rgba(13, 15, 14, 0.75) 0%, rgba(13, 15, 14, 0.4) 100%);
        z-index: 0;
    }
    
    .showcase-card-bg.has-photo .showcase-phone-mock {
        position: relative;
        z-index: 1;
    }
    
    .showcase-demo-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 3;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(0, 0, 0, 0.45);
        padding: 5px 10px;
        border-radius: 4px;
    }
    
    .showcase-card.hidden-tab {
        display: none;
    }
    /* ─── v4: contact ─── */
    
    #contact {
        background: var(--pearl);
    }

    .contact-highlight-label {
        background: rgba(46, 204, 143, 0.12);
        border: 1px solid rgba(46, 204, 143, 0.35);
        border-radius: 999px;
        padding: 6px 12px;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 56px;
        align-items: start;
        margin-top: 48px;
    }
    
    .contact-aside h3 {
        font-family: var(--font-display);
        font-size: clamp(26px, 3vw, 34px);
        font-weight: 400;
        color: var(--obsidian);
        margin-bottom: 12px;
    }
    
    .contact-aside>p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--mist);
        margin-bottom: 28px;
    }
    
    .contact-line {
        margin-bottom: 18px;
        font-size: 14px;
    }
    
    .contact-line strong {
        display: block;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--mist);
        margin-bottom: 4px;
    }
    
    .contact-line a {
        color: var(--mint-dark);
        text-decoration: none;
        font-weight: 500;
    }
    
    .contact-line a:hover {
        text-decoration: underline;
    }
    
    .contact-social {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 24px;
    }
    
    .contact-social a {
        font-size: 13px;
        color: var(--slate);
        text-decoration: none;
    }
    
    .contact-social a:hover {
        color: var(--mint-dark);
    }

    .contact-forms {
        display: grid;
        gap: 18px;
        padding: 14px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(46, 204, 143, 0.16);
        background: rgba(255, 255, 255, 0.45);
    }

    .v4-form-card {
        background: var(--white);
        border: 1px solid rgba(44, 49, 48, 0.12);
        border-radius: var(--radius-md);
        padding: 22px;
    }

    .v4-form-card-primary {
        border-color: rgba(46, 204, 143, 0.45);
        box-shadow: 0 10px 36px rgba(46, 204, 143, 0.12);
    }

    .callback-accordion {
        overflow: hidden;
    }

    .callback-accordion-summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        padding-right: 30px;
    }

    .callback-accordion-summary::-webkit-details-marker {
        display: none;
    }

    .callback-accordion-summary::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        line-height: 1;
        color: var(--mint-dark);
        transition: transform 0.2s ease;
    }

    .callback-accordion[open] .callback-accordion-summary::after {
        transform: translateY(-50%) rotate(45deg);
    }

    .callback-accordion:not([open]) {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .callback-accordion:not([open]):hover {
        border-color: rgba(46, 204, 143, 0.28);
        box-shadow: 0 6px 24px rgba(46, 204, 143, 0.08);
    }

    .callback-accordion-label {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--mint-dark);
        font-weight: 600;
    }

    .callback-accordion-title {
        font-size: 22px;
        line-height: 1.2;
        color: var(--obsidian);
        font-weight: 500;
    }

    .callback-accordion-form {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(44, 49, 48, 0.08);
    }

    .v4-form-choice {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--mint-dark);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .v4-form-title {
        font-size: 22px;
        line-height: 1.2;
        color: var(--obsidian);
        font-weight: 500;
        margin-bottom: 6px;
    }

    .v4-form-copy {
        font-size: 13px;
        line-height: 1.6;
        color: var(--mist);
        margin-bottom: 14px;
    }
    
    .v4-form .field {
        margin-bottom: 18px;
    }
    
    .v4-form label {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: var(--slate);
        margin-bottom: 6px;
    }
    
    .v4-form input,
    .v4-form textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(44, 49, 48, 0.12);
        font-family: var(--font-body);
        font-size: 14px;
        background: var(--white);
    }
    
    .v4-form textarea {
        min-height: 130px;
        resize: vertical;
    }
    
    .v4-form .field-hint {
        font-size: 11px;
        color: var(--mist);
        margin-top: 6px;
    }
    
    .v4-form .form-status {
        display: none;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .v4-form .form-status.ok {
        display: block;
        background: var(--mint-pale);
        color: var(--mint-dark);
    }
    
    .v4-form .form-status.err {
        display: block;
        background: #fde8e8;
        color: #8b1a1a;
    }
    
    .v4-form .submit-row {
        margin-top: 8px;
    }
    
    .v4-form button[type="submit"] {
        background: var(--obsidian);
        color: var(--white);
        border: none;
        padding: 14px 28px;
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .v4-form button[type="submit"]:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }
    
    .v4-form button[type="submit"]:not(:disabled):hover {
        background: var(--mint-dark);
    }
    
    .footer-contact {
        margin-top: 16px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.6;
    }
    
    .footer-contact a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
    }
    
    .footer-contact a:hover {
        color: var(--mint);
    }
    
    @media (max-width: 900px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .v4-form-card {
            padding: 20px;
        }
    }
    
    .faq-item.open .faq-answer {
        max-height: 1200px;
    }

    /* ─── Legal (privacy, terms, cookies) ─── */
    .legal-doc {
        max-width: 720px;
        margin: 0 auto;
        padding: 160px 32px 100px;
        position: relative;
        z-index: 1;
        color: rgba(26, 32, 44, 0.88);
        line-height: 1.75;
    }

    .legal-doc__title {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        font-weight: 500;
        color: var(--obsidian);
        margin: 0 0 0.5rem;
    }

    .legal-doc__meta {
        font-size: 13px;
        color: rgba(26, 32, 44, 0.5);
        margin: 0 0 2rem;
    }

    .legal-doc__seo-summary {
        font-size: 0.95rem;
        line-height: 1.65;
        color: rgba(26, 32, 44, 0.82);
        margin: -1rem 0 1.75rem;
        padding: 14px 16px;
        background: rgba(46, 204, 143, 0.06);
        border-radius: 8px;
        border-left: 3px solid rgba(46, 204, 143, 0.45);
    }

    .legal-doc h2 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--obsidian);
        margin: 2rem 0 0.75rem;
    }

    .legal-doc h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--obsidian);
        margin: 1.5rem 0 0.5rem;
    }

    .legal-doc h4 {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--obsidian);
        margin: 1.25rem 0 0.5rem;
    }

    .legal-doc h5 {
        font-size: 0.9rem;
        font-weight: 600;
        margin: 1rem 0 0.35rem;
    }

    .legal-doc ul {
        margin: 0 0 1rem 1.25rem;
        padding: 0;
    }

    .legal-doc li {
        margin-bottom: 0.35rem;
    }

    .legal-doc__lang-note {
        font-size: 0.95rem;
        color: rgba(26, 32, 44, 0.65);
        margin-bottom: 1.5rem;
        padding: 12px 16px;
        background: rgba(46, 204, 143, 0.08);
        border-radius: 8px;
        border-left: 3px solid var(--mint);
    }

    .legal-doc p {
        margin: 0 0 1rem;
    }

    .legal-doc a {
        color: var(--mint-dark);
        text-decoration: none;
        border-bottom: 1px solid rgba(46, 204, 143, 0.35);
    }

    .legal-doc a:hover {
        color: var(--obsidian);
        border-bottom-color: var(--mint);
    }

    @media (max-width: 768px) {
        .legal-doc {
            padding: 120px 20px 72px;
        }
    }

    /* ─── 404 (404.php) ─── */
    .page-404 {
        min-height: calc(100vh - 120px);
        padding: 160px 40px 100px;
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .page-404__title {
        font-family: var(--font-display, 'Poppins', system-ui, sans-serif);
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        font-weight: 500;
        color: var(--obsidian);
        line-height: 1.25;
        margin: 0 0 0.5rem;
    }

    .page-404__img {
        width: 200px;
        max-width: min(200px, 70vw);
        height: auto;
        margin: 1.25rem auto 1.5rem;
        display: block;
    }

    .page-404__text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: rgba(26, 32, 44, 0.78);
    }

    .page-404__text a {
        color: var(--mint-dark);
        text-decoration: none;
        border-bottom: 1px solid rgba(46, 204, 143, 0.35);
        transition: color 0.2s, border-color 0.2s;
    }

    .page-404__text a:hover {
        color: var(--obsidian);
        border-bottom-color: var(--mint);
    }

    .page-404__actions {
        margin-top: 2rem;
    }

    .page-404__actions .btn-primary {
        display: inline-flex;
    }

    @media (max-width: 768px) {
        .page-404 {
            padding: 120px 24px 80px;
        }
    }