/* ============================================================
   support-faqs.css – UNIWISP Support & FAQs (World-Class)
   All classes use sf-* prefix → zero conflicts with index.html
   ============================================================ */

/* ---------- 1. Reset & Base ---------- */
.sf-page *,
.sf-page *::before,
.sf-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sf-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.sf-page h1, .sf-page h2, .sf-page h3, .sf-page h4, .sf-page h5, .sf-page h6, .sf-page .sf-heading-serif {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Custom Scrollbar */
.sf-page::-webkit-scrollbar {
    width: 8px;
}
.sf-page::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.sf-page::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a4d2e, #2e7d54);
    border-radius: 4px;
}
.sf-page::-webkit-scrollbar-thumb:hover {
    background: #0d3320;
}

/* Text Selection */
.sf-page ::selection {
    background: rgba(26, 77, 46, 0.15);
    color: #0d3320;
}

/* ---------- 2. Brand Colours & Variables ---------- */
.sf-page {
    --sf-primary: #1a4d2e;
    --sf-primary-dark: #0d3320;
    --sf-primary-light: #2e7d54;
    --sf-secondary: #8b0000;
    --sf-secondary-dark: #660000;
    --sf-accent: #4caf50;
    --sf-gold: #fbbf24;
    --sf-dark: #0f172a;
    --sf-light: #f8fafc;
    --sf-gray: #64748b;
    --sf-glass-bg: rgba(255, 255, 255, 0.75);
    --sf-glass-border: rgba(255, 255, 255, 0.5);
    --sf-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --sf-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --sf-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --sf-shadow-glow: 0 0 40px rgba(26, 77, 46, 0.15);
    --sf-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- 3. Container ---------- */
.sf-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ============================================================
   4. HERO – Cinematic & Premium
   ============================================================ */
.sf-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05140b 0%, #1a4d2e 35%, #0f172a 70%, #2a0a0a 100%);
    background-size: 300% 300%;
    animation: sf-heroFlow 18s ease-in-out infinite;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0 0 5rem 5rem;
    padding: 6rem 0 5rem;
}

@keyframes sf-heroFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Noise Texture Overlay */
.sf-noise-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glowing Orbs */
.sf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(76, 175, 80, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(139, 0, 0, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    filter: blur(40px);
}

/* Animated Grid */
.sf-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: sf-gridMove 30s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes sf-gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Floating Icons */
.sf-floating-icons {
    position: absolute;
    z-index: 1;
    font-size: 2.5rem;
    opacity: 0.07;
    color: #fff;
    pointer-events: none;
    animation: sf-floatIcon 16s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.1));
}
.sf-floating-icons:nth-child(3) { top: 12%; left: 8%; animation-delay: 0s; }
.sf-floating-icons:nth-child(4) { top: 18%; right: 10%; animation-delay: 3s; }
.sf-floating-icons:nth-child(5) { bottom: 25%; left: 7%; animation-delay: 6s; }
.sf-floating-icons:nth-child(6) { bottom: 15%; right: 8%; animation-delay: 9s; }
.sf-floating-icons:nth-child(7) { top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 10rem; opacity: 0.02; animation: none; }
.sf-floating-icons:nth-child(8) { display: none; }

@keyframes sf-floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(6deg) scale(1.05); }
    66% { transform: translateY(10px) rotate(-4deg) scale(0.95); }
}

/* Particles */
.sf-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sf-particleFloat 18s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}
.sf-particle:nth-child(9) { top: 10%; left: 15%; animation-delay: 0s; width: 5px; height: 5px; }
.sf-particle:nth-child(10) { top: 25%; right: 12%; animation-delay: 4s; }
.sf-particle:nth-child(11) { bottom: 20%; left: 20%; animation-delay: 8s; width: 6px; height: 6px; }
.sf-particle:nth-child(12) { bottom: 30%; right: 18%; animation-delay: 12s; }
.sf-particle:nth-child(13) { top: 45%; left: 8%; animation-delay: 2s; width: 3px; height: 3px; }
.sf-particle:nth-child(14) { top: 35%; right: 6%; animation-delay: 10s; }

@keyframes sf-particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-80px) scale(1.5); opacity: 0.8; }
}

/* ---------- HOME BUTTON ---------- */
.sf-home-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--sf-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}
.sf-home-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sf-home-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}
.sf-home-btn:hover i {
    transform: translateX(-4px);
}
.sf-home-btn:active {
    transform: scale(0.96);
}

/* ---------- HERO CONTENT ---------- */
.sf-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sf-hero-content .sf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.sf-hero-content .sf-hero-badge i {
    color: var(--sf-gold);
    font-size: 0.8rem;
}

.sf-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.sf-hero-content h1 .sf-highlight {
    background: linear-gradient(135deg, #4caf50 0%, #fbbf24 40%, #ffffff 60%, #4caf50 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: sf-shimmerText 5s linear infinite;
}

@keyframes sf-shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.sf-hero-content .sf-hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Scroll Indicator */
.sf-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    animation: sf-bounceDown 3s ease-in-out infinite;
}
.sf-scroll-indicator .sf-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.sf-mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    animation: sf-scrollDot 2s ease-in-out infinite;
}

@keyframes sf-scrollDot {
    0% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(12px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.4; }
}
@keyframes sf-bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- HERO WAVES ---------- */
.sf-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}
.sf-hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}
.sf-wave-back {
    z-index: 3;
    bottom: -5px;
    opacity: 0.6;
}
.sf-wave-back svg {
    height: 120px;
}

/* ============================================================
   5. FAQ LIST – Premium Glass Cards
   ============================================================ */
.sf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 3rem 0 4rem;
}

.sf-faq-item {
    position: relative;
    background: var(--sf-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--sf-glass-border);
    border-radius: 1.5rem;
    transition: var(--sf-transition);
    box-shadow: var(--sf-shadow-sm);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: sf-fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered animation delays */
.sf-faq-item:nth-child(1) { animation-delay: 0.05s; }
.sf-faq-item:nth-child(2) { animation-delay: 0.10s; }
.sf-faq-item:nth-child(3) { animation-delay: 0.15s; }
.sf-faq-item:nth-child(4) { animation-delay: 0.20s; }
.sf-faq-item:nth-child(5) { animation-delay: 0.25s; }
.sf-faq-item:nth-child(6) { animation-delay: 0.30s; }
.sf-faq-item:nth-child(7) { animation-delay: 0.35s; }
.sf-faq-item:nth-child(8) { animation-delay: 0.40s; }
.sf-faq-item:nth-child(9) { animation-delay: 0.45s; }
.sf-faq-item:nth-child(10) { animation-delay: 0.50s; }
.sf-faq-item:nth-child(11) { animation-delay: 0.55s; }
.sf-faq-item:nth-child(12) { animation-delay: 0.60s; }

@keyframes sf-fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.sf-faq-item:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: var(--sf-shadow-lg), var(--sf-shadow-glow);
    border-color: rgba(26, 77, 46, 0.15);
}

/* Animated top border on hover */
.sf-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sf-primary), var(--sf-accent), var(--sf-secondary));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: sf-gradientMove 3s linear infinite;
}
.sf-faq-item:hover::before {
    opacity: 1;
}

@keyframes sf-gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.sf-faq-question {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: default;
}

.sf-faq-question .sf-q-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.08), rgba(26, 77, 46, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sf-primary);
    font-size: 1rem;
    transition: var(--sf-transition);
    border: 1px solid rgba(26, 77, 46, 0.05);
}

.sf-faq-item:hover .sf-q-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-primary-light));
    color: #fff;
    box-shadow: 0 8px 20px rgba(26, 77, 46, 0.25);
    border-color: transparent;
}

.sf-faq-question .sf-q-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sf-dark);
    line-height: 1.4;
}

.sf-faq-answer {
    padding: 1.5rem 2rem 2rem;
    color: var(--sf-gray);
    font-size: 1rem;
    line-height: 1.75;
}

.sf-faq-answer p {
    margin-bottom: 1rem;
}

/* Custom Beautiful List Styling */
.sf-faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.25rem;
    display: grid;
    gap: 0.6rem;
}

.sf-faq-answer li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0;
    color: #334155;
}

.sf-faq-answer li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--sf-accent);
    font-size: 0.85rem;
    background: rgba(76, 175, 80, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-faq-answer strong {
    color: var(--sf-dark);
    font-weight: 600;
}

.sf-faq-answer a {
    color: var(--sf-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed rgba(26, 77, 46, 0.3);
    transition: var(--sf-transition);
}
.sf-faq-answer a:hover {
    border-bottom-style: solid;
    color: var(--sf-primary-dark);
}

/* ============================================================
   6. CONTACT CTA – Stunning Finale
   ============================================================ */
.sf-contact-cta {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 2rem;
    padding: 3.5rem 3rem;
    margin: 4rem 0 2rem;
    border: 1px solid rgba(26, 77, 46, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--sf-shadow-md);
    transition: var(--sf-transition);
    overflow: hidden;
}

.sf-cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--sf-transition);
}

.sf-contact-cta:hover {
    box-shadow: var(--sf-shadow-lg), 0 0 60px rgba(26, 77, 46, 0.08);
    transform: translateY(-4px);
    border-color: rgba(26, 77, 46, 0.2);
}

.sf-contact-cta:hover .sf-cta-glow {
    transform: scale(1.2);
}

.sf-contact-cta .sf-cta-text {
    flex: 1 1 300px;
    position: relative;
    z-index: 2;
}

.sf-contact-cta .sf-cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sf-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.sf-contact-cta .sf-cta-text p {
    color: var(--sf-gray);
    font-size: 1.05rem;
    margin: 0;
}

.sf-contact-cta .sf-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Buttons */
.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--sf-transition);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.sf-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sf-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.sf-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.sf-btn-whatsapp:hover i {
    transform: scale(1.1);
}

.sf-btn-primary {
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-primary-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.25);
}
.sf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.35);
    background: linear-gradient(135deg, var(--sf-primary-dark), var(--sf-primary));
}

/* ============================================================
   7. RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
    .sf-hero {
        min-height: 65vh;
        padding: 5rem 0 4rem;
        border-radius: 0 0 4rem 4rem;
    }
    .sf-hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    .sf-container {
        padding: 0 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .sf-hero {
        min-height: 60vh;
        padding: 4rem 0 3rem;
        border-radius: 0 0 2.5rem 2.5rem;
    }
    .sf-home-btn {
        top: 1.25rem;
        left: 1.25rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .sf-hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }
    .sf-hero-wave svg {
        height: 60px;
    }
    .sf-wave-back svg {
        height: 80px;
    }
    .sf-faq-question {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    .sf-faq-question .sf-q-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.9rem;
    }
    .sf-faq-question .sf-q-text {
        font-size: 1rem;
    }
    .sf-faq-answer {
        padding: 1.25rem 1.5rem 1.75rem;
        font-size: 0.95rem;
    }
    .sf-contact-cta {
        padding: 2.5rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .sf-contact-cta .sf-cta-buttons {
        justify-content: center;
        width: 100%;
    }
    .sf-btn {
        flex: 1;
        min-width: 160px;
    }
    .sf-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .sf-container {
        padding: 0 1rem 2rem;
    }
    .sf-hero {
        min-height: 55vh;
        padding: 3.5rem 0 2.5rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }
    .sf-hero-content h1 {
        font-size: 2rem;
    }
    .sf-hero-content .sf-hero-subtitle {
        font-size: 0.95rem;
    }
    .sf-home-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .sf-home-btn span {
        display: none; /* Show only icon on very small screens */
    }
    .sf-home-btn i {
        margin: 0;
    }
    .sf-faq-question {
        padding: 1.1rem 1.25rem;
    }
    .sf-faq-answer {
        padding: 1rem 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
    .sf-contact-cta .sf-cta-text h3 {
        font-size: 1.4rem;
    }
    .sf-btn {
        width: 100%;
    }
}

/* ============================================================
   8. PRINT STYLES
   ============================================================ */
@media print {
    .sf-hero {
        background: #1a4d2e !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        min-height: auto;
        padding: 2rem 0;
        border-radius: 0;
    }
    .sf-noise-overlay, .sf-grid-overlay, .sf-floating-icons, .sf-particle, .sf-scroll-indicator, .sf-hero-wave {
        display: none !important;
    }
    .sf-home-btn {
        display: none !important;
    }
    .sf-faq-item {
        break-inside: avoid;
        border: 1px solid #cbd5e1;
        box-shadow: none;
        margin-bottom: 1rem;
    }
    .sf-faq-item::before {
        display: none;
    }
    .sf-contact-cta {
        break-inside: avoid;
        border: 1px solid #cbd5e1;
    }
}

/* ============================================================
   9. REDUCED MOTION (Accessibility)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .sf-page *, .sf-page *::before, .sf-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
    .sf-hero {
        animation: none !important;
        background: linear-gradient(135deg, #05140b, #1a4d2e, #0f172a) !important;
    }
    .sf-grid-overlay {
        animation: none !important;
    }
    .sf-faq-item {
        opacity: 1 !important;
        transform: none !important;
    }
    .sf-hero-content h1 .sf-highlight {
        animation: none !important;
        background: linear-gradient(135deg, #4caf50, #fbbf24) !important;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}