/* ========================================
   APLA DISTRIBUTION - MAIN STYLESHEET
   Production-ready, clean, organized
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --color-dark: #0a0a0a;
    --color-dark-alt: #1a1a1a;
    --color-dark-light: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-light: #e8c547;
    --color-cream: #f4ead7;
    --color-cream-soft: #fff8ec;
    --color-white: #ffffff;
    --color-text: #e8e8e8;
    --color-text-muted: #b0b0b0;
    --color-border: rgba(212, 175, 55, 0.2);
    --color-bg-dark: #050505;
    
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #050505 0%, #14110a 52%, #050505 100%);
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 82% 76%, rgba(255, 248, 236, 0.035) 0%, transparent 46%),
        linear-gradient(rgba(212, 175, 55, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: auto, auto, 64px 64px, 64px 64px;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 span, h2 span, h3 span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

/* ===== HEADER ===== */
header {
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    gap: 0.08rem;
    line-height: 1;
    text-transform: uppercase;
}

.logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-120%);
    animation: apla-logo-shimmer 6s ease-in-out infinite;
}

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

.logo span {
    color: inherit;
}

.logo-line,
.logo-subline {
    display: flex;
    position: relative;
}

.logo-letter {
    display: inline-block;
    color: var(--color-white);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.24rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    opacity: 0;
    animation: header-letter-rise 0.55s ease forwards;
    animation-delay: calc(0.08s + var(--i) * 0.07s);
}

.logo-subletter {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.48rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    opacity: 0;
    animation: header-subletter-rise 0.55s ease forwards;
    animation-delay: calc(0.34s + var(--i) * 0.035s);
}

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

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition-base);
    position: relative;
    isolation: isolate;
}

nav a:hover {
    color: var(--color-gold);
}

nav a.is-active {
    color: var(--color-gold);
}

.spark-nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.45rem;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: width 0.5s ease, opacity 0.5s ease;
}

.spark-nav-link:hover::after,
.spark-nav-link.is-active::after {
    width: 2.4rem;
    opacity: 0.8;
}

.spark-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: var(--color-gold);
    box-shadow: 0 0 7px 2px rgba(212, 175, 55, 0.65);
    pointer-events: none;
    animation: header-spark 0.6s ease-out forwards;
    animation-delay: var(--d);
}

.nav-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark) !important;
    padding: 0.6rem 1.3rem;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.14);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition-base);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.is-open {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.page-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.btn-small {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    min-width: 96px;
}

.mobile-call-button {
    display: none;
}

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

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 18%, rgba(212, 175, 55, 0.2), transparent 35%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.74) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95);
    display: block;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ===== MAIN SECTIONS ===== */
section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-copy {
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto 3rem;
    max-width: 860px;
    color: var(--color-text-muted);
}

.approach-list {
    margin-top: 3rem;
}

/* ===== SECTION BACKGROUNDS ===== */
#sourcing, #equipements {
    background: transparent;
}

#sourcing,
#services,
#values,
.contact-section,
.faq-section,
.legal-section {
    background: #050505;
}

#equipements,
#cta,
.page-header {
    background: linear-gradient(135deg, rgba(244, 234, 215, 0.98) 0%, rgba(255, 248, 236, 0.92) 100%);
    color: #11100d;
}

#equipements p,
#cta p,
.page-header p,
#equipements .feature-text p {
    color: rgba(17, 16, 13, 0.68);
}

#equipements .feature {
    background: rgba(17, 16, 13, 0.045);
    border: 1px solid rgba(139, 109, 31, 0.12);
}

#cta {
    text-align: center;
}

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

/* ===== GRID & CARDS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-slow);
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.card h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header > * {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ===== SECTION WITH IMAGE ===== */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.section-with-image.reverse {
    direction: rtl;
}

.section-with-image.reverse > * {
    direction: ltr;
}

.section-image-full {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.section-image-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.section-image-full:hover img {
    transform: scale(1.02);
}

.section-content {
    padding: 2rem;
}

.section-content h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.features-list {
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
}

.feature-icon {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.3rem;
    min-width: 30px;
    flex-shrink: 0;
}

.feature-text h3 {
    margin: 0 0 0.3rem 0;
    color: var(--color-gold);
    font-size: 1rem;
    text-align: left;
}

.feature-text p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===== SERVICE ITEMS ===== */
.service-item {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.service-item h2 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: left;
}

.service-item h3 {
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    text-align: left;
}

.service-item p {
    margin-bottom: 1.5rem;
}

.service-item ul {
    list-style: none;
    margin-top: 1rem;
}

.service-item li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--color-text-muted);
}

.service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 2rem;
    text-align: left;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.8rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    font-size: 0.92rem;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: #dff7e4;
    background: rgba(49, 130, 74, 0.22);
    border: 1px solid rgba(76, 175, 80, 0.45);
}

.form-status.is-error {
    color: #ffe0e0;
    background: rgba(170, 54, 54, 0.22);
    border: 1px solid rgba(230, 80, 80, 0.45);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
}

.info-block h3 {
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    text-align: left;
}

.info-block p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.info-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.info-block a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-base);
}

.info-block a:hover {
    text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-item h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left;
}

/* ===== LEGAL SECTION ===== */
.legal-section {
    padding: 5rem 2rem;
    max-width: 940px;
    margin: 0 auto;
}

.legal-section h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-gold);
    text-align: left;
    font-size: 1.45rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-gold);
    font-size: 1.1rem;
    text-align: left;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: rgba(244, 234, 215, 0.62);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), #010101);
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), transparent 30%),
        linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.025) 1px, transparent 1px);
    background-size: auto, 52px 52px, 52px 52px;
    pointer-events: none;
}

.footer-brand-premium {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-brand-mark {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-logo {
    display: block;
    width: min(260px, 72vw);
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 36px rgba(212, 175, 55, 0.08);
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 50%;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    transition: var(--transition-base);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 197, 71, 0.7);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 16px 34px rgba(212, 175, 55, 0.12);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

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

.footer-section p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ===== APLA B2B PREMIUM EXTENSIONS ===== */
.section-kicker {
    margin: 0 0 1rem;
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-align: center;
    text-transform: uppercase;
}

.premium-band {
    overflow: hidden;
}

.cream-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 234, 215, 0.96)),
        radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.14), transparent 32%);
    color: #11100d;
}

.dark-band {
    background:
        radial-gradient(circle at 14% 12%, rgba(212, 175, 55, 0.11), transparent 32%),
        linear-gradient(135deg, #050505, #11100d);
    color: var(--color-text);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.cream-band h2,
.cream-band h3 {
    color: #11100d;
}

.cream-band p,
.cream-band li {
    color: rgba(17, 16, 13, 0.68);
}

.premium-lead {
    max-width: 980px;
    margin: 0 auto 2.4rem;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.8;
}

.premium-chip-grid,
.mini-proof-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.premium-chip-grid span,
.mini-proof-grid span {
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: inherit;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
}

.duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin: 2.5rem 0;
}

.duo-card,
.premium-card,
.premium-form-shell {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.duo-card {
    padding: 2rem;
}

.duo-card h3 {
    color: var(--color-gold);
    text-align: left;
}

.duo-card ul {
    list-style: none;
    margin-top: 1.2rem;
}

.duo-card li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
}

.duo-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.66rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--color-gold);
}

.premium-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.premium-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.68);
    transition: var(--transition-base);
}

.premium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.56);
    box-shadow: 0 24px 60px rgba(61, 47, 24, 0.12);
}

.premium-card h3 {
    text-align: left;
    color: #11100d;
}

.process-rail {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 2rem;
}

.process-rail span {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 109, 31, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    color: #11100d;
    padding: 1rem;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
}

.premium-form-shell {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 2rem;
    padding: 2rem;
    width: min(100%, 1120px);
    margin: 0 auto;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08), transparent 38%),
        rgba(255, 255, 255, 0.035);
}

.premium-form-intro {
    padding: 1.2rem;
    align-self: center;
}

.premium-form-intro h2 {
    text-align: left;
}

.devis-form-premium {
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.72);
    padding: 1.5rem;
}

.devis-form-premium .btn {
    width: auto;
    min-width: 240px;
    margin: 0.5rem auto 0;
    display: flex;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.social-links-premium {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.social-links-premium a {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
}

.social-links-premium svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.social-links-premium a:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 197, 71, 0.7);
}

/* ===== GROUP INTRO SIGNATURE ===== */
.ecosystem-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.22), transparent 38%),
        radial-gradient(circle at 20% 20%, rgba(255, 248, 236, 0.08), transparent 28%),
        #020202;
    color: var(--color-white);
    cursor: pointer;
    animation: apla-intro-exit 0.9s ease forwards;
    animation-delay: 4.8s;
}

.ecosystem-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(212, 175, 55, 0.025) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.018) 1px, transparent 1px);
    background-size: 120px 120px;
    animation: apla-pattern 28s linear infinite;
}

.ecosystem-intro__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.ecosystem-intro__brand {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.7rem, 11vw, 9rem);
    font-weight: 300;
    letter-spacing: clamp(0.18rem, 1.2vw, 0.9rem);
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.22);
    animation: apla-title-enter 1.7s cubic-bezier(.22,1,.36,1) both;
}

.ecosystem-intro__line {
    width: min(280px, 52vw);
    height: 1px;
    margin: 1.6rem auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: apla-line-enter 1.5s ease 0.7s both;
}

.ecosystem-intro__subtitle {
    margin: 0;
    color: rgba(232, 197, 71, 0.82);
    font-size: clamp(0.72rem, 2vw, 1rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    animation: apla-sub-enter 1.2s ease 1.1s both;
}

.ecosystem-intro__group {
    margin-top: 3rem;
    color: rgba(245, 241, 232, 0.44);
    font-size: 0.64rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    animation: apla-sub-enter 1.2s ease 1.6s both;
}

@keyframes apla-logo-shimmer {
    0%, 72% { transform: translateX(-120%); }
    84%, 100% { transform: translateX(120%); }
}

@keyframes header-letter-rise {
    from { opacity: 0; transform: translateY(-10px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes header-subletter-rise {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes header-spark {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1.8); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); }
}

@keyframes apla-pattern {
    to { background-position: 240px 240px, -240px 240px; }
}

@keyframes apla-title-enter {
    from { opacity: 0; transform: translateY(56px) scale(0.96); filter: blur(16px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes apla-line-enter {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
}

@keyframes apla-sub-enter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes apla-intro-exit {
    to { opacity: 0; visibility: hidden; transform: scale(1.06); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 2rem;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    header {
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    nav {
        width: auto;
    }

    nav ul {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1rem);
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid var(--color-border);
        border-radius: 4px;
        box-shadow: var(--shadow-md);
    }

    nav ul.is-open {
        display: flex;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 0.9rem 1rem;
    }

    .nav-btn {
        margin-top: 0.35rem;
        text-align: center;
    }

    .mobile-call-button {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        z-index: 1002;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 112px;
        padding: 0.75rem 1rem;
        border-radius: 4px;
        background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
        color: var(--color-dark);
        font-size: 0.9rem;
        font-weight: 700;
        box-shadow: var(--shadow-md);
    }

    section {
        padding: 3rem 1.5rem;
    }

    .grid, .contact-grid, .section-with-image,
    .section-with-image.reverse,
    .duo-grid,
    .premium-form-shell {
        grid-template-columns: 1fr;
    }

    .process-rail {
        grid-template-columns: 1fr 1fr;
    }

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

    .section-with-image.reverse {
        direction: ltr;
    }

    .section-with-image.reverse > * {
        direction: ltr;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .page-header {
        padding: 2rem 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand-premium {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-grid {
        gap: 1.5rem;
    }

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

    .hero {
        min-height: 600px;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .info-block {
        padding: 1rem;
    }

    .hero {
        min-height: 500px;
        padding: 1rem;
    }

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

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

    .process-rail {
        grid-template-columns: 1fr;
    }
    
