/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Accent colors */
    --accent-primary: #6366f1;
    --accent-hover: #4f46e5;
    --accent-light: #a5b4fc;
    --success: #22c55e;
    --success-dark: #16a34a;
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --warning: #f59e0b;
    --orange: #ff6100;
    --purple: #8b5cf6;

    /* Gradient overlays */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

    /* Card shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.10);
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode colors */
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
        --text-tertiary: #94a3b8;
        --border-color: #334155;
        --border-light: #1e293b;

        /* Adjusted gradient for dark mode */
        --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);

        /* Enhanced shadows for dark mode */
        --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.5);
        --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
        --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.6);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-weight: 400;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(15, 23, 42, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-cta {
    background: var(--accent-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Hero section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@media (prefers-color-scheme: dark) {
    .hero::before {
        background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    }
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: heroSlideUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--success-dark);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .section-badge {
        background: rgba(34, 197, 94, 0.15);
        border-color: rgba(34, 197, 94, 0.3);
        color: var(--success);
    }
}

.value-badge {
    background: #ff6100;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
    font-weight: 400;
}

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

.video-placeholder {
    max-width: 680px;
    margin: 0 auto;
}

.video-container {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
    .video-container {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .video-container:hover {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

@media (prefers-color-scheme: dark) {
    .primary-button {
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.5);
    }

    .primary-button:hover {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
    }
}

.hero-guarantees {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}


/* Comparison section */
.comparison {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    transition: background 0.3s ease;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

@media (prefers-color-scheme: dark) {
    .comparison::before {
        opacity: 0.3;
    }
}

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

.section-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.section-header p {
    font-size: 22px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.comparison-table {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.comparison-row:not(.header-row):hover {
    background: var(--bg-secondary);
    transform: scale(1.01);
}

.highlighted-row {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

@media (prefers-color-scheme: dark) {
    .highlighted-row {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    }
}

.header-row {
    background: var(--bg-tertiary);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.winner-badge,
.loser-badge {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.winner-badge {
    color: #22c55e;
}

.loser-badge {
    color: #ef4444;
}

.feature-col,
.policy-col,
.plan-col {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-col {
    background: var(--bg-secondary);
    transition: background 0.3s ease;
}

.feature-impact {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.policy-col {
    background: rgba(34, 197, 94, 0.08);
    border-right: 1px solid var(--border-color);
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .policy-col {
        background: rgba(34, 197, 94, 0.12);
    }
}

.policy-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-success);
}

.plan-col {
    background: rgba(239, 68, 68, 0.05);
    position: relative;
    transition: background 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .plan-col {
        background: rgba(239, 68, 68, 0.10);
    }
}

.plan-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-danger);
}

.benefit-detail,
.downside {
    font-size: 12px;
    margin-top: 4px;
    font-style: italic;
}

.benefit-detail {
    color: #16a34a;
}

.downside {
    color: #dc2626;
}

.check {
    color: #22c55e;
    font-weight: 700;
    margin-right: 8px;
    font-size: 16px;
}

.cross {
    color: #ef4444;
    font-weight: 700;
    margin-right: 8px;
    font-size: 16px;
}

.conditional {
    color: #f59e0b;
    font-weight: 700;
    margin-right: 8px;
    font-size: 16px;
}

/* Benefits section */
.benefits {
    padding: 100px 0;
    background: var(--bg-primary);
    transition: background 0.3s ease;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
    .benefit-card {
        background: var(--bg-secondary);
    }
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

.benefit-card:nth-child(1) {
    border-left-color: #22c55e;
}

.benefit-card:nth-child(2) {
    border-left-color: #6366f1;
}

.benefit-card:nth-child(3) {
    border-left-color: #ff6100;
}

.benefit-card:nth-child(4) {
    border-left-color: #8b5cf6;
}

.benefit-card:nth-child(5) {
    border-left-color: #ef4444;
}

.benefit-card:nth-child(6) {
    border-left-color: #06b6d4;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Social proof section */
.social-proof {
    padding: 120px 0;
    background: var(--bg-primary);
    transition: background 0.3s ease;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 80px;
}

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

.trust-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    align-items: start;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

@media (prefers-color-scheme: dark) {
    .testimonial-card {
        background: var(--bg-secondary);
    }
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--accent-primary);
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
    transition: color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .testimonial-card p {
        color: var(--text-secondary);
    }
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.author-initial {
    width: 48px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.testimonial-author div {
    flex: 1;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 12px;
    transition: color 0.3s ease;
}

.verified-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
    min-width: fit-content;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.credential-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking section */
.booking-section {
    padding: 100px 0;
    background: var(--bg-primary);
    transition: background 0.3s ease;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-header {
    margin-bottom: 60px;
}

.booking-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.booking-header p {
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.booking-form {
    background: transparent;
    padding: 40px;
    border-radius: 16px;
    border: none;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #22c55e;
    font-weight: 500;
    margin-top: 32px;
}

.calendar-placeholder {
    text-align: center;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.placeholder-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.time-slot {
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.time-slot:hover::before {
    left: 100%;
}

.time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    border-color: #a5b4fc;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 40px 0;
    transition: background 0.3s ease, color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .footer {
        background: #0f172a;
        color: white;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-text p {
    color: var(--text-tertiary);
    font-size: 14px;
    transition: color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .footer-text p {
        color: #94a3b8;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        top: 0;
    }
    
    .urgency-banner {
        display: none;
    }
    
    .nav-items {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-proof {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    
    .proof-number {
        font-size: 28px;
    }
    
    .primary-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .hero-guarantees {
        align-items: center;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .policy-col::before,
    .plan-col::before {
        display: none;
    }
    
    .policy-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .credentials {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 8px;
    }
    
    .placeholder-times {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}