﻿*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #2E2520;
            background: #FFFFFF;
        }

        a {
            text-decoration: none;
        }

        /* === SHARED === */
        .highlight-word {
            background: rgba(0, 168, 150, 0.08);
            color: #00A896;
            padding: 0 0.35rem;
            border-radius: 4px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 400;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(139, 69, 19, 0.06);
            color: #8B4513;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.42rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 900;
            color: #2E2520;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .section-sub {
            font-size: 1.05rem;
            font-weight: 400;
            color: rgba(46, 37, 32, 0.6);
            line-height: 1.7;
        }

        .pill-button {
            background: #2E2520;
            color: #FFFFFF;
            padding: 0.85rem 1.75rem;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s;
        }

        .pill-button:hover {
            background: #8B4513;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(139, 69, 19, 0.2);
        }

        .pill-button-outline {
            background: transparent;
            color: #2E2520;
            padding: 0.85rem 1.75rem;
            border-radius: 30px;
            border: 1.5px solid rgba(46, 37, 32, 0.2);
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s;
        }

        .pill-button-outline:hover {
            border-color: #8B4513;
            color: #8B4513;
        }

        .text-link {
            color: #2E2520;
            font-size: 0.875rem;
            font-weight: 700;
            border-bottom: 1px solid rgba(46, 37, 32, 0.2);
            padding-bottom: 2px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }

        .text-link:hover {
            color: #8B4513;
            border-color: rgba(139, 69, 19, 0.4);
        }

        /* === NAV === */
        .premium-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(139, 69, 19, 0.08);
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo {
            font-size: 1.3rem;
            font-weight: 900;
            color: #2E2520;
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .header-logo em {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: #8B4513;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.1rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(46, 37, 32, 0.7);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 0.75rem;
            transition: color 0.2s;
            white-space: nowrap;
            cursor: pointer;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #8B4513;
        }

        .nav-link i {
            font-size: 0.58rem;
            opacity: 0.6;
            transition: transform 0.2s;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-6px);
            background: #FFFFFF;
            border: 1px solid rgba(139, 69, 19, 0.1);
            box-shadow: 0 20px 40px rgba(46, 37, 32, 0.08);
            border-radius: 8px;
            padding: 0.5rem 0;
            min-width: 215px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.22s;
            z-index: 200;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(46, 37, 32, 0.75);
            padding: 0.65rem 1.25rem;
            display: block;
            transition: all 0.18s;
        }

        .dropdown-link:hover {
            background: #FDFCFB;
            color: #8B4513;
        }

        .nav-sep {
            width: 1px;
            height: 20px;
            background: rgba(139, 69, 19, 0.12);
            margin: 0 0.5rem;
            flex-shrink: 0;
        }

        .cta-pill {
            background: #2E2520;
            color: #FFFFFF;
            padding: 0.62rem 1.3rem;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 600;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .cta-pill:hover {
            background: #8B4513;
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #2E2520;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.4rem;
        }

        .mobile-menu {
            display: none;
            background: #FFFFFF;
            border-top: 1px solid rgba(139, 69, 19, 0.07);
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu-inner {
            padding: 0.75rem 0 1.5rem;
        }

        .mobile-link {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(46, 37, 32, 0.75);
            padding: 0.7rem 1.5rem;
        }

        .mobile-link:hover,
        .mobile-link.active {
            color: #8B4513;
        }

        .mobile-section-label {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(46, 37, 32, 0.3);
            padding: 1rem 1.5rem 0.25rem;
        }

        .mobile-sub-link {
            display: block;
            font-size: 0.875rem;
            color: rgba(46, 37, 32, 0.65);
            padding: 0.5rem 2.25rem;
        }

        .mobile-sub-link:hover {
            color: #8B4513;
        }

        .mobile-divider {
            height: 1px;
            background: rgba(139, 69, 19, 0.07);
            margin: 0.5rem 1.5rem;
        }

        .mobile-cta-wrap {
            padding: 1.25rem 1.5rem 0;
        }

        .mobile-cta {
            display: block;
            text-align: center;
            background: #2E2520;
            color: #FFFFFF;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.85rem;
            border-radius: 30px;
            transition: background 0.25s;
        }

        .mobile-cta:hover {
            background: #8B4513;
        }

        @media (max-width: 900px) {

            .nav-menu,
            .nav-sep,
            .cta-pill {
                display: none !important;
            }

            .mobile-toggle {
                display: block;
            }
        }

        @media (min-width: 901px) {
            .mobile-menu {
                display: none !important;
            }
        }

        /* === 1. HERO === */
        .hero {
            padding: 10rem 1.5rem 7rem;
            background: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(46, 37, 32, 0.05) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            z-index: 0;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-left {}

        .hero-headline {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 900;
            color: #2E2520;
            line-height: 1;
            letter-spacing: -0.04em;
            margin-bottom: 1.75rem;
        }

        .hero-sub {
            font-size: 1.05rem;
            color: rgba(46, 37, 32, 0.6);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 460px;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }

        .hero-stat {
            padding: 1.75rem 2rem;
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        }

        .hero-stat:last-child {
            border-bottom: none;
        }

        .hero-stat-num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #2E2520;
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .hero-stat-num span {
            color: #00A896;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(46, 37, 32, 0.55);
            margin-top: 0.3rem;
            line-height: 1.5;
        }

        /* === 2. PROCESSUS === */
        .process-section {
            padding: 8rem 0;
            background: #FDFCFB;
        }

        .process-header {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 5rem;
        }

        .process-header .section-sub {
            margin: 1.25rem auto 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 2.2rem;
            left: calc(12.5% + 1rem);
            right: calc(12.5% + 1rem);
            height: 1px;
            background: rgba(139, 69, 19, 0.15);
            z-index: 0;
        }

        .process-step {
            padding: 0 1.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid rgba(139, 69, 19, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #8B4513;
            margin: 0 auto 1.5rem;
        }

        .process-step.active .process-num {
            background: #2E2520;
            color: #FFFFFF;
            border-color: #2E2520;
        }

        .process-days {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(139, 69, 19, 0.4);
            margin-bottom: 0.6rem;
        }

        .process-step h3 {
            font-size: 0.975rem;
            font-weight: 700;
            color: #2E2520;
            margin-bottom: 0.5rem;
        }

        .process-step p {
            font-size: 0.82rem;
            color: rgba(46, 37, 32, 0.55);
            line-height: 1.6;
        }

        /* === 3. CE QUI EST INCLUS === */
        .includes-section {
            padding: 8rem 0;
            background: #FFFFFF;
        }

        .includes-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .includes-left {}

        .includes-left .section-sub {
            margin-top: 1.25rem;
            max-width: 420px;
        }

        .includes-left .pill-button {
            margin-top: 2.5rem;
        }

        .includes-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid rgba(139, 69, 19, 0.1);
        }

        .include-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
            transition: background 0.2s;
        }

        .include-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 168, 150, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00A896;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .include-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #2E2520;
            margin-bottom: 0.25rem;
        }

        .include-text p {
            font-size: 0.85rem;
            color: rgba(46, 37, 32, 0.6);
            line-height: 1.55;
        }

        /* === 4. POURQUOI NOUS === */
        .why-section {
            padding: 8rem 0;
            background: #2E2520;
        }

        .why-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 5rem;
        }

        .why-header .section-badge {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.5);
        }

        .why-header .section-title {
            color: #FFFFFF;
        }

        .why-header .section-sub {
            color: rgba(255, 255, 255, 0.45);
            margin-top: 1.25rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .why-item {
            padding: 2.5rem 2.5rem;
        }

        .why-item:nth-child(odd) {
            border-right: 1px solid rgba(255, 255, 255, 0.07);
        }

        .why-item:not(:nth-last-child(-n+2)) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .why-icon {
            font-size: 1.2rem;
            color: #00A896;
            margin-bottom: 1.25rem;
        }

        .why-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.65rem;
        }

        .why-item p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.65;
        }

        .why-vs {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(139, 69, 19, 0.6);
            background: rgba(139, 69, 19, 0.12);
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            margin-top: 0.75rem;
        }

        /* === 5. RÉALISATIONS === */
        .portfolio-section {
            padding: 8rem 0;
            background: #FDFCFB;
        }

        .portfolio-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 3.5rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .porto-sub {
            margin-bottom: 4rem;
        }

        .porto-sub:last-child {
            margin-bottom: 0;
        }

        .porto-sub-head {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .porto-sub-count {
            font-size: 0.78rem;
            color: rgba(46, 37, 32, 0.38);
            font-weight: 500;
        }

        .porto-real {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .porto-concepts {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .portfolio-card {
            background: #FFFFFF;
            border: 1px solid rgba(139, 69, 19, 0.1);
            overflow: hidden;
            transition: all 0.3s;
        }

        .portfolio-card:hover {
            box-shadow: 0 12px 40px rgba(46, 37, 32, 0.08);
            transform: translateY(-2px);
        }

        .portfolio-card-img {
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 69, 19, 0.04);
        }

        .porto-real .portfolio-card-img {
            height: 250px;
        }

        .porto-concepts .portfolio-card-img {
            height: 165px;
        }

        .portfolio-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s;
        }

        .portfolio-card:hover .portfolio-card-img img {
            transform: scale(1.04);
        }

        .portfolio-card-body {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 1rem;
        }

        .porto-concepts .portfolio-card-body {
            padding: 1rem;
        }

        .portfolio-card-info {}

        .portfolio-card-tag {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(139, 69, 19, 0.5);
            margin-bottom: 0.4rem;
        }

        .portfolio-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #2E2520;
        }

        .porto-concepts .portfolio-card-body h3 {
            font-size: 0.88rem;
        }

        .portfolio-arrow {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(139, 69, 19, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8B4513;
            font-size: 0.72rem;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .portfolio-card:hover .portfolio-arrow {
            background: #8B4513;
            color: #FFFFFF;
            border-color: #8B4513;
        }

        /* badges header */
        .porto-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 0.28rem 0.65rem;
            border-radius: 30px;
        }

        .porto-badge.online {
            background: rgba(0, 168, 150, 0.12);
            color: #00A896;
        }

        .porto-badge.concept {
            background: rgba(139, 69, 19, 0.1);
            color: #8B4513;
        }

        /* badges sur image */
        .porto-img-badge {
            position: absolute;
            top: 0.65rem;
            left: 0.65rem;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 0.25rem 0.6rem;
            border-radius: 30px;
        }

        .porto-img-badge.online {
            background: rgba(0, 168, 150, 0.14);
            color: #00A896;
        }

        .porto-img-badge.concept {
            background: rgba(139, 69, 19, 0.1);
            color: #8B4513;
        }

        /* concept wireframe */
        .portfolio-concept {
            background: linear-gradient(140deg, #F8F4EF 0%, #EDE6DB 100%);
        }

        .portfolio-concept-alt {
            background: linear-gradient(140deg, #F2EDE8 0%, #E8E0D6 100%);
        }

        .cv-wrap {
            width: 72%;
            pointer-events: none;
        }

        .cv-bar {
            height: 12px;
            border-radius: 3px;
            margin-bottom: 8px;
            background: rgba(0, 168, 150, 0.18);
        }

        .cv-bar.br {
            background: rgba(139, 69, 19, 0.14);
        }

        .cv-line {
            height: 5px;
            background: rgba(46, 37, 32, 0.09);
            border-radius: 30px;
            margin-bottom: 5px;
        }

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

        .cv-line.w50 {
            width: 50%;
        }

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

        .cv-line.w35 {
            width: 35%;
        }

        .cv-line.w45 {
            width: 45%;
        }

        .cv-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
            margin-top: 6px;
        }

        .cv-block {
            height: 25px;
            border-radius: 3px;
            background: rgba(0, 168, 150, 0.09);
        }

        .cv-block.br {
            background: rgba(139, 69, 19, 0.09);
        }

        /* === 6. TARIFS === */
        .pricing-section {
            padding: 8rem 0;
            background: #FFFFFF;
        }

        .pricing-header {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 5rem;
        }

        .pricing-header .section-sub {
            margin: 1.25rem auto 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid rgba(139, 69, 19, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .pricing-card {
            padding: 2.5rem 2rem;
            border-right: 1px solid rgba(139, 69, 19, 0.1);
            position: relative;
        }

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

        .pricing-card.featured {
            background: #2E2520;
        }

        .pricing-recommended {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: #00A896;
            color: #FFFFFF;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.3rem 0.75rem;
            border-radius: 0 0 6px 6px;
        }

        .pricing-name {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(139, 69, 19, 0.45);
            margin-bottom: 1rem;
        }

        .pricing-card.featured .pricing-name {
            color: rgba(255, 255, 255, 0.35);
        }

        .pricing-price {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 900;
            color: #2E2520;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 0.35rem;
        }

        .pricing-card.featured .pricing-price {
            color: #FFFFFF;
        }

        .pricing-price small {
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0;
        }

        .pricing-desc {
            font-size: 0.85rem;
            color: rgba(46, 37, 32, 0.5);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(255, 255, 255, 0.4);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.875rem;
            color: rgba(46, 37, 32, 0.72);
            line-height: 1.45;
        }

        .pricing-card.featured .pricing-feature {
            color: rgba(255, 255, 255, 0.75);
        }

        .pricing-feature-icon {
            color: #00A896;
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 0.72rem;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 0.8rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.25s;
        }

        .pricing-cta-dark {
            background: #2E2520;
            color: #FFFFFF;
        }

        .pricing-cta-dark:hover {
            background: #8B4513;
        }

        .pricing-cta-light {
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-cta-light:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .pricing-note {
            text-align: center;
            font-size: 0.82rem;
            color: rgba(46, 37, 32, 0.4);
            margin-top: 2rem;
        }

        /* === 7. CTA FINAL === */
        .cta-section {
            padding: 8rem 0;
            background: #FDFCFB;
            border-top: 1px solid rgba(139, 69, 19, 0.08);
        }

        .cta-inner {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-headline {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            color: #2E2520;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.25rem;
        }

        .cta-sub {
            font-size: 1.05rem;
            color: rgba(46, 37, 32, 0.55);
            line-height: 1.7;
            margin-bottom: 2.75rem;
        }

        .cta-group {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .cta-trust {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .cta-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: rgba(46, 37, 32, 0.4);
        }

        .cta-trust-item i {
            color: #00A896;
            font-size: 0.72rem;
        }

        /* === FOOTER === */
        .footer {
            padding: 3rem 0;
            background: #2E2520;
        }

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

        .footer-logo {
            font-size: 1rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: -0.03em;
        }

        .footer-logo em {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: rgba(139, 69, 19, 0.6);
        }

        .footer-copy {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.22);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.28);
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.65);
        }

        /* === RESPONSIVE === */
        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-right {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-stat {
                border-bottom: none;
            }

            .hero-stat:not(:last-child) {
                border-right: 1px solid rgba(139, 69, 19, 0.1);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .process-steps::before {
                display: none;
            }

            .includes-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .why-item:nth-child(odd) {
                border-right: none;
            }

            .why-item:not(:last-child) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            }

            .porto-real {
                grid-template-columns: 1fr 1fr;
            }

            .porto-concepts {
                grid-template-columns: 1fr 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                border: none;
                gap: 1rem;
            }

            .pricing-card {
                border: 1px solid rgba(139, 69, 19, 0.1);
                border-radius: 4px;
            }

            .pricing-card.featured {
                border-color: transparent;
            }

            .portfolio-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 600px) {
            .hero-right {
                grid-template-columns: 1fr;
            }

            .hero-stat {
                border-right: none !important;
                border-bottom: 1px solid rgba(139, 69, 19, 0.1) !important;
            }

            .hero-stat:last-child {
                border-bottom: none !important;
            }

            .cta-trust {
                flex-direction: column;
                gap: 0.75rem;
            }

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


/* ======================================== */


.figma-workshop-section {
            background-color: #FFFFFF;
            padding: 8rem 0;
            font-family: 'Inter', sans-serif;
            color: #2E2520;
            border-top: 1px solid rgba(139, 69, 19, 0.1);
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        }

        .figma-workshop-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 5rem;
            align-items: center;
        }

        /* Le plan de travail Figma infini simulé */
        .figma-infinite-canvas {
            background-color: #F3F3F3;
            /* Gris technique Figma */
            background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
            background-size: 24px 24px;
            /* Grille de points Figma */
            border: 1px solid rgba(46, 37, 32, 0.15);
            border-radius: 16px;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            min-height: 480px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Le composant de ta maquette au centre */
        .figma-artboard {
            width: 100%;
            max-width: 380px;
            background: #FFFFFF;
            border-radius: 4px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        /* Le nom de la Frame Figma en haut à gauche */
        .frame-title-tag {
            position: absolute;
            top: -24px;
            left: 0;
            font-size: 11px;
            font-weight: 600;
            color: #00A896;
            user-select: none;
        }

        /* Les curseurs multi-utilisateurs en mouvement */
        .live-cursor {
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 2px;
            pointer-events: none;
            z-index: 10;
        }

        .live-cursor .arrow {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 12px solid var(--cursor-color);
            transform: rotate(-45deg);
        }

        .live-cursor .label {
            background: var(--cursor-color);
            color: #FFFFFF;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 2px 8px 8px 8px;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Positionnement et animations distinctes des curseurs */
        .cursor-designer {
            --cursor-color: #8B4513;
            top: 20%;
            left: 15%;
            animation: path_designer 6s infinite ease-in-out;
        }

        .cursor-client {
            --cursor-color: #00A896;
            top: 65%;
            right: 15%;
            animation: path_client 7s infinite ease-in-out;
        }

        /* Les lignes fines d'annotation Figma */
        .figma-measure-line {
            position: absolute;
            border: 1px dashed #8B4513;
            color: #8B4513;
            font-size: 9px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Animations des trajectoires des curseurs */
        @keyframes path_designer {
            0% {
                transform: translate(0, 0);
            }

            33% {
                transform: translate(40px, -20px);
            }

            66% {
                transform: translate(20px, 50px);
            }

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

        @keyframes path_client {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-60px, -40px);
            }

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

        @media (max-width: 992px) {
            .figma-workshop-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }


/* ======================================== */


.masterpiece-section {
        background-color: #FFFFFF;
        padding: 8rem 0;
        font-family: 'Inter', sans-serif;
        color: #2E2520;
    }

    /* Le conteneur du slider */
    .slider-comparison-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        height: 550px;
        margin: 4rem auto 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 40px 80px rgba(46, 37, 32, 0.12);
        border: 1px solid rgba(139, 69, 19, 0.1);
        user-select: none;
    }

    /* Style global pour les deux panneaux d'images */
    .slider-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    /* Image 1 : La Maquette Figma (Arrière-plan fixe) */
    .panel-figma-blueprint {
        background-image: url('/assets/img/residArt.png');
    }

    /* Image 2 : Le Site Codé (Devant, dont la largeur va varier) */
    .panel-live-pixel {
        background-image: url('/assets/img/maquetteresid.png');
        width: 50%; /* Largeur de départ (50%) */
        z-index: 2;
    }

    /* La barre de séparation que l'on glisse */
    .slider-handle {
        position: absolute;
        top: 0;
        left: 50%; /* Alignée avec la largeur de départ */
        width: 4px;
        height: 100%;
        background-color: #8B4513;
        cursor: ew-resize;
        z-index: 3;
        transform: translateX(-50%);
    }

    /* Le bouton central sur la barre */
    .slider-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background-color: #2E2520;
        border: 2px solid #8B4513;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFFFFF;
        font-size: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        pointer-events: none; /* Laisse le clic passer à la barre */
    }

    /* Badges indicatifs fixes dans les coins */
    .panel-indicator {
        position: absolute;
        bottom: 1.5rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 6px 14px;
        border-radius: 4px;
        backdrop-filter: blur(10px);
        z-index: 4;
    }

    .indicator-figma {
        left: 1.5rem;
        color: #8B4513;
        background: rgba(243, 243, 243, 0.9);
        border: 1px solid rgba(139, 69, 19, 0.2);
    }

    .indicator-live {
        right: 1.5rem;
        color: #00A896;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 168, 150, 0.2);
    }

    @media (max-width: 768px) {
        .slider-comparison-container {
            height: 380px;
        }
    }

/* ======================================== */
/* === UTILITY CLASSES (converted from HTML inline styles) === */

/* Nav dropdown — active page link */
.dropdown-link--current { color: #8B4513; font-weight: 700; }

/* Nav dropdown — small SEO sub-links */
.dd-sep { height: 1px; background: rgba(139,69,19,0.08); margin: 0.35rem 1.25rem; list-style: none; }
.dd-small { font-size: 0.82rem; color: rgba(46,37,32,0.5); padding: 0.5rem 1.25rem; }

/* Mobile menu — active link on current page */
.mobile-sub-link--active { color: #8B4513; font-weight: 600; }

/* Mobile menu — solutions sub-label */
.mobile-section-label--sub {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(46,37,32,0.3);
    padding: 0.6rem 2.25rem 0.25rem;
}

/* Figma section header max-width */
.figma-header { max-width: 650px; }

/* Wireframe placeholder box */
.wireframe-placeholder {
    height: 120px;
    background: #FBF9F6;
    border: 1px dashed rgba(139,69,19,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(46,37,32,0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Project legend below slider */
.project-name-sm {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    color: #2E2520;
}

.project-cta-btn {
    display: inline-block;
    color: #ffffff;
    background-color: #2E2520;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s;
}
.project-cta-btn:hover { background-color: #8B4513; }

/* ============================================================
   DARK MODE — creation-site-vitrine
   Activé par html[data-theme="dark"]
   ============================================================ */

/* ── TOGGLE BUTTON ── */
.theme-toggle {
    background: none;
    border: 1px solid rgba(46, 37, 32, 0.12);
    color: rgba(46, 37, 32, 0.5);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.22s ease;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: #8B4513;
    color: #8B4513;
    background: rgba(139, 69, 19, 0.04);
}

/* ── SMOOTH TRANSITIONS ── */
body, .premium-header, .hero, .process-section, .includes-section,
.why-section, .portfolio-section, .pricing-section, .cta-section,
.footer, .figma-workshop-section, .masterpiece-section,
.dropdown-menu, .mobile-menu, .portfolio-card, .pricing-card,
.include-item, .process-num {
    transition: background-color 0.25s ease, background 0.25s ease,
                border-color 0.25s ease, color 0.2s ease;
}

html[data-theme="dark"] body { background: #0C0B0A; color: #EDE8DF; }

/* ── NAV ── */
html[data-theme="dark"] .premium-header {
    background: rgba(12, 11, 10, 0.97);
    border-bottom-color: rgba(237, 232, 223, 0.07);
}
html[data-theme="dark"] .header-logo { color: #EDE8DF; }
html[data-theme="dark"] .header-logo em { color: #C07840; }
html[data-theme="dark"] .nav-link { color: rgba(237, 232, 223, 0.5); }
html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active { color: #C07840; }
html[data-theme="dark"] .nav-sep { background: rgba(237, 232, 223, 0.1); }
html[data-theme="dark"] .dropdown-menu {
    background: #1C1915;
    border-color: rgba(237, 232, 223, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .dropdown-link { color: rgba(237, 232, 223, 0.55); }
html[data-theme="dark"] .dropdown-link:hover,
html[data-theme="dark"] .dropdown-link--current { color: #C07840; background: #242019; }
html[data-theme="dark"] .dd-sep { background: rgba(237, 232, 223, 0.07); }
html[data-theme="dark"] .dd-small { color: rgba(237, 232, 223, 0.35); }
html[data-theme="dark"] .dd-small:hover { color: #C07840; background: #242019; }
html[data-theme="dark"] .cta-pill { background: #EDE8DF; color: #0C0B0A; }
html[data-theme="dark"] .cta-pill:hover { background: #C07840; color: #FFF; }
html[data-theme="dark"] .mobile-toggle { color: #EDE8DF; }
html[data-theme="dark"] .mobile-menu { background: #0C0B0A; border-color: rgba(237, 232, 223, 0.06); }
html[data-theme="dark"] .mobile-link { color: rgba(237, 232, 223, 0.65); }
html[data-theme="dark"] .mobile-link:hover,
html[data-theme="dark"] .mobile-link.active { color: #C07840; }
html[data-theme="dark"] .mobile-section-label,
html[data-theme="dark"] .mobile-section-label--sub { color: rgba(237, 232, 223, 0.25); }
html[data-theme="dark"] .mobile-sub-link { color: rgba(237, 232, 223, 0.5); }
html[data-theme="dark"] .mobile-sub-link:hover,
html[data-theme="dark"] .mobile-sub-link--active { color: #C07840; }
html[data-theme="dark"] .mobile-divider { background: rgba(237, 232, 223, 0.07); }
html[data-theme="dark"] .mobile-cta { background: #EDE8DF; color: #0C0B0A; }
html[data-theme="dark"] .mobile-cta:hover { background: #C07840; color: #FFF; }
html[data-theme="dark"] .theme-toggle {
    border-color: rgba(237, 232, 223, 0.15);
    color: rgba(237, 232, 223, 0.4);
}
html[data-theme="dark"] .theme-toggle:hover {
    border-color: #C07840;
    color: #C07840;
    background: rgba(192, 120, 64, 0.08);
}

/* ── SHARED COMPONENTS ── */
html[data-theme="dark"] .section-badge {
    background: rgba(192, 120, 64, 0.08);
    color: #C07840;
}
html[data-theme="dark"] .section-title { color: #EDE8DF; }
html[data-theme="dark"] .section-sub { color: rgba(237, 232, 223, 0.42); }
html[data-theme="dark"] .highlight-word {
    background: rgba(0, 168, 150, 0.1);
    color: #00A896;
}
html[data-theme="dark"] .pill-button { background: #EDE8DF; color: #0C0B0A; }
html[data-theme="dark"] .pill-button:hover { background: #C07840; color: #FFF; }
html[data-theme="dark"] .text-link { color: rgba(237, 232, 223, 0.7); border-color: rgba(237, 232, 223, 0.18); }
html[data-theme="dark"] .text-link:hover { color: #C07840; border-color: rgba(192, 120, 64, 0.4); }

/* ── HERO ── */
html[data-theme="dark"] .hero { background: #0C0B0A; }
html[data-theme="dark"] .hero::before { background-image: radial-gradient(rgba(237, 232, 223, 0.04) 1px, transparent 1px); }
html[data-theme="dark"] .hero-headline { color: #EDE8DF; }
html[data-theme="dark"] .hero-sub { color: rgba(237, 232, 223, 0.5); }
html[data-theme="dark"] .hero-right {
    border-color: rgba(237, 232, 223, 0.08);
}
html[data-theme="dark"] .hero-stat { border-bottom-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .hero-stat:not(:last-child) { border-right-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .hero-stat-num { color: #EDE8DF; }
html[data-theme="dark"] .hero-stat-label { color: rgba(237, 232, 223, 0.45); }

/* ── PROCESS ── */
html[data-theme="dark"] .process-section { background: #131110; }
html[data-theme="dark"] .process-steps::before { background: rgba(237, 232, 223, 0.1); }
html[data-theme="dark"] .process-num {
    background: #1C1915;
    border-color: rgba(237, 232, 223, 0.1);
    color: #C07840;
}
html[data-theme="dark"] .process-step.active .process-num {
    background: #EDE8DF;
    color: #0C0B0A;
    border-color: #EDE8DF;
}
html[data-theme="dark"] .process-days { color: rgba(192, 120, 64, 0.5); }
html[data-theme="dark"] .process-step h3 { color: #EDE8DF; }
html[data-theme="dark"] .process-step p { color: rgba(237, 232, 223, 0.45); }

/* ── CE QUI EST INCLUS ── */
html[data-theme="dark"] .includes-section { background: #0C0B0A; }
html[data-theme="dark"] .includes-list { border-top-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .include-item { border-bottom-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .include-text h4 { color: #EDE8DF; }
html[data-theme="dark"] .include-text p { color: rgba(237, 232, 223, 0.5); }

/* ── POURQUOI NOUS (dark section → slightly different dark) ── */
html[data-theme="dark"] .why-section { background: #131110; }
html[data-theme="dark"] .why-header .section-badge {
    background: rgba(237, 232, 223, 0.06);
    color: rgba(237, 232, 223, 0.45);
}
html[data-theme="dark"] .why-grid {
    border-top-color: rgba(237, 232, 223, 0.07);
    border-bottom-color: rgba(237, 232, 223, 0.07);
}
html[data-theme="dark"] .why-item:nth-child(odd) { border-right-color: rgba(237, 232, 223, 0.07); }
html[data-theme="dark"] .why-item:not(:nth-last-child(-n+2)) { border-bottom-color: rgba(237, 232, 223, 0.07); }
html[data-theme="dark"] .why-item:not(:last-child) { border-bottom-color: rgba(237, 232, 223, 0.07); }
html[data-theme="dark"] .why-vs {
    color: rgba(192, 120, 64, 0.7);
    background: rgba(192, 120, 64, 0.1);
}

/* ── RÉALISATIONS ── */
html[data-theme="dark"] .portfolio-section { background: #131110; }
html[data-theme="dark"] .porto-sub-count { color: rgba(237, 232, 223, 0.3); }
html[data-theme="dark"] .portfolio-card {
    background: #1C1915;
    border-color: rgba(237, 232, 223, 0.08);
}
html[data-theme="dark"] .portfolio-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); }
html[data-theme="dark"] .portfolio-card-img { background: rgba(237, 232, 223, 0.03); }
html[data-theme="dark"] .portfolio-card-tag { color: rgba(192, 120, 64, 0.6); }
html[data-theme="dark"] .portfolio-card-body h3 { color: #EDE8DF; }
html[data-theme="dark"] .portfolio-arrow {
    border-color: rgba(237, 232, 223, 0.1);
    color: rgba(237, 232, 223, 0.5);
}
html[data-theme="dark"] .portfolio-card:hover .portfolio-arrow { background: #C07840; color: #FFF; border-color: #C07840; }

/* ── TARIFS ── */
html[data-theme="dark"] .pricing-section { background: #0C0B0A; }
html[data-theme="dark"] .pricing-grid { border-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .pricing-card {
    border-right-color: rgba(237, 232, 223, 0.08);
    border-color: rgba(237, 232, 223, 0.08);
}
html[data-theme="dark"] .pricing-card.featured { background: #1C1915; }
html[data-theme="dark"] .pricing-name { color: rgba(192, 120, 64, 0.55); }
html[data-theme="dark"] .pricing-price { color: #EDE8DF; }
html[data-theme="dark"] .pricing-desc { color: rgba(237, 232, 223, 0.45); }
html[data-theme="dark"] .pricing-feature { color: rgba(237, 232, 223, 0.65); }
html[data-theme="dark"] .pricing-cta-dark { background: #EDE8DF; color: #0C0B0A; }
html[data-theme="dark"] .pricing-cta-dark:hover { background: #C07840; color: #FFF; }
html[data-theme="dark"] .pricing-note { color: rgba(237, 232, 223, 0.3); }

/* ── CTA FINAL ── */
html[data-theme="dark"] .cta-section { background: #131110; border-top-color: rgba(237, 232, 223, 0.05); }
html[data-theme="dark"] .cta-headline { color: #EDE8DF; }
html[data-theme="dark"] .cta-sub { color: rgba(237, 232, 223, 0.45); }
html[data-theme="dark"] .cta-trust-item { color: rgba(237, 232, 223, 0.35); }

/* ── FIGMA WORKSHOP ── */
html[data-theme="dark"] .figma-workshop-section {
    background: #0C0B0A;
    border-top-color: rgba(237, 232, 223, 0.06);
    border-bottom-color: rgba(237, 232, 223, 0.06);
}
html[data-theme="dark"] .figma-infinite-canvas {
    background-color: #1C1915;
    background-image: radial-gradient(rgba(237, 232, 223, 0.06) 1px, transparent 1px);
    border-color: rgba(237, 232, 223, 0.08);
}
html[data-theme="dark"] .figma-artboard { background: #131110; border-color: rgba(237, 232, 223, 0.06); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }

/* ── MASTERPIECE / SLIDER ── */
html[data-theme="dark"] .masterpiece-section { background: #0C0B0A; }
html[data-theme="dark"] .slider-comparison-container { border-color: rgba(237, 232, 223, 0.08); }
html[data-theme="dark"] .project-name-sm { color: #EDE8DF; }
html[data-theme="dark"] .project-cta-btn { background: #EDE8DF; color: #0C0B0A; }
html[data-theme="dark"] .project-cta-btn:hover { background: #C07840; color: #FFF; }
html[data-theme="dark"] .wireframe-placeholder {
    background: #1C1915;
    border-color: rgba(237, 232, 223, 0.08);
    color: rgba(237, 232, 223, 0.25);
}

/* ── FOOTER ── */
html[data-theme="dark"] .footer { background: #080706; }
html[data-theme="dark"] .footer-logo { color: rgba(237, 232, 223, 0.6); }
html[data-theme="dark"] .footer-logo em { color: rgba(192, 120, 64, 0.6); }
html[data-theme="dark"] .footer-copy { color: rgba(237, 232, 223, 0.18); }
html[data-theme="dark"] .footer-links a { color: rgba(237, 232, 223, 0.25); }
html[data-theme="dark"] .footer-links a:hover { color: rgba(237, 232, 223, 0.65); }
