:root {
    --background: 200 18% 96%;
    --foreground: 213 60% 14%;
    --card: 0 0% 100%;
    --card-foreground: 213 60% 14%;
    --popover: 0 0% 100%;
    --popover-foreground: 213 60% 14%;
    --primary: 213 60% 14%;
    --primary-foreground: 0 0% 100%;
    --secondary: 175 52% 38%;
    --secondary-foreground: 0 0% 100%;
    --muted: 200 18% 92%;
    --muted-foreground: 213 20% 45%;
    --accent: 175 35% 53%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 200 18% 88%;
    --input: 200 18% 88%;
    --ring: 175 52% 38%;
    --chart-1: 175 52% 38%;
    --chart-2: 175 35% 53%;
    --chart-3: 213 60% 14%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 1rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 213 60% 14%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 175 52% 38%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--card));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 3rem;
    }
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--secondary));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: hsl(var(--secondary));
    color: white;
    box-shadow: 0 4px 6px -1px hsl(var(--secondary) / 0.3);
}

.btn-primary:hover {
    background: hsl(175 52% 33%);
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.4);
}

.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent) / 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--secondary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.highlight {
    position: relative;
    color: hsl(var(--secondary));
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: hsl(var(--accent) / 0.15);
    border-radius: 9999px;
    z-index: -1;
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.feature-tag svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--secondary));
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    margin-top: 0.125rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: hsl(var(--secondary));
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -0.5rem;
}

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

.rating {
    margin-left: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: hsl(var(--accent));
    color: hsl(var(--accent));
}

.rating-text {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

/* ==================== HERO FORM ==================== */
.hero-form-wrapper {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
}

.form-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.6);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.form-glow {
    position: absolute;
    inset: -1px;
    background: hsl(var(--accent) / 0.15);
    border-radius: 1rem;
    filter: blur(1rem);
    opacity: 0.6;
    z-index: -1;
}

.form-header-accent {
    height: 0.375rem;
    background: hsl(var(--secondary));
}

.form-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .form-content {
        padding: 1.5rem 2rem;
    }
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 1.125rem;
    }
}

.form-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
}

.form-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.form-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--secondary));
}

.form-tabs {
    display: flex;
    gap: 0.25rem;
    background: hsl(var(--muted));
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 1.25rem;
}

.tab-btn {
    flex: 1;
    position: relative;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s;
    border-radius: 0.5rem;
}

.tab-btn.active {
    color: hsl(var(--secondary));
}

.tab-indicator {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    opacity: 0;
}

.tab-btn.active .tab-indicator {
    opacity: 1;
}

.tab-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tab-btn:not(.active) .tab-indicator {
    border: 2px solid hsl(var(--muted-foreground) / 0.4);
    background: transparent;
    box-shadow: none;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 1px hsl(var(--ring));
}

.phone-input {
    display: flex;
    gap: 0.25rem;
}

.country-select {
    width: 6rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    font-size: 0.75rem;
    cursor: pointer;
}

.datetime-row {
    display: flex;
    gap: 0.5rem;
}

.time-select {
    width: 6rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    font-size: 0.75rem;
    cursor: pointer;
}

.form-textarea {
    min-height: 100px;
    resize: none;
}

.attach-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.attach-btn:hover {
    color: hsl(var(--secondary));
}

.attach-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: hsl(var(--secondary));
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: hsl(var(--secondary));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.3);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: hsl(175 52% 33%);
    box-shadow: 0 10px 25px -3px hsl(var(--secondary) / 0.5);
}

/* ==================== PAGE COUNTER ==================== */
.page-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: hsl(var(--muted));
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border) / 0.6);
}

.page-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

.page-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: hsl(var(--muted));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: hsl(var(--accent) / 0.1);
}

.page-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--foreground));
}

.page-count {
    font-size: 0.875rem;
    font-weight: 600;
    width: 1.5rem;
    text-align: center;
}

.page-words {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 1.75rem;
    background: hsl(var(--card) / 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 1rem;
    transition: all 0.5s;
}

.feature-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--card) / 0.7);
    transform: translateY(-0.25rem);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), transparent);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.1);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* ==================== DECORATIVE BLOBS ==================== */
.decorative-blobs {
    position: relative;
    height: 1px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

.blob-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: 6rem 0;
    background: hsl(var(--primary));
    position: relative;
    overflow: hidden;
}

.blob-how-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
}

.blob-how-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.05);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge svg {
    width: 0.875rem;
    height: 0.875rem;
}

.text-white {
    color: white;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.6);
}

.highlight-white {
    color: hsl(var(--secondary));
    font-weight: 700;
}

.how-it-works-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .how-step:not(:last-child) .step-connector {
        display: block;
        position: absolute;
        top: 3rem;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, hsl(var(--accent) / 0.3), hsl(var(--secondary) / 0.3));
    }
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.step-icon svg {
    width: 2.25rem;
    height: 2.25rem;
    color: white;
}

.step-icon-1 {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--secondary)));
}

.step-icon-2 {
    background: linear-gradient(135deg, hsl(262 83% 58%), hsl(273 70% 50%));
}

.step-icon-3 {
    background: linear-gradient(135deg, hsl(156 100% 36%), hsl(142 76% 36%));
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 20rem;
    margin: 0 auto;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 6rem 0;
    background: hsl(var(--muted-foreground));
    position: relative;
    overflow: hidden;
}

.reviews-section .section-title {
    color: white;
}

.reviews-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    min-height: 280px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    transition: all 0.3s;
}

.review-prev,
.review-next {
    opacity: 0.4;
    transform: translateY(10px) scale(0.85);
    display: none;
}

@media (min-width: 768px) {
    .review-prev,
    .review-next {
        display: block;
    }
}

.review-active {
    opacity: 1;
    transform: none;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 1rem;
    height: 1rem;
    fill: hsl(var(--accent));
    color: hsl(var(--accent));
}

.review-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(var(--accent) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.author-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 2rem;
    background: hsl(var(--secondary));
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-progress {
    max-width: 20rem;
    margin: 1.5rem auto 0;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: hsl(var(--secondary));
    border-radius: 9999px;
    transition: width 0.3s;
}

/* ==================== COVERAGE SECTION ==================== */
.coverage-section {
    padding: 6rem 0;
    background: hsl(var(--primary));
    position: relative;
    overflow: hidden;
}

.coverage-dot-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0px);
    background-size: 32px 32px;
}

.text-secondary {
    color: hsl(var(--secondary));
}

.coverage-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.coverage-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.coverage-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.coverage-tab.active {
    background: hsl(var(--secondary));
    color: white;
    border-color: hsl(var(--secondary));
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.2);
}

.coverage-tab svg {
    width: 1rem;
    height: 1rem;
}

.coverage-content {
    position: relative;
    z-index: 1;
}

.coverage-panel {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

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

.coverage-panel-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: hsl(var(--secondary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.coverage-panel-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--secondary));
}

.coverage-panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coverage-panel-text {
    line-height: 1.625;
    margin-bottom: 2rem;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.coverage-tag-item {
    background: hsl(var(--secondary) / 0.1);
    border: 1px solid hsl(var(--secondary) / 0.2);
    color: hsl(var(--secondary));
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 6rem 0;
}

.accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: white;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item[data-state="open"] {
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 1rem;
    }
}

.accordion-header:hover {
    color: hsl(var(--secondary));
}

.accordion-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--muted-foreground));
    transition: transform 0.2s;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem 1.25rem;
}

.accordion-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* ==================== QUOTE SECTION ==================== */
.quote-section {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.quote-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.quote-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

@media (min-width: 640px) {
    .quote-title {
        font-size: 2.25rem;
    }
}

.text-accent {
    color: hsl(var(--secondary));
}

.quote-description {
    color: hsl(var(--primary) / 0.6);
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--secondary));
    border-radius: 50%;
}

.benefit span {
    color: hsl(var(--primary) / 0.7);
    font-size: 0.875rem;
}

.quote-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .quote-form-wrapper {
        padding: 2rem;
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: hsl(var(--primary));
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.3);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: hsl(var(--secondary));
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--secondary));
}

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

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: hsl(var(--secondary));
}

/* ==================== MOBILE MENU ==================== */
@media (max-width: 767px) {
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border-bottom: 1px solid hsl(var(--border));
        gap: 1rem;
    }
}