/* ==========================================================================
   LAMP Landing Page Styles
   ========================================================================== */

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */

:root {
    --primary-red: #9a2b37;
    --primary-red-dark: #7a222c;
    --primary-green: #3ecf9f;
    --primary-green-dark: #2eb888;
    --dark-slate: #1e3642;
    --text-dark: #2a2a2a;
    --text-light: #5a6a72;
    --bg-light: #f7f9fb;
    --white: #ffffff;
    --gold: #eebf63;
    --gold-dark: #d4a84f;
}

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

html {
    scroll-behavior: smooth;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-slate);
    line-height: 1.2;
}

p {
    color: var(--text-light);
}

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

/* ==========================================================================
   Accessibility - Skip Link
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 40px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-slate);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-logo span {
    color: var(--dark-slate);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-red);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-red);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover,
.nav-cta:focus {
    background: var(--primary-red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(154, 43, 55, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark-slate);
    margin: 6px 0;
    transition: 0.3s;
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0f5 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(62, 207, 159, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(154, 43, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(154, 43, 55, 0.1);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.1s backwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 35px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 43, 55, 0.25);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--dark-slate);
    color: white;
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-slate);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 191, 99, 0.3);
}

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

.btn-green:hover,
.btn-green:focus {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(62, 207, 159, 0.3);
}

/* Button loading state */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==========================================================================
   Plan Comparison Section
   ========================================================================== */

.comparison-section {
    padding: 100px 20px;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.05rem;
}

/* Plan Toggle */
.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.toggle-btn {
    padding: 12px 28px;
    border: 2px solid #e0e5e9;
    background: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn:hover,
.toggle-btn:focus {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.toggle-btn:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.toggle-btn[aria-pressed="true"],
.toggle-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border-color: var(--primary-green);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--dark-slate);
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
}

.card-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.pricing-card:nth-child(1) .card-icon {
    background: rgba(154, 43, 55, 0.1);
}

.pricing-card:nth-child(2) .card-icon {
    background: rgba(62, 207, 159, 0.15);
}

.pricing-card:nth-child(3) .card-icon {
    background: rgba(238, 191, 99, 0.2);
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-header .subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
}

.card-price {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #f0f3f5;
    border-bottom: 1px solid #f0f3f5;
    background: #fafbfc;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-slate);
    line-height: 1;
}

.price-amount sup {
    font-size: 1.2rem;
    top: -1rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.card-features {
    padding: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    padding: 0 30px 30px;
}

.card-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Family Plans (hidden by default) */
.family-plans {
    display: none;
}

.family-plans.active {
    display: grid;
}

.individual-plans.active {
    display: grid;
}

.individual-plans {
    display: none;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.benefits-section {
    background: var(--primary-green);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.benefits-section .section-header h2 {
    color: white;
}

.benefits-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.benefit-card-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-card-text {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
    padding: 100px 20px;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    z-index: 0;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-content > p {
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #e8ecef;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-slate);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover,
.faq-question:focus {
    color: var(--primary-red);
}

.faq-question:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item[data-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item[data-expanded="true"] .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
}

.faq-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

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

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: var(--dark-slate);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(238, 191, 99, 0.1) 0%, transparent 60%);
}

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

.cta-section h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cta-section .small {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-split {
    display: flex;
    min-height: 400px;
}

.footer-content {
    flex: 1;
    padding: 60px;
    background: white;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-side {
    flex: 1;
    background: var(--primary-red);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-side .circle-outline {
    width: 200px;
    height: 200px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.red-side .circle-outline::before {
    content: '❤';
    font-size: 150px;
    color: rgba(255,255,255,0.3);
    display: block;
    text-align: center;
    line-height: 200px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(1); }
    30% { transform: scale(1.15); }
    40%, 100% { transform: scale(1); }
}

.red-side::before {
    content: '❤';
    position: absolute;
    font-size: 250px;
    color: rgba(255,255,255,0.08);
    animation: heartbeat 1.5s ease-in-out infinite 0.1s;
}

.bottom-bar {
    background: #80202b;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.modal-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay[aria-hidden="false"] .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-red);
}

.modal-close:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-slate);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-footer {
    padding: 0 30px 30px;
}

.modal-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* Form status messages */
.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(62, 207, 159, 0.1);
    color: var(--primary-green-dark);
    border: 1px solid var(--primary-green);
}

.form-status.error {
    display: block;
    background: rgba(154, 43, 55, 0.1);
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

/* ==========================================================================
   Responsive - Tablet (900px)
   ========================================================================== */

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-image {
        display: none;
    }

    .step-card::after {
        display: none;
    }
}

/* ==========================================================================
   Responsive - Mobile (768px)
   ========================================================================== */

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 8px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s;
    }

    .nav-links[data-open="true"] {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f3f5;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .plan-toggle {
        flex-wrap: wrap;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .comparison-section,
    .benefits-section,
    .how-it-works,
    .faq-section {
        padding: 60px 20px;
    }

    .footer-split {
        flex-direction: column;
    }

    .footer-content {
        padding: 40px 20px;
    }

    .red-side {
        min-height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
