/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: rgba(255, 255, 255, 1);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-size: clamp(14px, 1vw + 0.5rem, 16px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 40px);
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: #1e3a8a;
    color: white;
    padding: clamp(6px, 1vh, 8px) 0;
    font-size: clamp(12px, 0.8vw + 0.3rem, 14px);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-right {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
}

.phone, .support {
    font-weight: 500;
}

.phone i {
    margin-right: 8px;
    font-size: 14px;
}

/* Info Kit Section */
.info-kit-section {
    background: #1e3a8a;
    padding: clamp(15px, 3vh, 25px) 0;
    margin-top: 120px;
}

.info-kit-content {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

.info-kit-text {
    color: #87ceeb;
    font-size: clamp(14px, 1.2vw + 0.3rem, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.info-kit-form {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    flex-wrap: wrap;
}

.info-kit-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.info-kit-form input {
    width: clamp(140px, 15vw, 180px);
    min-width: 120px;
    padding: clamp(10px, 1.2vh, 12px) clamp(10px, 1vw, 12px);
    border: none;
    border-radius: 6px;
    font-size: clamp(10px, 0.8vw + 0.2rem, 14px);
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
    vertical-align: middle;
    line-height: 1.2;
    min-height: 44px;
}

.info-kit-form input::placeholder {
    color: #9ca3af;
}

.info-kit-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #87ceeb;
}

.info-kit-form input.error {
    border: 2px solid #ef4444;
}

.error-message {
    position: absolute;
    top: 100%;
    left: 0;
    color: #ffb327;
    font-size: 11px;
    margin-top: 2px;
    white-space: nowrap;
}

.btn-download {
    background: #2563eb;
    color: white;
    border: none;
    padding: clamp(10px, 1.2vh, 12px) clamp(15px, 2vw, 20px);
    border-radius: 6px;
    font-size: clamp(12px, 0.9vw + 0.2rem, 14px);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1.2;
    margin-top: 0px;
    margin-left: clamp(10px, 2vw, 20px);
    min-height: 44px;
    touch-action: manipulation;
}

.btn-download:hover {
    background: #1d4ed8;
}

.btn-download:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.main-nav {
    padding: clamp(10px, 1.5vh, 15px) 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    max-width: clamp(200px, 25vw, 300px);
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(15px, 2.5vw, 30px);
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: clamp(14px, 0.9vw + 0.2rem, 16px);
    padding: 8px 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.hamburger-menu:hover {
    color: #2563eb;
}

/* Phone Button */
.phone-button {
    display: none;
    text-decoration: none;
    color: #000;
    border: 2px solid #3b82f6;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-button i {
    color: #000;
    margin-right: 6px;
}

.phone-button:hover {
    background: #eff6ff;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.cta-button {
    background: #f97316;
    color: white;
    border: none;
    padding: clamp(10px, 1.2vh, 12px) clamp(18px, 2.5vw, 24px);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 0.9vw + 0.2rem, 16px);
    min-height: 44px;
    touch-action: manipulation;
}

.cta-button:hover {
    background: #ea580c;
}

/* Hero Section */
.hero {
    margin-top: 0;
    background: #e6f3ff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f97316;
    color: white;
    border: none;
    padding: clamp(10px, 1.2vh, 12px) clamp(18px, 2.5vw, 20px);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(13px, 0.9vw + 0.2rem, 14px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #333;
    padding: clamp(11px, 1.3vh, 13px) clamp(25px, 3vw, 30px);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(14px, 1vw + 0.2rem, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

/* Hero Illustration */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plans-hero .hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}

.illustration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: clamp(300px, 50vh, 600px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-illustration {
    width: 100%;
    max-width: 100vw;
    height: auto;
    max-height: none;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-cta-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0);
    padding: clamp(15px, 3vw, 40px);
    max-width: 800px;
    width: 90%;
}

.hero-cta-title {
    font-size: clamp(24px, 3.5vw + 0.5rem, 48px);
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-cta-subtitle {
    font-size: clamp(14px, 2.5vw, 20px);
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-learn-more-btn {
    background: #1e3a8a;
    color: white;
    padding: clamp(12px, 2vh, 15px) clamp(30px, 4vw, 40px);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-learn-more-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for hero - Match desktop layout */
@media (max-width: 1265px) {
    .hero-container {
        min-height: 350px;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 20px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    
    .hero-illustration {
        object-fit: contain;
        max-height: 350px;
        width: 100%;
        display: block;
        visibility: visible;
        opacity: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .hero-cta-content {
        position: relative;
        top: auto;
        bottom: 0;
        left: auto;
        transform: none;
        max-width: 90%;
        width: 90%;
        margin-bottom: 25%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        z-index: 10;
    }
    
    .hero-cta-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .hero-cta-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-learn-more-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* Adjust navbar for tablets (765px - 904px) */
@media (min-width: 765px) and (max-width: 904px) {
    .logo {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .main-nav {
        padding: 10px 0 !important;
    }
    
    .hamburger-menu {
        display: block !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
        order: 4;
        flex: 0 0 auto;
    }
    
    .nav-links {
        display: none !important;
    }
}

/* When info kit is hidden on mobile, add top margin for navbar */
@media (max-width: 904px) {
    .hero-container {
        margin-top: 140px !important;
    }
}

/* Odds Infographic Section */
.odds-section {
    padding: 80px 0;
    background: white;
}

.odds-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
}

.odds-subtitle {
    font-size: 20px;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
}

.odds-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
}

.odds-bubble {
    background: #e0f2fe;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-align: center;
    min-height: 250px;
    margin-left: -20px;
    position: relative;
    z-index: 1;
}

.odds-bubble:first-child {
    margin-left: 0;
}

.odds-bubble:nth-child(2) {
    margin-top: -30px;
    z-index: 2;
}

.odds-bubble:nth-child(3) {
    margin-top: -60px;
    z-index: 3;
}

.odds-bubble:nth-child(4) {
    margin-top: -30px;
    z-index: 2;
}

.odds-bubble:nth-child(5) {
    z-index: 1;
}

.odds-bubble.odds-dark {
    background: #bae6fd;
}

.odds-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.odds-text {
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .odds-grid {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .odds-bubble {
        margin-left: -15px;
    }
    
    .odds-bubble:first-child {
        margin-left: 0;
    }
}

@media (max-width: 904px) {
    .odds-section h2 {
        font-size: 32px;
    }
    
    .odds-subtitle {
        font-size: 18px;
    }
    
    .odds-grid {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .odds-bubble {
        min-height: 200px;
        margin-left: 0;
        margin-top: 0;
    }
    
    .odds-bubble:nth-child(2),
    .odds-bubble:nth-child(3),
    .odds-bubble:nth-child(4) {
        margin-top: 0;
    }
    
    .odds-number {
        font-size: 36px;
    }
    
    .odds-text {
        font-size: 11px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: clamp(40px, 5vh, 80px) 0;
    text-align: center;
    background: #75bfff;
}

.how-it-works h2 {
    font-size: clamp(28px, 3vw + 1rem, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(30px, 4vh, 50px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 3vw, 40px);
    max-width: 100%;
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(15px, 2vh, 20px);
    color: #5a9fd4;
    font-size: clamp(24px, 3vw, 32px);
}

.step-icon-img {
    width: clamp(35px, 5vw, 50px);
    height: clamp(35px, 5vw, 50px);
    object-fit: contain;
}

.step h3 {
    font-size: clamp(16px, 1.5vw + 0.5rem, 20px);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    width: 100%;
    margin: 0;
}

/* Protection Plans Section */
.protection-plans {
    padding: clamp(40px, 5vh, 80px) 0;
    background: transparent;
}

.protection-plans h2 {
    font-size: clamp(28px, 3vw + 1rem, 42px);
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: clamp(30px, 4vh, 50px);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(15px, 2vw, 25px);
    margin-top: clamp(30px, 4vh, 40px);
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
    padding: clamp(15px, 2vh, 20px) 0;
}

/* Carousel Styles */
.plans-carousel {
    position: relative;
    min-height: 650px;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.plans-carousel:active {
    cursor: grabbing;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    height: 650px;
    perspective: 1000px;
}

.plans-carousel .plan-card {
    position: absolute;
    width: 450px;
    height: 580px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    cursor: pointer;
}

/* Fisheye/Cover Flow Effect */
.plans-carousel .plan-card:nth-child(1) {
    transform: translateX(-500px) scale(0.6) rotateY(45deg);
    opacity: 0.3;
    z-index: 1;
}

.plans-carousel .plan-card:nth-child(2) {
    transform: translateX(-250px) scale(0.75) rotateY(25deg);
    opacity: 0.5;
    z-index: 2;
}

.plans-carousel .plan-card:nth-child(3) {
    transform: translateX(-100px) scale(0.85) rotateY(10deg);
    opacity: 0.7;
    z-index: 3;
}

.plans-carousel .plan-card:nth-child(4) {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 5;
}

.plans-carousel .plan-card:nth-child(5) {
    transform: translateX(100px) scale(0.85) rotateY(-10deg);
    opacity: 0.7;
    z-index: 3;
}

.plans-carousel .plan-card:nth-child(6) {
    transform: translateX(250px) scale(0.75) rotateY(-25deg);
    opacity: 0.5;
    z-index: 2;
}

.plans-carousel .plan-card:nth-child(7) {
    transform: translateX(500px) scale(0.6) rotateY(-45deg);
    opacity: 0.3;
    z-index: 1;
}

/* Active slide styling */
.plans-carousel .plan-card.active-slide {
    transform: translateX(0) scale(1) rotateY(0deg) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.carousel-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.carousel-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.dot.active {
    background: #007bff;
    width: 14px;
    height: 14px;
}

.plan-card {
    background: white;
    padding: clamp(15px, 2vw, 20px) clamp(12px, 1.5vw, 15px);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: clamp(280px, 35vw, 320px);
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-width: clamp(180px, 20vw, 200px);
    width: 100%;
}

.plan-card .plan-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-icon {
    width: clamp(80px, 10vw, 100px);
    height: clamp(80px, 10vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(12px, 1.5vh, 15px);
    color: white;
    font-size: clamp(20px, 2.5vw, 24px);
}

.plan-icon-img {
    width: clamp(100px, 12vw, 120px);
    height: clamp(100px, 12vw, 120px);
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}


.plan-card h3 {
    font-size: clamp(16px, 1.5vw + 0.3rem, 18px);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: clamp(8px, 1vh, 10px);
    line-height: 1.2;
    min-height: clamp(40px, 5vh, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: clamp(20px, 3vh, 30px);
}

.plan-features li {
    padding: clamp(6px, 0.8vh, 8px) 0;
    color: #64748b;
    font-size: clamp(13px, 0.9vw + 0.2rem, 15px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features .fa-check {
    color: #10b981;
    font-size: 14px;
}

/* Why Everything Breaks Section */
.why-everything-breaks {
    padding: 20px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.why-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #475569;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.feature .fa-check {
    color: #10b981;
}

.feature .fa-lightbulb {
    color: #fbbf24;
}

.testimonial {
    font-style: italic;
    font-size: 18px;
    color: #475569;
    border-left: 4px solid #2563eb;
    padding-left: 20px;
    margin-top: 20px;
}

/* Trustpilot Section */
.trustpilot-section {
    margin-top: 30px;
    padding: 25px;
    background: #00b67a;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.trustpilot-logo {
    margin-bottom: 15px;
}

.trustpilot-img {
    height: 24px;
    filter: brightness(0) invert(1);
}

.trustpilot-rating {
    margin-bottom: 20px;
}

.stars {
    margin-bottom: 8px;
}

.stars i {
    color: #ffd700;
    margin: 0 2px;
    font-size: 18px;
}

.rating-text {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-count {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.trustpilot-review {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.trustpilot-review p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.review-author {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.9;
}

/* Quote Section */
.quote-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.quote-section {
    background: #ffffff;
    padding: clamp(25px, 4vh, 40px);
    border-radius: 12px;
    scroll-margin-top: 140px;
}

.quote-form {
    background: #e6f3ff;
    padding: clamp(25px, 4vh, 40px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.quote-form .form-group {
    margin-bottom: clamp(15px, 2.5vh, 20px);
}

.quote-form .form-group label {
    display: block;
    margin-bottom: clamp(8px, 1.2vh, 12px);
    font-weight: 500;
    color: #374151;
    font-size: clamp(14px, 1vw + 0.2rem, 16px);
}

.quote-form .form-group input,
.quote-form .form-group select {
    width: 100%;
    padding: clamp(10px, 1.2vh, 12px) clamp(14px, 1.5vw, 16px);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: clamp(14px, 1vw + 0.2rem, 16px);
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

/* Need Help Section */
.need-help {
    padding: 20px 0;
    background: transparent;
    text-align: center;
}

.need-help h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: clamp(40px, 6vh, 60px) 0 clamp(15px, 2vh, 20px) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 4vh, 40px);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 3vw, 40px);
    padding-bottom: clamp(30px, 4vh, 40px);
    border-bottom: 1px solid #34495e;
}

.footer-column h4 {
    color: #3498db;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: #3498db;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #34495e;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease;
}

.app-button:hover {
    background: #3498db;
}

.app-button i {
    font-size: 20px;
}

.app-button span {
    font-size: 12px;
    line-height: 1.2;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #34495e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #3498db;
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-badge {
    height: 40px;
    width: auto;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    margin-top: 20px;
}

.footer-copyright p {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

/* Single Card Grid Layout */
.plans-grid.single-card {
    display: flex;
    justify-content: center;
}

.plans-grid.single-card .plan-card {
    max-width: 350px;
    width: 100%;
}

/* Major Systems Coverage Section */
.major-systems-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.major-systems-section h3 {
    text-align: center;
    color: #1e293b;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.major-systems-section p {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.system-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.system-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.system-item h4 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-coverage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.plan-indicator {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.plan-indicator.ruby {
    background: #dc2626;
}

.plan-indicator.sapphire {
    background: #2563eb;
}

.plan-indicator.emerald {
    background: #059669;
}

.plan-indicator.diamond {
    background: #7c3aed;
}

.coverage-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.ruby {
    background: #dc2626;
}

.legend-color.sapphire {
    background: #2563eb;
}

.legend-color.emerald {
    background: #059669;
}

.legend-color.diamond {
    background: #7c3aed;
}

/* Coverage Comparison Table */
.coverage-comparison {
    margin-top: clamp(25px, 3vh, 35px);
    padding: clamp(20px, 3vh, 30px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coverage-comparison h3 {
    text-align: center;
    color: #1e293b;
    font-size: clamp(20px, 2vw + 0.5rem, 24px);
    margin-bottom: clamp(20px, 2.5vh, 25px);
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coverage-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    table-layout: auto;
}

.coverage-table th {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
    white-space: normal;
    word-break: normal;
    line-height: 1.4;
    min-width: 100px;
}

.coverage-table .component-col {
    background: #374151;
    color: white;
    text-align: left;
    min-width: 140px;
    white-space: normal;
}

.coverage-table .plan-col {
    min-width: 110px;
}

.coverage-table .plan-col.topline {
    background: #1e3a8a;
}

.coverage-table .plan-col.deluxe {
    background: #1e3a8a;
}

.coverage-table .plan-col.enhanced {
    background: #1e3a8a;
}

.coverage-table .plan-col.standard {
    background: #1e3a8a;
}

.coverage-table .plan-col.critical {
    background: #1e3a8a;
    color: white;
}

.coverage-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    vertical-align: middle;
    white-space: normal;
    word-break: normal;
}

.coverage-table .component-name {
    text-align: left;
    font-weight: 500;
    background: #f8fafc;
    color: #374151;
    padding-left: 20px;
}

.coverage-table .covered {
    background: #dcfce7;
}

.coverage-table .not-covered {
    background: #fef2f2;
}

.checkmark {
    color: #059669;
    font-weight: bold;
    font-size: 18px;
}

.coverage-table tr:hover {
    background: #f0f9ff;
}

.coverage-table tr:hover .component-name {
    background: #e0f2fe;
}

/* Download Row */
.download-row {
    background: #f8fafc;
}

.download-cell {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    background: #f8fafc;
}

.download-row .component-name {
    background: #f8fafc;
}

/* Major Makes & Models logos section */
.makes-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    align-items: center;
    justify-items: center;
    padding: 20px 0 10px 0;
}

.make-logo {
    max-width: 120px;
    width: 100%;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
}

.make-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.makes-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

@media (max-width: 904px) {
    .make-logo {
        max-width: 90px;
        height: 40px;
    }
}

/* Policy Download Buttons */
.download-cell a {
    text-decoration: none;
    display: inline-block;
}

.btn-download-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    background: white;
    color: #10b981;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-download-mini i {
    font-size: 12px;
}

.btn-download-mini span {
    display: inline;
}

.btn-download-mini:hover {
    background: #10b981;
    color: white;
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .btn-download-mini {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .btn-download-mini i {
        font-size: 13px;
    }
}

/* Appliances List */
.appliances-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Optional Coverage specific styling */
.major-systems-section .appliances-list:last-of-type {
    grid-template-columns: repeat(3, 1fr);
}

.appliance-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.appliance-name {
    font-weight: 500;
}

/* Vehicle Form Styles */
.vehicle-form-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-form-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.vehicle-form-info p {
    margin: 5px 0;
    color: #374151;
    font-size: 14px;
}

.vehicle-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-vehicle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-field select,
.form-field input[type="text"] {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-field select:focus,
.form-field input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
}

.vin-field {
    max-width: 400px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    line-height: 1.4;
}

.form-submit {
    display: flex;
    justify-content: center;
}

.btn-buy-now {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-now:hover {
    background: #059669;
}

@media (max-width: 904px) {
    .form-row-vehicle {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vin-field {
        max-width: 100%;
    }
}

/* Repair Costs Section */
.repair-costs-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.repair-costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.repair-cost-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.repair-cost-item {
    background: #1e3a8a;
    padding: 14px 20px;
    border-radius: 0;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.repair-cost-item:nth-child(odd) {
    background: #1e3a8a;
}

.repair-cost-item:nth-child(even) {
    background: #2563eb;
}

.repair-costs-section p {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 20px;
}

@media (max-width: 904px) {
    .repair-costs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .repair-cost-section {
        padding: 25px;
    }
}

/* Responsive Design */
@media (max-width: 904px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 100px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .info-kit-section {
        padding: 12px 0;
    }
    
    .info-kit-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .info-kit-text {
        font-size: 16px;
    }
    
    .info-kit-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .info-kit-form input {
        width: 100%;
        max-width: 280px;
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-download {
        width: 100%;
        max-width: 280px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        margin-top: 240px;
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .illustration {
        width: 300px;
        height: 225px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile - Very Small Screens */
@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .coverage-comparison {
        padding: 20px;
        margin-top: 30px;
    }
    
    .coverage-comparison h3 {
        font-size: 20px;
    }
    
    .coverage-table th,
    .coverage-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .coverage-table .component-name {
        padding-left: 12px;
    }
    
    .major-systems-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .major-systems-section h3 {
        font-size: 20px;
    }
    
    .systems-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .system-item {
        padding: 15px;
    }
    
    .system-icon {
        width: 40px;
        height: 40px;
    }
    
    .system-item h4 {
        font-size: 14px;
    }
    
    .coverage-legend {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .how-it-works h2,
    .protection-plans h2,
    .why-section h2,
    .quote-section h2,
    .need-help h2 {
        font-size: 28px;
    }
    
    .illustration {
        width: 250px;
        height: 188px;
    }
}

/* Page-specific Styles */

/* Hero Sections for Different Pages */
.plans-hero,
.claims-hero,
.about-hero,
.contact-hero,
.signin-hero {
    margin-top: 0;
    padding: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    text-align: center;
}

.plans-hero {
    position: relative;
    min-height: clamp(250px, 40vh, 400px);
    padding: 0;
    margin-bottom: 0;
}

.plans-hero > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.plans-hero .container {
    position: relative;
    z-index: 1;
}

.plans-hero-content {
    text-align: center;
}

.about-hero,
.claims-hero,
.contact-hero,
.signin-hero {
    padding: clamp(50px, 8vh, 80px) 0 !important;
}

.plans-hero h1,
.claims-hero h1,
.about-hero h1,
.contact-hero h1,
.signin-hero h1 {
    font-size: clamp(32px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: clamp(15px, 2vh, 20px);
}

.plans-hero p,
.claims-hero p,
.about-hero p,
.contact-hero p,
.signin-hero p {
    font-size: clamp(16px, 1.5vw + 0.3rem, 20px);
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Plans Section Styling */
.plans-section {
    padding: clamp(15px, 2vh, 20px) 0 clamp(30px, 4vh, 40px) 0;
    background: #e6f3ff;
    margin: 0 0px;
    margin-top: 0;
}

.plans-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 40px);
}

.plans-section:nth-child(even) {
    background: rgba(255, 255, 255, 1);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(25px, 3vh, 35px);
}

.section-header h2 {
    font-size: clamp(28px, 3vw + 0.5rem, 36px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: clamp(10px, 1.5vh, 15px);
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Plans Page Styles */
.plans-grid-section {
    padding: 40px 0;
    background: #f8fafc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card.detailed {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    height: 100%;
}

.plan-card.detailed:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 3px solid #f97316;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 0;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #f97316;
    margin-top: 5px;
    margin-bottom: 0;
}

.plan-features h4,
.plan-benefits h4 {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.plan-features ul,
.plan-benefits ul {
    list-style: none;
    margin-bottom: 8px;
}

.plan-card.detailed .btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 8px 15px;
    font-size: 13px;
    flex-shrink: 0;
}

.plan-features li,
.plan-benefits li {
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    line-height: 1.2;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    margin-top: 40px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #2563eb;
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

/* Claims Page Styles */
.claim-options {
    padding: 80px 0;
}

.claim-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.claim-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.claim-card:hover {
    transform: translateY(-5px);
}

.claim-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.claims-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 3px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.claim-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.track-claims {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.track-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.track-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
}

.claims-faq {
    padding: 80px 0;
}

.faq-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.emergency-contact {
    padding: 80px 0;
    background: #dc2626;
    color: white;
    text-align: center;
}

.emergency-phone {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.mission-values {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.leadership-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #64748b;
}

.member-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.awards-recognition {
    padding: 80px 0;
    background: #f8fafc;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-icon-no-bg {
    background: transparent !important;
}

.btn-download-sample {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download-sample:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-download-sample i {
    font-size: 18px;
}

/* Sponsored Event Section */
.sponsored-event {
    padding: 80px 0;
    background: #f8fafc;
}

.event-header {
    text-align: center;
    margin-bottom: 50px;
}

.event-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-header p {
    font-size: 20px;
    color: #64748b;
}

.event-content {
    max-width: 1200px;
    margin: 0 auto;
}

.event-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.event-intro h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.event-intro p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.event-media {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.event-videos h4,
.event-images h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-item iframe,
.video-item video {
    width: 100%;
    height: 315px;
    border: none;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 315px;
    background: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border-radius: 12px;
}

.video-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-placeholder small {
    font-size: 12px;
    opacity: 0.7;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.image-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border-radius: 12px;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.image-placeholder small {
    font-size: 12px;
    opacity: 0.7;
}

.event-partners {
    margin-top: 40px;
}

.event-partners h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 30px;
}

.partner-logo {
    width: 200px;
    height: 200px;
    margin-left: -40px;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.partner-logo:first-child {
    margin-left: 0;
}

.partner-logo:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 10;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 904px) {
    .event-header h2 {
        font-size: 32px;
    }
    
    .event-intro {
        padding: 30px 20px;
    }
    
    .event-intro h3 {
        font-size: 22px;
    }
    
    .videos-grid,
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-item iframe,
    .video-placeholder {
        height: 250px;
    }
    
    .image-item img,
    .image-placeholder {
        height: 250px;
    }
    
    .partners-logos {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .partner-logo {
        width: 150px;
        height: 150px;
        margin-left: 0;
    }
}

.community-impact {
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.contact-cta {
    padding: 80px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

/* Contact Page Styles */
.contact-options {
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.contact-details {
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-form-wrapper h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 10px;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 200px;
}

.contact-submit {
    width: 100%;
    padding: 18px;
    background: #6b21a8;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit:hover {
    background: #5b1899;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

.office-locations {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location-details {
    margin-top: 20px;
}

.location-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-faq {
    padding: 80px 0;
    background: #f8fafc;
}

/* Auto FAQ Section */
.auto-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 15px;
}

.faq-subtitle {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-terms {
    background: white;
    color: #2563eb;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-terms:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auto-faq .faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    overflow: hidden;
}

.auto-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-faq .faq-question:hover {
    background: #f8fafc;
}

.auto-faq .faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.auto-faq .faq-question i {
    font-size: 18px;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.auto-faq .faq-answer {
    padding: 0 25px 20px 25px;
}

.auto-faq .faq-answer p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 904px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
}

.social-media {
    padding: 80px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    color: #2563eb;
}

.social-link i {
    font-size: 32px;
}

/* Sign In Page Styles */
.signin-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.signin-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.signin-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.signin-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.signin-form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.signin-form-header p {
    color: #64748b;
    font-size: 14px;
}

.signin-form .form-group {
    margin-bottom: 20px;
}

.signin-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.signin-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.signin-form .form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.register-link,
.signin-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover,
.signin-link:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.forgot-password {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.signin-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-bottom: 20px;
}

.social-signin {
    margin-top: 30px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #64748b;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.facebook-btn:hover {
    border-color: #4267b2;
    color: #4267b2;
}

.signin-benefits {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1.2;
}

.video-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #374151;
}

.video-benefits li i {
    color: #3b82f6;
    font-size: 24px;
    margin-right: 15px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.as-seen-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-controls i {
    font-size: 32px;
    color: #3b82f6;
    margin-left: 5px;
}

.video-controls:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.9);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.video-brand {
    font-size: 18px;
}

.video-brand b {
    font-weight: 700;
}

.video-cta {
    font-size: 16px;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-text h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .video-benefits {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 904px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-text h2 {
        font-size: 28px;
    }
    
    .video-thumbnail {
        height: 300px;
    }
    
    .video-controls {
        width: 60px;
        height: 60px;
    }
    
    .video-controls i {
        font-size: 24px;
    }
}

.registration-form-section,
.forgot-password-section {
    padding: 80px 0;
    background: #f8fafc;
}

.registration-container,
.forgot-password-container {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form-wrapper,
.forgot-password-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.registration-form-header,
.forgot-password-header {
    text-align: center;
    margin-bottom: 30px;
}

.back-to-signin {
    text-align: center;
    margin-top: 20px;
}

.back-to-signin a {
    color: #2563eb;
    text-decoration: none;
}

.back-to-signin a:hover {
    text-decoration: underline;
}

.security-notice {
    padding: 40px 0;
    background: #f0f9ff;
    text-align: center;
}

.security-content {
    max-width: 600px;
    margin: 0 auto;
}

.security-content h3 {
    color: #2563eb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Home Repairs Section */
.home-repairs-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 60px 0;
    text-align: center;
}

.home-repairs-section h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.home-repairs-section .subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.home-repairs-section .repair-costs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.home-repairs-section .repair-cost-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
}

.home-repairs-section .repair-cost-item h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
}

.home-repairs-section .repair-cost {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.total-cost-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.total-cost-section p {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.total-cost-section strong {
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .home-repairs-section .repair-costs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 904px) {
    .home-repairs-section .repair-costs-grid {
        grid-template-columns: 1fr;
    }
    
    .home-repairs-section h2 {
        font-size: 28px;
    }
    
    .home-repairs-section .subtitle {
        font-size: 16px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 14px;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: #94a3b8;
}

/* Rating Platforms */
.rating-platforms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e2e8f0;
}

.platform-item {
    text-align: center;
    padding: 20px;
}

.platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.platform-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.platform-logo.trustpilot {
    background: transparent;
}

.platform-logo.reseller {
    background: transparent;
}

.platform-logo.facebook {
    background: transparent;
}

.platform-logo.review {
    background: transparent;
}

.platform-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.platform-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 18px;
}

.platform-stars.trustpilot {
    color: #00b67a;
}

.platform-stars.reseller {
    color: #9333ea;
}

.platform-stars.facebook {
    color: #1877f2;
}

.platform-stars.review {
    color: #fbbf24;
}

.platform-rating {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.platform-rating span {
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .rating-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 904px) {
    .testimonials-section h2 {
        font-size: 28px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .rating-platforms {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .platform-item h3 {
        font-size: 16px;
    }
}

/* Responsive Design for New Pages */
@media (max-width: 904px) {
    .plans-hero h1,
    .claims-hero h1,
    .about-hero h1,
    .contact-hero h1,
    .signin-hero h1 {
        font-size: 32px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .claim-cards,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid,
    .team-grid,
    .awards-grid,
    .impact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .signin-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.disclaimer-modal.active {
    display: flex;
}

.disclaimer-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.disclaimer-modal-content h3 {
    color: #1e40af;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-text {
    margin-bottom: 25px;
    line-height: 1.6;
}

.disclaimer-text p {
    font-size: 14px;
    color: #475569;
}

.disclaimer-checkbox {
    margin-bottom: 25px;
}

.disclaimer-checkbox label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
    gap: 10px;
}

.disclaimer-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1e40af;
}

.disclaimer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-disclaimer-accept,
.btn-disclaimer-cancel {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-disclaimer-accept {
    background: #1e40af;
    color: white;
}

.btn-disclaimer-accept:enabled:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-disclaimer-accept:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
}

.btn-disclaimer-cancel {
    background: white;
    color: #64748b;
    border: 2px solid #cbd5e1;
}

.btn-disclaimer-cancel:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

@media (max-width: 904px) {
    .disclaimer-modal-content {
        padding: 30px 20px;
    }
    
    .disclaimer-modal-content h3 {
        font-size: 20px;
    }
    
    .disclaimer-text p {
        font-size: 13px;
    }
    
    .disclaimer-buttons {
        flex-direction: column;
    }
    
    .btn-disclaimer-accept,
    .btn-disclaimer-cancel {
        width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 904px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .contact-form-wrapper {
        padding: 40px 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .contact-submit {
        padding: 16px;
        font-size: 16px;
    }
}

/* Choose Plan Modal */
.choose-plan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

.choose-plan-modal.active {
    display: flex;
}

.choose-plan-modal-content {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.choose-plan-modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.choose-plan-modal-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.choose-plan-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.choose-plan-close:hover {
    color: #1e293b;
}

.choose-plan-modal-content .btn-call-modal {
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

.choose-plan-modal-content .btn-close-modal {
    width: 100%;
    background: white;
    color: #64748b;
    border: 2px solid #cbd5e1;
}

.choose-plan-modal-content .btn-close-modal:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #475569;
}

@media (max-width: 904px) {
    .choose-plan-modal-content {
        padding: 40px 30px;
    }
    
    .choose-plan-modal-content h2 {
        font-size: 24px;
    }
    
    .choose-plan-modal-content p {
        font-size: 15px;
    }
    
    .choose-plan-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
    }
}

/* ===========================
   COMPREHENSIVE MOBILE STYLES
   =========================== */

/* Tablet and Below (1024px) */
@media (max-width: 1024px) {
    /* Navigation */
    nav .nav-links {
        gap: 20px;
    }
    
    nav .nav-links a {
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero-content {
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 904px) {
    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Typography */
    h1 {
        font-size: 32px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    h3 {
        font-size: 22px !important;
    }
    
    /* Top Bar */
    .top-bar {
        display: none;
    }
    
    /* Navigation */
    .main-nav {
        padding: 0;
    }
    
    .nav-content {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        min-height: auto;
        padding: 0;
    }
    
    .hamburger-menu {
        display: none;
    }
    
    .logo {
        order: 1;
        flex: 0 0 100%;
        margin: 0;
        margin-top: -20px;
        margin-bottom: 20px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .logo-img {
        height: 40px;
        max-width: 130px;
    }
    
    .phone-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 2;
        padding: 10px 8px;
        font-size: 11px;
        flex: 0 1 auto;
        margin-right: 0;
        width: calc(50% - 4px);
        height: 44px;
        min-height: 44px;
        box-sizing: border-box;
    }
    
    .phone-button i {
        font-size: 11px;
        margin-right: 3px;
    }
    
    .cta-button {
        order: 3;
        padding: 10px 8px;
        font-size: 11px;
        white-space: nowrap;
        flex: 0 1 auto;
        width: calc(50% - 4px);
        height: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 400px;
        background: white;
        flex-direction: column;
        padding: 15px 20px;
        gap: 0;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
    }
    
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .dropdown > a i {
        display: inline;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        max-width: 100%;
    }
    
    /* Plans Hero */
    .plans-hero {
        margin-top: 120px !important;
        min-height: clamp(250px, 40vh, 350px);
        padding: 0;
        overflow: hidden;
    }
    
    .plans-hero > img {
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: none;
    }
    
    /* Claims Hero, About Hero, Contact Hero, Signin Hero */
    .claims-hero,
    .about-hero,
    .contact-hero,
    .signin-hero {
        margin-top: 120px !important;
        padding-top: 60px !important;
    }
    
    .claims-hero-content,
    .about-hero-content,
    .contact-hero-content,
    .signin-hero-content {
        padding: 20px 15px;
    }
    
    /* Info Kit Section */
    .info-kit-section {
        display: none;
    }
    
    /* Quote Section */
    .quote-section {
        padding: 40px 0;
    }
    
    .quote-section h2 {
        text-align: center;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
    
    .quote-form button[type="submit"] {
        display: block;
        margin: 0 auto;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Plans Grid */
    .plans-section {
        padding: 0 0 40px 0;
        margin-top: 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        max-width: 100% !important;
    }
    
    .plan-card {
        max-width: 100%;
    }
    
    .plan-features ul,
    .plan-benefits ul {
        font-size: 14px;
    }
    
    .plan-features ul li,
    .plan-benefits ul li {
        padding: 8px 0;
        word-wrap: break-word;
    }
    
    /* Section Headers */
    .section-header {
        padding: 20px 10px;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons button,
    .cta-buttons a {
        width: 100%;
    }
    
    /* Coverage Cards */
    .coverage-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* About Section */
    .about-hero,
    .claims-hero,
    .contact-hero,
    .signin-hero {
        padding: 40px 0 !important;
    }
    
    .about-content,
    .values-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Claims Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Section */
    .contact-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        padding: 40px 0 20px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
    
    .footer-apps {
        margin-top: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Sponsored Event Section */
    .event-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-grid,
    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-logos-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-logo {
        position: relative !important;
        transform: none !important;
    }
    
    /* Sign In */
    .signin-container {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 22px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 14px;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .main-nav {
        padding: 8px 0;
    }
    
    .nav-content {
        gap: 0px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 220px;
    }
    
    .cta-button {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3 {
        font-size: 32px;
    }
    
    /* Odds Infographic */
    .odds-bubble {
        width: 140px;
        height: 140px;
        font-size: 13px;
        padding: 15px;
    }
    
    .odds-bubble-title {
        font-size: 28px;
    }
    
    /* Forms */
    .quote-form,
    .info-kit-form,
    .contact-form-container,
    .signin-container {
        padding: 25px 15px;
    }
    
    input,
    select,
    textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Cards */
    .feature-card,
    .plan-card,
    .coverage-card,
    .benefit-card {
        padding: 25px 15px;
    }
    
    /* Footer */
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-badge {
        max-width: 60px;
    }
}

/* Landscape Mobile */
@media (max-width: 904px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    nav .nav-links {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* Mission Section Styles */
.mission-section {
    background: #1e3a8a;
    padding: clamp(50px, 8vh, 80px) 0;
    text-align: center;
}

.mission-text {
    font-size: clamp(20px, 2.5vw + 0.5rem, 32px);
    line-height: 1.5;
    color: white;
    font-weight: 600;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    font-style: italic;
}

/* Responsive Mission Section */
@media (max-width: 904px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-text {
        font-size: 24px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }
    
    .mission-text {
        font-size: 20px;
    }
}

/* Privacy Policy Styles */
.privacy-policy-page {
    background: #f8f9fa;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-container-text {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-policy-text p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

.q-and-a {
    background: white;
    padding: 60px 20px;
}

.q-and-a-heading {
    text-align: center;
    margin-bottom: 40px;
}

.main__heading {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 20px;
}

.acc {
    max-width: 900px;
    margin: 0 auto;
}

.left__block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc__card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.acc__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.acc__title {
    font-size: 18px;
    color: #333;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    background: #f8f9fa;
    transition: background 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.acc__title:hover {
    background: #e9ecef;
}

.acc__title::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #667eea;
    transition: transform 0.3s ease;
}

.acc__card.active .acc__title::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.acc__panel {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.acc__card.active .acc__panel {
    padding: 20px 25px;
    max-height: 1000px;
}

.acc__panel ul {
    margin: 10px 0;
    padding-left: 25px;
}

.acc__panel ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.acc__panel a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acc__panel a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.privacy-hero {
    background: #1e3a8a;
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
}

.privacy-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-hero p {
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.privacy-hero .last-updated {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 20px;
}

.privacy-hero .last-updated i {
    margin-right: 8px;
}

.privacy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.privacy-section h3 {
    color: #444;
    font-size: 22px;
    margin: 25px 0 15px;
}

.privacy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-section ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.privacy-section strong {
    color: #333;
    font-weight: 600;
}

.contact-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 25px;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-box p {
    margin-bottom: 12px;
    color: #333;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #764ba2;
    text-decoration: underline;
}


.contact-box i {
    color: #667eea;
    margin-right: 8px;
    width: 20px;
}

/* Responsive Privacy Page */
@media (max-width: 904px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }
    
    .privacy-hero h1 {
        font-size: 32px;
    }
    
    .privacy-hero p {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-text {
        padding: 30px 20px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }
    
    .contact-box {
        padding: 20px 15px;
    }
    
    /* Mobile styles for accordion */
    .main-container {
        padding: 20px 15px;
    }
    
    .main__heading {
        font-size: 28px;
    }
    
    .q-and-a {
        padding: 40px 15px;
    }
    
    .acc__title {
        font-size: 16px;
        padding: 15px 20px;
        padding-right: 45px;
    }
    
    .acc__title::after {
        right: 20px;
        font-size: 20px;
    }
    
    .acc__panel {
        padding: 0 20px;
        font-size: 15px;
    }
    
    .acc__card.active .acc__panel {
        padding: 15px 20px;
    }
    
    .privacy-policy-text p {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* Quote Disclaimer Modal Styles */
.quote-disclaimer-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.quote-disclaimer-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-disclaimer-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-disclaimer-modal-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.quote-disclaimer-modal-content .disclaimer-text {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.quote-disclaimer-modal-content .disclaimer-text p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.quote-disclaimer-modal-content .disclaimer-checkbox {
    margin-bottom: 25px;
}

.quote-disclaimer-modal-content .disclaimer-checkbox label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.quote-disclaimer-modal-content .disclaimer-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.quote-disclaimer-modal-content .disclaimer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.quote-disclaimer-modal-content .btn-disclaimer-accept {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-disclaimer-modal-content .btn-disclaimer-accept:hover:not(:disabled) {
    background: #5568d3;
}

.quote-disclaimer-modal-content .btn-disclaimer-accept:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.quote-disclaimer-modal-content .btn-disclaimer-cancel {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-disclaimer-modal-content .btn-disclaimer-cancel:hover {
    background: #5a6268;
}

/* Mobile responsive for quote disclaimer modal */
@media (max-width: 904px) {
    .quote-disclaimer-modal-content {
        padding: 25px;
        max-width: 95%;
    }
    
    .quote-disclaimer-modal-content h3 {
        font-size: 20px;
    }
    
    .quote-disclaimer-modal-content .disclaimer-buttons {
        flex-direction: column;
    }
    
    .quote-disclaimer-modal-content .btn-disclaimer-accept,
    .quote-disclaimer-modal-content .btn-disclaimer-cancel {
        width: 100%;
    }
}

/* Quote Success Modal Styles */
.quote-success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.quote-success-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-success-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.quote-success-modal-content .success-icon {
    margin-bottom: 20px;
}

.quote-success-modal-content .success-icon i {
    font-size: 64px;
    color: #28a745;
}

.quote-success-modal-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.quote-success-modal-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-success-modal-content .btn-success-ok {
    background: #667eea;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-success-modal-content .btn-success-ok:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile responsive for success modal */
@media (max-width: 904px) {
    .quote-success-modal-content {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .quote-success-modal-content .success-icon i {
        font-size: 48px;
    }
    
    .quote-success-modal-content h3 {
        font-size: 24px;
    }
    
    .quote-success-modal-content p {
        font-size: 16px;
    }
}

/* State Unavailable Modal Styles */
.state-unavailable-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.state-unavailable-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.state-unavailable-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.state-unavailable-modal-content .unavailable-icon {
    margin-bottom: 20px;
}

.state-unavailable-modal-content .unavailable-icon i {
    font-size: 64px;
    color: #dc3545;
}

.state-unavailable-modal-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.state-unavailable-modal-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.state-unavailable-modal-content .btn-unavailable-ok {
    background: #667eea;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-unavailable-modal-content .btn-unavailable-ok:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile responsive for state unavailable modal */
@media (max-width: 904px) {
    .state-unavailable-modal-content {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .state-unavailable-modal-content .unavailable-icon i {
        font-size: 48px;
    }
    
    .state-unavailable-modal-content h3 {
        font-size: 24px;
    }
    
    .state-unavailable-modal-content p {
        font-size: 16px;
    }
}

/* State Custom Quote Modal Styles */
.state-custom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.state-custom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.state-custom-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.state-custom-modal-content .custom-icon {
    margin-bottom: 20px;
}

.state-custom-modal-content .custom-icon i {
    font-size: 64px;
    color: #667eea;
}

.state-custom-modal-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.state-custom-modal-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.state-custom-modal-content .custom-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 24px;
}

.state-custom-modal-content .custom-contact i {
    color: #667eea;
    font-size: 24px;
}

.state-custom-modal-content .custom-contact a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.state-custom-modal-content .custom-contact a:hover {
    color: #667eea;
}

.state-custom-modal-content .btn-custom-ok {
    background: #667eea;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-custom-modal-content .btn-custom-ok:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile responsive for state custom modal */
@media (max-width: 904px) {
    .state-custom-modal-content {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .state-custom-modal-content .custom-icon i {
        font-size: 48px;
    }
    
    .state-custom-modal-content h3 {
        font-size: 24px;
    }
    
    .state-custom-modal-content p {
        font-size: 16px;
    }
    
    .state-custom-modal-content .custom-contact {
        font-size: 20px;
    }
    
    .state-custom-modal-content .custom-contact i {
        font-size: 20px;
    }
}

/* Appliances List Styles */
.appliances-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.appliance-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.appliance-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.appliance-name {
    font-size: 14px;
    color: #333;
}

/* Mobile responsive for appliances list */
@media (max-width: 904px) {
    .appliances-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .appliance-item {
        padding: 10px 12px;
        background: white;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    
    .appliance-item i {
        display: none;
    }
    
    .appliance-name {
        font-size: 12px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .appliances-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .appliance-item {
        padding: 8px 10px;
        background: white;
        border: 1px solid #e0e0e0;
    }
    
    .appliance-item i {
        display: none;
    }
    
    .appliance-name {
        font-size: 11px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Form Container Styles */
.form-container {
    text-align: center;
    padding: 40px 20px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Track Claims Section */
.track-content {
    text-align: center;
}

.track-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.track-content p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.track-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile responsive for track claims */
@media (max-width: 904px) {
    .track-content {
        padding: 20px 15px;
    }
    
    .track-content h2 {
        font-size: 24px;
    }
    
    .track-content p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .track-form button {
        width: auto;
        min-width: 200px;
    }
}

/* Plan Badge Image (ASOT) */
.plan-card {
    position: relative;
}

.plan-badge-img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: auto;
    z-index: 10;
}

/* Mobile responsive for plan badge */
@media (max-width: 904px) {
    .plan-badge-img {
        width: 60px;
        top: 8px;
        right: 8px;
    }
}

/* Best Value Card Styles */
.best-value-card {
    border: 3px solid #28a745 !important;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.3) !important;
    position: relative;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Mobile responsive for best value badge */
@media (max-width: 904px) {
    .best-value-card {
        border: 2px solid #28a745 !important;
    }
    
    .best-value-badge {
        font-size: 12px;
        padding: 6px 16px;
        top: -12px;
    }
}

/* Plan Card Button Centering */
.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card .btn-primary {
    margin: 0 auto;
    display: block;
}

/* Most Popular Card Styles */
.most-popular-card {
    border: 3px solid #ff6b35 !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3) !important;
    position: relative;
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Mobile responsive for most popular badge */
@media (max-width: 904px) {
    .most-popular-card {
        border: 2px solid #ff6b35 !important;
    }
    
    .most-popular-badge {
        font-size: 12px;
        padding: 6px 16px;
        top: -12px;
    }
}
