/* Base Styles and Reset */
:root {
    --primary-color: #4461F2;
    --primary-dark: #3251e0;
    --primary-light: #6a82f4;
    --secondary-color: #FF7A50;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #F8FAFF;
    --white: #FFFFFF;
    --gray-100: #F5F7FA;
    --gray-200: #E4E7ED;
    --gray-300: #D0D3D9;
    --success-color: #2ED573;
    --warning-color: #FFAA00;
    --danger-color: #FF5E57;
    --border-radius: 8px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --container-padding: 24px;
    --section-spacing: 80px;
    --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    --neumorphic-shadow: 8px 8px 16px rgba(209, 217, 230, 0.5), 
                         -8px -8px 16px rgba(255, 255, 255, 0.8);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}

h4 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.6rem;
}

.section-intro {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* Buttons and Forms */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1.6rem;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(68, 97, 242, 0.3);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

input {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(68, 97, 242, 0.2);
}

.zip-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.zip-form input {
    flex: 1;
    min-width: 250px;
}

.zip-form button {
    min-width: 150px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.6rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.logo a:hover {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-container ul {
    display: flex;
    gap: 2.4rem;
}

.nav-container a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-container a:hover {
    color: var(--primary-color);
}

.nav-container a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-container a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

/* Language Selector */
.language-selector {
    position: relative;
    cursor: pointer;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.current-language:hover {
    background-color: var(--gray-100);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 0.8rem;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.language-dropdown li a:hover {
    background-color: var(--gray-100);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 8rem 2.4rem 2.4rem;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.mobile-language {
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #4461F2 0%, #6a82f4 100%);
    color: var(--white);
    position: relative;
}

.gradient-bg h1, .gradient-bg h2, .gradient-bg h3, .gradient-bg p {
    color: var(--white);
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.hero-content h1 {
    font-size: clamp(3.6rem, 5vw, 5.2rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.zip-search-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3.2rem;
    border-radius: var(--border-radius);
    margin-top: 3.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zip-search-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    text-align: center;
}

.zip-search-container p {
    text-align: center;
    margin-bottom: 2.4rem;
}

/* Why Matters Section */
.why-matters-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.why-matters-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.2rem;
    margin-bottom: 4.8rem;
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3.2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin-bottom: 2.4rem;
    color: var(--primary-color);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-spacing) 0;
}

.alt-bg {
    background-color: var(--light-bg);
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.4rem;
    align-items: center;
    margin-bottom: 6.4rem;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .content {
    order: 2;
}

.content-with-image.reverse .image {
    order: 1;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image:hover img {
    transform: scale(1.05);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 2.4rem;
}

.step {
    display: flex;
    gap: 1.6rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.costs-breakdown {
    margin-top: 4.8rem;
}

.costs-breakdown h3 {
    text-align: center;
    margin-bottom: 3.2rem;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.4rem;
}

.cost-item {
    background-color: var(--white);
    padding: 2.4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--neumorphic-shadow);
    transition: var(--transition);
}

.cost-item:hover {
    transform: translateY(-5px);
}

.cost-item h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

/* Providers Section */
.providers-section {
    padding: var(--section-spacing) 0;
}

.providers-section h2 {
    text-align: center;
    margin-bottom: 1.6rem;
}

.providers-cards {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 4.8rem;
}

.provider-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    background-color: var(--gray-100);
    min-width: 160px;
}

.provider-content {
    padding: 2.4rem;
    flex-grow: 1;
}

.provider-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.stars {
    color: var(--warning-color);
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-light);
}

.provider-features {
    margin-bottom: 2.4rem;
}

.provider-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2.4rem;
}

.provider-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.provider-cta {
    width: 100%;
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-spacing) 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.evaluation-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.evaluation-steps li {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.4rem;
}

.evaluation-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.evaluation-steps li strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.comparison-table {
    margin-top: 4.8rem;
    margin-bottom: 4.8rem;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 2.4rem;
}

.table-responsive {
    overflow-x: auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

th, td {
    padding: 1.6rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: var(--gray-100);
}

.testimonials {
    margin-top: 6.4rem;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 3.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.4rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.4rem;
    box-shadow: var(--neumorphic-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    padding-top: 2.4rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 6rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    margin-top: 1.6rem;
    text-align: right;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--text-light);
}

.gradient-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3.2rem;
    margin-top: 4.8rem;
}

.gradient-container h2, .gradient-container p {
    color: var(--white);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.faqs {
    max-width: 800px;
    margin: 0 auto 4.8rem;
}

details {
    margin-bottom: 1.6rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

details:hover {
    box-shadow: var(--card-shadow);
}

summary {
    padding: 2rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.8rem;
    background-color: var(--white);
    outline: none;
}

summary::marker {
    display: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

details[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 2rem 2rem;
}

.faq-content ul, .faq-content ol {
    padding-left: 2rem;
    margin-bottom: 1.6rem;
}

.faq-content li {
    margin-bottom: 0.8rem;
}

/* CTA Section */
.cta-section {
    padding: 6.4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
}

.cta-section p {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.main-cta {
    font-size: 1.8rem;
    padding: 1.6rem 4rem;
}

/* Footer */
footer {
    background-color: var(--light-bg);
    padding: 6.4rem 0 2.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4.8rem;
    margin-bottom: 4.8rem;
}

.footer-about h3, .footer-nav h3, .footer-contact h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-contact p {
    margin-bottom: 2.4rem;
}

.footer-bottom {
    padding-top: 2.4rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.copyright {
    margin-bottom: 1.6rem;
    color: var(--text-light);
}

.disclaimer {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 2.2rem;
}

.close-modal {
    font-size: 2.4rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 3.2rem;
}

.searching-animation {
    text-align: center;
}

.searching-text {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
}

.searching-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--gray-200);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2.4rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.searching-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2.4rem;
}

.searching-logos img {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.search-complete {
    text-align: center;
}

.complete-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 2.4rem;
}

.complete-animation {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 4rem;
    animation: pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0);
}

@keyframes pop {
    to {
        transform: scale(1);
    }
}

.hidden {
    display: none;
}

/* Responsive Styles */
@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

@media (max-width: 1023px) {
    :root {
        --section-spacing: 6.4rem;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2.2rem;
    }
    
    .nav-container, .header-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-grid, .content-with-image, .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .content-with-image.reverse .content,
    .content-with-image.reverse .image,
    .content-with-image .content,
    .content-with-image .image {
        order: unset;
    }
    
    .provider-card {
        flex-direction: column;
    }
    
    .provider-logo {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-spacing: 4.8rem;
        --container-padding: 1.6rem;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4.8rem 0;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .feature {
        font-size: 1.4rem;
    }
    
    .costs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
    
    .zip-search-container {
        padding: 2.4rem 1.6rem;
    }
    
    .zip-form {
        flex-direction: column;
    }
    
    .zip-form button {
        width: 100%;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Print Styles */
@media print {
    header, footer, .zip-search-container, .cta-section, .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    table, figure {
        page-break-inside: avoid;
    }
}