/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-hero {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    min-height: 64px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

.btn-elite {
    border: 2px solid var(--accent-color);
}

.btn-video {
    background-color: var(--surface-color);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

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

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
}

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

.nav-list a {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-color);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: white;
}

.theme-icon {
    width: 20px;
    height: 20px;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.header-cta {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
}

.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(231, 76, 60, 0.6);
    animation: float 15s infinite;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.heart:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.heart:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.heart:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes float {
    0% {
        bottom: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background-color: var(--background-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-container {
    text-align: center;
    margin: 3rem 0;
}

.seo-content {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 8px;
}

.seo-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content h3:first-child {
    margin-top: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    background-color: var(--surface-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--secondary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--surface-color);
}

.comparison-table tbody tr:hover {
    background-color: rgba(231, 76, 60, 0.05);
}

.rating {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.rating-number {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background-color: var(--background-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #C0392B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--surface-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 300px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.verified-badge svg {
    width: 20px;
    height: 20px;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-header h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.testimonial-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.status-married,
.status-engaged,
.status-planning {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
}

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

.status-engaged {
    background-color: var(--accent-color);
    color: white;
}

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

.testimonial-timeline {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonial-content blockquote {
    font-style: italic;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.8;
}

.platform-badge {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.platform-badge span {
    display: inline-block;
    background-color: var(--surface-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.video-cta {
    text-align: center;
    margin: 2rem 0;
}

/* Safety Section */
.safety-section {
    padding: 80px 20px;
    background-color: var(--background-color);
}

.section-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety-feature {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-tips-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
}

.safety-tips-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.safety-checklist {
    list-style: none;
}

.safety-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: var(--background-color);
    border-radius: 6px;
}

.safety-checklist svg {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 2px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 8px;
}

.certification-badges img {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.certification-badges img:hover {
    opacity: 1;
}

.safety-stat {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #C0392B);
    color: white;
    border-radius: 8px;
    margin: 3rem 0;
}

.stat-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.safety-stat .stat-label {
    font-size: 1.25rem;
    color: white;
    opacity: 0.95;
}

.safety-stat svg {
    width: 48px;
    height: 48px;
    margin: 1rem auto 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background-color: var(--surface-color);
}

.limited-offer-banner {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
}

.limited-offer-banner svg {
    width: 24px;
    height: 24px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-popular {
    border: 3px solid var(--primary-color);
}

.pricing-card-elite {
    border: 2px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-included {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-included svg {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 2px;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--success-color);
}

.guarantee-badge svg {
    width: 48px;
    height: 48px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-methods img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.secure-checkout svg {
    width: 20px;
    height: 20px;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: var(--background-color);
}

.features-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 80px;
}

.tab-button:hover {
    border-color: var(--primary-color);
    background-color: rgba(231, 76, 60, 0.05);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-button svg {
    width: 24px;
    height: 24px;
}

.tabs-content {
    background-color: var(--surface-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-highlights {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-highlights svg {
    flex-shrink: 0;
    color: var(--success-color);
}

.feature-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: var(--surface-color);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-title svg {
    width: 24px;
    height: 24px;
}

.faq-item {
    background-color: var(--background-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    min-height: 60px;
}

.faq-question:hover {
    background-color: var(--surface-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #C0392B);
    color: white;
}

.final-cta-section h2 {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-text {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.registration-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.preview-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.preview-step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--surface-color);
    border-radius: 8px;
}

.step-icon-large {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.step-number-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

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

.step-fields {
    list-style: none;
    text-align: left;
}

.step-fields li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.preview-benefits {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
}

.preview-benefits h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.instant-benefits {
    list-style: none;
}

.instant-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.instant-benefits svg {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 2px;
}

.hero-cta-final {
    text-align: center;
    margin: 3rem 0;
}

.reassurance-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: white;
    opacity: 0.9;
}

.reassurance-text svg {
    width: 16px;
    height: 16px;
}

.separator {
    opacity: 0.5;
}

.urgency-indicator {
    text-align: center;
    margin: 2rem 0;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: white;
    font-size: 1.125rem;
}

.countdown-timer svg {
    width: 20px;
    height: 20px;
}

.final-trust-elements {
    max-width: 900px;
    margin: 3rem auto 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: white;
}

.stat-text {
    flex: 1;
}

.trust-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.trust-stat-item .stat-label {
    font-size: 0.875rem;
    color: white;
    opacity: 0.9;
}

.security-badges-final {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.security-badges-final img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.social-proof-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    max-width: 300px;
}

.notification-toast {
    background-color: white;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0.5rem;
    animation: slideIn 0.3s ease, slideOut 0.3s ease 4.7s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ECF0F1;
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-mission {
    color: #BDC3C7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    color: #7F8C8D;
    font-size: 0.875rem;
}

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

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

.footer-links a {
    color: #BDC3C7;
    transition: color 0.3s ease;
}

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

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #BDC3C7;
    font-size: 0.875rem;
}

.contact-info svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.contact-info a {
    color: #BDC3C7;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.address {
    line-height: 1.6;
}

.newsletter-signup h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-trust-badges img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

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

.disclaimer {
    color: #7F8C8D;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tagline {
    color: #BDC3C7;
    font-style: italic;
    font-size: 0.875rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 2rem;
    color: var(--text-primary);
    background-color: var(--background-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 1rem;
    z-index: 1;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
}

.modal-body {
    padding: 2rem;
}

.modal-body h1,
.modal-body h2,
.modal-body h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h1:first-child,
.modal-body h2:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-body ul,
.modal-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-content {
        flex-direction: row;
        align-items: center;
    }

    .feature-text {
        flex: 1;
    }

    .feature-image {
        flex: 1;
    }

    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .registration-preview {
        grid-template-columns: 2fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reassurance-text {
        flex-wrap: nowrap;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .header-cta {
        display: inline-flex;
    }

    .hero-section {
        min-height: 700px;
    }

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

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

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card-popular {
        transform: scale(1.05);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--secondary-color);
    }
}

/* Print Styles */
@media print {
    header,
    .hero-section,
    .cta-container,
    .social-proof-notifications,
    footer {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .seo-content {
        background-color: white;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

    [data-theme="dark"] {
        --primary-color: #FF5252;
        --text-primary: #FFFFFF;
        --text-secondary: #CCCCCC;
        --border-color: #FFFFFF;
    }
}
