/* ===================================
   DATING FOR DIVORCEES - STYLE.CSS
   Mobile-First Responsive Design
   =================================== */

/* ===================================
   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(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    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;
}

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===================================
   HEADER NAVIGATION
   =================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.logo svg {
    flex-shrink: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1001;
}

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

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

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

.theme-toggle {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

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

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

.cta-button {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 1rem 3rem;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 229, 217, 0.95) 0%, rgba(254, 253, 251, 0.9) 100%);
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(42, 37, 32, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-badge svg {
    flex-shrink: 0;
    color: var(--primary-teal);
}

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

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

.primary-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.primary-cta:hover {
    background-color: #ff7a2e;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    transform: translateY(-2px);
}

.secondary-cta {
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.secondary-cta:hover {
    color: var(--primary-orange);
}

.hero-intro-content {
    margin-top: 3rem;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-intro-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    padding: 4rem 1rem;
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.benefit-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    color: var(--primary-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-orange);
}

.divorcee-difference {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

.divorcee-difference h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: var(--soft-cream);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
    height: 8px;
}

.testimonial-track::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.testimonial-track::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 4px;
}

.testimonial-card {
    flex: 0 0 90%;
    max-width: 350px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-info {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.carousel-btn {
    display: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.success-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-orange) 100%);
    border-radius: 16px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff7a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.success-content {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===================================
   SAFETY SECTION
   =================================== */
.safety-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
}

.safety-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.safety-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.safety-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.safety-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.safety-feature p {
    line-height: 1.7;
}

.safety-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-radius: 16px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

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

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.safety-seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

/* ===================================
   METHODOLOGY SECTION
   =================================== */
.methodology-section {
    padding: 4rem 1rem;
    background-color: var(--warm-peach);
}

.methodology-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-step {
    position: relative;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a2e 100%);
    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, 140, 66, 0.3);
}

.step-icon {
    margin: 1rem 0 1.5rem;
}

.timeline-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-step p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.access-tools {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-teal);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.access-tools:hover {
    background-color: #3d7a8a;
    transform: translateY(-2px);
}

.methodology-stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.methodology-stat p {
    font-weight: 600;
    color: var(--primary-teal);
    margin: 0;
}

.methodology-content {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 4rem 1rem;
    background-color: var(--white);
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-seo-content {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    margin-top: 3rem;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 4rem 1rem;
    background-color: var(--light-gray);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    position: relative;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 3px solid var(--primary-orange);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.pricing-badge.popular {
    background-color: var(--primary-teal);
}

.pricing-badge.best-value {
    background-color: var(--primary-orange);
}

.pricing-badge.premium {
    background-color: var(--dark-text);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.pricing-cta.primary {
    background-color: var(--primary-orange);
    color: white;
}

.pricing-cta.primary:hover {
    background-color: #ff7a2e;
    transform: translateY(-2px);
}

.pricing-cta.secondary {
    background-color: var(--primary-teal);
    color: white;
}

.pricing-cta.secondary:hover {
    background-color: #3d7a8a;
    transform: translateY(-2px);
}

.pricing-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.guarantee-badge {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-comparison {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

.pricing-comparison h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
}

.comparison-table th {
    font-weight: 700;
    background-color: var(--light-gray);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.pricing-seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 4rem 1rem;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-orange);
    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: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* ===================================
   PENULTIMATE CTA SECTION
   =================================== */
.penultimate-cta {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 20px 20px;
}

.penultimate-cta .container {
    position: relative;
    z-index: 1;
}

.penultimate-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

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

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

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-large .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-message {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cta-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

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

.primary-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: white;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.primary-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.floating-testimonials {
    display: none;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: 4rem 1rem;
    background-color: var(--white);
}

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

.steps-row {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step-icon-large {
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--medium-text);
}

.main-cta-container {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-button-xlarge {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button-xlarge:hover {
    background-color: #ff7a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.trust-indicators-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-indicators-small span {
    font-size: 0.85rem;
    color: var(--medium-text);
}

.risk-reversal {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.risk-reversal p {
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.newsletter-signup {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.newsletter-signup h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 24px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--primary-teal);
    color: white;
    font-weight: 700;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #3d7a8a;
    transform: translateY(-2px);
}

.newsletter-offer {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.social-proof-counter {
    text-align: center;
    padding: 1rem;
    background-color: var(--peach-bg);
    border-radius: 12px;
}

.counter-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--dark-text);
    color: white;
    padding-top: 3rem;
}

.footer-cta {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
}

.footer-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-orange);
    font-weight: 700;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 3rem 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-mission {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.social-icon {
    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-icon:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

.contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trust-badge-small {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-selector select {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.footer-newsletter button {
    padding: 0.5rem 1rem;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #ff7a2e;
}

/* ===================================
   LEGAL MODALS
   =================================== */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 1rem;
}

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

.modal-content {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
}

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

.modal-close:hover {
    background-color: var(--light-gray);
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 4px;
}

/* ===================================
   TABLET BREAKPOINT (768px+)
   =================================== */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    .nav-menu ul {
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .cta-button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: var(--primary-orange);
        color: white;
        font-weight: 700;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .cta-button:hover {
        background-color: #ff7a2e;
        transform: translateY(-2px);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .trust-indicators {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 45%;
    }
    
    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background-color: var(--white);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        font-size: 2rem;
        color: var(--primary-teal);
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .carousel-btn:hover {
        background-color: var(--primary-teal);
        color: white;
    }
    
    .carousel-btn.prev {
        left: -1.5rem;
    }
    
    .carousel-btn.next {
        right: -1.5rem;
    }
    
    .success-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .safety-layout {
        flex-direction: row;
    }
    
    .safety-content {
        flex: 1;
    }
    
    .safety-visual {
        flex: 0 0 40%;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .timeline-steps {
        position: relative;
    }
    
    .timeline-steps::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
        transform: translateX(-50%);
    }
    
    .timeline-step:nth-child(odd) {
        margin-right: 50%;
        padding-right: 3rem;
    }
    
    .timeline-step:nth-child(even) {
        margin-left: 50%;
        padding-left: 3rem;
    }
    
    .feature-showcase.feature-left {
        flex-direction: row;
    }
    
    .feature-showcase.feature-right {
        flex-direction: row-reverse;
    }
    
    .feature-image {
        flex: 0 0 50%;
    }
    
    .feature-content {
        flex: 1;
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-testimonials {
        display: block;
    }
    
    .mini-testimonial {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background-color: white;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .mini-testimonial img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
    
    .mini-testimonial p {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--dark-text);
    }
    
    .testimonial-1 {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }
    
    .testimonial-2 {
        top: 20%;
        right: 5%;
        animation-delay: 1s;
    }
    
    .testimonial-3 {
        bottom: 15%;
        left: 10%;
        animation-delay: 2s;
    }
    
    .steps-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom-right {
        flex-direction: row;
        align-items: center;
    }
}

/* ===================================
   DESKTOP BREAKPOINT (1024px+)
   =================================== */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 30%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */
*:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-orange);
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    header,
    .hamburger,
    .theme-toggle,
    .cta-button,
    .floating-testimonials,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
