/* ============================================================
   1. VARIABLES Y RESET
   ============================================================ */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-card: #1a1a22;
    --bg-card-hover: #22222e;
    --accent: #00e676;
    --accent-hover: #00c853;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border: #2a2a35;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 60px rgba(0, 230, 118, 0.08);
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --max-width: 1140px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input, textarea, select {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   2. ANIMACIONES GLOBALES
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 230, 118, 0.2); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   3. HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: default;
}

.logo-icon { font-size: 1.6rem; }
.logo-text {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text span {
    background: linear-gradient(135deg, var(--accent), #a8ff78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}
.nav a:hover { color: var(--accent); }

.btn-nav {
    background: var(--accent);
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   4. HERO
   ============================================================ */
.hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 230, 118, 0.04), transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 230, 118, 0.02), transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { animation: fadeInUp 0.8s ease forwards; }

.hero-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    cursor: default;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    cursor: default;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent), #a8ff78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
    cursor: default;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.25);
}

.btn-secondary {
    display: inline-block;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    font-family: var(--font);
    cursor: pointer;
}
.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.avatars { display: flex; align-items: center; }
.avatars img {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-right: -8px; object-fit: cover;
    cursor: default;
}
.avatars img:last-child { margin-right: 0; }
.avatars-count {
    background: var(--bg-card); border: 2px solid var(--border);
    border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: var(--accent);
    margin-left: -8px; cursor: default;
}
.hero-social-proof p {
    font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0;
    cursor: default;
}
.hero-social-proof p strong { color: var(--text-primary); }

.hero-illustration {
    width: 100%; max-width: 400px; aspect-ratio: 1;
    background: radial-gradient(circle at 30% 30%, rgba(0, 230, 118, 0.05), transparent 70%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10rem; border: 2px dashed var(--border); margin: 0 auto;
    animation: floatIcon 6s ease-in-out infinite;
}

/* ============================================================
   5. COUNTDOWN
   ============================================================ */
.countdown {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.countdown-content { text-align: center; }
.countdown-label {
    font-size: 0.9rem; color: var(--accent); font-weight: 600;
    margin-bottom: 1rem; letter-spacing: 1px; cursor: default;
}
.countdown-timer { display: flex; justify-content: center; gap: 2rem; }
.countdown-item { text-align: center; }
.countdown-number {
    display: block; font-size: 2.5rem; font-weight: 800;
    color: var(--text-primary); line-height: 1; min-width: 60px;
}
.countdown-item .countdown-label {
    font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 1px; margin-top: 0.3rem; margin-bottom: 0;
}

/* ============================================================
   6. SECCIÓN GENERAL
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-tag {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    cursor: default;
}
.section-header h2 {
    font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem;
    letter-spacing: -0.5px; cursor: default;
}
.section-header p {
    color: var(--text-secondary); font-size: 1.05rem;
    max-width: 500px; margin: 0 auto; cursor: default;
}

/* ============================================================
   7. FEATURES
   ============================================================ */
.features { padding: 6rem 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}
.feature-icon {
    font-size: 2.5rem; margin-bottom: 1rem; display: block;
    cursor: default;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; cursor: default; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; cursor: default; }

/* ============================================================
   8. PRICING
   ============================================================ */
.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}
.pricing-card.featured {
    border: 2px solid var(--accent);
    position: relative;
    transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; font-size: 0.7rem;
    font-weight: 700; padding: 0.2rem 1rem; border-radius: 20px;
    white-space: nowrap; cursor: default;
}
.pricing-header h3 { font-size: 1.3rem; font-weight: 700; cursor: default; }
.pricing-header p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.2rem; cursor: default; }
.pricing-price { margin: 1.5rem 0; }
.pricing-price .price {
    font-size: 2.8rem; font-weight: 800; color: var(--accent);
    cursor: default;
}
.pricing-price .period { font-size: 0.95rem; color: var(--text-secondary); cursor: default; }
.pricing-features {
    list-style: none; padding: 0; margin: 0 0 2rem 0; flex: 1;
}
.pricing-features li {
    padding: 0.4rem 0; color: var(--text-secondary);
    font-size: 0.95rem; cursor: default;
}
.btn-pricing {
    display: inline-block; padding: 0.7rem 2rem;
    border: 1px solid var(--border); border-radius: 10px;
    color: var(--text-primary); text-decoration: none;
    font-weight: 600; text-align: center; transition: all 0.3s ease;
    font-family: var(--font); cursor: pointer;
}
.btn-pricing:hover { border-color: var(--accent); color: var(--accent); }
.btn-pricing.primary {
    background: var(--accent); color: #000; border: none;
}
.btn-pricing.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.25);
}

/* ============================================================
   9. TESTIMONIALS (SLIDER CONSTANTE)
   ============================================================ */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
    transition: transform 0.1s linear;
    width: max-content;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: auto;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ============================================================
   10. FAQ
   ============================================================ */
.faq { padding: 6rem 0; }
.faq-grid {
    max-width: 700px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%; padding: 1.2rem 1.5rem;
    background: transparent; border: none;
    color: var(--text-primary); font-size: 1rem; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: var(--font); transition: background 0.3s ease;
    text-align: left;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.02); }
.faq-icon {
    font-size: 1.4rem; color: var(--accent);
    transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; cursor: default; }

/* ============================================================
   11. CTA FINAL
   ============================================================ */
.cta-final {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.04), transparent 60%);
    text-align: center;
}
.cta-content h2 {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem;
    letter-spacing: -0.5px; cursor: default;
}
.cta-content p {
    color: var(--text-secondary); font-size: 1.1rem;
    max-width: 500px; margin: 0 auto 2rem; cursor: default;
}
.btn-large { padding: 1rem 3rem; font-size: 1.1rem; }

/* ============================================================
   12. MODAL
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5, 5, 8, 0.88);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    animation: fadeInUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    background: transparent; border: none;
    color: var(--text-muted); font-size: 1.8rem;
    cursor: pointer; transition: all 0.3s ease;
    line-height: 1;
}
.modal-close:hover { color: var(--accent); transform: rotate(90deg); }
.modal-body { display: flex; flex-direction: column; gap: 1rem; }
.modal-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    cursor: default;
}
.modal-body h2 {
    font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px;
    cursor: default;
}
.modal-body p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; cursor: default; }
.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 0.5rem 0;
}
.modal-features div {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-secondary); font-size: 0.95rem;
    cursor: default;
}
.modal-features div span { font-size: 1.1rem; }

/* ============================================================
   13. CONTACTO
   ============================================================ */
.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-benefit span {
    font-size: 1.2rem;
}

.contact-benefit p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.25);
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 2rem;
}
.footer-brand .logo-text { font-size: 1.2rem; }
.footer-brand p {
    color: var(--text-secondary); font-size: 0.9rem;
    margin-top: 0.3rem; cursor: default;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.95rem; transition: color 0.3s ease; cursor: pointer;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    text-align: center; padding-top: 2rem; margin-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 0.85rem;
}
.footer-bottom p { cursor: default; }

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-grid { gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: 280px; max-width: 320px; min-height: 200px; padding: 1.5rem; }
    .modal-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-primary); padding: 2rem;
        gap: 1.5rem; border-bottom: 1px solid var(--border);
    }
    .nav.open { display: flex; }

    .hero { padding: 6rem 0 3rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero-illustration { max-width: 250px; font-size: 6rem; }

    .countdown-timer { gap: 1rem; }
    .countdown-number { font-size: 1.8rem; min-width: 40px; }

    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-6px); }

    .testimonial-card { min-width: 260px; max-width: 300px; min-height: 180px; padding: 1.2rem; }
    .testimonial-text { font-size: 0.85rem; -webkit-line-clamp: 4; }

    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrapper { padding: 1.5rem; }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .section-header h2 { font-size: 2rem; }
    .cta-content h2 { font-size: 2rem; }
    .modal-content { padding: 1.5rem; margin: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .countdown-number { font-size: 1.4rem; min-width: 30px; }
    .countdown-timer { gap: 0.8rem; }
    .countdown-item .countdown-label { font-size: 0.6rem; }
    .pricing-price .price { font-size: 2.2rem; }
    .modal-features { grid-template-columns: 1fr; }

    .testimonial-card {
        min-width: 220px;
        max-width: 260px;
        min-height: 160px;
        padding: 1rem;
    }
    .testimonial-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 4;
    }
    .testimonial-author img {
        width: 36px;
        height: 36px;
    }
    .testimonial-author strong {
        font-size: 0.85rem;
    }
}