/* ══════════════════════════════════════════
   CSS VARIABLES & RESET
   ══════════════════════════════════════════ */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --dark: #1a1a1a;
    --dark-mid: #222222;
    --grey: #2a2a2a;
    --grey-light: #888888;
    --white: #f5f5f0;
    --white-dim: #cccccc;
    --gold: #4a8dc9;
    --gold-light: #6bb0e8;
    --gold-dark: #2e6a9e;
    --gold-glow: rgba(74, 141, 201, 0.15);
    --blue-metal: #3a7bbf;
    --blue-light: #5a9de0;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--black);
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('images/sponge-cursor.svg') 16 16, auto;
}

a, button, [onclick] {
    cursor: url('images/sponge-cursor.svg') 16 16, pointer;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════════════════
   FOAM INTRO OVERLAY
   ══════════════════════════════════════════ */
.foam-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: auto;
    transition: opacity 0.8s ease;
}

.foam-overlay.done {
    opacity: 0;
    pointer-events: none;
}

.foam-overlay canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.foam-overlay .foam-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    pointer-events: none;
    animation: foamTextPulse 2.5s ease-in-out infinite;
}

.foam-text-desktop,
.foam-text-mobile {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(10, 30, 60, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 14px 32px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.foam-text-mobile { display: none; }

@media (max-width: 768px) {
    .foam-text-desktop { display: none; }
    .foam-text-mobile { display: inline-block; }
    .foam-text-desktop, .foam-text-mobile { font-size: 0.9rem; padding: 12px 24px; }
}

@keyframes foamTextPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.03); }
}

.foam-skip {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 3;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10, 30, 60, 0.7);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.foam-skip:hover {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(10, 30, 60, 0.9);
}

@media (max-width: 768px) {
    .foam-skip { bottom: 100px; right: 16px; }
}

/* Body locked during foam intro */
body.foam-active {
    overflow: hidden;
}

/* Custom cursor during foam */
body.foam-active {
    cursor: none !important;
}
body.foam-active .nav,
body.foam-active .whatsapp-float,
body.foam-active .sticky-cta,
body.foam-active .cookie-banner {
    z-index: 0 !important;
    pointer-events: none !important;
}
body.foam-active .foam-overlay {
    cursor: none;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 141, 201, 0.2);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.82rem;
    color: var(--grey-light);
    line-height: 1.6;
    flex: 1;
}

.cookie-content p a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-accept {
    padding: 10px 28px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner { padding: 16px; }
    .cookie-accept { width: 100%; }
    .cookie-banner.visible { transform: translateY(0); }
}

/* ══════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════ */
.legal-content {
    padding: 40px 0 120px;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.legal-section p {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--gold-light);
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-section ul li {
    font-size: 0.88rem;
    color: var(--white-dim);
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

.legal-update {
    font-size: 0.8rem;
    color: var(--grey-light);
    font-style: italic;
    margin-top: 40px;
    opacity: 0.7;
}

/* Footer legal links */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-legal a {
    font-size: 0.7rem;
    color: var(--grey-light);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey-light);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(74, 141, 201, 0.1);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white-dim);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.75rem !important;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        background: rgb(10, 10, 10);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; }
    .nav-hamburger { display: flex; z-index: 10000; position: relative; }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(74, 141, 201, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(58, 123, 191, 0.04) 0%, transparent 60%),
        var(--black);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 141, 201, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 141, 201, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-noise {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-logo-wrapper {
    margin-bottom: 48px;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 60px rgba(58, 123, 191, 0.25),
        0 0 120px rgba(58, 123, 191, 0.1);
    overflow: hidden;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-metal) 50%, var(--gold) 100%);
    z-index: -1;
    opacity: 0.5;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-logo-text {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(74, 141, 201, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.4s both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 12px;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.5s both;
}

.hero h1 .line {
    display: block;
}

.hero h1 .gold {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-light);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.65s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 141, 201, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey-light);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeUp 1s var(--ease-out-expo) 1.2s both;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════ */
.services {
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.services-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Formulas grid (3 columns) */
.formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .formulas-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
}

.formula-card {
    background: linear-gradient(160deg, var(--dark) 0%, var(--black-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.formula-card:hover {
    border-color: rgba(74, 141, 201, 0.2);
    transform: translateY(-4px);
}

.formula-card.formula-featured {
    background: linear-gradient(165deg, rgba(74, 141, 201, 0.08) 0%, var(--dark) 40%);
    border-color: rgba(74, 141, 201, 0.3);
}

.formula-card.formula-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.formula-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.formula-price-range {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.formula-desc {
    font-size: 0.85rem;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.formula-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    margin-bottom: 24px;
}

.formula-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.4;
}

.formula-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.formula-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s var(--ease-out-expo);
    border: 1px solid rgba(74, 141, 201, 0.3);
    color: var(--gold);
    background: transparent;
}

.formula-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.formula-card.formula-featured .formula-cta {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.formula-card.formula-featured .formula-cta:hover {
    background: var(--gold-light);
}

.services-annexe-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 48px;
}

.service-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black-light) 100%);
    border: 1px solid rgba(74, 141, 201, 0.1);
    border-radius: 8px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: rgba(74, 141, 201, 0.25);
    transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(74, 141, 201, 0.08);
    border: 1px solid rgba(74, 141, 201, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-dim);
}

.service-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PRICING / ABONNEMENTS
   ══════════════════════════════════════════ */
.pricing {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header .section-label {
    justify-content: center;
}

.pricing-header .section-label::before { display: none; }

.pricing-header .section-subtitle {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pricing-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 141, 201, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(165deg, rgba(74, 141, 201, 0.08) 0%, var(--dark) 40%);
    border-color: rgba(74, 141, 201, 0.3);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
}

.pricing-tier {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-light);
}

.pricing-saving {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 500;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.4;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s var(--ease-out-expo);
    border: 1px solid rgba(74, 141, 201, 0.3);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
}

.pricing-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 141, 201, 0.2);
}

.pricing-card.featured .pricing-cta {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 32px rgba(74, 141, 201, 0.35);
}

/* ══════════════════════════════════════════
   CANAPE & TAPIS
   ══════════════════════════════════════════ */
.upholstery {
    padding: 120px 0;
    position: relative;
}

.upholstery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.upholstery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

@media (max-width: 768px) {
    .upholstery-grid { grid-template-columns: 1fr; }
}

.upholstery-card {
    background: linear-gradient(160deg, var(--dark) 0%, var(--black-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.upholstery-card:hover {
    border-color: rgba(74, 141, 201, 0.2);
    transform: translateY(-4px);
}

.upholstery-card-header {
    padding: 36px 36px 0;
}

.upholstery-card-header h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.upholstery-card-header p {
    font-size: 0.85rem;
    color: var(--grey-light);
    margin-bottom: 24px;
}

.upholstery-steps {
    padding: 0 36px 36px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.upholstery-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.upholstery-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 141, 201, 0.1);
    border: 1px solid rgba(74, 141, 201, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.step-text {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.5;
    padding-top: 3px;
}

/* ══════════════════════════════════════════
   GALLERY / NOS REALISATIONS
   ══════════════════════════════════════════ */
.gallery {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.6s var(--ease-out-expo);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
    filter: brightness(0.85) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.gallery-item:hover .gallery-item-label {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-label h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.gallery-item-label span {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(74, 141, 201, 0);
    border-radius: 12px;
    z-index: 3;
    transition: border-color 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    border-color: rgba(74, 141, 201, 0.3);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    .gallery-item {
        aspect-ratio: 16/10;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(74, 141, 201, 0.2);
    border-color: var(--gold);
}

/* ══════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════ */
.faq {
    padding: 120px 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.faq-header {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.8;
}

/* ══════════════════════════════════════════
   CONTACT / CTA FINAL
   ══════════════════════════════════════════ */
.contact {
    padding: 120px 0 80px;
    position: relative;
    text-align: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.contact-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 141, 201, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact .section-label {
    justify-content: center;
}

.contact .section-label::before { display: none; }

.contact .section-title {
    max-width: 600px;
    margin: 0 auto 16px;
}

.contact .section-subtitle {
    margin: 0 auto 48px;
    text-align: center;
}

.contact-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s var(--ease-out-expo);
    cursor: pointer;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.contact-btn.whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.contact-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #fff;
    border: none;
}

.contact-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(131, 58, 180, 0.3);
}

.contact-btn.email {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn.email:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.contact-info-item {
    font-size: 0.9rem;
    color: var(--grey-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-item a {
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-info-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    color: var(--grey-light);
    letter-spacing: 0.05em;
}

.footer span {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.35s var(--ease-out-expo);
    text-decoration: none;
    animation: floatIn 0.6s var(--ease-out-expo) 1.5s both;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: whatsappPing 2s ease-out infinite;
}

@keyframes floatIn {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes whatsappPing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ══════════════════════════════════════════ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 141, 201, 0.2);
    padding: 12px 16px;
    gap: 10px;
}

.sticky-cta-inner {
    display: flex;
    gap: 10px;
}

.sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sticky-cta a svg { width: 18px; height: 18px; flex-shrink: 0; }

.sticky-cta .sticky-whatsapp {
    background: #25D366;
    color: #fff;
}

.sticky-cta .sticky-call {
    background: var(--gold);
    color: var(--black);
}

.sticky-cta .sticky-whatsapp svg { fill: #fff; }
.sticky-cta .sticky-call svg { stroke: var(--black); fill: none; stroke-width: 2; }

@media (max-width: 768px) {
    .sticky-cta { display: block; }
    .whatsapp-float { bottom: 90px; }
    body { padding-bottom: 80px; }
}

/* ══════════════════════════════════════════
   TRUST / SOCIAL PROOF BANNER
   ══════════════════════════════════════════ */
.trust-banner {
    padding: 20px 0;
    background: rgba(74, 141, 201, 0.06);
    border-top: 1px solid rgba(74, 141, 201, 0.1);
    border-bottom: 1px solid rgba(74, 141, 201, 0.1);
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-dim);
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-items { gap: 20px; }
    .trust-item { font-size: 0.75rem; }
}

/* ══════════════════════════════════════════
   SECTION CTA STRIPS
   ══════════════════════════════════════════ */
.section-cta-strip {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-cta-strip p {
    font-size: 0.9rem;
    color: var(--grey-light);
    margin-bottom: 16px;
}

.section-cta-strip p strong {
    color: var(--white);
}

.cta-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp-inline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.cta-whatsapp-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp-inline:hover::after {
    transform: translateX(100%);
}

.cta-whatsapp-inline svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* ══════════════════════════════════════════
   URGENCY BADGE
   ══════════════════════════════════════════ */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #25D366;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.urgency-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

/* Shimmer animation on primary buttons */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.btn-primary {
    background: linear-gradient(110deg, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: none;
    background: var(--gold-light);
}

/* ══════════════════════════════════════════
   IMAGE SLOTS
   ══════════════════════════════════════════ */
.img-slot {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: var(--dark);
}

.img-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card .img-slot {
    margin-bottom: 24px;
    height: 200px;
}

/* ══════════════════════════════════════════
   RESPONSIVE TWEAKS
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-logo { width: 110px; height: 110px; }
    .hero-logo-text { font-size: 2.6rem; }
    .service-card { padding: 32px 24px; }
    .pricing-card { padding: 32px 24px; }
    .upholstery-card-header { padding: 24px 24px 0; }
    .upholstery-steps { padding: 0 24px 24px; }
    .contact-buttons { flex-direction: column; }
    .contact-btn { width: 100%; justify-content: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 200;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(74, 141, 201, 0.3);
}

/* ══════════════════════════════════════════
   PREMIUM SCROLL REVEAL SYSTEM
   ══════════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-clip {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s var(--ease-out-expo);
}
.reveal-clip.visible { clip-path: inset(0 0 0 0); }

/* ══════════════════════════════════════════
   TEXT SPLIT / CHAR ANIMATION
   ══════════════════════════════════════════ */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(5deg);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.split-text.visible .char {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* ══════════════════════════════════════════
   3D CARD TILT EFFECT
   ══════════════════════════════════════════ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s var(--ease-out-expo);
}

.tilt-card:hover {
    transform: rotateY(var(--rx, 0deg)) rotateX(var(--ry, 0deg));
}

/* ══════════════════════════════════════════
   GRADIENT TEXT ANIMATION
   ══════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff, var(--gold-light), var(--gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ══════════════════════════════════════════
   MARQUEE / TICKER
   ══════════════════════════════════════════ */
.marquee-wrap {
    overflow: hidden;
    padding: 16px 0;
    background: var(--dark);
    border-top: 1px solid rgba(74, 141, 201, 0.08);
    border-bottom: 1px solid rgba(74, 141, 201, 0.08);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.marquee-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   MAGNETIC BUTTON EFFECT
   ══════════════════════════════════════════ */
.magnetic-btn {
    transition: transform 0.3s var(--ease-out-expo);
}

/* ══════════════════════════════════════════
   COUNTER ANIMATION
   ══════════════════════════════════════════ */
.counter {
    font-variant-numeric: tabular-nums;
}


/* ══════════════════════════════════════════
   PARALLAX SECTIONS
   ══════════════════════════════════════════ */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at var(--parallax-x, 50%) var(--parallax-y, 50%), rgba(74, 141, 201, 0.05) 0%, transparent 50%);
    pointer-events: none;
    transition: --parallax-x 0.5s, --parallax-y 0.5s;
}

/* ══════════════════════════════════════════
   SECTION DIVIDERS
   ══════════════════════════════════════════ */
.section-divider {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(74, 141, 201, 0.3);
}

/* ══════════════════════════════════════════
   HOVER GLOW ON CARDS
   ══════════════════════════════════════════ */
.formula-card,
.pricing-card,
.upholstery-card,
.service-card {
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 141, 201, 0.12) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
}

.formula-card:hover .card-glow,
.pricing-card:hover .card-glow,
.upholstery-card:hover .card-glow,
.service-card:hover .card-glow {
    opacity: 1;
}

/* ══════════════════════════════════════════
   NUMBER HIGHLIGHT
   ══════════════════════════════════════════ */
.pricing-price, .formula-price-range {
    position: relative;
}

.pricing-price::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease-out-expo);
}

.pricing-card:hover .pricing-price::after,
.pricing-card.featured .pricing-price::after {
    width: 60px;
}

/* ══════════════════════════════════════════
   SMOOTH LINE DRAWING ON STEPS
   ══════════════════════════════════════════ */
.step-number {
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.5s var(--ease-out-expo);
}

.upholstery-step:hover .step-number::after {
    opacity: 1;
    transform: scale(1);
}

/* ══════════════════════════════════════════
   HERO LOGO FLOAT
   ══════════════════════════════════════════ */
.hero-logo-wrapper {
    animation: heroFadeUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-logo {
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════
   STAGGER CHILDREN
   ══════════════════════════════════════════ */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   INNER PAGE HEADER
   ══════════════════════════════════════════ */
.page-header {
    padding: 160px 0 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(74, 141, 201, 0.06) 0%, transparent 70%),
        var(--black);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-header p {
    font-size: 1rem;
    color: var(--grey-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}
