/* ============================================================
   BETONPILOT DESIGN SYSTEM — Industriel Premium
   ============================================================ */

/* --- VARIABLES --- */
:root {
    --primary: #0F2B46;
    --primary-light: #1A3D5C;
    --accent: #FF6B00;
    --accent-hover: #E55D00;
    --accent-light: rgba(255, 107, 0, 0.12);
    --dark: #1C1C1E;
    --dark-light: #2C2C2E;
    --surface: #F8F9FA;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --success: #10B981;
    --danger: #EF4444;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.16);
    --shadow-accent: 0 8px 30px rgba(255, 107, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: 3.4rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.15rem; }

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.accent { color: var(--accent); }

/* --- SECTION SEPARATOR --- */
.section-separator {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto;
    border: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(28, 28, 30, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 24px;
    transition: var(--transition);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.nav-brand {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-brand i { color: var(--accent); font-size: 1.3rem; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}
.nav-cta::after { display: none !important; }
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 8px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 70%; height: 180%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 55%);
    pointer-events: none;
}
.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-pills span { display: inline-flex; align-items: center; gap: 4px; }

/* Stats card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-strong);
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: var(--surface);
}
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    min-height: 56px;
    border: none;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    min-height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 24px; }
.section-surface { background: var(--surface); }
.section-white { background: var(--white); }
.section-dark {
    background: linear-gradient(145deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: var(--white);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 43, 70, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-label-light {
    background: var(--accent-light);
    color: var(--accent);
}
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 56px;
}
.section-desc-light { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   PAIN POINTS (probleme)
   ============================================================ */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pain-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--danger);
    transition: var(--transition);
}
.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.pain-card .pain-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--danger);
    margin-bottom: 20px;
}
.pain-card h3 { margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.pain-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.feature-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    width: 56px; height: 56px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-accent);
}
.step h3 { color: var(--white); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.step p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}
.pricing-card.popular::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.pricing-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.pricing-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0;
}
.pricing-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}
.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
}
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--surface);
}
.pricing-features li i { color: var(--success); font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
}
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}
.testimonial-info strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-info span { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }
.testimonial-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    font-style: italic;
    margin-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: background 0.2s;
    min-height: 48px;
}
.faq-question:hover { background: var(--surface); }
.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 24px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.contact-info p { color: rgba(255, 255, 255, 0.7); line-height: 1.75; margin-bottom: 32px; }
.contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    transition: var(--transition);
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}
.contact-card i {
    font-size: 1.1rem;
    color: var(--accent);
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card a { color: var(--white); font-weight: 600; }
.contact-card span { display: block; color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; margin-top: 2px; font-weight: 400; }
.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light);
    border: 1px solid rgba(255, 107, 0, 0.25);
    padding: 14px 22px;
    border-radius: var(--radius-full);
    margin-top: 28px;
}
.dev-badge i { color: var(--accent); font-size: 1.1rem; }
.dev-badge span { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

/* Form */
.form-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 44px;
}
.form-box h3 {
    color: var(--white);
    margin-bottom: 28px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    min-height: 48px;
}
.form-input:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.08); }
.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select.form-input option { background: var(--dark); color: var(--white); }

/* ============================================================
   FADE IN
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-accent); }

/* ============================================================
   FLOATING CTA BUTTONS
   ============================================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px; right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.floating-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
    min-width: 48px;
    min-height: 48px;
}
.floating-btn:hover { transform: scale(1.12); }
.floating-phone {
    background: var(--accent);
    box-shadow: var(--shadow-accent);
    animation: pulse-phone 2.5s ease-in-out infinite;
}
@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 0, 0.5), 0 0 0 12px rgba(255, 107, 0, 0.06); }
}

/* ============================================================
   FOOTER (overrides base.html.twig inline)
   ============================================================ */
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent) !important; }

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    h1 { font-size: 2.8rem; }
    .hero-container { gap: 40px; }
    .features-grid, .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    .section { padding: 72px 20px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 100px 20px 60px; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-card { max-width: 480px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline { width: 100%; justify-content: center; }

    .features-grid, .pricing-grid, .testimonials-grid, .pain-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 56px 16px; }
    .hero { padding: 90px 16px 48px; min-height: auto; }
    .hero-card { padding: 28px; }
    .hero-stats { gap: 12px; }
    .stat-number { font-size: 1.8rem; }
    .steps { grid-template-columns: 1fr; }
    .pricing-card { padding: 28px 20px; }
    .form-box { padding: 28px 20px; }
    .trust-pills { flex-direction: column; gap: 8px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .nav, .floating-buttons, .back-top, .hamburger, .nav-mobile { display: none !important; }
    .hero { min-height: auto; padding: 40px 20px; }
    .section-dark { background: var(--white) !important; color: var(--dark) !important; }
    .section-dark h2, .section-dark h3, .section-dark p { color: var(--dark) !important; }
    .step h3 { color: var(--dark) !important; }
    .step p { color: var(--gray) !important; }
    .fade-in { opacity: 1 !important; transform: none !important; }
    body { font-size: 12pt; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@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;
    }
    .fade-in { opacity: 1; transform: none; }
}
