/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    max-width: 100%;
}

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

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

.paw-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e40af;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn-primary {
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

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

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background: linear-gradient(135deg, #e0f2f7 0%, #f0f9ff 100%);
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="white" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .social-proof {
        display: none;
    }
}

.stars {
    color: #ff8c00;
    font-size: 14px;
}

.social-proof span {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

.review-avatars {
    display: flex;
    gap: -4px;
    align-items: center;
}

.avatar {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
    border: 2px solid #fff;
    margin-left: -4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.1;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-pet {
    font-size: 40px;
}

.testimonial-pet img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

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

.testimonial-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.verified {
    color: #10b981;
    font-size: 12px;
}

@media (max-width: 768px) {
    .testimonial {
        margin-top: 30px;
        gap: 12px;
    }
    
    .testimonial-pet img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-content p {
        font-size: 13px;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pets-image {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pets {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* As Seen On Section */
.as-seen-on {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 20px 0 100px;
    margin-top: 60px;
    position: relative;
}

.as-seen-on::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="white" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>') no-repeat center bottom;
    background-size: cover;
    transform: translateY(100%);
}

.as-seen-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.media-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

.and-more {
    color: #9ca3af;
    font-size: 14px;
}

.media-logos-row2 {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Cost Comparison Section */
.cost-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.logo-sub {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 40px 1fr 120px 120px;
    background: #f8fafc;
    padding: 20px;
    font-weight: 600;
    gap: 15px;
}

.header-without {
    color: #dc2626;
}

.header-with {
    color: #10b981;
}

.table-row {
    display: grid;
    grid-template-columns: 40px 1fr 120px 120px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
    gap: 15px;
}

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

.checkmark {
    color: #10b981;
    font-size: 18px;
    font-weight: bold;
}

.category {
    color: #374151;
    font-weight: 500;
}

.cost-without {
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
}

.cost-with {
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.comparison-pets {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.comparison-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparison-right p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.preventative-packages h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.package-item {
    color: #374151;
    font-size: 14px;
}

.reviews {
    text-align: center;
    margin-top: 30px;
}

.reviews .stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
}

.reviews p {
    color: #6b7280;
    font-size: 14px;
}

/* Coverage Types Section */
.coverage-types {
    padding: 80px 0;
    background: #f0f9ff;
}

.coverage-types h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.coverage-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coverage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.coverage-card p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.covered-items {
    margin-bottom: 30px;
}

.covered-item {
    color: #374151;
    margin-bottom: 10px;
    font-size: 14px;
}

.example-visit {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.visit-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.visit-details {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e5e7eb;
}

.visit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pet-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.visit-costs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cost-item i {
    color: #6b7280;
    width: 16px;
}

.cost-item strong {
    margin-left: auto;
}

.covered-amount {
    color: #10b981 !important;
}

/* Wellness Plans Section */
.wellness-plans {
    padding: 80px 0;
    background: white;
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.wellness-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wellness-left p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wellness-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.wellness-item {
    color: #374151;
    font-size: 14px;
}

.cat-peek {
    font-size: 40px;
    margin-top: 20px;
}

.wellness-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vet-visit {
    position: relative;
    width: 300px;
}

.visit-image {
    font-size: 80px;
    margin-bottom: 20px;
}

.visit-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

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

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.how-it-works p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1e40af;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.form-interface {
    width: 100%;
    height: auto;
    display: block;
}

.card-header {
    margin-bottom: 20px;
}

.logo-text {
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-card p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.pet-type-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pet-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pet-btn.active {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

.provider-logo {
    background: #dc2626;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
}

.success-badge {
    text-align: center;
    font-size: 30px;
    margin-bottom: 15px;
}

.success-amount {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
}

.progress-lines {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 20px 0;
}

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

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.step-info p {
    color: #6b7280;
    font-size: 14px;
}

/* AI Section */
.ai-section {
    display: none;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.ai-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-server {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,20 L180,20 L180,180 L20,180 Z" stroke="%233b82f6" stroke-width="2" fill="none" opacity="0.3"/><path d="M50,50 L150,50 L150,150 L50,150 Z" stroke="%233b82f6" stroke-width="1" fill="none" opacity="0.5"/></svg>') no-repeat center;
    background-size: contain;
}

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-text p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

/* Worth It Section */
.worth-it {
    padding: 80px 0;
    background: white;
}

.worth-it h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.worth-it p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cost-carousel {
    margin: 60px 0;
}

.cost-carousel h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 40px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.carousel-arrow {
    display: none;
}

.cost-comparison {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cost-box {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    min-width: 150px;
}

.cost-box.without {
    background: #fef2f2;
    border: 2px solid #dc2626;
}

.cost-box.with {
    background: #f0fdf4;
    border: 2px solid #10b981;
}

.cost-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.cost-box.without .cost-label {
    color: #dc2626;
}

.cost-box.with .cost-label {
    color: #10b981;
}

.cost-amount {
    font-size: 2rem;
    font-weight: 700;
}

.cost-box.without .cost-amount {
    color: #dc2626;
}

.cost-box.with .cost-amount {
    color: #10b981;
}

.dog-illustration {
    font-size: 60px;
    position: relative;
}

.dog-illustration::after {
    content: '●';
    position: absolute;
    top: 20px;
    right: 10px;
    color: #10b981;
    font-size: 20px;
}

.carousel-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
}

.dot.active {
    background: #1e40af;
}

.worth-it-cta {
    text-align: center;
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.customer-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.customer-reviews p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.review-card p {
    color: #374151;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.verified {
    color: #10b981;
    font-size: 12px;
    font-weight: 500;
}

.pet-icon {
    font-size: 20px;
    margin-left: auto;
}

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

/* Quote Section */
.quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

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

.quote-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.quote-cta .btn-primary {
    background: white;
    color: #1e40af;
    font-size: 18px;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
}

.quote-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1e293b;
    color: white;
}

.quote-form .btn-primary {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    background: white;
    color: #1e40af;
    font-size: 18px;
    padding: 16px 40px;
}

.quote-form .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        display: block;
        text-align: center;
        padding: 0 20px 40px;
        position: relative;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 25px;
        color: #1e40af;
        font-weight: 700;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-features {
        margin-bottom: 35px;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features .feature-item {
        justify-content: flex-start;
        margin-bottom: 15px;
        font-size: 16px;
    }
    
    .hero-buttons {
        margin-bottom: 35px;
    }
    
    .testimonial {
        justify-content: flex-start;
        text-align: left;
        margin-top: 35px;
        padding: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero {
        padding: 80px 0 0;
        min-height: auto;
    }
    
    .hero::before {
        height: 60px;
    }
    
    .cost-comparison {
        display: none;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .wellness-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cost-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .as-seen-on {
        padding: 40px 20px 80px;
    }
    
    .as-seen-on::after {
        height: 60px;
    }
    
    .media-logos {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .media-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .and-more {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .as-seen-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .quote-content h2 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .wellness-features {
        grid-template-columns: 1fr;
    }
}