/* ════════════════════════════════════════════
   TrackFlow · Web Landing
   ════════════════════════════════════════════ */

:root {
    --primary:      #667eea;
    --primary-dark: #5a67d8;
    --secondary:    #764ba2;
    --accent:       #10b981;
    --dark:         #0f172a;
    --dark-2:       #1e293b;
    --dark-3:       #334155;
    --mid:          #64748b;
    --light:        #f1f5f9;
    --lighter:      #f8faff;
    --white:        #ffffff;
    --border:       #e2e8f0;
    --radius:       14px;
    --radius-lg:    22px;
    --shadow:       0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
    --transition:   0.22s ease;
    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--dark-2);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Botones ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 16px rgba(102,126,234,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,126,234,0.45); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-hero-primary {
    background: white;
    color: var(--primary);
    font-size: 1em;
    padding: 14px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.btn-hero-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 1em;
    padding: 14px 28px;
    backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }
.btn-cta {
    background: white;
    color: var(--primary);
    font-size: 1.05em;
    padding: 16px 36px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ───────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25em;
    font-weight: 600;
    color: var(--dark);
    flex-shrink: 0;
}
.logo-img {
    height: 32px;
    width: auto;
    display: block;
}
/* Si la imagen carga, ocultar el texto fallback */
.nav-logo .logo-img:not([style*="display:none"]) ~ .logo-text-fallback {
    display: none;
}
.logo-text strong { color: var(--primary); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    flex: 1;
}
.nav-links a {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--dark-3);
    transition: all var(--transition);
}
.nav-links a:hover { background: var(--light); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.4em; color: var(--dark); }

/* ── Hero ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4338ca 60%, #667eea 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(118,75,162,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(16,185,129,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82em;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.2em, 5vw, 3.4em);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: linear-gradient(90deg, #a5f3fc, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num { display: block; font-size: 1.6em; font-weight: 900; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.78em; color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ── Phone mockup ─────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    width: 280px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.1);
    animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-screen {
    background: #0f172a;
    border-radius: 26px;
    overflow: hidden;
}
.phone-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 14px 16px;
    font-size: 0.9em;
    font-weight: 700;
}
.phone-content { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 10px 12px;
    border-left: 3px solid #334155;
}
.phone-card.active-card { border-left-color: #667eea; }
.phone-card-title { color: #94a3b8; font-size: 0.72em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.phone-item { display: flex; justify-content: space-between; align-items: center; color: #e2e8f0; font-size: 0.8em; padding: 3px 0; }
.phone-item-status { font-size: 0.75em; padding: 2px 7px; border-radius: 10px; font-weight: 700; }
.phone-item-status.ready { background: rgba(16,185,129,0.2); color: #34d399; }
.phone-item-status.cooking { background: rgba(249,115,22,0.2); color: #fb923c; }
.phone-notif {
    background: linear-gradient(135deg, #065f46, #059669);
    color: white;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.78em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    animation: pulseNotif 2s ease-in-out infinite;
}
@keyframes pulseNotif {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* ── Social Proof ─────────────────────────── */
.social-proof {
    background: var(--lighter);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.proof-label { text-align: center; font-size: 0.82em; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.proof-types { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.proof-type {
    display: flex;
    align-items: center;
    gap: 7px;
    background: white;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88em;
    font-weight: 600;
    color: var(--dark-3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ── Secciones genéricas ─────────────────── */
.features, .how-it-works, .for-who, .contact { padding: 100px 0; }
.how-it-works, .for-who { background: var(--lighter); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
    display: inline-block;
    background: rgba(102,126,234,0.1);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7em, 3.5vw, 2.4em); font-weight: 900; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.02em; }
.section-desc { font-size: 1.05em; color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Features grid ───────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-card--highlight {
    grid-column: span 1;
    background: linear-gradient(145deg, #f8f9ff, #fff);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(102,126,234,0.12);
}
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4em;
    color: white;
    margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.12em; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.9em; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: 0.86em; color: var(--dark-3); font-weight: 500; }
.feature-list li i { color: var(--accent); font-size: 0.85em; flex-shrink: 0; }

/* ── Pasos ───────────────────────────────── */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 280px;
    flex: 1;
    min-width: 200px;
}
.step-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1em;
    font-weight: 900;
    flex-shrink: 0;
}
.step-content h3 { font-size: 1em; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step-content p { font-size: 0.88em; color: var(--mid); line-height: 1.6; }
.step-arrow { color: var(--border); font-size: 1.4em; padding-top: 10px; align-self: flex-start; }

.access-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.access-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.access-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.access-icon { font-size: 2.4em; margin-bottom: 12px; }
.access-card h4 { font-size: 1.05em; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.access-card p { font-size: 0.86em; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.access-badge {
    display: inline-block;
    background: rgba(102,126,234,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78em;
    font-weight: 700;
}

/* ── Para quién ──────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    gap: 24px;
    justify-content: center;
}
.who-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.who-emoji { font-size: 2.8em; margin-bottom: 14px; }
.who-card h3 { font-size: 1.05em; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.who-card p { font-size: 0.86em; color: var(--mid); line-height: 1.6; }

/* ── CTA ─────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 50%, #667eea 100%);
    padding: 80px 0;
}
.cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-box h2 { font-size: clamp(1.6em, 3vw, 2.2em); font-weight: 900; color: white; margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.78); font-size: 1.05em; margin-bottom: 32px; }

/* ── Contacto ────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85em; font-weight: 700; color: var(--dark-3); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95em;
    font-family: var(--font);
    color: var(--dark);
    background: white;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.contact-info-card i { font-size: 1.5em; color: var(--primary); flex-shrink: 0; padding-top: 2px; }
.contact-info-card h4 { font-size: 0.95em; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85em; color: var(--mid); line-height: 1.5; }

/* ── Footer ──────────────────────────────── */
.footer { background: var(--dark); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 60px; margin-bottom: 48px; }
.footer-brand p { color: #64748b; font-size: 0.88em; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { color: white; font-size: 0.88em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.footer-col a { color: #64748b; font-size: 0.88em; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; text-align: center; }
.footer-bottom p { color: #475569; font-size: 0.82em; }

/* ── Precios ─────────────────────────────── */
.pricing { padding: 100px 0; background: var(--white); }

.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, #f8f9ff, #fff);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(102,126,234,0.15);
    position: relative;
}

.pricing-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.78em;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.pricing-name {
    font-size: 1em;
    font-weight: 700;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.price-num {
    font-size: 3em;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    font-size: 1em;
    color: var(--mid);
    font-weight: 500;
}

.pricing-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.25);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.88em;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: var(--dark-3);
    font-weight: 500;
}

.pricing-features li i { color: var(--accent); flex-shrink: 0; }

/* ── Servicios ───────────────────────────── */
.pricing-services {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.pricing-services h3 {
    font-size: 1.1em;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-services > p {
    font-size: 0.88em;
    color: var(--mid);
    margin-bottom: 22px;
    line-height: 1.6;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.service-item:last-of-type { border-bottom: none; }

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1em;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 0.92em;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.service-item p {
    font-size: 0.82em;
    color: var(--mid);
    line-height: 1.5;
}

.pricing-contact-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--lighter);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.85em;
    color: var(--mid);
    margin-top: 18px;
    font-weight: 500;
}

.pricing-contact-hint i { color: var(--primary); }
.pricing-contact-hint a { color: var(--primary); font-weight: 700; }
.pricing-contact-hint a:hover { text-decoration: underline; }

/* responsive pricing */
@media (max-width: 768px) {
    .pricing-wrap { grid-template-columns: 1fr; }
}

/* ── Video Demo ──────────────────────────── */
.video-section {
    padding: 90px 0;
    background: var(--lighter);
}
.video-wrap {
    max-width: 820px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}
.demo-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: #0f172a;
    outline: none;
}
.video-placeholder {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-placeholder-inner {
    text-align: center;
    color: white;
}
.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(102,126,234,0.3);
    border: 2px solid rgba(102,126,234,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #a5b4fc;
}
.video-placeholder-inner p {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}
.video-placeholder-inner span {
    font-size: 13px;
    color: #64748b;
}

/* ── Screenshots ─────────────────────────── */
.screenshots {
    padding: 90px 0;
    background: var(--white);
}
.screenshots-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.ss-tab {
    padding: 9px 22px;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    color: var(--mid);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.ss-tab:hover { border-color: var(--primary); color: var(--primary); }
.ss-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    font-weight: 600;
}
.ss-panel { display: none; }
.ss-panel.active {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
}
.ss-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--light);
    min-height: 320px;
}
.ss-frame img {
    width: 100%;
    display: block;
}
.ss-frame--mobile {
    max-width: 280px;
    margin: 0 auto;
    border-radius: 28px;
    border: 6px solid #1e293b;
}
/* Placeholder cuando no hay imagen */
.ss-frame.ss-placeholder::after {
    content: '📸 Captura próximamente';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--mid);
    background: var(--light);
}
.ss-frame.ss-placeholder img { display: none; }
.ss-overlay-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15,23,42,0.75);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.ss-desc h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.ss-desc p {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.7;
}

/* ── Papel vs Digital ────────────────────── */
.paper-vs-digital {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}
.paper-vs-digital .section-badge { background: rgba(255,255,255,0.12); color: #e2e8f0; }
.paper-vs-digital .section-title { color: var(--white); }
.paper-vs-digital .section-desc { color: #94a3b8; }
.pvd-header { text-align: center; margin-bottom: 52px; }
.pvd-grid {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.pvd-col {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pvd-col--new {
    background: rgba(102,126,234,0.15);
    border: 1px solid rgba(102,126,234,0.35);
}
.pvd-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pvd-col-header--new { color: #a5b4fc; }
.pvd-recommended {
    margin-left: auto;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: white;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.pvd-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pvd-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}
.pvd-list li i { flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.pvd-list--con li i.fa-times-circle { color: #ef4444; }
.pvd-list--con li i.pvd-pro { color: #10b981; }
.pvd-list--pro li i { color: #10b981; }
.pvd-list--pro li { color: #cbd5e1; }
.pvd-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pvd-vs span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #64748b;
    font-weight: 800;
    font-size: 13px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pvd-footnote {
    margin-top: 32px;
    text-align: center;
    font-size: 13.5px;
    color: #64748b;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 14px 20px;
}
.pvd-footnote i { margin-right: 6px; color: #667eea; }
.pvd-footnote strong { color: #a5b4fc; }

/* ── Badge "Solo en TrackFlow" en feature cards ── */
.feature-card--exclusive {
    position: relative;
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(102,126,234,0.15);
}
.feature-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.72em;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ── Sección Ventajas Exclusivas ─────────── */
.exclusive-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 100%);
    position: relative;
    overflow: hidden;
}
.exclusive-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(118,75,162,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(16,185,129,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.exclusive-badge-header {
    background: rgba(255,255,255,0.12) !important;
    color: #e2e8f0 !important;
}
.exclusive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}
.exclusive-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.exclusive-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-4px);
}
.exclusive-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.75em;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.exclusive-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.exclusive-card h3 {
    font-size: 1.4em;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.exclusive-desc {
    font-size: 0.95em;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 24px;
}
.exclusive-desc em { color: #a5f3fc; font-style: italic; font-weight: 500; }
.exclusive-desc strong { color: white; }
.exclusive-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.exclusive-point { display: flex; align-items: flex-start; gap: 12px; }
.exclusive-point-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.exclusive-point > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.exclusive-point strong { font-size: 0.9em; font-weight: 700; color: #e2e8f0; display: block; }
.exclusive-point span { font-size: 0.82em; color: #64748b; line-height: 1.5; }
.exclusive-competitor {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5;
    font-size: 0.84em;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
}
.exclusive-competitor i { color: #ef4444; flex-shrink: 0; }
.exclusive-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.exclusive-footer i { color: #fbbf24; font-size: 1.4em; flex-shrink: 0; }
.exclusive-footer p { color: rgba(255,255,255,0.75); font-size: 0.93em; line-height: 1.6; flex: 1; min-width: 200px; }
.exclusive-footer p strong { color: white; }

/* ── Precios — ítems exclusivos ──────────── */
.pricing-feature-exclusive {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: var(--dark-3);
    font-weight: 700 !important;
    background: linear-gradient(90deg, rgba(245,158,11,0.08), transparent);
    padding: 4px 6px;
    border-radius: 6px;
    border-left: 2px solid #f59e0b;
    margin-left: -6px;
}
.pricing-feature-exclusive i { color: #f59e0b !important; flex-shrink: 0; }
.pricing-excl-tag {
    margin-left: auto;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ── Barra de anuncio ───────────────────── */
.announce-bar {
    position: relative;
    z-index: 1002;
    background: linear-gradient(90deg, #4338ca 0%, #667eea 50%, #764ba2 100%);
    background-size: 200% auto;
    animation: announceBg 4s linear infinite;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 48px 10px 16px;
    font-size: 0.85em;
    font-weight: 500;
    min-height: 44px;
}
@keyframes announceBg {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.announce-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.announce-dot {
    width: 8px; height: 8px;
    background: #34d399;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
    animation: announceDot 1.8s ease-in-out infinite;
}
@keyframes announceDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.announce-link {
    color: white;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: background var(--transition);
    white-space: nowrap;
}
.announce-link:hover { background: rgba(255,255,255,0.3); }
.announce-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1em;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition);
}
.announce-close:hover { color: white; }
.announce-bar.hidden { display: none; }

/* ── Hero — partículas flotantes ─────────── */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle linear infinite;
}
.p1 { width:8px;  height:8px;  background:#a5f3fc; left:10%; top:20%; animation-duration:12s; animation-delay:0s; }
.p2 { width:14px; height:14px; background:#818cf8; left:25%; top:60%; animation-duration:18s; animation-delay:-4s; }
.p3 { width:6px;  height:6px;  background:#34d399; left:40%; top:15%; animation-duration:14s; animation-delay:-8s; }
.p4 { width:20px; height:20px; background:#c084fc; left:60%; top:70%; animation-duration:22s; animation-delay:-2s; }
.p5 { width:10px; height:10px; background:#fbbf24; left:75%; top:30%; animation-duration:16s; animation-delay:-6s; }
.p6 { width:5px;  height:5px;  background:#a5f3fc; left:85%; top:55%; animation-duration:11s; animation-delay:-3s; }
.p7 { width:16px; height:16px; background:#818cf8; left:5%;  top:80%; animation-duration:20s; animation-delay:-10s; }
.p8 { width:9px;  height:9px;  background:#34d399; left:90%; top:10%; animation-duration:15s; animation-delay:-5s; }
@keyframes floatParticle {
    0%   { transform: translateY(0px) translateX(0px) scale(1);   opacity: 0.1; }
    25%  { transform: translateY(-30px) translateX(15px) scale(1.1); opacity: 0.2; }
    50%  { transform: translateY(-60px) translateX(-10px) scale(0.9); opacity: 0.15; }
    75%  { transform: translateY(-30px) translateX(-20px) scale(1.05); opacity: 0.2; }
    100% { transform: translateY(0px) translateX(0px) scale(1);   opacity: 0.1; }
}

/* ── Hero — badge con punto animado ─────── */
.hero-badge { position: relative; }
.hero-badge-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: #34d399;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(52,211,153,0.5);
    animation: heroLive 2s ease-in-out infinite;
}
@keyframes heroLive {
    0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
}

/* ── Hero — gradiente animado en texto ───── */
.animated-gradient {
    background: linear-gradient(90deg, #a5f3fc 0%, #34d399 25%, #818cf8 50%, #fbbf24 75%, #a5f3fc 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ── Hero — texto "la competencia no tiene" ── */
.hero-strong-accent {
    color: #a5f3fc;
    font-style: italic;
    position: relative;
}
.hero-strong-accent::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #a5f3fc, #34d399);
    border-radius: 2px;
    animation: underlineGrow 1.5s ease-out 0.5s both;
    transform-origin: left;
}
@keyframes underlineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ── Hero — phone 3D ─────────────────────── */
.phone-3d {
    transform: perspective(900px) rotateY(-12deg) rotateX(4deg);
    transition: transform 0.4s ease;
    box-shadow: 30px 40px 80px rgba(0,0,0,0.55), 0 0 0 2px rgba(255,255,255,0.08) !important;
}
.phone-3d:hover {
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
}
.phone-vip-card {
    border-left-color: #f59e0b !important;
    background: #1e293b !important;
}

/* ── Botón con pulso ─────────────────────── */
.btn-pulse {
    position: relative;
    overflow: visible;
}
.btn-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: rgba(255,255,255,0.3);
    animation: btnPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btnPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 0;   transform: scale(1.15); }
}

/* ── Tabla comparativa ───────────────────── */
.compare-table-wrap {
    margin-top: 48px;
    position: relative;
    z-index: 1;
}
.compare-table-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    justify-content: center;
}
.compare-table-title i { color: #a5b4fc; }
.compare-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.compare-header,
.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}
.compare-header {
    background: rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.compare-row {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.compare-row:hover { background: rgba(255,255,255,0.06); }
.compare-row:last-child { border-bottom: none; }
.compare-row--highlight {
    background: rgba(245,158,11,0.06) !important;
    border-color: rgba(245,158,11,0.15);
}
.compare-row--highlight:hover { background: rgba(245,158,11,0.1) !important; }
.compare-row--footer {
    background: rgba(102,126,234,0.15) !important;
}
.compare-feature-col,
.compare-col {
    padding: 12px 16px;
    font-size: 0.88em;
    color: rgba(255,255,255,0.7);
}
.compare-feature-col { font-weight: 500; }
.compare-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.8em;
    color: rgba(255,255,255,0.5);
}
.compare-col--winner {
    background: rgba(102,126,234,0.12);
    color: #a5b4fc !important;
    border-left: 1px solid rgba(102,126,234,0.3);
    border-right: 1px solid rgba(102,126,234,0.3);
}
.compare-logo {
    height: 22px;
    width: auto;
    filter: brightness(5);
    margin-bottom: 2px;
}
.compare-price {
    font-size: 0.75em;
    opacity: 0.7;
    font-weight: 500;
}
.compare-yes  { color: #34d399; font-size: 1.3em; }
.compare-no   { color: #ef4444; font-size: 1.3em; }
.compare-partial { color: #f59e0b; font-size: 1.3em; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .exclusive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 12px;
        box-shadow: var(--shadow);
        gap: 4px;
        z-index: 999;
    }
    .nav-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(68px + 4 * 40px + 24px); left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 12px 16px 16px;
        box-shadow: var(--shadow);
        gap: 8px;
        z-index: 998;
    }
    .nav-actions.open .btn { width: 100%; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .access-cards { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .form-row { grid-template-columns: 1fr; }
    .pvd-grid { grid-template-columns: 1fr; }
    .pvd-vs { padding: 12px 0; }
    .pvd-vs span { transform: rotate(90deg); }
    .ss-panel.active { grid-template-columns: 1fr; }
    .ss-desc { text-align: center; }
    .exclusive-grid { grid-template-columns: 1fr; }
    .exclusive-footer { flex-direction: column; text-align: center; }
    .exclusive-footer .btn { width: 100%; justify-content: center; }
    .compare-header,
    .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .compare-feature-col, .compare-col { padding: 10px 8px; font-size: 0.78em; }
}

@media (max-width: 480px) {
    .who-grid { grid-template-columns: 1fr; }
    .hero { padding: 100px 0 60px; }
    .features, .how-it-works, .for-who, .contact { padding: 70px 0; }
    .announce-inner { font-size: 0.82em; }
    .compare-header,
    .compare-row { grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; }
}

/* ════════════════════════════════════════════
   TESTIMONIOS
   ════════════════════════════════════════════ */
.testimonials {
    padding: 96px 0 80px;
    background: var(--lighter);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102,126,234,0.07), transparent 70%);
    pointer-events: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card--featured {
    border-color: rgba(245,158,11,0.35);
    background: linear-gradient(135deg, #fffbeb 0%, var(--white) 100%);
}
.testimonial-quote-icon {
    font-size: 1.4em;
    color: var(--primary);
    opacity: 0.25;
    line-height: 1;
}
.testimonial-card--featured .testimonial-quote-icon {
    color: #f59e0b;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.9em;
}
.testimonial-text {
    color: var(--dark-3);
    font-size: 0.95em;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85em;
    flex-shrink: 0;
}
.testimonial-info {
    flex: 1;
    min-width: 0;
}
.testimonial-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95em;
}
.testimonial-info span {
    display: block;
    color: var(--mid);
    font-size: 0.8em;
}
.testimonial-badge-vip,
.testimonial-badge-stock,
.testimonial-badge-setup {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-badge-vip {
    background: rgba(245,158,11,0.12);
    color: #d97706;
    border: 1px solid rgba(245,158,11,0.25);
}
.testimonial-badge-stock {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}
.testimonial-badge-setup {
    background: rgba(102,126,234,0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(102,126,234,0.2);
}
.testimonials-note {
    text-align: center;
    margin-top: 32px;
    color: var(--mid);
    font-size: 0.82em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.testimonials-note i {
    color: var(--accent);
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
}

