/* FAST-CT Landing Page - Clean & Functional CSS */

/* ============================
   RESET & BASE STYLES
   ============================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================
   VARIABLES
   ============================ */

:root {
    --primary-green: #7dd3c7;
    --success-green: #5cb85c;
    --accent-blue: #6366f1;
    --warning: #dc7473;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --background-light: #f8f9fa;
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ============================
   TYPOGRAPHY
   ============================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-section .section-title {
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #64748b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.problem-section .section-subtitle {
    color: #64748b;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ============================
   NAVIGATION
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-access {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(125, 211, 199, 0.3);
}

.nav-access:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(125, 211, 199, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* ============================
   HERO SECTION
   ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Fondo de respaldo en caso de que no funcione el video */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(125, 211, 199, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 
        2px 2px 12px rgba(0,0,0,0.9), 
        0 0 20px rgba(0,0,0,0.8),
        1px 1px 3px rgba(0,0,0,1);
}

.text-gradient {
    color: var(--primary-green);
    font-weight: 800;
    text-shadow: 
        2px 2px 12px rgba(0,0,0,0.9), 
        0 0 20px rgba(0,0,0,0.8),
        1px 1px 3px rgba(0,0,0,1);
}

.highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.9), 
        0 0 15px rgba(0,0,0,0.7),
        1px 1px 3px rgba(0,0,0,1);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--success-green) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 30px rgba(125, 211, 199, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(125, 211, 199, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-subcopy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 500;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.4), 
        0 0 6px rgba(0,0,0,0.2);
}



/* ============================
   SECTIONS SPACING
   ============================ */

section {
    padding: 4rem 0;
}

.problem-section {
    background: linear-gradient(180deg, #fafbfb 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 67, 76, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(239, 68, 68, 0.01) 0%, rgba(239, 68, 68, 0.03) 100%);
    pointer-events: none;
}

.solution-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfb 100%);
    position: relative;
}

.social-proof {
    background: var(--background-light);
}

/* ============================
   PROBLEM & SOLUTION SECTIONS
   ============================ */

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
        linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #ef4444 0%, 
        #f97316 33%, 
        #eab308 66%, 
        #ef4444 100%
    );
    opacity: 0.7;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 8px 25px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(226, 232, 240, 1);
}

.stat-item:hover::before {
    opacity: 1;
    height: 4px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.2));
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.stat-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
    margin: 0 auto;
}

.benefit-item p {
    color: var(--text-muted);
}

.emphasis-text {
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    color: var(--text-muted);
    margin: 2rem 0;
}

.emotional-close {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #1e293b;
    font-style: italic;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    border-left: 6px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 10px 25px rgba(15, 23, 42, 0.05),
        0 4px 15px rgba(239, 68, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    line-height: 1.6;
}

.emotional-close::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #ef4444 0%, #f97316 50%, #eab308 100%);
    border-radius: 0 0 0 18px;
}

.closing-message {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin: 3rem 0;
}

/* ============================
   TESTIMONIALS & SOCIAL PROOF
   ============================ */

.testimonials-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.2;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 1rem 0 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-style: normal;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.rating .stars {
    color: var(--warning);
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================
   BEFORE & AFTER SECTION
   ============================ */

.before-after {
    background: var(--background-light);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.before, .after {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.before h3, .after h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.before h3 {
    color: #dc7473;
}

.after h3 {
    color: var(--success-green);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item.negative {
    background: #fdf2f2;
    border-left: 4px solid #dc7473;
}

.timeline-item.positive {
    background: #f0f9f0;
    border-left: 4px solid var(--success-green);
}

.timeline-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.negative i {
    color: #dc7473;
}

.positive i {
    color: var(--success-green);
}

.comparison-close {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-top: 3rem;
    font-style: italic;
}

/* ============================
   HOW IT WORKS SECTION
   ============================ */

.how-it-works {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content {
    margin-top: 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.process-close {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-top: 3rem;
}

/* ============================
   PRICING SECTION - STRIPE LEVEL
   ============================ */

.pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfb 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.pricing-transparency {
    text-align: center;
    margin: 3rem 0 4rem;
    padding: 3rem 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    box-shadow: 
        0 10px 25px rgba(15, 23, 42, 0.04),
        0 4px 15px rgba(16, 185, 129, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-transparency h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pricing-transparency p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 8px 25px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(226, 232, 240, 1);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%),
        linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.card-header {
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(248, 250, 252, 0.05) 100%);
}

.card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.3;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.pricing-card.featured .amount {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.5rem;
}

.savings {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    display: inline-block;
}

.card-features {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.card-features li:last-child {
    margin-bottom: 0;
}

.card-features i {
    color: #059669;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-card.featured .card-features i {
    color: #7c3aed;
}

.pricing-cta {
    width: calc(100% - 4rem);
    padding: 1.2rem 2rem;
    margin: 1.5rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--success-green) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    display: block;
}

.pricing-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.featured-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    box-shadow: 
        0 4px 15px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.featured-cta:hover {
    box-shadow: 
        0 8px 25px rgba(124, 58, 237, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trial-cta {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    box-shadow: 
        0 4px 15px rgba(100, 116, 139, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trial-cta:hover {
    box-shadow: 
        0 8px 25px rgba(100, 116, 139, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    text-align: center;
    min-width: 180px;
}

.trust-item i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta .cta-primary {
    font-size: 1.3rem;
    padding: 1.6rem 4rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-cta .cta-subcopy {
    margin-top: 1.5rem;
    font-style: italic;
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    max-width: 600px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

/* ============================
   FAQs SECTION
   ============================ */

.faqs {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================
   EMOTIONAL CLOSE SECTION
   ============================ */

.emotional-close-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.emotional-close-section .section-title {
    color: white;
}

.emotional-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emotional-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-action .cta-primary {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
}

.final-subcopy {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* ============================
   FOOTER
   ============================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================
   STICKY CTA
   ============================ */

.cta-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-sticky.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.15),
        0 8px 25px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(125, 211, 199, 0.02) 0%, 
        rgba(59, 130, 246, 0.02) 50%, 
        rgba(16, 185, 129, 0.02) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card .btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--success-green) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(125, 211, 199, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    min-width: 160px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(125, 211, 199, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.floating-card .btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.floating-card .btn:hover svg {
    transform: translateX(2px);
}

/* ============================
   MODAL & FORM STYLES
   ============================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #1f2937;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    color: #1f2937;
    box-shadow: 0 0 0 3px rgba(125, 211, 199, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #9ca3af;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #9ca3af;
    opacity: 1;
}

.file-upload-area {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f9fafb;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-green);
    background: rgba(125, 211, 199, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary-green);
    background: rgba(125, 211, 199, 0.1);
    transform: scale(1.02);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.file-upload-text p {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.file-upload-text span {
    color: var(--primary-green);
    font-weight: 600;
}

.file-upload-text small {
    color: #6b7280;
    font-size: 0.8rem;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(125, 211, 199, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

.file-preview i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.file-preview .file-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
}

.remove-file {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.remove-file:hover {
    background: rgba(239, 68, 68, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--success-green) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 211, 199, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-loader i {
    font-size: 1.1rem;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer p {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer i {
    color: var(--primary-green);
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success-green);
}

.success-modal h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-modal p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-modal .cta-primary {
    margin: 0 auto;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================
   SOCIAL PROOF NOTIFICATIONS (Stripe-level UX)
   ============================ */

.social-proof-notifications {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 100;
    pointer-events: none;
}

.social-proof-toast {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 
        0 10px 40px rgba(15, 23, 42, 0.12),
        0 4px 20px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    
    transform: translateX(120%) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    display: flex;
    align-items: center;
    gap: 0.875rem;
    
    position: relative;
    overflow: hidden;
}

.social-proof-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(125, 211, 199, 0.03) 0%, 
        rgba(16, 185, 129, 0.03) 50%, 
        rgba(5, 150, 105, 0.03) 100%
    );
    border-radius: 16px;
    pointer-events: none;
}

.social-proof-toast.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.social-proof-toast.hide {
    transform: translateX(120%) scale(0.8);
    opacity: 0;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--success-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(125, 211, 199, 0.3);
    position: relative;
    z-index: 2;
}

.toast-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.toast-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    margin-bottom: 0.125rem;
}

.toast-action {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.toast-clinic {
    font-weight: 500;
    color: var(--primary-green);
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.toast-timing {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
    z-index: 2;
}

/* Pulse animation for the avatar */
@keyframes avatarPulse {
    0% { box-shadow: 0 4px 12px rgba(125, 211, 199, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(125, 211, 199, 0.5), 0 0 20px rgba(125, 211, 199, 0.2); }
    100% { box-shadow: 0 4px 12px rgba(125, 211, 199, 0.3); }
}

.toast-avatar {
    animation: avatarPulse 3s ease-in-out infinite;
}

/* Hover effect */
.social-proof-toast:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(15, 23, 42, 0.15),
        0 6px 25px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Auto-hide inteligente cuando hay interacción con botones */
body:has(.cta-primary:hover) .social-proof-notifications,
body:has(.pricing-cta:hover) .social-proof-notifications,
body:has(.submit-btn:hover) .social-proof-notifications,
body:has(button:hover) .social-proof-notifications {
    opacity: 0.2;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Fallback para navegadores que no soportan :has() */
.cta-primary:hover ~ .social-proof-notifications,
.pricing-cta:hover ~ .social-proof-notifications {
    opacity: 0.2;
    transform: translateX(10px);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Large screens - Force 4 columns always */
@media (min-width: 1025px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .problem-stats,
    .process-steps {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-wall {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1000px;
    }
}

/* Tablet/Medium screens - Force 2x2 layout for 4-element grids */
@media (max-width: 1024px) and (min-width: 769px) {
    .problem-stats,
    .benefits-grid,
    .testimonials-wall,
    .stats-grid,
    .process-steps,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .pricing-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-container {
        gap: 3rem;
        padding: 8rem 1.5rem 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 6rem 1rem 2rem;
        position: relative;
        min-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .cta-primary {
        align-self: center;
        width: auto;
        max-width: 90%;
        justify-content: center;
        text-align: center;
    }
    

    
    /* Asegurar que el video se vea en móvil */
    .hero-video-background {
        display: block !important;
    }
    
    .hero-video {
        opacity: 0.8; /* Reducir un poco la opacidad en móvil */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-wall,
    .stats-grid,
    .problem-stats,
    .benefits-grid,
    .process-steps,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 400px;
    }
    
    .pricing-card {
        margin: 0;
    }
    
    .pricing-cta {
        width: calc(100% - 2rem);
        margin: 1rem 1rem 1.5rem;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .final-cta {
        padding: 0 1rem;
    }
    
    .final-cta .cta-primary {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
        width: auto;
        max-width: 90%;
    }
    
    .final-cta .cta-subcopy {
        margin: 1rem auto 0;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        max-width: 90%;
    }
    
    .final-action {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .final-action .cta-primary {
        align-self: center;
        margin: 0 auto;
        width: auto;
        max-width: 90%;
    }
    
    .pricing-section {
        padding: 3rem 0;
    }
    
    .cta-sticky {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }

    
    /* Modal responsiveness */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .file-upload-area {
        padding: 1.5rem 1rem;
    }
    
    .file-upload-text i {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Social Proof mobile adjustments */
    .social-proof-notifications {
        top: 5rem;
        right: 1rem;
        left: auto;
        bottom: auto;
    }
    
    .social-proof-toast {
        min-width: 280px;
        max-width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .toast-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .toast-name {
        font-size: 0.8rem;
    }
    
    .toast-action {
        font-size: 0.75rem;
    }
    
    .toast-timing {
        font-size: 0.65rem;
    }
} 