/* Reset y Variables CSS */
:root {
    --primary-color: #3B5EF0;
    --primary-dark: #2B4EE0;
    --secondary-color: #f97316;
    --accent-color: #28D094;
    --success-color: #28D094;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --background-blue: #E8F0FF;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

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

/* Header */
.header {
    background: var(--background);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.header-phone i {
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: var(--background-blue);
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.price {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-cta {
    text-align: left;
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-note i {
    color: var(--accent-color);
}

/* Hero Card */
.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.card-header {
    background: var(--background-alt);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.card-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-content {
    padding: 24px;
}

.btn-card {
    margin-bottom: 16px;
}

.card-features {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.card-features i {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.btn:focus {
    box-shadow: 0 0 0 2px rgba(59, 94, 240, 0.2);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--text-secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #20B884;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

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

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Floating Buttons */
.btn-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    padding: 16px 24px;
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

.btn-floating-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    padding: 16px 24px;
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--background-alt);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.without-insurance {
    border-left: 4px solid var(--error-color);
}

.with-insurance {
    border-left: 4px solid var(--success-color);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.comparison-header i {
    font-size: 24px;
}

.without-insurance .comparison-header i {
    color: var(--error-color);
}

.with-insurance .comparison-header i {
    color: var(--success-color);
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: var(--radius);
}

.without-insurance .comparison-item {
    background: rgba(239, 68, 68, 0.05);
}

.with-insurance .comparison-item {
    background: rgba(40, 208, 148, 0.05);
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.comparison-icon.danger {
    background: var(--error-color);
    color: white;
}

.comparison-icon.success {
    background: var(--success-color);
    color: white;
}

.comparison-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-primary);
}

.cta-inline {
    margin-top: 12px;
}

/* Question CTA Section */
.question-cta {
    background: var(--background-blue);
    padding: 60px 0;
    text-align: center;
}

.question-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--background-blue);
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    background: var(--background-alt);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-icon {
    width: 40px;
    height: 40px;
    background: var(--background-blue);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    font-weight: 600;
    display: block;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.close {
    color: var(--text-light);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

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

.modal-body {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-top: 1px solid var(--border);
    gap: 12px;
}

/* Success Modal */
.success-modal .success-header {
    background: linear-gradient(135deg, var(--success-color), #20B884);
    color: white;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-header h3 {
    color: white;
    margin-bottom: 0;
}

.success-header .close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: white;
}

.success-body {
    padding: 32px 24px;
    text-align: center;
}

.success-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-primary);
    font-weight: 500;
}

.success-phone-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(59, 94, 240, 0.05);
    border: 2px solid rgba(59, 94, 240, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.phone-notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.phone-notice-content h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.phone-notice-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.phone-notice-content .phone-tip {
    color: var(--text-primary);
    font-size: 14px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 12px;
}

.success-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.success-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

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

.success-next-steps {
    background: var(--background-alt);
    padding: 24px;
    border-radius: var(--radius);
    text-align: left;
}

.success-next-steps h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.success-next-steps ol {
    padding-left: 20px;
    color: var(--text-secondary);
}

.success-next-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.success-footer {
    padding: 24px;
    text-align: center;
}

/* Progress Bar */
.progress-container {
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.progress-bar {
    background: var(--border-light);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    height: 100%;
    width: 14.28%;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-light);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step.completed {
    background: var(--success-color);
    color: white;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInSlide 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.radio-option:hover {
    border-color: var(--primary-color);
}

.radio-option.selected {
    border-color: var(--primary-color);
    background: rgba(59, 94, 240, 0.05);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-option.selected .radio-custom {
    border-color: var(--primary-color);
}

.radio-option.selected .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.radio-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Form Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 94, 240, 0.1);
}

.form-input.error {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: var(--success-color);
    background: rgba(40, 208, 148, 0.05);
}

.form-input.success:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(40, 208, 148, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.form-input.error + .input-icon {
    color: var(--error-color);
}

.form-input.success + .input-icon {
    color: var(--success-color);
}

/* Phone Input */
.phone-input-container {
    display: flex;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
    background: white;
}

.phone-input-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 94, 240, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--background-alt);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.prefix-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.phone-input {
    border: none;
    padding: 16px 48px 16px 16px;
    outline: none;
    flex: 1;
}

.phone-input-container .input-icon {
    right: 16px;
    left: auto;
}

/* Error and Success Messages */
.error-message,
.success-message {
    display: none;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.error-message {
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.success-message {
    color: var(--success-color);
    background: rgba(40, 208, 148, 0.1);
    border: 1px solid rgba(40, 208, 148, 0.2);
}

/* Privacy Consent */
.privacy-consent {
    margin-top: 24px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Privacy Content */
.privacy-content {
    max-height: 400px;
    overflow-y: auto;
}

.privacy-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 12px 0;
    color: var(--text-primary);
}

.privacy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.privacy-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    .success-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-phone-notice {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .phone-notice-icon {
        margin: 0 auto;
    }
    
    .phone-input-container {
        flex-direction: column;
    }
    
    .phone-prefix {
        border-right: none;
        border-bottom: 1px solid var(--border);
        justify-content: center;
    }
    
    .btn-floating,
    .btn-floating-fixed {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .form-step h4 {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .header-phone {
        display: none;
    }
}

/* Loading States */
.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Focus States for Accessibility */
.btn:focus,
.radio-option:focus-within,
.checkbox-container:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
        --text-secondary: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}