/* ===================================
   SOVEREIGN 380 - STYLES
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #c9a961;
    --dark-gold: #8a713a;
    --light-gold: #e5d4a6;
    --platinum: #e5e4e2;
    --diamond: #b9f2ff;
    --deep-black: #020202;
    --dark-bg: #050505;
    --light-bg: #0b0b0b;
    --white: #f8f8f4;
    --text-dark: #f3f3f0;
    --text-light: #a9a9a9;
    --font-serif: "Playfair Display", serif;
    --font-sans: "Space Grotesk", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--deep-black);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-menu,
body.rtl .nav-controls {
    direction: rtl;
}

body.rtl .section-title,
body.rtl .contact-intro,
body.rtl .b2b-content,
body.rtl .partners-intro,
body.rtl .private-copy,
body.rtl .private-note,
body.rtl .contact-form {
    text-align: right;
}

body.rtl input,
body.rtl textarea {
    text-align: right;
}

body.rtl .b2b-lists li::before {
    margin-right: 0;
    margin-left: 0.5rem;
    transform: scaleX(-1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-weight: 500;
}

.section-title.gold {
    color: var(--primary-gold);
}

.subsection-title {
    font-size: 2rem;
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-brand .logo {
    width: 150px;
    max-width: 45vw;
    height: auto;
}

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

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a.active {
    color: var(--primary-gold);
    position: relative;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--primary-gold);
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    color: var(--white) !important;
    background: linear-gradient(120deg, var(--primary-gold), #775c24);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.25),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover::after {
    opacity: 1;
}

.language-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.35rem 2rem 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 5, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    overflow-x: auto;
}

.language-strip::-webkit-scrollbar {
    height: 6px;
}

.language-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.language-button img {
    width: 20px;
    height: 20px;
}

.language-button.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(201, 169, 97, 0.08);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.25);
}

.language-button:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.35rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:focus-visible {
    border-color: var(--primary-gold);
    outline: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #020202 0%, #111111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("assets/images/hero/hero-nocturne-club.jpg") center/cover;
    opacity: 0.35;
}

.hero::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulseGlow 14s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(60, 60, 60, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-hero {
    padding: 1.1rem 3.5rem;
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(12px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.65;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.35;
    }
}

/* Introduction Section */
.intro {
    padding: 8rem 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.9),
        rgba(5, 5, 5, 0.95)
    );
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.intro-text strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Our Story Section */
.our-story {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.story-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transform: scale(1.05);
    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.story-image:hover::after {
    opacity: 1;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.stats .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #040404;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.services-copy p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(201, 169, 97, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Expertise Section */
.expertise {
    padding: 8rem 0;
    background: #050505;
}

.expertise-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.expertise-item.reverse {
    direction: rtl;
}

.expertise-item.reverse > * {
    direction: ltr;
}

.expertise-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.expertise-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.expertise-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.expertise-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Investments Section */
.investments {
    padding: 8rem 0;
    background: #111111;
    color: var(--white);
}

.investments .section-title {
    color: var(--white);
}

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

.investment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.investment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.investment-body {
    padding: 2rem;
}

.investment-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.investment-body p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Offers section removed */

/* Partners Section */
.partners {
    padding: 8rem 0;
    background: #040404;
}

.partners-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
}

.partners-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .partners-regions {
        grid-template-columns: repeat(5, minmax(220px, 1fr));
    }
}

.partner-region {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.partner-region h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-region ul {
    list-style: none;
    line-height: 2;
    color: var(--text-light);
}

.partner-region li + li {
    margin-top: 0.5rem;
}

.partner-region strong {
    color: var(--white);
    font-weight: 600;
}

/* B2B Section */
.b2b {
    padding: 8rem 0;
    background: var(--light-bg);
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.b2b-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.b2b-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.b2b-lists h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
}

.b2b-lists ul {
    list-style: none;
    line-height: 1.9;
}

.b2b-lists li::before {
    content: "▸";
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.b2b-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.b2b-confidential {
    margin: 1rem 0 0;
    font-style: italic;
    color: var(--primary-gold);
}

.b2b-steps {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.b2b-steps li {
    margin-bottom: 0.4rem;
}

.b2b-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.b2b-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.8), rgba(5, 5, 5, 0.4));
    pointer-events: none;
}

.b2b-visual img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0.4;
    filter: grayscale(15%);
}

/* Private Access */
.private {
    padding: 8rem 0;
    background: #030303;
}

.private-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.private-copy p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.private-list {
    list-style: none;
    margin-top: 1.5rem;
    line-height: 2;
    color: var(--text-light);
}

.private-list li::before {
    content: "▹";
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.private-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.private-note p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #050505;
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: start;
    justify-content: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.contact-item + .contact-item {
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.contact-item a {
    font-size: 1.05rem;
    color: var(--white);
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

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

.contact-form-wrapper {
    background: #111;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    color: var(--light-bg);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-family: var(--font-sans);
    transition:
        border 0.3s ease,
        box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.2);
}

.form-submit {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    min-height: 1.2rem;
    color: var(--primary-gold);
}

.form-status.error {
    color: #ffb4b4;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #010101;
    color: var(--white);
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: clamp(140px, 35vw, 220px);
    height: auto;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .b2b-grid,
    .partners-regions,
    .private-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-controls {
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .b2b-grid,
    .partners-regions,
    .private-grid,
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .language-strip {
        justify-content: flex-start;
        padding: 0.35rem 1rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .language-strip {
        justify-content: center;
        gap: 0.3rem;
    }

    .partners-regions,
    .private-grid,
    .contact-grid {
        gap: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.4rem;
    }

    .form-row input,
    .form-row textarea {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero::after,
    .scroll-indicator {
        display: none !important;
    }

    .hero,
    .hero-content,
    section > .container > * {
        transform: none !important;
    }
}

/* ============================================
   DNA BRAINS CORTEX
   ============================================ */

/* Sélection dorée */
::selection {
    background: var(--primary-gold);
    color: var(--deep-black);
}

/* Scrollbar dorée */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-black); }
::-webkit-scrollbar-thumb { background: rgba(201, 169, 97, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-gold); }

/* Footer DNA badge */
.footer__dna {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}
.footer__dna-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation: dna-pulse 3s ease-in-out infinite;
}
@keyframes dna-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.footer__dna-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}
.footer__dna-label a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__dna-label a:hover {
    color: var(--light-gold);
}
