/* Dark metallic system — rewrite 2026-04-19 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
    --bg: #070405;
    --bg-1: #0e080a;
    --bg-2: #140b0d;
    --bg-3: #180c0e;
    --panel: #110708;
    --panel-soft: #0b0609;
    --panel-glass: rgba(14, 8, 10, 0.88);
    --line: rgba(200, 144, 21, 0.14);
    --line-hover: rgba(200, 144, 21, 0.34);
    --text: #ede4ce;
    --muted: rgba(237, 228, 206, 0.58);
    --gold: #c89015;
    --gold-dim: #7a5814;
    --gold-light: #e9c571;
    --accent: #c89015;
    --wine: #6b1f2a;
    --wine-soft: rgba(107, 31, 42, 0.18);
    --copper: #a05a2c;
    --metallic: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%);
    --metallic-soft: linear-gradient(135deg, #0b0609 0%, #140b0d 50%, #0b0609 100%);
    --shadow-depth: 0 22px 55px rgba(0, 0, 0, 0.65);
    --shadow-gold: 0 10px 40px rgba(200, 144, 21, 0.22);
    --radius: 10px;
    --radius-sm: 8px;
}

/* =========================================================
   RESET + BASE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

a[href^="#"]:not([href="#"]) {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(200, 144, 21, 0.3);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Serif headings */
h1, h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.15;
}

h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.005em;
}

/* Metallic text utility */
.text-metallic,
h1 span.text-metallic,
h2 span.text-metallic {
    background: var(--metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s ease-in-out infinite alternate;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(200, 144, 21, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: var(--line-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
    color: var(--text);
}

.navbar-brand img {
    height: 36px;
    width: auto;
    filter: brightness(1.05);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-buttons {
    display: flex;
    gap: 12px;
}

.nav-link {
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.2px;
    opacity: 0.78;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-link.is-active {
    color: var(--text);
    opacity: 1;
}

.nav-caret {
    font-size: 0.72rem;
    opacity: 0.6;
}

.nav-login {
    color: var(--gold);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(200, 144, 21, 0.08);
    border: 1px solid rgba(200, 144, 21, 0.25);
    opacity: 1;
}

.nav-login:hover {
    color: #000;
    background: var(--gold);
    box-shadow: 0 8px 22px rgba(200, 144, 21, 0.28);
}

.nav-register {
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(237, 228, 206, 0.18);
    padding: 8px 16px;
    border-radius: 999px;
    opacity: 1;
}

.nav-register:hover {
    color: #000;
    background: var(--text);
    border-color: var(--text);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    min-height: 44px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(200, 144, 21, 0.55);
    color: var(--gold-light);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(200, 144, 21, 0.1);
    color: #ede4ce;
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-primary {
    background: #c89015;
    color: #0a0405;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid #d6a336;
    box-shadow: 0 6px 18px rgba(200, 144, 21, 0.28), inset 0 1px 0 rgba(255, 240, 210, 0.28), inset 0 -2px 0 rgba(90, 65, 16, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 240, 210, 0.38), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-primary:hover {
    background: #d6a336;
    color: #0a0405;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 144, 21, 0.42), inset 0 1px 0 rgba(255, 240, 210, 0.42), inset 0 -2px 0 rgba(90, 65, 16, 0.35);
}

.btn-primary:hover::before {
    left: 130%;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(200, 144, 21, 0.08), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(139, 107, 31, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

#radius-shape-1 {
    position: absolute;
    height: 300px;
    width: 300px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(200, 144, 21, 0.22), transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
    filter: blur(20px);
}

#radius-shape-2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 107, 31, 0.18), transparent 70%);
    border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(24px);
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 85vh;
    padding-top: 96px;
}

.hero-content {
    flex: 1;
    padding: 72px 56px;
    color: var(--text);
    max-width: 640px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
}

.hero-professional-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    vertical-align: top;
    min-height: 75vh;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05) brightness(0.9);
    mix-blend-mode: luminosity;
    opacity: 0.92;
}

.hero-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    filter: drop-shadow(0 4px 16px rgba(200, 144, 21, 0.25));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--text);
}

.hero-content h1 span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: transparent;
    background: var(--metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 14px;
    letter-spacing: 0.01em;
    font-style: italic;
    animation: shimmer 6s ease-in-out infinite alternate;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 24px 0 36px;
    max-width: 560px;
}

.cta-button {
    min-height: 48px;
    padding: 14px 32px;
    background: var(--metallic);
    background-size: 200% 200%;
    color: #0a0a0a;
    border: 1px solid rgba(200, 144, 21, 0.5);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: shimmer 4s ease-in-out infinite alternate;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(200, 144, 21, 0.32);
    color: #000;
}

/* =========================================================
   VIDEO DEMO SECTION
   ========================================================= */
.video-demo-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.video-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-demo-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.video-demo-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-depth);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    border-color: var(--line-hover);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 144, 21, 0.15);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
}

.video-controls-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
}

.control-btn:hover {
    background: rgba(200, 144, 21, 0.15);
    border-color: var(--gold);
    transform: scale(1.08);
}

.control-btn i {
    color: var(--gold);
    font-size: 1rem;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.video-feature-item {
    text-align: center;
    padding: 32px 20px;
}

.video-feature-item i {
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 12px rgba(200, 144, 21, 0.25));
}

.video-feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.video-feature-item p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.65;
}

/* =========================================================
   PROFESSIONS SECTION
   ========================================================= */
.professions-section {
    background: var(--bg);
    padding: 96px 40px;
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.profession-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
}

.profession-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(200, 144, 21, 0.04);
}

.profession-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-hover);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 32px rgba(200, 144, 21, 0.08);
}

.profession-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #050505;
    filter: grayscale(0.2) brightness(0.85) contrast(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.profession-card:hover .profession-image {
    filter: grayscale(0) brightness(0.95) contrast(1.05);
}

.profession-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 22px 22px 10px;
}

.profession-card p {
    font-size: 0.96rem;
    color: var(--muted);
    margin: 0 22px 26px;
    line-height: 1.6;
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.feature-card {
    background: var(--panel);
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-hover);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 36px rgba(200, 144, 21, 0.1);
}

.feature-icon {
    font-size: 2.75rem;
    color: var(--gold);
    margin-bottom: 22px;
    filter: drop-shadow(0 6px 18px rgba(200, 144, 21, 0.28));
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
}

.feature-card p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.65;
}

/* =========================================================
   BENEFITS SECTION
   ========================================================= */
.benefits-section {
    background: linear-gradient(180deg, #000 0%, #060606 50%, #000 100%);
    padding: 96px 40px;
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefits-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-text-content {
    flex: 1;
}

.benefits-image-wrapper {
    flex: 1;
    position: relative;
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-depth);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    filter: grayscale(0.1) contrast(1.05) brightness(0.92);
}

.benefits-image:hover {
    transform: scale(1.02);
    border-color: var(--line-hover);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 144, 21, 0.1);
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: left;
}

.benefit-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: var(--metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    animation: shimmer 5s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
    line-height: 1;
}

.benefit-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.benefit-item p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.65;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
    background: var(--bg);
    padding: 96px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 144, 21, 0.08), transparent 60%);
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* =========================================================
   FORMS (inputs/textareas/selects)
   ========================================================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"],
textarea,
select,
.form-control {
    background: var(--bg-2);
    border: 1px solid rgba(200, 144, 21, 0.2);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    min-height: 44px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: rgba(237, 228, 206, 0.4);
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-2);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(200, 144, 21, 0.15);
}

/* =========================================================
   CAPABILITIES SECTION
   ========================================================= */
.capabilities-section {
    background: linear-gradient(180deg, #000 0%, #060606 100%);
    padding: 96px 20px 80px;
    position: relative;
    border-top: 1px solid var(--line);
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-header {
    text-align: center;
    margin-bottom: 56px;
}

.capabilities-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.capabilities-header p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.capability-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 34px 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-hover);
    background: var(--bg-3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(200, 144, 21, 0.08);
}

.capability-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--metallic);
    background-size: 200% 200%;
    color: #0a0a0a;
    font-size: 1.4rem;
    margin-bottom: 20px;
    animation: shimmer 5s ease-in-out infinite alternate;
    box-shadow: 0 6px 18px rgba(200, 144, 21, 0.22);
}

.capability-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.capability-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

.capability-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =========================================================
   PRICING (pricing.html.twig — same selectors)
   ========================================================= */
.pricing-hero {
    background: #000;
    padding: 150px 40px 100px;
    text-align: center;
    color: var(--text);
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 144, 21, 0.1), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(139, 107, 31, 0.08), transparent 55%);
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.pricing-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
}

#pricing-shape-1,
#pricing-shape-2 {
    opacity: 0.3;
    filter: blur(24px);
}

#pricing-shape-1 {
    background: radial-gradient(circle, rgba(200, 144, 21, 0.3), transparent 70%);
}

#pricing-shape-2 {
    background: radial-gradient(circle, rgba(139, 107, 31, 0.25), transparent 70%);
}

.pricing-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.pricing-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 36px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
}

.pricing-toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.pricing-toggle-switch {
    position: relative;
    width: 64px;
    height: 32px;
    background: rgba(200, 144, 21, 0.25);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pricing-toggle-switch.inactive {
    background: rgba(237, 228, 206, 0.08);
}

.pricing-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--metallic);
    border-radius: 50%;
    transition: left 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pricing-toggle-switch.right .pricing-toggle-slider {
    left: 35px;
}

.pricing-toggle-badge {
    position: absolute;
    top: 50%;
    right: -86px;
    transform: translateY(-50%);
    background: var(--metallic);
    color: #0a0a0a;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-toggle-switch.active:not(.right) .pricing-toggle-badge {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--panel);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-depth);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-hover);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6), 0 0 36px rgba(200, 144, 21, 0.08);
}

.pricing-card.featured {
    border: 1px solid transparent;
    background:
        linear-gradient(#0a0a0a, #0a0a0a) padding-box,
        var(--metallic) border-box;
    background-size: auto, 200% 200%;
    animation: shimmer 6s ease-in-out infinite alternate;
    transform: scale(1.02);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6), 0 0 44px rgba(200, 144, 21, 0.15);
}

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

.pricing-card.featured .pricing-badge {
    display: block;
}

.pricing-badge {
    display: none;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--metallic);
    background-size: 200% 200%;
    color: #0a0a0a;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: shimmer 4s ease-in-out infinite alternate;
    box-shadow: 0 8px 22px rgba(200, 144, 21, 0.3);
}

.pricing-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 8px;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 28px;
    min-height: 40px;
    line-height: 1.6;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    background: var(--metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    animation: shimmer 5s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-price span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    margin-left: 4px;
    -webkit-text-fill-color: initial;
    background: none;
    font-weight: 500;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.pricing-features li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: var(--muted);
    opacity: 0.4;
}

.pricing-features li.disabled:before {
    content: '\f057';
    color: var(--muted);
}

.pricing-cta {
    width: 100%;
    min-height: 44px;
    padding: 13px 28px;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(200, 144, 21, 0.45);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pricing-cta:hover {
    background: rgba(200, 144, 21, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 144, 21, 0.18);
}

.pricing-card.featured .pricing-cta {
    background: var(--metallic);
    background-size: 200% 200%;
    color: #0a0a0a;
    border-color: rgba(200, 144, 21, 0.6);
    animation: shimmer 4s ease-in-out infinite alternate;
}

.pricing-card.featured .pricing-cta:hover {
    color: #000;
    box-shadow: 0 14px 38px rgba(200, 144, 21, 0.3);
}

.pricing-cta.secondary {
    background: transparent;
    border: 1px solid rgba(200, 144, 21, 0.45);
    color: var(--gold);
}

.pricing-cta.secondary:hover {
    background: rgba(200, 144, 21, 0.1);
    color: var(--gold-light);
}

.pricing-note {
    text-align: center;
    font-size: 0.98rem;
    color: var(--muted);
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.pricing-note strong {
    color: var(--gold);
    font-weight: 600;
}

/* Comparison table */
.comparison-section {
    background: var(--bg);
    padding: 96px 40px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 56px;
}

.comparison-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.comparison-header p {
    font-size: 1.05rem;
    color: var(--muted);
}

.comparison-table {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--panel);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-depth);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: rgba(200, 144, 21, 0.06);
    color: var(--text);
    padding: 24px 20px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.01em;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(200, 144, 21, 0.04);
}

.comparison-feature-name {
    font-weight: 500;
    color: var(--text);
}

.comparison-check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.comparison-cross {
    color: rgba(237, 228, 206, 0.3);
    font-size: 1.2rem;
    font-weight: 500;
}

.comparison-value {
    color: var(--muted);
    font-weight: 500;
}

/* FAQ */
.faq-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    border-top: 1px solid var(--line);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: var(--line-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
    text-align: left;
}

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

.faq-icon {
    color: var(--gold);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 22px 24px;
}

/* =========================================================
   ABOUT PAGE (about.html.twig — same selectors)
   ========================================================= */
.about-hero {
    background: #000;
    padding: 150px 40px 100px;
    text-align: center;
    color: var(--text);
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(200, 144, 21, 0.1), transparent 55%),
        radial-gradient(circle at 80% 15%, rgba(139, 107, 31, 0.08), transparent 55%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

#about-shape-1,
#about-shape-2 {
    opacity: 0.3;
    filter: blur(24px);
}

#about-shape-1 {
    background: radial-gradient(circle, rgba(200, 144, 21, 0.25), transparent 70%);
}

#about-shape-2 {
    background: radial-gradient(circle, rgba(139, 107, 31, 0.2), transparent 70%);
}

.story-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 72px;
}

.story-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.story-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
}

.story-text p {
    font-size: 1.04rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-depth);
}

.story-image img {
    width: 100%;
    height: auto;
    filter: grayscale(0.15) contrast(1.05) brightness(0.92);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1.05) brightness(1);
}

.values-section {
    background: var(--bg);
    padding: 96px 40px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 72px;
}

.values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.value-card {
    background: var(--panel);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-hover);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 28px rgba(200, 144, 21, 0.08);
}

.value-icon {
    font-size: 2.75rem;
    color: var(--gold);
    margin-bottom: 22px;
    filter: drop-shadow(0 6px 18px rgba(200, 144, 21, 0.28));
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.65;
}

.team-section {
    background: var(--metallic-soft);
    padding: 96px 40px;
    border-top: 1px solid var(--line);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 72px;
}

.team-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.team-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 22px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.team-member:hover .team-member-image {
    border-color: var(--gold);
    box-shadow: 0 14px 36px rgba(200, 144, 21, 0.2);
}

.team-member:hover .team-member-image img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.team-member h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.team-member-role {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.team-member-bio {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.team-member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-member-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(200, 144, 21, 0.08);
    color: var(--gold);
    border: 1px solid var(--line);
    transition: all 0.25s ease;
}

.team-member-socials a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: scale(1.1);
}

.stats-section {
    background: #000;
    padding: 96px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 144, 21, 0.08), transparent 60%);
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: var(--metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    animation: shimmer 5s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.6;
}

/* =========================================================
   FOOTER (override .footer-premium if partial uses it)
   ========================================================= */
.footer-premium {
    background: #000 !important;
    border-top: 1px solid var(--line);
    color: rgba(237, 228, 206, 0.6);
    font-size: 0.9rem;
    padding: 64px 0 28px;
    margin-top: 0 !important;
}

.footer-premium h5,
.footer-premium h6 {
    font-family: 'Inter', sans-serif;
    color: var(--gold) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
}

.footer-premium .footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
    filter: brightness(1.05);
}

.footer-premium p {
    line-height: 1.7;
    color: rgba(237, 228, 206, 0.55);
}

.footer-premium a {
    color: rgba(237, 228, 206, 0.7);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-premium a:hover {
    color: var(--gold) !important;
}

.footer-premium .btn-primary {
    background: var(--metallic) !important;
    background-size: 200% 200% !important;
    border: 1px solid rgba(200, 144, 21, 0.5) !important;
    color: #0a0a0a !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    box-shadow: 0 8px 20px rgba(200, 144, 21, 0.2) !important;
    animation: shimmer 4s ease-in-out infinite alternate;
}

.footer-premium .btn-primary:hover {
    transform: translateY(-2px);
    color: #000 !important;
    box-shadow: 0 12px 28px rgba(200, 144, 21, 0.3) !important;
}

.footer-premium .btn-outline-light {
    border: 1px solid rgba(200, 144, 21, 0.4) !important;
    color: var(--gold) !important;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    background: transparent !important;
}

.footer-premium .btn-outline-light:hover {
    background: rgba(200, 144, 21, 0.1) !important;
    color: var(--gold-light) !important;
    border-color: var(--gold) !important;
}

.footer-premium hr {
    border-color: var(--line) !important;
    opacity: 1;
    margin: 2rem 0 1.5rem;
}

.footer-premium .footer-bottom {
    font-size: 0.82rem;
    color: rgba(237, 228, 206, 0.45);
}

.footer-premium .footer-social a {
    color: rgba(237, 228, 206, 0.55);
    font-size: 1.2rem;
}

.footer-premium .footer-social a:hover {
    color: var(--gold) !important;
    transform: scale(1.15);
}

.footer-premium i.fa-microphone-lines,
.footer-premium i.fa-language,
.footer-premium i.fa-brain,
.footer-premium i.fa-cloud,
.footer-premium i.fa-envelope,
.footer-premium i.fa-map-marker-alt,
.footer-premium i.fa-share-nodes,
.footer-premium i.fa-chart-line,
.footer-premium i.fa-briefcase,
.footer-premium i.fa-user-tie,
.footer-premium i.fa-hospital,
.footer-premium i.fa-balance-scale,
.footer-premium i.fa-graduation-cap,
.footer-premium i.fa-video,
.footer-premium i.fa-shield-alt,
.footer-premium i.fa-gavel,
.footer-premium i.fa-cookie-bite {
    color: var(--gold) !important;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

.hero-content,
.hero-image-wrapper,
.profession-card,
.feature-card,
.benefit-item,
.video-wrapper,
.video-feature-item,
.cta-section,
.capability-card,
.pricing-card,
.value-card,
.stat-item,
.faq-item,
.team-member,
.navbar {
    animation: fadeInUp 0.8s ease both;
}

.professions-grid .profession-card:nth-child(2),
.features-grid .feature-card:nth-child(2),
.video-features .video-feature-item:nth-child(2),
.pricing-card:nth-child(2),
.value-card:nth-child(2),
.stat-item:nth-child(2),
.faq-item:nth-child(2),
.team-member:nth-child(2) {
    animation-delay: 0.12s;
}

.professions-grid .profession-card:nth-child(3),
.features-grid .feature-card:nth-child(3),
.video-features .video-feature-item:nth-child(3),
.pricing-card:nth-child(3),
.value-card:nth-child(3),
.stat-item:nth-child(3),
.faq-item:nth-child(3),
.team-member:nth-child(3) {
    animation-delay: 0.24s;
}

.professions-grid .profession-card:nth-child(4),
.features-grid .feature-card:nth-child(4),
.pricing-card:nth-child(4),
.value-card:nth-child(4),
.stat-item:nth-child(4),
.faq-item:nth-child(4),
.team-member:nth-child(4) {
    animation-delay: 0.36s;
}

.hero-professional-image:hover,
.benefits-image:hover {
    filter: grayscale(0) contrast(1.08) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        padding-top: 88px;
    }

    .hero-content {
        padding: 56px 28px;
        text-align: center;
        max-width: 100%;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-professional-image {
        max-width: 85%;
        margin: 32px auto 0 !important;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title,
    .video-demo-header h2,
    .cta-section h2,
    .pricing-header h2,
    .story-header h2,
    .values-header h2,
    .team-header h2,
    .capabilities-header h2 {
        font-size: 2.1rem;
    }

    .about-hero h1,
    .pricing-hero h1 {
        font-size: 2.6rem;
    }

    .navbar {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .navbar-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        padding-bottom: 8px;
    }

    .navbar-actions {
        order: 2;
        margin-left: auto;
    }

    .navbar-buttons {
        flex-direction: column;
        gap: 10px;
    }

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

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .demo-video {
        min-height: 350px;
    }

    .benefits-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .benefits-text-content {
        text-align: center;
    }

    .benefits-header {
        text-align: center;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .comparison-table th:first-child {
        width: auto;
    }

    .video-demo-section,
    .features-section,
    .benefits-section,
    .professions-section,
    .cta-section,
    .capabilities-section,
    .values-section,
    .story-section,
    .team-section,
    .stats-section,
    .pricing-section,
    .comparison-section,
    .faq-section {
        padding: 64px 24px;
    }
}

@media (max-width: 576px) {
    .btn {
        font-size: 0.9rem;
        padding: 11px 20px;
    }

    .hero-professional-image {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content h1 span {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .demo-video {
        min-height: 250px;
    }

    .video-demo-header h2,
    .section-title,
    .cta-section h2,
    .pricing-header h2,
    .story-header h2,
    .values-header h2,
    .team-header h2,
    .capabilities-header h2 {
        font-size: 1.7rem;
    }

    .about-hero h1,
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .about-hero,
    .pricing-hero {
        padding: 96px 20px 72px;
        margin-top: 64px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .benefits-content-wrapper {
        gap: 32px;
    }

    .pricing-price,
    .benefit-number,
    .stat-number {
        font-size: 2.4rem;
    }

    .comparison-table {
        font-size: 0.88rem;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 14px 10px;
    }

    .faq-question {
        font-size: 0.96rem;
        padding: 18px 20px;
    }

    .video-demo-section,
    .features-section,
    .benefits-section,
    .professions-section,
    .cta-section,
    .capabilities-section,
    .values-section,
    .story-section,
    .team-section,
    .stats-section,
    .pricing-section,
    .comparison-section,
    .faq-section {
        padding: 48px 20px;
    }
}

/* ====================================================================== */
/* Language switcher + misc rescued from stripped inline <style> blocks   */
/* ====================================================================== */
.lang-switcher { position: relative; display: inline-flex; align-items: center; }
.lang-switcher__toggle { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; background: rgba(200, 144, 21, 0.06); border: 1px solid rgba(200, 144, 21, 0.18); border-radius: 8px; cursor: pointer; color: #ede4ce; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s ease; }
.lang-switcher__toggle:hover { background: rgba(200, 144, 21, 0.12); border-color: rgba(200, 144, 21, 0.32); color: #ede4ce; }
.lang-switcher__toggle .lang-flag img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: block; }
.lang-flag { display: inline-flex; align-items: center; line-height: 0; }
.lang-flag img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: block; }
.lang-switcher__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 180px; background: #0a0a0a; border: 1px solid rgba(200, 144, 21, 0.22); border-radius: 10px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55); padding: 6px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.18s ease; z-index: 200; }
.lang-switcher.is-open .lang-switcher__menu,
.lang-switcher:hover .lang-switcher__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switcher__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px; color: rgba(237, 228, 206, 0.72); text-decoration: none; font-size: 0.9rem; transition: background 0.15s ease, color 0.15s ease; }
.lang-switcher__item:hover, .lang-switcher__item:focus { background: rgba(200, 144, 21, 0.08); color: #ede4ce; }
.lang-switcher__item.is-active { color: #c89015; }
.lang-switcher__caret { font-size: 10px; opacity: 0.7; }

/* Hero background image + overlay safety (in case index.html.twig had sizing inline) */
.hero-section .hero-image, .hero-section img.hero-visual { max-width: 100%; height: auto; border-radius: 16px; }

/* Safeguards for common bootstrap-vs-dark mismatches */
.btn-outline-primary { background: transparent !important; border: 1px solid rgba(200, 144, 21, 0.6) !important; color: #c89015 !important; }
.btn-outline-primary:hover { background: rgba(200, 144, 21, 0.08) !important; border-color: #c89015 !important; }
body.dark-shell .text-primary, body.dark-shell .text-info { color: #c89015 !important; }

/* ---- Language switcher rescue (correct class names) ---- */
.lang-switcher { position: relative; display: inline-flex; align-items: center; }
.lang-button { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: rgba(200, 144, 21, 0.06); border: 1px solid rgba(200, 144, 21, 0.18); border-radius: 8px; cursor: pointer; color: #ede4ce; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; transition: all 0.2s ease; }
.lang-button:hover, .lang-button:focus { background: rgba(200, 144, 21, 0.12); border-color: rgba(200, 144, 21, 0.32); color: #ede4ce; outline: none; }
.lang-button .lang-flag { display: inline-flex; align-items: center; line-height: 0; }
.lang-flag img { width: 20px !important; height: 14px !important; object-fit: cover; border-radius: 2px; display: block; max-width: 20px !important; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 190px; background: #0a0a0a; border: 1px solid rgba(200, 144, 21, 0.22); border-radius: 10px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.18s ease; z-index: 200; }
.lang-switcher.is-open .lang-menu,
.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px; color: rgba(237, 228, 206, 0.72); text-decoration: none; font-size: 0.9rem; transition: background 0.15s ease, color 0.15s ease; }
.lang-item:hover, .lang-item:focus { background: rgba(200, 144, 21, 0.08); color: #ede4ce; outline: none; }
.lang-item.is-active { color: #c89015; }

/* Nav action buttons (login / register) */
.nav-action { padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; }
.nav-login { color: #ede4ce; background: transparent; border: 1px solid rgba(200, 144, 21, 0.3); }
.nav-login:hover { background: rgba(200, 144, 21, 0.08); border-color: rgba(200, 144, 21, 0.5); color: #ede4ce; }
.nav-register { color: #1a1305; background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%); background-size: 200% 200%; border: 1px solid rgba(244, 211, 94, 0.4); font-weight: 700; box-shadow: 0 6px 18px rgba(200, 144, 21, 0.22); animation: nav-metallic-shimmer 8s ease-in-out infinite alternate; }
@keyframes nav-metallic-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.nav-register:hover { animation-duration: 3s; transform: translateY(-1px); color: #1a1305; box-shadow: 0 10px 26px rgba(200, 144, 21, 0.35); }
.nav-caret { font-size: 9px; opacity: 0.7; margin-left: 2px; }

/* Navbar brand logo sizing guard */
.navbar-brand img { width: auto !important; max-width: 40px !important; max-height: 40px; }

/* =================================================================== */
/* Palette hijack — for templates that still declare their own :root    */
/* Hijacks --bg, --brand, --text, etc via !important so inline <style>  */
/* blocks in auth / admin / client templates inherit dark-metallic.     */
/* =================================================================== */
:root,
body,
html {
    --bg: #000000 !important;
    --panel: #0a0a0a !important;
    --panel-soft: #050505 !important;
    --surface: #0a0a0a !important;
    --card-bg: #0a0a0a !important;
    --text: #ede4ce !important;
    --text-strong: #ede4ce !important;
    --text-muted: rgba(237, 228, 206, 0.6) !important;
    --muted: rgba(237, 228, 206, 0.6) !important;
    --brand: #c89015 !important;
    --brand-strong: #b8860b !important;
    --brand-soft: rgba(200, 144, 21, 0.12) !important;
    --accent: #c89015 !important;
    --accent-strong: #b8860b !important;
    --line: rgba(200, 144, 21, 0.14) !important;
    --line-hover: rgba(200, 144, 21, 0.35) !important;
    --success: #c89015 !important;
    --warning: #c89015 !important;
    --danger: #c97070 !important;
    --info: #c89015 !important;
    --primary: #c89015 !important;
    --secondary: #7a6220 !important;
    --link: #c89015 !important;
    --link-hover: #e9c571 !important;
}

/* Bootstrap 5 color tweaks for authenticated dashboards */
.bg-primary, .btn-primary { background: #c89015 !important; color: #0a0405 !important; border: 1px solid #d6a336 !important; box-shadow: 0 6px 18px rgba(200, 144, 21, 0.28), inset 0 1px 0 rgba(255, 240, 210, 0.28) !important; }
.btn-primary:hover { color: #1a1305 !important; }
.bg-info, .bg-success, .bg-warning { background: rgba(200, 144, 21, 0.18) !important; color: #ede4ce !important; }
.text-primary, .text-info, .text-success, .text-warning { color: #c89015 !important; }
.text-danger { color: #d8a8a8 !important; }
.border-primary { border-color: rgba(200, 144, 21, 0.4) !important; }

/* Cards / panels in dashboards */
.card { background: #0a0a0a !important; border: 1px solid rgba(200, 144, 21, 0.12) !important; color: #ede4ce !important; }
.card-header, .card-footer { background: transparent !important; border-color: rgba(200, 144, 21, 0.12) !important; color: #ede4ce !important; }

/* Tables in admin */
.table, .table-striped, .table-hover { color: #ede4ce !important; background: transparent !important; border-color: rgba(200, 144, 21, 0.12) !important; }
.table thead { background: rgba(200, 144, 21, 0.06) !important; }
.table th, .table td { border-color: rgba(200, 144, 21, 0.08) !important; padding: 10px 14px; }
.table-striped tbody tr:nth-of-type(odd) { background: rgba(200, 144, 21, 0.03) !important; }
.table-hover tbody tr:hover { background: rgba(200, 144, 21, 0.08) !important; }

/* Form inputs global */
input, textarea, select { background: #050505 !important; color: #ede4ce !important; border-color: rgba(200, 144, 21, 0.2) !important; }
input:focus, textarea:focus, select:focus { border-color: #c89015 !important; box-shadow: 0 0 0 3px rgba(200, 144, 21, 0.15) !important; outline: none !important; }
input::placeholder, textarea::placeholder { color: rgba(237, 228, 206, 0.32) !important; }

/* Modals + dropdowns from bootstrap */
.modal-content { background: #0a0a0a !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.22) !important; }
.modal-header, .modal-footer { border-color: rgba(200, 144, 21, 0.12) !important; }
.dropdown-menu { background: #0a0a0a !important; border: 1px solid rgba(200, 144, 21, 0.22) !important; }
.dropdown-item { color: #ede4ce !important; }
.dropdown-item:hover, .dropdown-item:focus { background: rgba(200, 144, 21, 0.08) !important; color: #ede4ce !important; }

/* Navbar safety (any template) */
nav.navbar, .site-header nav { background: #000 !important; }

/* Links in dashboard pages */
body.dark-shell a, body a { color: inherit; }
body a.text-primary, body a.btn-link { color: #c89015 !important; }

/* =========================================================== */
/* Body / page-level hijack — catches templates that declare   */
/* their own body { background: white } directly.             */
/* =========================================================== */
body { background: #070405 !important; color: #ede4ce !important; font-family: "Inter", "Segoe UI", sans-serif !important; }
body .legal-content,
body .content-card,
body .legal-container,
body .policy-content,
body .page-content,
body .purchase-content,
body .content-wrapper { background: #0a0a0a !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.12) !important; border-radius: 14px; }
body .legal-section h1, body .legal-section h2, body .legal-section h3,
body .content-card h1, body .content-card h2, body .content-card h3 { color: #ede4ce !important; }
body .legal-section strong { color: #c89015 !important; }

/* Bootstrap outline-primary buttons on these pages */
.btn-outline-primary { background: transparent !important; border: 1px solid rgba(200, 144, 21, 0.45) !important; color: #c89015 !important; }
.btn-outline-primary:hover, .btn-outline-primary:focus { background: rgba(200, 144, 21, 0.08) !important; border-color: #c89015 !important; color: #e9c571 !important; }
.btn-warning { background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%) !important; color: #1a1305 !important; border: 1px solid rgba(244, 211, 94, 0.4) !important; }

/* Gradient hero backgrounds on blue-styled pages → black */
.hero-legal, .hero-section, .page-hero { background: #000 !important; }
.hero-legal::before, .hero-section::before { display: none !important; }

/* Fix any card-white-bg in legal/download/phone-request pages */
.card.bg-white, .card-white, div.bg-white { background: #0a0a0a !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.12) !important; }

/* Text links in legal pages */
body a[href], body .legal-section a { color: #c89015 !important; }
body a[href]:hover { color: #e9c571 !important; }

/* Legal/CGU/Phone pages — hijack blue hero + navbar */
.legal-hero, .legal-hero2, .conf-hero, .page-legal-hero { background: #000 !important; color: #ede4ce !important; border-bottom: 1px solid rgba(200, 144, 21, 0.12) !important; padding: 120px 40px 60px !important; }
.legal-hero::before, .conf-hero::before, .page-legal-hero::before { background: radial-gradient(circle, rgba(200, 144, 21, 0.08), transparent) !important; }
.legal-hero h1, .conf-hero h1, .page-legal-hero h1 { color: #ede4ce !important; font-family: 'Cormorant Garamond', 'Playfair Display', serif !important; font-weight: 500 !important; }
.legal-hero p, .conf-hero p, .page-legal-hero p { color: rgba(237, 228, 206, 0.65) !important; }

/* Secondary/primary buttons on these pages — gold */
.btn-secondary { background: transparent !important; border: 1px solid rgba(200, 144, 21, 0.45) !important; color: #c89015 !important; }
.btn-secondary:hover { background: rgba(200, 144, 21, 0.08) !important; color: #e9c571 !important; border-color: #c89015 !important; }

/* Inline .navbar { background: #ffffff } override */
nav.navbar { background: rgba(0, 0, 0, 0.88) !important; backdrop-filter: blur(14px) !important; border-bottom: 1px solid rgba(200, 144, 21, 0.16) !important; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important; color: #ede4ce !important; }
nav.navbar .navbar-brand { color: #ede4ce !important; }
nav.navbar .nav-link { color: rgba(237, 228, 206, 0.78) !important; }
nav.navbar .nav-link:hover { color: #c89015 !important; }

/* Legal sections table of content etc */
.legal-toc, .conf-toc { background: #050505 !important; border: 1px solid rgba(200, 144, 21, 0.12) !important; color: #ede4ce !important; }
.legal-toc a, .conf-toc a { color: rgba(237, 228, 206, 0.72) !important; }
.legal-toc a:hover, .conf-toc a:hover { color: #c89015 !important; }
/* Legal page section headings */
.legal-section h1, .legal-section h2, .legal-section h3,
.legal-content h1, .legal-content h2, .legal-content h3,
.conf-section h1, .conf-section h2, .conf-section h3 { color: #ede4ce !important; font-family: 'Cormorant Garamond', 'Playfair Display', serif !important; border-bottom: 1px solid rgba(200, 144, 21, 0.25) !important; padding-bottom: 8px !important; }

/* Phone request page + download page CTAs */
.phone-request-form, .download-content, .phone-hero { background: #050505 !important; }
.phone-hero, .download-hero, .request-hero { background: #000 !important; color: #ede4ce !important; }

/* Download page + auth radial gradient sections */
.background-radial-gradient { background: #000 !important; }

/* Windows download card */
.download-card, .os-card, .download-option { background: #050505 !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.15) !important; }
.download-button { background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%) !important; background-size: 200% 200% !important; color: #1a1305 !important; border: 1px solid rgba(244, 211, 94, 0.4) !important; font-weight: 700 !important; }

/* Scrollbar polish */
* { scrollbar-width: thin; scrollbar-color: rgba(200, 144, 21, 0.35) #0a0a0a; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #050505; }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #7a5814, #c89015, #7a5814); border: 2px solid #050505; border-radius: 10px; }
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #c89015, #e9c571, #c89015); }

/* Subtle noise texture on hero via dotted overlay (very subtle) */
.hero-section::after, .hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(200, 144, 21, 0.04) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.25; z-index: 0; }

/* Guide page specific override - dark-metallic */
.guide-content, .guide-section, .toc-container, .guide-toc, .summary-container {
    background: #000 !important;
    color: #ede4ce !important;
}
.toc-card, .summary-card, .guide-card, .section-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(200, 144, 21, 0.12) !important;
    color: #ede4ce !important;
}
.toc-card-number, .guide-number, .section-number {
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.guide-hero {
    background: #000 !important;
    color: #ede4ce !important;
}
.guide-icon, .book-icon {
    color: #c89015 !important;
}
.guide-title, .sommaire-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    color: #ede4ce !important;
    font-weight: 500 !important;
}

/* Force white backgrounds to dark in guide */
.bg-white, .bg-light { background: #0a0a0a !important; color: #ede4ce !important; }
section[style*="background: #ffffff"], section[style*="background:#fff"] {
    background: #000 !important;
}

/* Guide page — correct class names */
.toc-section { background: #000 !important; padding: 60px 24px !important; }
.toc-container { background: transparent !important; }
.toc-title { color: #ede4ce !important; font-family: 'Cormorant Garamond', serif !important; font-weight: 500 !important; }
.toc-grid { gap: 16px !important; }
.toc-item {
    background: #0a0a0a !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
    color: #ede4ce !important;
    transition: all 0.3s ease;
}
.toc-item:hover {
    border-color: rgba(200, 144, 21, 0.45) !important;
    background: rgba(200, 144, 21, 0.04) !important;
    transform: translateY(-2px);
}
.toc-number, .toc-item-number {
    color: #c89015 !important;
    font-family: 'Sono', 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    background: transparent !important;
    -webkit-text-fill-color: initial !important;
}
.toc-text, .toc-item-text, .toc-label { color: #ede4ce !important; }
.guide-hero-icon, .guide-hero-icon i { color: #c89015 !important; }
.guide-hero-title, .guide-hero h1 { color: #ede4ce !important; font-family: 'Cormorant Garamond', serif !important; font-weight: 500 !important; }
.guide-hero-subtitle, .guide-hero p { color: rgba(237, 228, 206, 0.65) !important; }

/* Guide sections body */
.guide-section, .guide-step, .section-content {
    background: transparent !important;
    color: #ede4ce !important;
}
.guide-step-content, .step-card, .tutorial-card, .feature-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(200, 144, 21, 0.12) !important;
    color: #ede4ce !important;
}
.guide-step-title, .step-title, .tutorial-title { color: #ede4ce !important; }

/* =====================================================================
   Grand Cru button overhaul — solid, readable, no animation dimming
   ===================================================================== */

/* Any primary/accent button (Tailwind + shadcn + custom) -> solid gold */
button.bg-primary,
button.bg-indigo-500, button.bg-indigo-600, button.bg-indigo-700,
button.bg-blue-500, button.bg-blue-600, button.bg-blue-700,
button.bg-violet-500, button.bg-violet-600, button.bg-violet-700,
button.bg-black, button.bg-gray-900, button.bg-ink,
.btn-primary, .btn-primary button,
[data-variant="primary"], [data-variant="default"] {
  background: #c89015 !important;
  color: #0a0405 !important;
  border: 1px solid #d6a336 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(200, 144, 21, 0.28), inset 0 1px 0 rgba(255, 240, 210, 0.28), inset 0 -2px 0 rgba(90, 65, 16, 0.35) !important;
  animation: none !important;
  position: relative;
  overflow: hidden;
  text-shadow: none !important;
}
button.bg-primary:hover,
button.bg-indigo-600:hover, button.bg-blue-600:hover, button.bg-blue-700:hover,
button.bg-violet-600:hover,
button.bg-black:hover, button.bg-gray-900:hover, button.bg-ink:hover,
.btn-primary:hover {
  background: #d6a336 !important;
  color: #0a0405 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(200, 144, 21, 0.42), inset 0 1px 0 rgba(255, 240, 210, 0.42), inset 0 -2px 0 rgba(90, 65, 16, 0.35) !important;
}

/* Secondary / outline buttons -> gold outline */
button.bg-white, button.bg-transparent,
.btn-secondary, .btn-outline, [data-variant="outline"] {
  background: transparent !important;
  color: #e9c571 !important;
  border: 1px solid rgba(200, 144, 21, 0.55) !important;
  font-weight: 600 !important;
}
button.bg-white:hover, .btn-secondary:hover, .btn-outline:hover {
  background: rgba(200, 144, 21, 0.1) !important;
  color: #ede4ce !important;
  border-color: #c89015 !important;
}

/* Destructive / danger buttons -> wine burgundy */
button.bg-red-500, button.bg-red-600, button.bg-rose-500, button.bg-rose-600,
[data-variant="destructive"] {
  background: #6b1f2a !important;
  color: #ede4ce !important;
  border: 1px solid #8a2c38 !important;
}
button.bg-red-600:hover, [data-variant="destructive"]:hover {
  background: #8a2c38 !important;
}

/* Text color fixes for buttons that had white text on newly-dark bg */
button.text-white:not(.bg-red-600):not(.bg-red-500) { color: #ede4ce !important; }

/* =======================================================================
   GRAND CRU — Admin + Client area overhaul (Bootstrap + sidebar layout)
   ======================================================================= */

/* Page shells */
body, body.dark-shell,
#content, .content, .main-content, .page-wrapper, main {
    background: #070405 !important;
    color: #ede4ce !important;
}

/* Sidebar (admin + client layouts) */
.sidebar, aside.sidebar, .sidebar-dark, nav.sidebar {
    background: #0a0607 !important;
    border-right: 1px solid rgba(200, 144, 21, 0.14) !important;
    color: #ede4ce !important;
}
.sidebar a, .sidebar .nav-link, .sidebar-nav a {
    color: rgba(237, 228, 206, 0.78) !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.sidebar a:hover, .sidebar a.active, .sidebar .nav-link.active,
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(200, 144, 21, 0.10) !important;
    color: #e9c571 !important;
}
.sidebar .sidebar-logo, .sidebar-brand, .sidebar-header {
    color: #ede4ce !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    border-bottom: 1px solid rgba(200, 144, 21, 0.12) !important;
}

/* Top bars + headers */
.top-bar, .topbar, .page-header, .content-header {
    background: #0a0607 !important;
    border-bottom: 1px solid rgba(200, 144, 21, 0.12) !important;
    color: #ede4ce !important;
}
.top-bar h1, .top-bar h2, .page-header h1 {
    color: #ede4ce !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-weight: 500 !important;
}

/* Breadcrumbs */
.breadcrumb { background: transparent !important; padding-left: 0 !important; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(237, 228, 206, 0.55) !important; }
.breadcrumb-item.active { color: #e9c571 !important; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(200, 144, 21, 0.35) !important; }

/* All cards dark */
.card, .content-card, .data-card, .stat-card, .info-card,
.panel, .box, .widget {
    background: #140b0d !important;
    border: 1px solid rgba(200, 144, 21, 0.12) !important;
    color: #ede4ce !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45) !important;
    border-radius: 12px !important;
}
.card-header, .card-footer, .panel-heading, .panel-footer {
    background: transparent !important;
    border-color: rgba(200, 144, 21, 0.1) !important;
    color: #ede4ce !important;
}
.card-title, .panel-title { color: #ede4ce !important; font-family: "Cormorant Garamond", Georgia, serif !important; font-weight: 500 !important; }

/* Stats / KPI numbers */
.stat-value, .kpi-number, .metric-value, .big-number, .dashboard-stat-value {
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-family: "Sono", "JetBrains Mono", monospace !important;
    font-weight: 800 !important;
}

/* Tables in admin */
table, .table, .data-table {
    background: transparent !important;
    color: #ede4ce !important;
    border-color: rgba(200, 144, 21, 0.1) !important;
}
table thead, .table thead {
    background: rgba(200, 144, 21, 0.06) !important;
}
table thead th, .table thead th {
    color: #e9c571 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-size: 0.8rem !important;
    border-color: rgba(200, 144, 21, 0.16) !important;
    padding: 14px 16px !important;
}
table tbody tr, .table tbody tr {
    border-color: rgba(200, 144, 21, 0.06) !important;
}
table tbody tr:hover, .table tbody tr:hover {
    background: rgba(200, 144, 21, 0.05) !important;
}
table td, .table td {
    border-color: rgba(200, 144, 21, 0.06) !important;
    padding: 12px 16px !important;
    color: #ede4ce !important;
}

/* Forms in admin/client */
.form-control, .form-select, input, textarea, select {
    background: #0e080a !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.22) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
}
.form-control:focus, .form-select:focus, input:focus, textarea:focus, select:focus {
    background: #140b0d !important;
    border-color: #c89015 !important;
    box-shadow: 0 0 0 3px rgba(200, 144, 21, 0.16) !important;
    color: #ede4ce !important;
}
.form-control::placeholder, input::placeholder, textarea::placeholder {
    color: rgba(237, 228, 206, 0.32) !important;
}
.form-label, label { color: #ede4ce !important; font-weight: 600 !important; }

/* Bootstrap alert overrides */
.alert { border-radius: 10px !important; border-width: 1px !important; }
.alert-primary, .alert-info { background: rgba(200, 144, 21, 0.10) !important; color: #e9c571 !important; border-color: rgba(200, 144, 21, 0.3) !important; }
.alert-success { background: rgba(107, 31, 42, 0.10) !important; color: #ede4ce !important; border-color: rgba(200, 144, 21, 0.35) !important; }
.alert-warning { background: rgba(160, 90, 44, 0.15) !important; color: #e9c571 !important; border-color: rgba(160, 90, 44, 0.4) !important; }
.alert-danger { background: rgba(107, 31, 42, 0.22) !important; color: #ede4ce !important; border-color: rgba(107, 31, 42, 0.5) !important; }

/* Badges */
.badge { font-weight: 600 !important; letter-spacing: 0.04em !important; }
.badge.bg-primary, .badge.bg-info { background: rgba(200, 144, 21, 0.18) !important; color: #e9c571 !important; border: 1px solid rgba(200, 144, 21, 0.4) !important; }
.badge.bg-success { background: rgba(200, 144, 21, 0.14) !important; color: #e9c571 !important; }
.badge.bg-danger { background: rgba(107, 31, 42, 0.35) !important; color: #ede4ce !important; }
.badge.bg-warning { background: rgba(160, 90, 44, 0.25) !important; color: #e9c571 !important; }
.badge.bg-secondary { background: rgba(237, 228, 206, 0.08) !important; color: rgba(237, 228, 206, 0.7) !important; }

/* Links + text colors */
a { color: #e9c571; transition: color 0.2s ease; }
a:hover { color: #ede4ce; }
.text-primary, .text-info { color: #c89015 !important; }
.text-muted { color: rgba(237, 228, 206, 0.55) !important; }
.text-success { color: #e9c571 !important; }
.text-danger { color: #d4a2a8 !important; }

/* Auth page card center */
.auth-card, .login-card, .login-container, .auth-wrapper > .card {
    background: #140b0d !important;
    border: 1px solid rgba(200, 144, 21, 0.22) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(200, 144, 21, 0.08) !important;
}

/* Modal + dropdown */
.modal-content { background: #140b0d !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.22) !important; }
.modal-header, .modal-footer { border-color: rgba(200, 144, 21, 0.12) !important; }
.modal-title { color: #ede4ce !important; font-family: "Cormorant Garamond", Georgia, serif !important; }
.dropdown-menu { background: #140b0d !important; border: 1px solid rgba(200, 144, 21, 0.22) !important; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55) !important; }
.dropdown-item { color: #ede4ce !important; padding: 10px 16px !important; }
.dropdown-item:hover, .dropdown-item:focus { background: rgba(200, 144, 21, 0.10) !important; color: #e9c571 !important; }
.dropdown-divider { border-color: rgba(200, 144, 21, 0.12) !important; }

/* Progress bars */
.progress { background: #0e080a !important; }
.progress-bar, .progress-bar-success, .progress-bar-info { background: #c89015 !important; }

/* Pagination */
.page-item .page-link { background: #140b0d !important; color: #ede4ce !important; border-color: rgba(200, 144, 21, 0.16) !important; }
.page-item.active .page-link { background: #c89015 !important; color: #0a0405 !important; border-color: #d6a336 !important; font-weight: 700 !important; }

/* Nav pills / tabs */
.nav-pills .nav-link.active, .nav-tabs .nav-link.active { background: #c89015 !important; color: #0a0405 !important; }
.nav-link { color: rgba(237, 228, 206, 0.72) !important; }
.nav-link:hover { color: #e9c571 !important; }

/* Form-check / checkbox */
.form-check-input:checked { background-color: #c89015 !important; border-color: #c89015 !important; }
.form-switch .form-check-input { background-color: #0e080a !important; border-color: rgba(200, 144, 21, 0.35) !important; }

/* Code blocks */
code, pre { background: #0e080a !important; color: #e9c571 !important; border: 1px solid rgba(200, 144, 21, 0.12) !important; }

/* Hover on rows in lists */
.list-group-item { background: #140b0d !important; color: #ede4ce !important; border-color: rgba(200, 144, 21, 0.1) !important; }
.list-group-item:hover, .list-group-item.active { background: rgba(200, 144, 21, 0.08) !important; color: #e9c571 !important; }

/* ============================================================
   URGENT FIXES — tout élément encore lumineux sur voxeel.ai
   ============================================================ */

/* Guide page — blocs .feature-box en blanc pur + .step-note bleu pâle */
.feature-box, .features-grid .feature-box,
.step-note, .note-box, .info-box,
.benefit-box, .highlight-box, .tip-box, .warning-box,
.guide-card .box, .tutorial-box,
div[style*="background: #ffffff"], div[style*="background:#ffffff"],
div[style*="background: #fff"], div[style*="background:#fff"] {
    background: #140b0d !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
}
.feature-box *, .step-note *, .note-box *,
.benefit-box *, .highlight-box *, .tip-box * {
    color: #ede4ce !important;
}
.feature-box h3, .feature-box h4, .feature-box .title,
.step-note strong, .note-box strong,
.benefit-box h3, .benefit-box h4,
.highlight-box h3, .highlight-box h4 {
    color: #e9c571 !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
}
.feature-box p, .step-note p, .note-box p {
    color: rgba(237, 228, 206, 0.75) !important;
}

/* Any element with inline white bg */
[style*="background-color: white"], [style*="background-color:#fff"],
[style*="background-color: #fff"], [style*="background-color: rgb(255"],
[style*="background: rgb(255, 255, 255)"] {
    background-color: #140b0d !important;
    background: #140b0d !important;
    color: #ede4ce !important;
}

/* Any white-ish bg used by guide/landing sections */
section.features-section, section.benefits-section, section.highlights-section,
section.tutorial-section, section.steps-section {
    background: #070405 !important;
    color: #ede4ce !important;
}

/* Light bluish tint catches (rgb 232 244 248 etc.) */
[style*="rgb(232, 244"], [style*="rgb(240, 244"], [style*="rgb(235, 238"],
.light-bg, .bg-blue-light, .bg-info-light {
    background: #0e080a !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
}

/* =============================================================
   Ghost buttons — plus visibles
   ============================================================= */

/* Rendre les boutons "ghost" / outline plus évidents */
.btn-ghost, .btn--ghost, .btn-outline, .btn-outline-primary, .btn-outline-light,
.btn-secondary, a.btn--ghost, button.btn--ghost {
    background: rgba(200, 144, 21, 0.06) !important;
    border: 1.5px solid rgba(200, 144, 21, 0.55) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s ease !important;
}
.btn-ghost:hover, .btn--ghost:hover, .btn-outline:hover, .btn-outline-primary:hover,
.btn-secondary:hover, a.btn--ghost:hover, button.btn--ghost:hover {
    background: rgba(200, 144, 21, 0.14) !important;
    border-color: #c89015 !important;
    color: #ede4ce !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Any remaining rgb(255,255,255) backgrounds across templates */
*[style*="background-color: rgb(255"], *[style*="background: rgb(255"] {
    background-color: #140b0d !important;
    background: #140b0d !important;
}

/* Body html fallback */
html, body {
    background: #070405 !important;
    color: #ede4ce !important;
}

/* Guide page: remaining FAQ, shortcut items, warnings */
.shortcut-item, .shortcut-card, .keyboard-shortcut,
.faq-item, .faq-question, .faq-answer,
.step-warning, .warning-box, .tip-box,
details.faq-item, summary.faq-question {
    background: #140b0d !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
}
.faq-item[open], details[open].faq-item {
    border-color: rgba(200, 144, 21, 0.42) !important;
    background: #180c0e !important;
}
.faq-question[aria-expanded="true"], .faq-question.active {
    color: #e9c571 !important;
}
.step-warning, .warning-box {
    border-left: 3px solid #c89015 !important;
    padding-left: 16px !important;
}
.shortcut-key, kbd, .keyboard-key {
    background: #0a0607 !important;
    color: #e9c571 !important;
    border: 1px solid rgba(200, 144, 21, 0.3) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-family: 'Sono', monospace !important;
}

/* Any white-ish gray 248 249 250 */
[style*="rgb(248, 249, 250)"],
[style*="background-color: #f8f9fa"], [style*="background:#f8f9fa"], [style*="background: #f8f9fa"],
.bg-light {
    background: #0e080a !important;
    color: #ede4ce !important;
}

/* Warning yellows like rgb(255, 243, 205) */
[style*="rgb(255, 243"], [style*="rgb(255, 248"] {
    background: rgba(200, 144, 21, 0.1) !important;
    color: #e9c571 !important;
    border: 1px solid rgba(200, 144, 21, 0.3) !important;
}

/* Button unclarity — give every text-only "link disguised as button" a hint */
a.btn-link, .btn-link, button.btn-link, a.link-action {
    color: #e9c571 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(200, 144, 21, 0.5) !important;
    text-underline-offset: 3px !important;
}
a.btn-link:hover, .btn-link:hover {
    color: #ede4ce !important;
    text-decoration-color: #c89015 !important;
}

/* Bootstrap fallback — any button without explicit class */
button:not([class*="btn-"]):not([class*="btn "]):not([class]):not(.close):not(.navbar-toggler) {
    background: rgba(200, 144, 21, 0.08) !important;
    border: 1px solid rgba(200, 144, 21, 0.3) !important;
    color: #e9c571 !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
}

/* Final comprehensive dark enforcement on ANY bright element */
.tip-card, .tip-content, .tip-icon, .tip-container .tip-card,
.shortcut-card, .shortcut-grid .shortcut-item,
.tutorial-card, .tutorials-grid .card,
.section-card, .feature-card, .benefit-card,
.rapport-card, .rapport-item,
.config-card, .setting-card,
.metric-card, .dashboard-card,
.notification-card,
.guide-section .card, .guide-section > div,
[class*="-card"], [class*="card-"] {
    background: #140b0d !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
}
[class*="-card"] h1, [class*="-card"] h2, [class*="-card"] h3, [class*="-card"] h4,
.tip-content h4, .tip-card h3, .tip-card h4,
.shortcut-card h4, .faq-question, .faq-answer h4 {
    color: #e9c571 !important;
    font-family: 'Cormorant Garamond', serif !important;
}
[class*="-card"] p, .tip-content p, .shortcut-card p, .faq-answer p {
    color: rgba(237, 228, 206, 0.75) !important;
}

/* Icons inside dark cards — gold */
.tip-icon, .tip-icon i,
.shortcut-icon, .shortcut-icon i,
.feature-icon, .feature-icon i,
.section-icon, .section-icon i,
.step-icon, .step-icon i,
[class*="-icon"] > i.fa-solid,
[class*="-icon"] > i.fas,
[class*="-icon"] > i.fa {
    color: #c89015 !important;
}

/* FAQ specifics */
.faq-container, .faqs-container { background: transparent !important; }
.faq-question, .faq-trigger { background: #140b0d !important; color: #ede4ce !important; border: 1px solid rgba(200, 144, 21, 0.14) !important; padding: 16px 20px !important; border-radius: 10px !important; margin-bottom: 8px !important; }
.faq-question:hover { background: #180c0e !important; border-color: rgba(200, 144, 21, 0.3) !important; }
.faq-question.active, .faq-question[aria-expanded="true"] { background: #180c0e !important; border-color: #c89015 !important; color: #e9c571 !important; }
.faq-answer { background: transparent !important; color: rgba(237, 228, 206, 0.72) !important; padding: 12px 20px !important; }
.faq-answer-content { background: transparent !important; color: rgba(237, 228, 206, 0.72) !important; }

/* Any remaining white-on-near-white inside the guide */
#conseils *, #faq *, #raccourcis *, #premier-demarrage *, #installation *, #transcription * {
    background-color: transparent;
}
#conseils .tip-card, #faq .faq-item, #raccourcis .shortcut-card,
#conseils > *, #faq > *, #raccourcis > * {
    background-color: #140b0d !important;
}
section.guide-section {
    background: transparent !important;
}
section.guide-section .container, section.guide-section > div {
    background: transparent !important;
}

/* Catch: any element with light bg >200 luminance — force dark */
[style*="background: #fff"], [style*="background:#fff"],
[style*="background-color: #fff"], [style*="background-color:#fff"],
[style*="background: white"], [style*="background-color: white"],
[style*="rgb(255, 255, 255)"], [style*="rgba(255, 255, 255"],
[style*="#f8f9fa"], [style*="#f5f5f5"], [style*="#fafafa"],
[style*="#e9ecef"], [style*="#dee2e6"] {
    background: #140b0d !important;
    background-color: #140b0d !important;
    color: #ede4ce !important;
}

/* Details / summary fallback styling */
details { background: #140b0d !important; border: 1px solid rgba(200, 144, 21, 0.14) !important; border-radius: 10px !important; margin-bottom: 8px !important; }
summary { background: transparent !important; color: #ede4ce !important; padding: 14px 20px !important; cursor: pointer; }
summary:hover { color: #e9c571 !important; }

/* Section body with class faq-container / tips-container / container */
.tips-container, .shortcuts-container, .shortcut-grid, .tips-grid {
    background: transparent !important;
}

/* =================================================
   Button unclarity — add hint bar under ghost buttons
   ================================================= */
.btn-ghost, .btn--ghost, .btn-outline, .btn-secondary {
    position: relative;
}

/* ===== Wine-label style buttons override — applies to all Voxeel primary CTAs ===== */

.btn-primary, .btn.btn-primary, button.btn-primary,
.bg-primary, button.bg-primary,
.btn-login, button.btn-login,
.btn-register, button.btn-register,
.btn-download, button.btn-download,
.cta-button, button.cta-button,
[data-variant="primary"], [data-variant="default"] {
    background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    border: 1px solid #c89015 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(200, 144, 21, 0.32), 0 0 0 1px rgba(200, 144, 21, 0.18) !important;
    text-shadow: 0 0 12px rgba(200, 144, 21, 0.28) !important;
    position: relative;
    overflow: hidden;
    animation: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-primary::before, .btn.btn-primary::before, button.btn-primary::before,
.bg-primary::before, .btn-login::before, .btn-register::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 197, 113, 0.32), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-primary:hover, .btn.btn-primary:hover, button.btn-primary:hover,
.bg-primary:hover,
.btn-login:hover, .btn-register:hover, .btn-download:hover,
.cta-button:hover {
    background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%) !important;
    color: #f4d58a !important;
    border-color: #e9c571 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(233, 197, 113, 0.45), 0 0 0 1px rgba(233, 197, 113, 0.35) !important;
}

.btn-primary:hover::before, .btn-login:hover::before, .btn-register:hover::before,
.cta-button:hover::before {
    left: 130%;
}

/* Nav inscription button in site nav */
.nav-register, a.nav-register {
    background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%) !important;
    color: #e9c571 !important;
    border: 1px solid #c89015 !important;
    font-weight: 600 !important;
    animation: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(200, 144, 21, 0.3) !important;
    text-shadow: 0 0 10px rgba(200, 144, 21, 0.22) !important;
}
.nav-register:hover {
    background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%) !important;
    color: #f4d58a !important;
    border-color: #e9c571 !important;
    transform: translateY(-1px);
}

/* ===================================================================
   Raffinements luxe "Grand Cru" — filigrane, ornements, états hover
   =================================================================== */

/* Voxeel logo : tone-shift bleu vers or via filtre (élégance + cohérence) */
.navbar-brand img,
img[src*="/images/logo.png"],
a[class*="brand"] img {
    filter: sepia(1) saturate(4) hue-rotate(1deg) brightness(0.9);
}

/* Section dividers — ornement or central */
section + section,
.section + .section {
    position: relative;
}

/* Gold filigree on hero headlines - corner flourishes */
.hero, .hero-section, section.hero {
    position: relative;
}
.hero::before {
    pointer-events: none;
}

/* Add ornamental corners to CTA-band / featured cards */
.cta-band, .cta-band--dark, [class*="cta-"] {
    position: relative;
}
.cta-band::before, .cta-band::after {
    pointer-events: none;
}

/* Refined hover glow on primary accent buttons */
.btn--accent:hover, .btn-primary:hover, .btn-login:hover, .btn-register:hover,
.cta-button:hover {
    animation: none !important;
}

/* Link hover — gold underline grows */
main a:not(.btn):not(.btn-primary):not(.btn--accent):not(.nav-link):not(.card):not(.site-nav__link):not([class*="btn"]):not([class*="card"]) {
    position: relative;
    color: #e9c571;
    transition: color 0.2s ease;
}
main a:not(.btn):not(.btn-primary):not(.btn--accent):not(.nav-link):not(.card):not([class*="btn"]):not([class*="card"]):hover {
    color: #f4d58a;
}

/* Card hover — subtle burgundy lift */
.card:hover, .team-card:hover, .testimonial:hover, .process-step:hover, .faq-item:hover {
    border-color: rgba(200, 144, 21, 0.45) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(200, 144, 21, 0.18) !important;
}

/* Eyebrow — add a subtle dot after the gold line */
.eyebrow::after {
    content: ' ●';
    color: rgba(200, 144, 21, 0.5);
    font-size: 0.65em;
    margin-left: 6px;
    vertical-align: middle;
}

/* Section head underline */
.section__head, .section-header, .hero__grid--center {
    position: relative;
}

/* First letter dropcap for long-form prose */
.prose > p:first-of-type::first-letter,
.legal-section > p:first-of-type::first-letter,
.article-body > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 3.2em;
    font-weight: 500;
    float: left;
    line-height: 0.85;
    padding: 4px 10px 0 0;
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle parchment noise overlay (optional — very low opacity) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.25;
    pointer-events: none;
    z-index: 9999;
}

/* Dark input focus : glow with gold + subtle inner shine */
input:focus, textarea:focus, select:focus, .form__input:focus, .form-control:focus {
    background: #180c0e !important;
    border-color: #c89015 !important;
    box-shadow: 0 0 0 3px rgba(200, 144, 21, 0.18), inset 0 1px 0 rgba(200, 144, 21, 0.14) !important;
    outline: none !important;
}

/* Form labels — slight gold accent */
label, .form__label, .form-label {
    color: rgba(237, 228, 206, 0.78) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

/* Hr separator with gold filigree */
hr {
    border: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(200, 144, 21, 0.35), transparent) !important;
    margin: 2rem 0 !important;
    position: relative;
}

/* Selection more luxurious */
::selection { background: rgba(200, 144, 21, 0.35); color: #ede4ce; text-shadow: 0 0 10px rgba(200, 144, 21, 0.5); }

/* Badge polish */
.badge, .tag, [class*="badge-"] {
    border: 1px solid rgba(200, 144, 21, 0.28) !important;
    background: rgba(200, 144, 21, 0.08) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
}

/* Avatar / images inside dark cards - subtle warm tint */
.testimonial__avatar, .team-card__avatar, .author-avatar {
    background: transparent !important;
    border: 1px solid #c89015 !important;
    color: #e9c571 !important;
}

/* Pricing "featured" card - gold foil gradient border */
.pricing-card.featured, .pricing-plan.featured, .plan-featured, .plan-card[class*="featured"] {
    position: relative;
    background: linear-gradient(135deg, #180c0e 0%, #221014 50%, #180c0e 100%) !important;
    border: 1px solid transparent !important;
    background-clip: padding-box !important;
}
.pricing-card.featured::before,
.pricing-plan.featured::before,
.plan-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%);
    border-radius: inherit;
    z-index: -1;
    padding: 1px;
}

/* Placeholder colors */
::placeholder { color: rgba(237, 228, 206, 0.28) !important; font-style: italic !important; }

/* Table polish */
table thead th, .table thead th {
    background: #0a0607 !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(200, 144, 21, 0.28) !important;
}

/* Caret / arrow after gold CTAs */
.btn--accent::after, .btn-primary::after {
    display: none;
}
