/* US Gutter Pros - Main Stylesheet */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #152a45;
    --accent: #2563eb;
    --accent-light: #3b82f6;

    --green-500: #22c55e;
    --green-100: #dcfce7;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background-color: var(--gray-100);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

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

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary);
    text-decoration: none;
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem;
    color: var(--gray-600);
    border-radius: var(--radius);
}

.mobile-nav a:hover {
    background: var(--gray-100);
    text-decoration: none;
}

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

    .header-cta {
        display: block;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: none !important;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 3rem 0 5rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.85), rgba(255,255,255,0.7), rgba(255,255,255,0.5));
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge svg {
    color: var(--green-500);
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

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

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   Hero Form
   ========================================================================== */
.hero-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green-100);
    color: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.form-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.lead-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}

.radio-option:hover {
    background: var(--gray-50);
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

.form-note {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--gray-50); }
.bg-primary {
    background-color: var(--primary);
    color: var(--white);
}

.bg-primary h2,
.bg-primary h3 {
    color: var(--white);
}

.bg-primary p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header-flex h2 {
    margin-bottom: 0.5rem;
}

.section-header-flex p {
    color: var(--gray-500);
}

/* ==========================================================================
   Steps/Process Section
   ========================================================================== */
.steps-grid {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-500);
}

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

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-grid {
    display: grid;
    gap: 3rem;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon.blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.benefit-icon.green {
    background: var(--green-100);
    color: var(--green-500);
}

.benefit-icon.orange {
    background: var(--orange-100);
    color: var(--orange-600);
}

.benefit-icon.purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.benefits-content h2 {
    margin-bottom: 1rem;
}

.benefits-content > p {
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--green-100);
    color: var(--green-500);
    border-radius: 50%;
    padding: 4px;
}

.check-list.light li svg {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .benefits-cards {
        order: 1;
    }

    .benefits-content {
        order: 2;
    }
}

/* ==========================================================================
   Appointment Section
   ========================================================================== */
.appointment-grid {
    display: grid;
    gap: 3rem;
}

.appointment-content h2 {
    margin-bottom: 1rem;
}

.appointment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.25rem;
}

.appointment-form {
    padding: 1.5rem;
}

.appointment-form .form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.appointment-form .form-header svg {
    color: var(--primary);
}

.appointment-form .form-header h3 {
    margin-bottom: 0;
}

.form-subtitle {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .appointment-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.blog-grid {
    display: grid;
    gap: 1.5rem;
}

.blog-card {
    display: block;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.2s;
    text-decoration: none;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.blog-image {
    aspect-ratio: 16/9;
    background: var(--gray-200);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.25rem;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.125rem;
    margin: 0.75rem 0;
    transition: color 0.2s;
}

.blog-card:hover .blog-content h3 {
    color: var(--accent);
}

.blog-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

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

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

.blog-grid-3 {
    display: grid;
    gap: 2rem;
}

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

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

.blog-card-full {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.blog-card-full:hover {
    box-shadow: var(--shadow-md);
}

.blog-card-full .blog-content {
    padding: 1.5rem;
}

.blog-card-full h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-card-full h2 a {
    color: var(--primary);
    text-decoration: none;
}

.blog-card-full h2 a:hover {
    text-decoration: underline;
}

.blog-card-full p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-400);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    color: var(--gray-500);
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
    padding: 4rem 0;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-simple {
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.page-header-simple h1 {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--gray-500);
}

.contact-method span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   Privacy/Prose
   ========================================================================== */
.prose {
    line-height: 1.8;
}

.prose section {
    margin-bottom: 2.5rem;
}

.prose h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.prose ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.prose ul li {
    margin-bottom: 0.5rem;
}

.contact-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.25rem;
}

.consent-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* ==========================================================================
   Blog Post
   ========================================================================== */
.blog-post {
    padding: 3rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

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

.post-header {
    margin-bottom: 2.5rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.post-date {
    color: var(--gray-500);
}

.post-image {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.post-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-content {
    font-size: 1.125rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.post-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.post-content ul li {
    margin-bottom: 0.75rem;
}

.post-cta {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 0.75rem;
}

.post-cta p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 1rem;
    z-index: 100;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.hide-mobile {
    display: none;
}

.show-mobile {
    display: block;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline-flex;
    }

    .show-mobile {
        display: none;
    }
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thank-you-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thank-you-content .success-icon {
    width: 100px;
    height: 100px;
    background: var(--green-100);
    color: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.thank-you-content > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.next-steps {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.steps-list .step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.steps-list .step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.steps-list .step strong {
    display: block;
    margin-bottom: 0.25rem;
}

.steps-list .step p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Landing Page Styles
   ========================================================================== */

/* Landing Page Header */
.lp-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.lp-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Landing Page Hero */
.lp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.lp-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.lp-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero h1 {
    color: var(--white);
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lp-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lp-subtitle strong {
    color: var(--white);
}

.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--green-500);
}

.lp-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .lp-hero {
        padding: 5rem 0;
    }

    .lp-hero h1 {
        font-size: 3rem;
    }

    .lp-subtitle {
        font-size: 1.25rem;
    }
}

/* Warning Signs Grid */
.warning-grid {
    display: grid;
    gap: 1.5rem;
}

.warning-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.warning-icon {
    width: 56px;
    height: 56px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.warning-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.warning-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Landing Page Form Section */
.lp-form-grid {
    display: grid;
    gap: 3rem;
}

.lp-form-content h2 {
    margin-bottom: 1rem;
}

.lp-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.25rem;
}

.lp-form-card {
    padding: 1.5rem;
}

.lp-form-card .form-header {
    margin-bottom: 1.5rem;
}

.lp-form-card .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lp-form-card .form-header p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .lp-form-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Landing Page Footer */
.lp-footer {
    background: var(--gray-900);
    padding: 1.5rem 0;
}

.lp-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.lp-footer p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

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

.lp-footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.lp-footer-links a:hover {
    color: var(--white);
}

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

/* ==========================================================================
   Advertorial Styles
   ========================================================================== */

.advertorial-hero {
    padding: 3rem 0;
}

.advertorial-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .advertorial-hero {
        padding: 4rem 0;
    }

    .advertorial-hero h1 {
        font-size: 2.5rem;
    }
}

.advertorial-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.advertorial-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.advertorial-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.article-lead {
    font-size: 1.25rem;
    color: var(--gray-800);
}

.article-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.article-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
}

.article-callout {
    background: var(--green-100);
    border-left: 4px solid var(--green-500);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-callout p {
    margin: 0;
    color: var(--gray-800);
}

.article-cta-text {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 2rem;
}

/* Advertorial warning grid adjustments */
.advertorial-content .warning-grid {
    margin: 2rem 0;
}

.advertorial-content .steps-grid {
    margin: 2rem 0;
}

/* Urgent Badge with Pulsing Dot */
.lp-badge.urgent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}
