/* CSS VARIABLES & RESET */
:root {
    --bg: #FBF6F0;
    --bg-alt: #f1ebd9;
    --text: #2E1F19;
    --text-secondary: #5C4A40;
    --accent: #C4622D;
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --container-w: 1200px;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
    --spacing-xl: 12rem;
    
    --radius: 12px;
}

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

/* ACCESSIBILITY: GLOBAL KEYBOARD FOCUS */
:focus:not(:focus-visible) {
    outline: none;
}
:focus-visible {
    outline: 3px solid var(--accent) !important;
    outline-offset: 4px !important;
    border-radius: 2px;
}

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

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

/* INTERACTIVE BACKGROUND */
#bg-canvas {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; pointer-events: none; opacity: 0.6;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-center { text-align: center; }
.highlight { color: var(--accent); }

/* LAYOUT */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.section { padding: var(--spacing-lg) 0; }
.full-width-section { background-color: var(--bg-alt); }

.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}
.section-desc { font-size: 1.25rem; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 1rem 2rem;
    background-color: var(--text);
    color: var(--bg);
    text-decoration: none;
    font-weight: 600; font-size: 1.125rem;
    border: none; border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden; z-index: 1;
}

.btn::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(196, 98, 45, 0.25);
}
.btn:hover::after { transform: translateX(100%); }

.hero-btn { background-color: #25D366; color: white; padding: 1.25rem 2.5rem; font-size: 1.25rem; gap: 0.75rem; }
.hero-btn:hover { background-color: #1ebd5a; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); }

.primary-btn { background-color: var(--accent); color: var(--bg); }
.primary-btn:hover { background-color: #ba5723; }

.submit-btn { background-color: var(--accent); color: var(--bg); width: 100%; padding: 1.25rem; font-size: 1.25rem; }
.submit-btn:hover { background-color: #ba5723; }

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5vh; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 600px; }
.hero-actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.hero-note { font-size: 1rem; color: var(--text-secondary); }
.perspective-img {
    width: 100%; height: auto;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    will-change: transform;
}

/* PROBLEMS + SOLUTION GRID */
.problems-grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.problem-card {
    padding: 2.5rem;
    background-color: var(--bg);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(46, 31, 25, 0.03);
    border-top: 4px solid var(--text);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.problem-card:hover { transform: translateY(-5px); }
.problem-text { color: var(--text-secondary); margin-bottom: 1.5rem; flex-grow: 1; }
.solution-text { font-weight: 500; font-size: 1.15rem; color: var(--text); padding-top: 1.5rem; border-top: 1px dashed rgba(46,31,25,0.1); }
.arrow { color: var(--accent); font-weight: bold; margin-right: 0.25rem; }

/* AUTOMATIONS (ONE BOX) */
.auto-box {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(46, 31, 25, 0.05);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(46, 31, 25, 0.04);
}
.auto-list { list-style: none; }
.auto-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 500;
}
.auto-list li:last-child { margin-bottom: 0; }
.auto-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--accent);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
}

/* CASO & TESTIMONIO */
.featured-work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.work-image-link {
    display: block;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
}

.work-image-link img {
    width: 100%; height: auto;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.label {
    display: inline-block;
    font-size: 1rem; font-weight: 700;
    color: var(--accent); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1rem;
}

.quote-box {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2.5rem;
}
.quote-box p {
    font-family: var(--font-heading);
    font-size: 1.35rem; font-style: italic;
    margin-bottom: 1rem; color: var(--text); opacity: 1;
}
.quote-box footer { font-weight: 600; color: var(--text-secondary); }

/* CONTACT */
.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(46, 31, 25, 0.06);
}

/* FORM WITH MORE AIR */
.wa-form {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Más aire entre campos */
}

.form-group { position: relative; }

.form-group label {
    position: absolute;
    left: 1rem; top: 1.25rem;
    font-weight: 500; color: rgba(46, 31, 25, 0.6);
    pointer-events: none; transition: all 0.2s ease;
    padding: 0 0.25rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.75rem 1rem 1rem; /* Campos más altos */
    border: 1px solid rgba(46, 31, 25, 0.2);
    border-radius: 8px;
    background-color: var(--bg);
    font-family: inherit; font-size: 1.15rem;
    color: var(--text); transition: all 0.3s ease;
}

.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem; left: 0.8rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--accent); background-color: var(--bg);
    text-transform: uppercase;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196, 98, 45, 0.1);
    background-color: #fff;
}

/* WA BUTTONS ROW */
.wa-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46,31,25,0.1);
}
.wa-small-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: var(--bg);
    border: 1px solid rgba(46,31,25,0.15);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.wa-small-btn:hover {
    border-color: #25D366;
    color: #25D366;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container, .featured-work {
        grid-template-columns: 1fr; gap: 3rem;
    }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-actions { align-items: center; }
}

@media (max-width: 768px) {
    .hero { padding-top: 10vh; }
    .section { padding: 4rem 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .problem-card { padding: 1.5rem; }
    .contact-box { padding: 2rem 1.5rem; }
    .auto-box { padding: 2rem 1.5rem; }
    .wa-buttons-row { flex-direction: column; }
    .wa-small-btn { justify-content: center; width: 100%; }
    .featured-work { gap: 2rem; }
    .quote-box { margin-top: 1.5rem; }
}

/* CURSOR PERSONALIZADO */

#custom-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform, width, height, background-color;
    opacity: 0;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, opacity 0.3s;
}

#custom-cursor-dot.active {
    width: 48px; height: 48px;
    background-color: rgba(196, 98, 45, 0.3);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    #custom-cursor-dot { display: none !important; }
}

/* LENIS SCROLL */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* SPLIT TEXT */
.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.2em; /* Evita recortes en colas de letras */
    margin-bottom: -0.2em; /* Compensa el padding para no romper el line-height */
}
.word-inner {
    display: inline-block;
    will-change: transform, opacity;
}

/* GLARE 3D */
.perspective-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transform-style: preserve-3d;
    display: block; /* Para a y div */
}
.perspective-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}
.glare {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
    z-index: 10;
}
/* FORMULARIO ESTADOS DE FOCO Y ERROR */
.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent);
    outline: none;
}
.form-group input:not(:placeholder-shown):invalid,
.form-group textarea:not(:placeholder-shown):invalid {
    border-bottom-color: #ff4d4f;
    color: #ff4d4f;
}
.form-success-msg {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
}

/* SECTION NOTES (textos secundarios de apoyo) */
.section-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}
.submit-btn.sending {
    opacity: 0.7;
    pointer-events: none;
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
}

/* FORM CONSENT CHECKBOX */
.form-consent {
    margin: 1rem 0;
}
.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1.5;
}
.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
}
.form-consent a {
    color: var(--accent);
    text-decoration: underline;
}
.form-consent a:hover {
    color: var(--text);
}

/* FORM LEGAL INFO */
.form-legal-info {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
}

/* SITE FOOTER */
.site-footer {
    background-color: var(--accent);
    color: var(--text);
    padding: 5rem 0 0 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 5rem;
    }
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-brand .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-block;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0;
}
.footer-social-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-social-new a, .footer-social-new span {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    text-decoration: none;
}
.footer-social-new a:hover {
    color: var(--text);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: var(--text);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    width: fit-content;
    transition: color 0.3s ease;
}
.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--text);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: var(--text);
}
.footer-links a:hover::after {
    width: 100%;
}
.footer-bottom {
    border-top: 1px solid rgba(46, 31, 25, 0.15);
    padding: 2rem 0;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-social {
        justify-content: center;
    }
}

/* LEGAL PAGES */
.legal-page {
    padding: 4rem 0;
    min-height: 100vh;
}
.legal-page h1 {
    margin-bottom: 2rem;
}
.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.legal-page p {
    margin-bottom: 1rem;
    max-width: 700px;
}
.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    max-width: 700px;
}
.legal-page li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}
.legal-page a {
    color: var(--accent);
}
.legal-page a:hover {
    color: var(--text);
}
.legal-back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.legal-back:hover {
    color: var(--accent);
}

/* NAVEGACIÓN (MAIN NAV) */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 246, 240, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

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

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links .btn-nav {
    background: var(--text);
    color: var(--bg);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .btn-nav:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 98, 45, 0.2);
}

/* Espacio extra en el body para que la cabecera no tape la portada */
body {
    padding-top: 4rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Opcional: Ocultar menú en móviles o hacer menú hamburguesa. De momento lo ocultamos para simplificar */
    }
}

/* 3. VELOCIDAD */
.speed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.speed-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}
.speed-score {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: #0cce6b; /* Verde de Google PageSpeed */
    line-height: 1;
    margin-bottom: 0.5rem;
}
.speed-total {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
}
.speed-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 1.125rem;
}
.speed-note {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.speed-note a {
    color: var(--text);
    text-decoration: underline;
}

/* 6. PRECIOS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}
.pricing-card.recommended {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 98, 45, 0.1);
    border: 2px solid var(--accent);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-name {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}
.pricing-desc {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1;
}
.pricing-month {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-secondary);
}
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.pricing-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}
.pricing-features li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}
.pricing-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.pricing-footer {
    max-width: 800px;
    margin: 0 auto;
}
.pricing-launch {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.pricing-payment {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 7. INCLUYE */
.includes {
    background: var(--bg-alt);
    padding: 3rem 0;
}
.includes-title {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.includes-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.includes-list span {
    color: var(--text);
}
.includes-highlight {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent);
}

/* 8. FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--text);
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-content {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .speed-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.recommended {
        transform: none;
    }
}

 / *   F A Q   A n i m a t i o n   * / 
 . f a q - i t e m [ o p e n ]   . f a q - c o n t e n t   { 
     a n i m a t i o n :   s l i d e D o w n F A Q   0 . 3 s   e a s e - o u t   f o r w a r d s ; 
 } 
 @ k e y f r a m e s   s l i d e D o w n F A Q   { 
     f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   } 
     t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 }  
 
.faq-item summary ~ * { opacity: 0; max-height: 0; overflow: hidden; transition: all 0.3s ease-out; padding-bottom: 0 !important; }
.faq-item[open] summary ~ * { opacity: 1; max-height: 500px; padding-bottom: 1.5rem !important; }