﻿:root {
    --cream: #f5f0e8;
    --warm: #ede7da;
    --sand: #d4c4a8;
    --bark: #8b7355;
    --ink: #1a1410;
    --charcoal: #2d2520;
    --accent: #c8472b;
    --gold: #b8943f;
    --blush: #e8c4b8;
    --sage: #7a8c6e;
    --white: #fdfaf5;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Archivo', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200,71,43,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    mix-blend-mode: normal;
    transition: background 0.4s, padding 0.3s;
}

    nav.scrolled {
        background: rgba(253,250,245,0.95);
        backdrop-filter: blur(12px);
        padding: 14px 48px;
        border-bottom: 1px solid rgba(180,160,130,0.2);
    }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
}

    .logo em {
        font-style: italic;
        color: var(--accent);
    }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--charcoal);
        text-decoration: none;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    font-family: 'Archivo', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.25s;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
}

    .btn-outline:hover {
        background: var(--ink);
        color: var(--white);
    }

.btn-filled {
    background: var(--accent);
    color: var(--white);
}

    .btn-filled:hover {
        background: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(200,71,43,0.25);
    }

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

    .btn-gold:hover {
        background: var(--ink);
        transform: translateY(-2px);
    }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 80px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideRight 0.8s ease both;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--bark);
    }

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--ink);
    animation: slideRight 0.8s 0.1s ease both;
}

    h1 em {
        font-style: italic;
        color: var(--accent);
        display: block;
    }

.hero-sub {
    margin-top: 24px;
    font-size: 1rem;
    color: var(--bark);
    font-weight: 300;
    max-width: 400px;
    line-height: 1.7;
    animation: slideRight 0.8s 0.2s ease both;
}

.hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 14px;
    animation: slideRight 0.8s 0.3s ease both;
}

.hero-badge {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideRight 0.8s 0.4s ease both;
}

.hero-badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
}

.hero-badge-pills {
    display: flex;
    gap: 8px;
}

.pill {
    padding: 4px 12px;
    background: var(--warm);
    border: 1px solid var(--sand);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bark);
}

.hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fashion store mock preview */
.store-preview {
    width: 85%;
    max-width: 440px;
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 60px 120px rgba(0,0,0,0.6);
    animation: floatIn 1s 0.3s ease both;
    position: relative;
    z-index: 2;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(1.5deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.sp-bar {
    background: var(--ink);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sp-url {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
}

.sp-hero-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(145deg, #2a1f1a 0%, #4a3428 50%, #1a1410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .sp-hero-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 60%, rgba(200,71,43,0.3) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(184,148,63,0.2) 0%, transparent 50%);
    }

.sp-hero-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    position: relative;
    letter-spacing: 0.1em;
}

    .sp-hero-text em {
        font-style: italic;
        color: var(--blush);
        display: block;
        font-size: 2.5rem;
    }

.sp-products {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sp-product {
    aspect-ratio: 3/4;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.sp-product-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.sp-product:nth-child(1) .sp-product-img {
    background: linear-gradient(160deg, #c4a882, #8b6914);
}

.sp-product:nth-child(2) .sp-product-img {
    background: linear-gradient(160deg, #2d2520, #4a3428);
}

.sp-product:nth-child(3) .sp-product-img {
    background: linear-gradient(160deg, #c8472b, #8b2c18);
}

.sp-product-info {
    padding: 6px 4px 2px;
}

.sp-pname {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--ink);
}

.sp-pprice {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 700;
}

.sp-nav {
    background: var(--cream);
    padding: 10px 14px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--warm);
}

.sp-nav-item {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bark);
    text-align: center;
}

    .sp-nav-item.active {
        color: var(--accent);
    }

.sp-nav-icon {
    font-size: 1rem;
    display: block;
    margin-bottom: 2px;
}

/* floating tag */
.hero-tag {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(-2deg);
    animation: floatIn 0.8s 0.7s ease both;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(200,71,43,0.4);
}

.hero-tag2 {
    position: absolute;
    top: 100px;
    left: -16px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(2deg);
    animation: floatIn 0.8s 0.8s ease both;
    z-index: 3;
}

.bg-text {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16rem;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    bottom: -40px;
    left: -20px;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─── TICKER ─── */
.ticker {
    background: var(--ink);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerMove 25s linear infinite;
    width: max-content;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    white-space: nowrap;
}

.ticker-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--sand);
    letter-spacing: 0.05em;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── HOW IT WORKS (Live Preview) ─── */
.live-section {
    padding: 120px 80px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--accent);
    }

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
}

    h2 em {
        font-style: italic;
        color: var(--accent);
    }

.section-body {
    font-size: 0.95rem;
    color: var(--bark);
    font-weight: 300;
    line-height: 1.8;
    margin-top: 18px;
    max-width: 440px;
}

.steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand);
    align-items: flex-start;
}

    .step:last-child {
        border-bottom: none;
    }

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    min-width: 36px;
}

.step-info h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.83rem;
    color: var(--bark);
    font-weight: 300;
    line-height: 1.6;
}

/* timer mockup */
.timer-card {
    background: var(--ink);
    color: var(--white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .timer-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(200,71,43,0.15), transparent 70%);
    }

.timer-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 20px;
}

.timer-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    line-height: 1;
    color: var(--cream);
    position: relative;
}

    .timer-display span {
        color: var(--accent);
    }

.timer-unit {
    font-family: 'Archivo', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bark);
    margin-top: 8px;
}

.timer-progress {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin: 32px 0 24px;
    position: relative;
    overflow: hidden;
}

.timer-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    animation: progressFill 4s ease-in-out infinite alternate;
}

@keyframes progressFill {
    from {
        width: 15%;
    }

    to {
        width: 95%;
    }
}

.timer-steps-live {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.tsl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-align: left;
}

    .tsl-item.done {
        color: var(--sage);
    }

    .tsl-item.active {
        color: var(--cream);
    }

.tsl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.tsl-item.done .tsl-dot {
    background: var(--sage);
    color: white;
}

.tsl-item.active .tsl-dot {
    background: var(--accent);
    color: white;
    animation: pulse 1.5s infinite;
}

.tsl-item .tsl-dot {
    background: rgba(255,255,255,0.1);
}

@keyframes pulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(200,71,43,0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(200,71,43,0);
    }
}

/* ─── FEATURES ─── */
.features-section {
    padding: 120px 80px;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--sand);
    border: 1px solid var(--sand);
}

.feat-card {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

    .feat-card:hover {
        background: var(--cream);
    }

    .feat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .feat-card:hover::before {
        transform: scaleX(1);
    }

.feat-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.feat-title {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--ink);
}

.feat-desc {
    font-size: 0.88rem;
    color: var(--bark);
    font-weight: 300;
    line-height: 1.75;
}

/* ─── PRODUCT UPLOAD MOCK ─── */
.mobile-section {
    padding: 120px 80px;
    background: var(--ink);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.mobile-text h2 {
    color: var(--cream);
}

.mobile-text .section-label {
    color: var(--gold);
}

    .mobile-text .section-label::before {
        background: var(--gold);
    }

.mobile-text .section-body {
    color: var(--sand);
}

.mobile-perks {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.perk-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.perk-info strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 3px;
}

.perk-info span {
    font-size: 0.78rem;
    color: var(--bark);
    font-weight: 300;
}

/* phone mockup */
.phone-wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: flex-start;
}

.phone {
    width: 200px;
    background: #0d0d0d;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

    .phone:nth-child(2) {
        margin-top: 40px;
        width: 190px;
    }

.phone-notch {
    background: #0d0d0d;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch-inner {
    width: 60px;
    height: 14px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
}

.phone-screen {
    background: var(--cream);
    padding: 12px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-header {
    font-family: 'Archivo', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-upload-box {
    border: 2px dashed var(--sand);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    font-size: 0.6rem;
    color: var(--bark);
}

    .phone-upload-box .up-icon {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 6px;
    }

.phone-field {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 3px;
    padding: 6px 8px;
    font-size: 0.58rem;
    color: var(--bark);
}

.phone-field-label {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 2px;
}

.phone-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 3px;
    padding: 8px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
}

/* order screen */
.order-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    background: var(--white);
    border-radius: 3px;
    border: 1px solid var(--warm);
}

.order-img {
    width: 36px;
    height: 36px;
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.order-info strong {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--ink);
}

.order-info span {
    font-size: 0.55rem;
    color: var(--bark);
}

.order-status {
    margin-left: auto;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.os-new {
    background: rgba(200,71,43,0.1);
    color: var(--accent);
}

.os-shipped {
    background: rgba(122,140,110,0.1);
    color: var(--sage);
}

.wa-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 0.58rem;
    color: #25d366;
    font-weight: 600;
    margin-top: 4px;
}

/* ─── PRICING ─── */
.pricing-section {
    padding: 120px 80px;
    background: var(--cream);
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--bark);
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 48px 36px;
    position: relative;
    transition: all 0.3s;
}

    .price-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(26,20,16,0.12);
    }

    .price-card.featured {
        background: var(--ink);
        border-color: var(--ink);
    }

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
}

.price-tier {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 20px;
}

.price-card.featured .price-tier {
    color: var(--sand);
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
}

.price-card.featured .price-amount {
    color: var(--cream);
}

.price-amount sup {
    font-family: 'Archivo', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}

.price-period {
    font-size: 0.75rem;
    color: var(--bark);
    margin-bottom: 6px;
}

.price-card.featured .price-period {
    color: var(--sand);
}

.price-gst {
    font-size: 0.68rem;
    color: var(--bark);
    margin-bottom: 28px;
    font-style: italic;
}

.price-card.featured .price-gst {
    color: rgba(212,196,168,0.6);
}

.price-divider {
    height: 1px;
    background: var(--warm);
    margin-bottom: 28px;
}

.price-card.featured .price-divider {
    background: rgba(255,255,255,0.08);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

    .price-features li {
        display: flex;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 300;
        color: var(--charcoal);
        align-items: flex-start;
    }

.price-card.featured .price-features li {
    color: var(--sand);
}

.price-features li::before {
    content: '—';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.price-limit {
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    padding: 6px 12px;
    background: rgba(200,71,43,0.06);
    border-left: 2px solid var(--accent);
}

/* ─── WHATSAPP + PAYMENT ─── */
.integrations-section {
    padding: 120px 80px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.int-card {
    padding: 48px;
    border: 1px solid var(--warm);
    position: relative;
    overflow: hidden;
}

    .int-card.wa {
        border-color: rgba(37,211,102,0.2);
        background: rgba(37,211,102,0.02);
    }

    .int-card.rp {
        border-color: rgba(0,119,204,0.2);
        background: rgba(0,119,204,0.02);
    }

.int-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.int-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 14px;
}

.int-desc {
    font-size: 0.88rem;
    color: var(--bark);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 24px;
}

.int-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.int-feat {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--charcoal);
}

    .int-feat::before {
        content: '✓';
        font-weight: 700;
        color: var(--sage);
        flex-shrink: 0;
    }

/* ─── CTA ─── */
.cta-section {
    padding: 140px 80px;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: 'MESHIFY';
        position: absolute;
        font-family: 'Cormorant Garamond', serif;
        font-size: 20rem;
        font-weight: 300;
        color: rgba(255,255,255,0.02);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        letter-spacing: -0.05em;
        pointer-events: none;
        white-space: nowrap;
    }

    .cta-section h2 {
        color: var(--cream);
        margin-bottom: 20px;
    }

        .cta-section h2 em {
            color: var(--accent);
        }

    .cta-section .section-body {
        color: var(--sand);
        margin: 0 auto 44px;
        text-align: center;
    }

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    padding: 60px 80px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
    font-size: 1.8rem;
    color: var(--cream);
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--bark);
    font-weight: 300;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul a {
        font-size: 0.82rem;
        color: var(--bark);
        text-decoration: none;
        font-weight: 300;
        transition: color 0.2s;
    }

        .footer-col ul a:hover {
            color: var(--cream);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--bark);
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,20,16,0.85);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.modal {
    background: var(--white);
    max-width: 520px;
    width: 100%;
    padding: 56px;
    transform: translateY(30px);
    transition: transform 0.3s;
    position: relative;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 8px;
}

    .modal h3 em {
        font-style: italic;
        color: var(--accent);
    }

.modal > p {
    font-size: 0.85rem;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

    .form-group label {
        display: block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--bark);
        margin-bottom: 6px;
    }

    .form-group input, .form-group select {
        width: 100%;
        border: 1px solid var(--sand);
        border-radius: 0;
        padding: 12px 14px;
        font-family: 'Archivo', sans-serif;
        font-size: 0.88rem;
        color: var(--ink);
        background: var(--white);
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--accent);
        }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--bark);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

    .modal-close:hover {
        color: var(--ink);
    }

/* ─── TOAST ─── */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--ink);
    color: var(--cream);
    border-left: 3px solid var(--accent);
    padding: 16px 28px;
    font-size: 0.82rem;
    font-weight: 500;
    z-index: 300;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
    white-space: nowrap;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 900px) {
    nav {
        padding: 18px 24px;
    }

        nav.scrolled {
            padding: 12px 24px;
        }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 120px 32px 60px;
    }

    .hero-right {
        min-height: 500px;
    }

    .live-section, .mobile-section, .integrations-section {
        grid-template-columns: 1fr;
        padding: 80px 32px;
        gap: 48px;
    }

    .features-section, .pricing-section, .cta-section {
        padding: 80px 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .modal {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

