        /* ═══════════════════════════
           TOKENS
        ═══════════════════════════ */
        :root {
            --cream:      #F2EAD8;
            --cream-dark: #EBE0C8;
            --orange:     #B84B0C;
            --orange-lt:  #C95A18;
            --text:       #1A1208;
            --text-muted: #7A6E62;
            --text-light: #A89D92;
            --border:     rgba(26,18,8,0.1);
            --border-md:  rgba(26,18,8,0.16);
            --white:      #FFFFFF;
            --card-bg:    #FAF6F0;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: 'Jost', sans-serif;
            background: var(--cream);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            /* subtle dot pattern */
            background-image: radial-gradient(circle, rgba(26,18,8,0.09) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            line-height: 1.1;
        }

        em { font-style: italic; color: var(--orange); }

        a { text-decoration: none; }

        .container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

        /* ═══════════════════════════
           NAVBAR
        ═══════════════════════════ */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 200;
            padding: 20px 0;
            transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
        }
        .navbar.scrolled {
            background: rgba(243,237,227,0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .navbar__inner {
            display: flex;
            align-items: center;
            position: relative;
        }
        .logo {
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text);
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .logo-star { color: var(--orange); font-size: 1.1rem; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--text); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .btn-link {
            font-family: 'Jost', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .btn-link:hover { color: var(--text); }

        .btn-cta {
            font-family: 'Jost', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            background: var(--orange);
            border: none;
            border-radius: 6px;
            padding: 9px 20px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .btn-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }
        .btn-cta:active { transform: translateY(0); }

        .btn-inscription {
            font-family: 'Jost', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-muted);
            border: 1.5px solid var(--border-md);
            border-radius: 5px;
            padding: 7px 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: color 0.2s, border-color 0.2s;
            white-space: nowrap;
        }
        .btn-inscription:hover { color: var(--text); border-color: var(--text); }

        /* ═══════════════════════════
           HERO
        ═══════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 140px 0 0;
            text-align: center;
            position: relative;
        }

        .hero__eyebrow {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .hero__title {
            font-size: clamp(3rem, 6vw, 5.2rem);
            letter-spacing: -0.02em;
            margin-bottom: 28px;
            line-height: 1.05;
            max-width: 820px;
        }

        .hero__subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.75;
            max-width: 460px;
            margin: 0 auto 40px;
        }

        .hero__ctas {
            display: flex;
            align-items: center;
            gap: 24px;
            justify-content: center;
            margin-bottom: 16px;
        }

        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            color: #fff;
            background: var(--orange);
            border: none;
            border-radius: 7px;
            padding: 14px 28px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }
        .hero-btn-primary:hover {
            background: var(--orange-lt);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(184,75,12,0.28);
        }

        .hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-muted);
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .hero-btn-secondary:hover { color: var(--text); }

        .hero__trust {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-light);
        }
        .trust-item::before {
            content: '·';
            font-size: 1.2rem;
            color: var(--orange);
            line-height: 1;
        }

        /* Hero mockup visual */
        .hero__visual {
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 16px;
            padding: 0 20px;
        }

        .hero__input-bar {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(26,18,8,0.08);
        }
        .hero__input-bar strong { color: var(--text); font-weight: 500; }
        .hero__input-cta {
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 6px 14px;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Jost', sans-serif;
        }

        /* Network icons row */
        .hero__networks {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .net-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1.5px solid var(--border-md);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            box-shadow: 0 2px 8px rgba(26,18,8,0.06);
        }

        /* Mock cards */
        .hero-cards {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: flex-end;
        }

        .hcard {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(26,18,8,0.1);
        }
        .hcard--fb { width: 220px; }
        .hcard--ig { width: 190px; }
        .hcard--tk {
            width: 130px;
            border: 2px dashed var(--border-md);
            background: transparent;
            padding: 20px 12px;
            text-align: center;
            font-size: 0.68rem;
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 180px;
        }
        .hcard--tk .soon-badge {
            background: var(--orange);
            color: white;
            font-size: 0.6rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .hcard__label {
            padding: 7px 12px;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--card-bg);
        }
        .hcard__label-ratio { color: var(--text-light); font-weight: 400; }

        .hcard__img {
            background: linear-gradient(140deg, #C85A18 0%, #A03808 40%, #8A3206 100%);
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 10px;
        }
        .hcard--fb .hcard__img { aspect-ratio: 1; }
        .hcard--ig .hcard__img { aspect-ratio: 4/5; }

        .hcard__img-text {
            font-family: 'Playfair Display', serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .hcard__body {
            padding: 10px 12px;
        }
        .hcard__name { font-size: 0.68rem; font-weight: 600; margin-bottom: 4px; }
        .hcard__caption { font-size: 0.62rem; color: var(--text-muted); line-height: 1.4; }

        /* Hero stats bar */
        .hero__statsbar {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding: 16px 0;
            margin-top: 40px;
        }
        .hstat {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-light);
        }
        .hstat span {
            font-family: 'Playfair Display', serif;
            font-size: 0.78rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* ═══════════════════════════
           TICKER
        ═══════════════════════════ */
        .ticker-section {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--cream-dark);
            overflow: hidden;
        }
        .ticker-label {
            text-align: center;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-light);
            padding: 10px 0 0;
        }
        .ticker { display: flex; width: max-content; animation: ticker 32s linear infinite; }
        .ticker:hover { animation-play-state: paused; }
        @keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
        .ticker__row { display: flex; align-items: center; }
        .ticker__item {
            padding: 12px 24px;
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--text-muted);
            white-space: nowrap;
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }
        .ticker__sep {
            color: var(--orange);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* Stats row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid var(--border);
        }
        .stat-block {
            padding: 48px 32px;
            text-align: center;
            border-right: 1px solid var(--border);
        }
        .stat-block:last-child { border-right: none; }
        .stat-block__num {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 600;
            color: var(--text);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-block__label {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        .stat-block__note {
            font-size: 0.68rem;
            color: var(--text-light);
            font-style: italic;
            margin-top: 6px;
            font-family: 'Playfair Display', serif;
        }

        /* ═══════════════════════════
           SECTIONS
        ═══════════════════════════ */
        .section { padding: 120px 0; }

        .s-eyebrow {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
        }

        .s-title {
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            text-align: center;
            letter-spacing: -0.02em;
        }

        .s-subtitle {
            font-size: 0.92rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 480px;
            margin: 14px auto 0;
            line-height: 1.75;
        }

        /* ═══════════════════════════
           HOW IT WORKS
        ═══════════════════════════ */
        .hiw-section { padding: 100px 0 0; }

        .hiw-header { margin-bottom: 0; }

        .hiw-steps { }

        .hiw-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 380px;
            border-top: 1px solid var(--border);
            position: relative;
        }

        .hiw-step__num {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-size: 10rem;
            font-weight: 700;
            color: rgba(26,18,8,0.04);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .hiw-step:nth-child(odd) .hiw-step__num {
            right: -20px; top: 20px;
        }
        .hiw-step:nth-child(even) .hiw-step__num {
            left: -20px; top: 20px;
        }

        .hiw-step__content {
            padding: 72px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hiw-step:nth-child(even) { direction: rtl; }
        .hiw-step:nth-child(even) .hiw-step__content { direction: ltr; }
        .hiw-step:nth-child(even) .hiw-step__visual { direction: ltr; }

        .hiw-step__eyebrow {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .hiw-step__title {
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            margin-bottom: 16px;
        }

        .hiw-step__desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 360px;
        }

        .hiw-step__visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background: rgba(255,255,255,0.3);
        }

        /* Step mockup cards */
        .smock {
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 14px;
            box-shadow: 0 8px 32px rgba(26,18,8,0.08);
            overflow: hidden;
            width: 100%;
            max-width: 320px;
        }
        .smock__header {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--card-bg);
        }
        .smock__title { font-size: 0.75rem; font-weight: 600; }
        .smock__tag {
            font-size: 0.62rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            background: var(--cream-dark);
            color: var(--text-muted);
        }
        .smock__body { padding: 20px 16px; }
        .smock__label {
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        .smock__field {
            border: 1px solid var(--border-md);
            border-radius: 7px;
            padding: 8px 12px;
            font-size: 0.78rem;
            color: var(--text);
            margin-bottom: 14px;
            background: var(--cream);
        }
        .smock__submit {
            width: 100%;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 7px;
            padding: 10px;
            font-family: 'Jost', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 4px;
        }

        /* Photo row */
        .smock__photo {
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-md);
            border-radius: 7px;
            padding: 8px 12px;
            margin-bottom: 14px;
        }
        .smock__thumb {
            width: 32px;
            height: 32px;
            border-radius: 4px;
            background: linear-gradient(135deg, var(--orange), #e07030);
            flex-shrink: 0;
        }
        .smock__photo-name { font-size: 0.72rem; color: var(--text); }
        .smock__photo-size { font-size: 0.62rem; color: var(--text-light); }

        /* Text proposals mock */
        .smock__status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.65rem;
            color: var(--orange);
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
            background: rgba(184,75,12,0.04);
        }
        .status-dot {
            width: 6px; height: 6px; background: var(--orange);
            border-radius: 50%; animation: blink 2s infinite;
        }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

        .proposal {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
        }
        .proposal:last-child { border-bottom: none; }
        .proposal__label {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
        }
        .proposal__label .chosen {
            background: var(--orange);
            color: white;
            font-size: 0.55rem;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .proposal__text {
            font-size: 0.72rem;
            color: var(--text);
            line-height: 1.5;
        }
        .proposal.active {
            background: rgba(184,75,12,0.04);
            border-radius: 0;
        }

        /* Publishing mock */
        .smock__pub-header {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
            font-size: 0.7rem;
            color: var(--text-muted);
            background: var(--card-bg);
        }
        .smock__pub-header span { color: var(--orange); font-weight: 500; }
        .pub-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
        }
        .pub-item:last-child { border-bottom: none; }
        .pub-icon {
            width: 28px; height: 28px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 700; color: white; flex-shrink: 0;
        }
        .pub-fb { background: #1877F2; }
        .pub-ig { background: linear-gradient(135deg,#833AB4,#FD1D1D,#FCB045); }
        .pub-tk { background: var(--border-md); }
        .pub-info { flex: 1; }
        .pub-name { font-size: 0.72rem; font-weight: 600; }
        .pub-sub { font-size: 0.62rem; color: var(--text-light); }
        .pub-badge {
            font-size: 0.58rem; font-weight: 700; padding: 3px 8px;
            border-radius: 4px; white-space: nowrap;
        }
        .pub-badge--wait { background: rgba(184,75,12,0.1); color: var(--orange); }
        .pub-badge--soon { background: var(--cream-dark); color: var(--text-light); border: 1px dashed var(--border-md); }

        /* ═══════════════════════════
           DEMO
        ═══════════════════════════ */
        .demo-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }
        .demo__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-top: 60px;
        }
        .dform {
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(26,18,8,0.06);
        }
        .dform__header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            background: var(--card-bg);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .dform__title { font-size: 0.8rem; font-weight: 600; }
        .dform__badge {
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-light);
        }
        .dform__body { padding: 24px 20px; }
        .flabel {
            display: block;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .finput {
            width: 100%;
            padding: 10px 13px;
            background: var(--cream);
            border: 1px solid var(--border-md);
            border-radius: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.85rem;
            color: var(--text);
            outline: none;
            transition: border-color 0.2s;
            margin-bottom: 16px;
        }
        .finput:focus { border-color: var(--orange); }
        .finput::placeholder { color: var(--text-light); }
        .finput-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .finput-file {
            width: 100%;
            background: var(--cream);
            border: 1.5px dashed var(--border-md);
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            color: var(--text-muted);
            font-size: 0.78rem;
            margin-bottom: 10px;
            transition: border-color 0.2s, color 0.2s;
        }
        .finput-file.has-photo {
            border-style: solid;
            border-color: rgba(184,75,12,0.4);
            color: var(--text);
        }
        .demo-photo-picker {
            display: none;
            flex-direction: row;
            gap: 8px;
            margin-bottom: 14px;
        }
        .demo-photo-picker.open { display: flex; }
        .demo-photo-thumb {
            flex: 1;
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s, opacity 0.2s;
            background: var(--cream-dark);
        }
        .demo-photo-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .demo-photo-thumb.selected { border-color: var(--orange); }
        .demo-photo-thumb:hover { opacity: 0.85; }
        .fsubmit {
            width: 100%;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 13px;
            font-family: 'Jost', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .fsubmit:hover { background: var(--orange-lt); }

        /* Preview */
        .dpreview {
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(26,18,8,0.06);
        }
        .dpreview__tabs {
            display: flex;
            gap: 0;
            border-bottom: 1px solid var(--border);
            background: var(--card-bg);
        }
        .dtab {
            flex: 1;
            padding: 12px 8px;
            border: none;
            background: transparent;
            font-family: 'Jost', sans-serif;
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--text-muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .dtab.active { color: var(--text); border-bottom-color: var(--orange); background: var(--white); }

        .dpanel { display: none; }
        .dpanel.active { display: block; }

        .dpreview__img {
            aspect-ratio: 1;
            width: 100%;
            background: linear-gradient(140deg, #C85A18 0%, #A03808 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dpreview__img.ig { aspect-ratio: 4/5; }

        .dpreview__body {
            padding: 16px;
        }
        .dpreview__name { font-size: 0.72rem; font-weight: 600; margin-bottom: 4px; }
        .dpreview__text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

        .dpreview__video {
            padding: 52px 24px;
            text-align: center;
        }
        .dpreview__video p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
        .soon-tag {
            display: inline-block;
            margin-top: 14px;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--orange);
            background: rgba(184,75,12,0.08);
            padding: 4px 12px;
            border-radius: 4px;
        }

        /* ═══════════════════════════
           PRICING
        ═══════════════════════════ */
        .pricing-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 760px;
            margin: 56px auto 0;
        }
        .pcard {
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 16px;
            padding: 36px 32px;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .pcard:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(26,18,8,0.1); }
        .pcard--pro {
            border-color: var(--orange);
        }
        .pcard__badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: white;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 100px;
            white-space: nowrap;
        }
        .pcard__name {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .pcard__price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }
        .pcard__amount {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            color: var(--text);
        }
        .pcard__period { font-size: 0.8rem; color: var(--text-muted); }
        .pcard__tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
        .pcard__features { list-style: none; margin-bottom: 32px; }
        .pcard__feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.83rem;
            border-bottom: 1px solid var(--border);
        }
        .pcard__feature:last-child { border-bottom: none; }
        .pf-check { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; margin-top: 3px; }
        .pcard__cta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 13px;
            border-radius: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }
        .pcard__cta--outline {
            background: transparent;
            border: 1.5px solid var(--border-md);
            color: var(--text);
        }
        .pcard__cta--outline:hover { background: var(--cream); }
        .pcard__cta--filled {
            background: var(--orange);
            color: white;
        }
        .pcard__cta--filled:hover { background: var(--orange-lt); }

        .pricing-footer {
            text-align: center;
            margin-top: 24px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .pricing-footer a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

        /* ═══════════════════════════
           FAQ
        ═══════════════════════════ */
        .faq-section {
            padding: 120px 0;
            border-top: 1px solid var(--border);
        }
        .faq-list { max-width: 680px; margin: 56px auto 0; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 0;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            color: var(--orange);
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            transition: opacity 0.2s;
        }
        .faq-q:hover { opacity: 0.75; }
        .faq-icon {
            flex-shrink: 0;
            width: 22px; height: 22px;
            border: 1.5px solid var(--border-md);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            transition: transform 0.3s, background 0.2s, border-color 0.2s;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--orange);
            border-color: var(--orange);
            color: white;
        }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-a__inner { padding-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

        /* ── FAQ CATÉGORIES ── */
        .faq-categories {
            max-width: 680px;
            margin: 56px auto 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-cat-card {
            background: var(--white);
            border: 1px solid var(--border-md);
            border-radius: 12px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .faq-cat-card:hover {
            box-shadow: 0 4px 20px rgba(26,18,8,0.08);
            border-color: rgba(184,75,12,0.25);
        }
        .faq-cat-content { display: flex; align-items: center; gap: 14px; }
        .faq-cat-icon { color: var(--orange); font-size: 0.9rem; }
        .faq-cat-title { font-size: 0.92rem; font-weight: 600; color: var(--text); }
        .faq-cat-count { font-size: 0.72rem; color: var(--text-light); }
        .faq-cat-plus {
            width: 22px; height: 22px;
            border: 1.5px solid var(--border-md);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }
        .faq-cat-card:hover .faq-cat-plus {
            background: var(--orange); border-color: var(--orange); color: white;
        }

        /* ── FAQ DÉTAIL ── */
        .faq-detail { max-width: 680px; margin: 56px auto 0; }
        .faq-back {
            background: none; border: none;
            font-family: 'Jost', sans-serif;
            font-size: 0.82rem; font-weight: 500;
            color: var(--text-muted);
            cursor: pointer; padding: 0; margin-bottom: 24px;
            display: inline-flex; align-items: center; gap: 4px;
            transition: color 0.2s;
        }
        .faq-back:hover { color: var(--text); }
        .faq-detail-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 600;
            color: var(--text); margin-bottom: 8px;
        }
        .faq-detail .faq-list { margin-top: 0; }

        /* ═══════════════════════════
           CTA FINAL
        ═══════════════════════════ */
        .cta-final {
            background: var(--orange);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-final::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 28px 28px;
        }
        .cta-final h2 {
            font-size: clamp(2rem, 5vw, 3.8rem);
            color: white;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-final p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 36px;
        }
        .cta-final__ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-final__btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--orange);
            background: white;
            border: none;
            border-radius: 7px;
            padding: 13px 28px;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.15s;
        }
        .cta-final__btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
        .cta-final__btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Jost', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.4);
            border-radius: 7px;
            padding: 13px 24px;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }
        .cta-final__btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: white; }
        .cta-final__note {
            margin-top: 24px;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
            font-style: italic;
            font-family: 'Playfair Display', serif;
        }

        /* ═══════════════════════════
           FOOTER
        ═══════════════════════════ */
        .footer {
            padding: 64px 0 40px;
            border-top: 1px solid var(--border);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        .footer__logo { margin-bottom: 14px; display: block; }
        .footer__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
        .footer__contact {
            margin-top: 16px;
            font-size: 0.78rem;
        }
        .footer__contact a { color: var(--orange); }
        .footer__contact p { color: var(--text-light); margin-bottom: 3px; }

        .footer__col h4 {
            font-family: 'Jost', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer__link { font-size: 0.83rem; color: var(--text-muted); transition: color 0.2s; }
        .footer__link:hover { color: var(--text); }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer__copy { font-size: 0.75rem; color: var(--text-light); }
        .footer__version {
            width: 28px; height: 28px;
            border: 1px solid var(--border-md);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.62rem;
            color: var(--text-light);
            cursor: default;
        }

        /* ═══════════════════════════
           REVEAL
        ═══════════════════════════ */
        .reveal {
            opacity: 0; transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }

        /* ═══════════════════════════
           NAVBAR — desktop only
        ═══════════════════════════ */
        @media (min-width: 901px) {
            .navbar__inner { position: static; }
            .navbar .logo {
                position: absolute;
                left: 24px;
                top: 50%;
                transform: translateY(-50%);
            }
            .nav-links { top: 50%; transform: translate(-50%, -50%); }
            .nav-actions {
                position: absolute;
                right: 24px;
                top: 50%;
                transform: translateY(-50%);
                margin-left: 0;
            }
        }

        /* ═══════════════════════════
           RESPONSIVE
        ═══════════════════════════ */
        @media (max-width: 900px) {
            .navbar__inner { flex-wrap: wrap; row-gap: 10px; }
            .logo { order: 1; }
            .nav-actions { order: 2; }
            .nav-links {
                display: flex;
                order: 3;
                flex-basis: 100%;
                position: static;
                left: auto;
                transform: none;
                justify-content: center;
            }
            .nav-actions .btn-cta { display: none; }
            .hero-cards { flex-wrap: wrap; }
            .hcard--tk { display: none; }
            .hiw-step { grid-template-columns: 1fr; min-height: auto; }
            .hiw-step:nth-child(even) { direction: ltr; }
            .hiw-step__content { padding: 40px 32px; }
            .hiw-step__visual { padding: 32px; }
            .demo__inner { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
            .footer__grid { grid-template-columns: 1fr 1fr; }
            .stats-row { grid-template-columns: 1fr; }
            .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
        }
        @media (max-width: 600px) {
            .navbar .container { padding: 0 16px; }
            .logo { font-size: 0.92rem; }
            .nav-actions { gap: 6px; }
            .btn-link { font-size: 0.72rem; }
            .btn-inscription { font-size: 0.6rem; padding: 5px 8px; }
            .nav-links { gap: 20px; }
            .nav-links a { font-size: 0.76rem; }
            .hero__ctas { flex-direction: column; align-items: center; }
            .cta-final__ctas { flex-direction: column; align-items: center; }
            .footer__grid { grid-template-columns: 1fr; }
            .hero__statsbar { flex-direction: column; gap: 10px; text-align: center; }
        }
