/* ============================================
   OLYMPE SERVICES — Greek Mythology Ultra-Modern
   ============================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --bg-primary: #06060e;
    --bg-secondary: #0a0a1a;
    --bg-card: #0f0f23;
    --bg-card-hover: #141432;

    /* Gold / Accent */
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #a67c2e;
    --gold-glow: rgba(212, 168, 83, 0.3);

    /* Pink (Eros) */
    --pink: #e84393;
    --pink-light: #fd79a8;
    --pink-glow: rgba(232, 67, 147, 0.3);

    /* Green (Hermès) */
    --green: #00b894;
    --green-light: #55efc4;
    --green-glow: rgba(0, 184, 148, 0.3);

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #8888a8;
    --text-muted: #55557a;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(212, 168, 83, 0.3);

    /* Fonts */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* === PARTICLES CANVAS === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 6, 14, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.logo-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-primary) !important;
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

.btn-pink {
    background: linear-gradient(135deg, #c0392b, var(--pink));
    color: white;
    box-shadow: 0 4px 24px var(--pink-glow);
}

.btn-pink:hover {
    box-shadow: 0 8px 40px var(--pink-glow);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #0a0a0a;
    box-shadow: 0 4px 24px var(--gold-glow);
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: 0 8px 40px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.4;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.5; transform: translateX(-50%) scale(1.2); }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 32px;
    background: rgba(212, 168, 83, 0.05);
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.3em;
    filter: drop-shadow(0 0 30px var(--gold-glow));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Greek Pillars decorative */
.greek-pillar {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 45%;
    opacity: 0.03;
    background: repeating-linear-gradient(
        0deg,
        var(--gold-light) 0px,
        var(--gold-light) 2px,
        transparent 2px,
        transparent 12px
    );
}

.greek-pillar.left {
    left: 5%;
    border-top: 20px solid rgba(212, 168, 83, 0.05);
}

.greek-pillar.right {
    right: 5%;
    border-top: 20px solid rgba(212, 168, 83, 0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

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

@keyframes scrollAnim {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === SECTIONS COMMON === */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(212, 168, 83, 0.05);
}

.tag-pink {
    color: var(--pink);
    border-color: rgba(232, 67, 147, 0.3);
    background: rgba(232, 67, 147, 0.05);
}

.tag-green {
    color: var(--green);
    border-color: rgba(0, 184, 148, 0.3);
    background: rgba(0, 184, 148, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

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

.text-pink {
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* === PRESTATIONS CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    opacity: 1;
}

.card-bundle {
    border-color: rgba(212, 168, 83, 0.2);
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.05) 0%, var(--bg-card) 30%);
}

.card-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.card-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    opacity: 0.5;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features li {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.card-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.card-btn:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

.card-btn.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: #0a0a0a;
}

.card-btn.btn-gold:hover {
    box-shadow: 0 8px 30px var(--gold-glow);
}

/* === PRODUCT SECTIONS (Eros & Hermès) === */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-layout.reverse {
    direction: rtl;
}

.product-layout.reverse > * {
    direction: ltr;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Visual Cards */
.visual-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.pink-glow {
    background: var(--pink);
}

.green-glow {
    background: var(--green);
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.visual-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.eros-visual .visual-title {
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hermes-visual .visual-title {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.visual-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 184, 148, 0.08);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 100px;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px transparent; }
}

/* === EROS SECTION BG === */
.eros-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(232, 67, 147, 0.03) 50%, var(--bg-primary) 100%);
}

/* === HERMES SECTION BG === */
.hermes-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 184, 148, 0.03) 50%, var(--bg-primary) 100%);
}

/* === PRICING SECTION === */
.pricing-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-popular {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.08) 0%, var(--bg-card) 40%);
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-god {
    border-color: rgba(212, 168, 83, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.god-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* === CTA / CONTACT === */
.contact-section {
    padding: 80px 0 120px;
}

.cta-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.cta-socials {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 12px;
}

.social-link {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* === GREEN BUTTON (Hermes) === */
.btn-green {
    background: linear-gradient(135deg, #00a381, #00b894);
    color: white;
    box-shadow: 0 4px 24px var(--green-glow);
}

.btn-green:hover {
    box-shadow: 0 8px 40px var(--green-glow);
    transform: translateY(-2px);
}

/* === PRODUCT ACTIONS === */
.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === CTA ACTIONS === */
.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === LOGO SVG === */
.logo-svg {
    flex-shrink: 0;
}

/* === DEVIS SECTION === */
.devis-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.devis-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    overflow: hidden;
}

.devis-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 250px;
    background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.devis-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.devis-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px 32px;
}

/* Devis success */
.devis-success {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.devis-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.devis-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* === ANIMATIONS (scroll reveal) === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cards-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-layout.reverse {
        direction: ltr;
    }

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

    .pricing-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(6, 6, 14, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-toggle {
        display: flex;
    }

    .cards-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .title-accent {
        font-size: 1.2em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-box {
        padding: 48px 24px;
    }

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

    .devis-form-wrapper {
        padding: 32px 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .visual-stats {
        gap: 20px;
    }

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

    .visual-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }

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

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

    .card {
        padding: 32px 24px;
    }
}
