/* Asian Dating Landing Page - Custom CSS */
/* Mobile-First Responsive Design - No External Dependencies */

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

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

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

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 & LAYOUT
   ============================================ */

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: background-color 0.3s ease;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--surface-color);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px var(--shadow-color);
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background-color: var(--primary-color);
    color: white;
}

.main-nav .cta-nav {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

/* Theme Toggle */
.theme-toggle {
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

.theme-toggle svg {
    display: block;
    color: var(--text-primary);
}

.theme-toggle .moon-icon {
    display: none;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--text-primary);
    color: var(--background-color);
}

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

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

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

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

.btn-xl {
    padding: 18px 40px;
    font-size: 1.25rem;
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
}

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-cta-buttons .btn {
    width: 100%;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.badge svg {
    color: var(--secondary-color);
}

.badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-email-form input {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.hero-email-form .btn {
    width: 100%;
}

.form-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-primary);
}

section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-transition {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.section-transition a {
    color: var(--primary-color);
    font-weight: 600;
}

.section-transition a:hover {
    text-decoration: underline;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    background-color: var(--surface-color);
}

.benefits-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

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

.benefits-stats {
    text-align: center;
    padding: 30px;
    background-color: var(--background-color);
    border-radius: 12px;
    margin-top: 40px;
}

.benefits-stats p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.how-it-works-section {
    background-color: var(--background-color);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.step-icon {
    margin: 20px 0;
    text-align: center;
}

.step-icon svg {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.step-card h3 {
    margin-bottom: 15px;
    text-align: center;
}

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

.step-connector {
    display: none;
}

.timeline-stat {
    text-align: center;
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 12px;
    margin-bottom: 30px;
}

.timeline-stat strong {
    color: var(--primary-color);
}

.cta-container {
    text-align: center;
    margin: 30px 0;
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */

.success-stories-section {
    background-color: var(--surface-color);
}

.testimonials-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.testimonial-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 25px;
}

.testimonial-header h3 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.location {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.testimonial-story {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
}

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

.success-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* ============================================
   DATABASE SECTION
   ============================================ */

.database-section {
    background-color: var(--background-color);
}

.profile-counter {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.25rem;
    font-weight: 600;
}

.counter-number {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.ethnicity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 20px;
    background-color: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

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

.profiles-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.profile-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.profile-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.profile-location,
.profile-ethnicity {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 15px 0;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    padding: 5px 12px;
    background-color: var(--background-color);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.ethnicity-comparison {
    margin-top: 60px;
}

.ethnicity-comparison h3 {
    text-align: center;
    margin-bottom: 40px;
}

.culture-description {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.culture-description h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.culture-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.comparison-table caption {
    padding: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--background-color);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

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

/* ============================================
   SAFETY SECTION
   ============================================ */

.safety-section {
    background-color: var(--surface-color);
}

.safety-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.safety-visual {
    text-align: center;
}

.safety-features {
    display: grid;
    gap: 30px;
}

.safety-feature {
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.safety-feature h3 {
    margin-bottom: 15px;
}

.safety-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.cert-badge {
    text-align: center;
    padding: 25px;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.cert-badge svg {
    margin: 0 auto 15px;
}

.cert-badge p {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    background-color: var(--background-color);
}

.pricing-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

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

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

.original-price {
    text-align: center;
    margin-top: 5px;
}

.original-price span {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

.trial-note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.savings-offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.offer-card svg {
    flex-shrink: 0;
}

.trust-signals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 8px;
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.payment-methods {
    text-align: center;
    margin-bottom: 30px;
}

.payment-methods p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payment-icons span {
    padding: 10px 15px;
    background-color: var(--surface-color);
    border-radius: 8px;
}

.pricing-faq {
    margin-top: 40px;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-value-prop {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 12px;
    text-align: center;
}

.pricing-value-prop p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FAQ SECTION
   ============================================ */

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

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

.faq-categories h3 {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    text-align: left;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item div {
    padding: 0 20px 20px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.faq-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
}

.final-cta-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
}

.urgency-message {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.cta-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons-large .btn {
    width: 100%;
}

.limited-offer {
    margin-bottom: 40px;
}

.offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.offer-text {
    text-align: center;
}

.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.countdown-label {
    font-size: 0.875rem;
}

.countdown-time {
    font-size: 1.5rem;
    font-weight: 700;
}

.member-showcase {
    margin-bottom: 40px;
}

.member-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    background-size: cover;
    background-position: center;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-left: -10px;
}

.social-proof-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.proof-stat .stat-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
}

.proof-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.proof-stat .stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.process-reminder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 30px;
    height: 30px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    font-weight: 600;
}

.process-arrow {
    font-size: 1.5rem;
    display: none;
}

.risk-reversal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.guarantee-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.signup-form-enhanced {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.signup-form-enhanced h3 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.benefit-check input {
    width: 20px;
    height: 20px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-fields input,
.form-fields select {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.form-fields .btn {
    width: 100%;
}

/* ============================================
   GUIDE SECTION
   ============================================ */

.guide-section {
    background-color: var(--background-color);
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guide-main {
    flex: 1;
}

.guide-intro {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 12px;
    line-height: 1.8;
}

.guide-section-content {
    line-height: 1.8;
}

.guide-section-content h3 {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.guide-section-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.comparison-tables {
    margin: 40px 0;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.guide-table caption {
    padding: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    background-color: var(--primary-color);
    color: white;
}

.guide-table th,
.guide-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.guide-table th {
    background-color: var(--background-color);
    font-weight: 600;
    color: var(--text-primary);
}

.guide-table td {
    color: var(--text-secondary);
}

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

.guide-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.sidebar-widget h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget ul,
.sidebar-widget ol {
    list-style-position: inside;
}

.sidebar-widget li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.sidebar-widget a {
    color: var(--primary-color);
}

.sidebar-widget a:hover {
    text-decoration: underline;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 0;
}

.newsletter-widget form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-widget input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-color);
    color: var(--text-primary);
}

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

footer {
    background-color: var(--surface-color);
    padding: 60px 20px 30px;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-newsletter {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--background-color);
    border-radius: 12px;
}

.footer-newsletter h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--surface-color);
    color: var(--text-primary);
}

.footer-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 12px;
}

.trust-badge svg {
    color: var(--primary-color);
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

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

.social-link svg {
    color: var(--text-primary);
}

.social-link:hover svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-cta {
    margin-bottom: 25px;
}

.footer-legal p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.legal-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.legal-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Legal Modals */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

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

.modal-content {
    background-color: var(--background-color);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 10px 40px var(--shadow-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.modal-body {
    padding: 60px 30px 30px;
    max-height: 70vh;
    overflow-y: auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
    /* Typography */
    section h2 {
        font-size: 2.25rem;
    }
    
    section h3 {
        font-size: 1.5rem;
    }
    
    /* Header */
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .main-nav ul {
        flex-direction: row;
        gap: 25px;
    }
    
    .main-nav a {
        padding: 8px 12px;
    }
    
    /* Hero */
    .hero-section {
        min-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-cta-buttons .btn {
        width: auto;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-email-form {
        flex-direction: row;
    }
    
    .hero-email-form input {
        flex: 1;
    }
    
    .hero-email-form .btn {
        width: auto;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Steps */
    .steps-timeline {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-connector {
        display: block;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), transparent);
        margin-top: 80px;
        flex-shrink: 0;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Profiles */
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Safety */
    .safety-content {
        flex-direction: row;
        align-items: center;
    }
    
    .safety-visual {
        flex: 0 0 40%;
    }
    
    .safety-features {
        flex: 1;
    }
    
    .certification-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-signals {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Success Stats */
    .success-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Final CTA */
    .social-proof-numbers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-reminder {
        flex-direction: row;
        justify-content: center;
    }
    
    .process-arrow {
        display: block;
    }
    
    .risk-reversal {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Guide */
    .guide-content {
        flex-direction: row;
    }
    
    .guide-main {
        flex: 2;
    }
    
    .guide-sidebar {
        flex: 0 0 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-trust {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    /* Typography */
    section h2 {
        font-size: 2.5rem;
    }
    
    /* Hero */
    .hero-section {
        min-height: 800px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Profiles */
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Safety */
    .safety-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    .hero-cta-buttons,
    .cta-container,
    .footer-cta,
    .theme-toggle,
    .mobile-menu-toggle {
        display: none;
    }
}
