/* ============================================================
   VERCORS BOOTH — STYLE.CSS
   Styles communs à toutes les pages du site
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
    --primary: #1a1a2e;
    --secondary: #d4af37;
    --text: #333;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #0f0f1e;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.8;
}

a { color: var(--secondary); text-decoration: none; }

/* ===== HEADER / NAV ===== */
header {
    background: var(--primary);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
}

.logo-icon { width: 35px; height: 35px; }

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.cta-nav {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    color: var(--primary) !important;
}

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

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

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

.mobile-menu {
    display: none;
    background: var(--primary);
    padding: 1rem 2rem 2rem;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
}

.mobile-menu a:hover { color: var(--secondary); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 75px auto 0;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    color: #999;
}

.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ===== HERO (base) ===== */
.hero {
    color: var(--white);
    padding: 12rem 2rem 6rem;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero h1 span { color: var(--secondary); }

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--primary);
}

/* ===== CONTENT SECTIONS ===== */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #555;
}

.content strong { color: var(--primary); }

.highlight-box {
    background: linear-gradient(135deg, var(--light), #fff);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box h3 { color: var(--primary); margin-bottom: 0.5rem; }

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3.5rem;
    font-size: 1.2rem;
}

/* ===== HOW IT WORKS / STEPS ===== */
.how-it-works {
    background: #ffffff;
    padding: 5rem 2rem;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #e6c355, var(--secondary));
    z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #e6c355);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.8rem; }
.step-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #2d2d44);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 { margin-bottom: 1rem; font-size: 2.2rem; }
.cta-section p { margin-bottom: 2rem; opacity: 0.9; font-size: 1.1rem; }

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact-item { display: flex; align-items: center; gap: 0.5rem; color: var(--secondary); font-size: 1.3rem; }
.contact-item a { color: var(--secondary); text-decoration: none; }

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: #aaa;
    text-align: center;
    padding: 2rem;
}

footer a { color: var(--secondary); text-decoration: none; }

.footer-seo {
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    max-width: 1000px;
    text-align: center;
}

.footer-seo p { font-size: 0.85rem; color: #888; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-seo a { color: #aaa; text-decoration: none; }
.footer-seo a:hover { color: var(--secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin: 1.2rem 0; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; color: var(--secondary); text-decoration: none; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--secondary); color: var(--primary); border-color: var(--secondary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212,175,55,0.3); }

/* ===== SOCIAL FLOAT WIDGET ===== */
.social-float { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.5rem; z-index: 999; }
.social-float a { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--secondary); text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.15); position: relative; }
.social-float a:hover { background: var(--secondary); color: var(--primary); transform: scale(1.12); box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
.sf-tooltip { position: absolute; right: 56px; background: var(--primary); color: #fff; padding: 0.4rem 0.8rem; border-radius: 6px; font-size: 0.75rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s ease; font-weight: 600; }
.sf-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--primary); }
.social-float a:hover .sf-tooltip { opacity: 1; right: 60px; }
.sf-badge { position: absolute; bottom: -2px; right: -2px; background: var(--secondary); color: var(--primary); border-radius: 50px; padding: 0 4px; font-size: 0.55rem; font-weight: 800; line-height: 1.4; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 25px; left: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--secondary); border: 2px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 998; box-shadow: 0 4px 15px rgba(0,0,0,0.15); font-size: 1.2rem; text-decoration: none; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); color: var(--primary); border-color: var(--secondary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212,175,55,0.3); }

/* ===== RESPONSIVE — COMMON ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .steps-container { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
    .steps-container::before { display: none; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .content h2 { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    .contact-info { flex-direction: column; gap: 1rem; }
    .breadcrumb { margin-top: 65px; }
    .social-float { right: 10px; gap: 0.4rem; }
    .social-float a { width: 38px; height: 38px; }
    .sf-tooltip { display: none; }
}

@media (max-width: 500px) {
    .steps-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* ===== CONTACT WIDGET (pages secondaires) ===== */
.cw-container { position: fixed; bottom: 25px; right: 25px; z-index: 997; }
.cw-btn { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), #e6c355); border: 2px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 25px rgba(212,175,55,0.5); transition: all 0.3s ease; }
.cw-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(212,175,55,0.6); }
.cw-popup { position: absolute; bottom: 75px; right: 0; width: 300px; background: var(--white); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; overflow: hidden; }
.cw-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
.cw-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; background: var(--primary); color: var(--white); }
.cw-title { font-weight: 700; font-size: 0.95rem; }
.cw-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0; transition: color 0.3s; }
.cw-close:hover { color: var(--white); }
.cw-options { padding: 0.8rem; }
.cw-option { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem; border-radius: 10px; text-decoration: none; color: var(--primary); transition: all 0.3s ease; border: 1px solid #eee; margin-bottom: 0.6rem; }
.cw-option:last-child { margin-bottom: 0; }
.cw-option:hover { background: rgba(212,175,55,0.1); border-color: var(--secondary); }
.cw-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.cw-phone { background: rgba(255,152,0,0.12); }
.cw-whatsapp { background: rgba(37,211,102,0.12); }
.cw-email { background: rgba(234,67,53,0.12); }
.cw-text { flex: 1; }
.cw-text strong { display: block; font-size: 0.9rem; }
.cw-text small { color: #888; font-size: 0.78rem; }
.cw-arrow { color: #ccc; font-size: 1.3rem; }
.cw-footer { padding: 0.6rem 1rem; background: var(--light); text-align: center; border-top: 1px solid #eee; }
.cw-footer small { color: #888; font-size: 0.75rem; }

@media (max-width: 480px) {
    .cw-container { bottom: 15px; right: 15px; }
    .cw-btn { width: 50px; height: 50px; }
    .cw-btn svg { width: 22px; height: 22px; }
    .cw-popup { width: calc(100vw - 30px); right: 0; bottom: 65px; }
}

/* ==================== CONTACT WIDGET FLOTTANT ==================== */
.contact-widget-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.contact-widget-btn {
    position: absolute;
    bottom: 30px;
    right: -30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #e6c355);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4), 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    overflow: hidden;
}

.contact-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.contact-widget-icons {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-widget-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    animation: iconRotate 8s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-widget-icon svg { display: block; }
.contact-widget-icon:nth-child(1) { animation-delay: 0s; }
.contact-widget-icon:nth-child(2) { animation-delay: 2s; }
.contact-widget-icon:nth-child(3) { animation-delay: 4s; }
.contact-widget-icon:nth-child(4) { animation-delay: 6s; }

@keyframes iconRotate {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    5% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    25% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    30% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}

.contact-widget-popup {
    position: absolute;
    bottom: 115px;
    right: -30px;
    width: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.contact-widget-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-widget-options { padding: 1rem; }

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 0.8rem;
}

.contact-option:last-child { margin-bottom: 0; }
.contact-option:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--secondary); }

.contact-option-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-option-icon.phone { background: rgba(255, 152, 0, 0.15); }
.contact-option-icon.messenger { background: rgba(0, 132, 255, 0.15); }
.contact-option-icon.whatsapp { background: rgba(37, 211, 102, 0.15); }
.contact-option-icon.email { background: rgba(234, 67, 53, 0.15); }

.contact-option-text h5 { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.2rem 0; }
.contact-option-text p { font-size: 0.8rem; color: #888; margin: 0; }
.contact-option-arrow { margin-left: auto; color: #ccc; font-size: 1.2rem; }

@media (max-width: 1300px) {
    .contact-widget-btn { right: 10px; }
    .contact-widget-popup { right: 10px; }
}

@media (max-width: 480px) {
    .contact-widget-container { left: 0; transform: none; width: 100%; }
    .contact-widget-popup { position: fixed; right: 10px; left: 10px; width: auto; max-width: calc(100vw - 20px); bottom: 90px; max-height: 70vh; overflow-y: auto; }
    .contact-widget-btn { bottom: 15px; right: 15px; width: 55px; height: 55px; }
    .contact-widget-icon { font-size: 1.5rem; }
    .contact-widget-options { padding: 0.8rem; }
    .contact-option { padding: 0.8rem; gap: 0.8rem; margin-bottom: 0.6rem; }
    .contact-option-icon { width: 38px; height: 38px; font-size: 1.2rem; }
    .contact-option-text h5 { font-size: 0.85rem; }
    .contact-option-text p { font-size: 0.7rem; }
    .contact-option-arrow { font-size: 1rem; }
}

@media (max-width: 360px) {
    .contact-widget-popup { right: 5px; left: 5px; bottom: 80px; }
    .contact-widget-btn { bottom: 10px; right: 10px; width: 50px; height: 50px; }
}

/* ==================== BANDEAU COOKIE CONSENT (RGPD) ==================== */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary, #1a1a2e);
    color: #fff;
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.ccb-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ccb-text { flex: 1; }
.ccb-text p { margin: 0 0 0.3rem 0; font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.9); }
.ccb-text p:last-child { margin-bottom: 0; }
.ccb-text strong { color: #fff; }

.ccb-link {
    color: var(--secondary, #d4af37);
    text-decoration: underline;
}

.ccb-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.ccb-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ccb-btn-accept {
    background: var(--secondary, #d4af37);
    color: var(--primary, #1a1a2e);
}

.ccb-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.ccb-btn-refuse {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.ccb-btn-refuse:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .ccb-content {
        flex-direction: column;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }
    .ccb-buttons {
        width: 100%;
        justify-content: center;
    }
    .ccb-text p { font-size: 0.82rem; }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.pricing-card {
    background: var(--white, #fff);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--secondary, #d4af37), var(--accent, #e8c94b));
}
.pricing-card.featured {
    border-color: var(--secondary, #d4af37);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
}
.pricing-card:hover { box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12); }
.price-label {
    color: var(--secondary, #d4af37);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.price-tirages {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary, #1a1a2e);
    margin-bottom: 0.3rem;
    line-height: 1;
}
.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary, #1a1a2e);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.price-subtitle {
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.features-list { text-align: left; margin: 2.5rem 0; width: 100%; }
.features-list li {
    list-style: none;
    padding: 1rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}
.features-list li::before {
    content: '✓';
    color: var(--secondary, #d4af37);
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.features-list li:last-child { border-bottom: none; }

@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); }
    .pricing-grid { gap: 1.5rem; }
    .price { font-size: 2.8rem; }
}
