/**
 * Urgent Contractor — Polished Professional Theme
 * Premium emergency home services lead generation
 */

:root {
    --navy-900: #0a1f3d;
    --navy-800: #0f2a4a;
    --navy-700: #1a3a5c;
    --orange-500: #ff5722;
    --orange-600: #e64a19;
    --orange-50: #fff3e0;
    --orange-100: #ffe0b2;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1a3a5c;
    --slate-900: #0f2a4a;
    --green-500: #10b981;
    --green-100: #d1fae5;
    --yellow-400: #facc15;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.04);
    --shadow: 0 1px 3px 0 rgb(15 23 42 / 0.08), 0 1px 2px -1px rgb(15 23 42 / 0.06);
    --shadow-md: 0 4px 6px -1px rgb(15 23 42 / 0.08), 0 2px 4px -2px rgb(15 23 42 / 0.06);
    --shadow-lg: 0 10px 15px -3px rgb(15 23 42 / 0.1), 0 4px 6px -4px rgb(15 23 42 / 0.06);
    --shadow-xl: 0 20px 25px -5px rgb(15 23 42 / 0.12), 0 8px 10px -6px rgb(15 23 42 / 0.06);
    --shadow-focus: 0 0 0 3px rgb(255 87 34 / 0.2);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--slate-700);
    line-height: 1.6;
    font-size: 16px;
}

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

a { color: var(--orange-600); text-decoration: none; }
a:hover { color: var(--orange-500); text-decoration: underline; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Banner */
.top-banner {
    background: var(--navy-900);
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    text-align: center;
    letter-spacing: 0.2px;
}
.top-banner strong { color: #fff; font-weight: 600; }

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.footer-brand .logo img {
    height: 36px;
    max-width: 180px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: var(--slate-600);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.15s;
    text-decoration: none;
}
.nav-link:hover {
    background: var(--slate-100);
    color: var(--slate-900);
    text-decoration: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--slate-900);
    border-radius: var(--radius-sm);
}
.mobile-menu-btn:hover { background: var(--slate-100); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    line-height: 1.5;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(180deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: #fff;
    box-shadow: 0 1px 2px rgb(230 74 25 / 0.2), 0 4px 10px rgb(255 87 34 / 0.25);
    border: 1px solid rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
    background: linear-gradient(180deg, #fb923c 0%, var(--orange-500) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgb(255 87 34 / 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--slate-50);
    color: var(--slate-900);
    border-color: var(--slate-400);
    box-shadow: var(--shadow);
}

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

/* Hero */
.hero {
    background: radial-gradient(1200px 600px at 80% -10%, rgba(249,115,22,0.08), transparent),
                linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    padding: 4.5rem 0 5rem;
    border-bottom: 1px solid var(--slate-200);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--orange-50);
    color: var(--orange-600);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid var(--orange-100);
    letter-spacing: 0.2px;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero h1 span { color: var(--orange-600); }

.hero-desc {
    font-size: 1.25rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
    line-height: 1.55;
    max-width: 540px;
}

.hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9375rem;
    color: var(--slate-500);
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
}

/* Lead Card */
.lead-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.lead-card h3 {
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
    font-weight: 700;
}
.lead-card > p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.form-group label small { text-transform: none; font-weight: 500; color: var(--slate-500); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--white);
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    color: var(--slate-900);
    font-size: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: var(--shadow-focus);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

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

.form-terms {
    margin: 0.75rem 0;
    font-size: 0.75rem;
    color: var(--slate-500);
    line-height: 1.5;
}
.form-terms a { color: var(--orange-600); }

.form-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
    font-size: 0.75rem;
    color: var(--slate-500);
}
.form-trust svg {
    width: 14px;
    height: 14px;
    color: var(--green-500);
}

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

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

.section-header h2 {
    font-size: 2.125rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.section-header p {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    text-decoration: none;
    border-color: var(--slate-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-card .icon {
    width: 52px;
    height: 52px;
    background: var(--orange-50);
    color: var(--orange-600);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 2px 0 var(--orange-100);
}
.service-card .icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.375rem;
}
.service-card p {
    color: var(--slate-500);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}
.service-meta span {
    font-size: 0.75rem;
    color: var(--orange-600);
    background: var(--orange-50);
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid var(--orange-100);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 2.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.2s ease;
}
.step-card:hover { border-color: var(--slate-300); box-shadow: var(--shadow-md); }

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--orange-500);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgb(255 87 34 / 0.3);
}

.step-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Trust Section */
.trust-section {
    background: var(--navy-800);
    color: #fff;
    padding: 4rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item-large {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
}
.trust-item-large:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.trust-item-large svg {
    width: 22px;
    height: 22px;
    color: var(--orange-500);
    margin-bottom: 0.75rem;
}
.trust-item-large h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: #fff;
}
.trust-item-large p {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.5;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.2s ease;
}
.testimonial-card:hover { border-color: var(--slate-300); box-shadow: var(--shadow-md); }

.testimonial-stars {
    color: var(--yellow-400);
    font-size: 1rem;
    margin-bottom: 0.875rem;
    letter-spacing: 1px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-50);
    color: var(--orange-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid var(--orange-100);
}
.testimonial-name {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.9375rem;
}
.testimonial-location {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* State Grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.875rem;
}

.state-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.15s ease;
}
.state-card:hover {
    text-decoration: none;
    border-color: var(--orange-500);
    background: var(--orange-50);
}
.state-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
}
.state-card .abbr {
    font-size: 0.6875rem;
    color: var(--slate-500);
    font-weight: 700;
    background: var(--slate-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.state-card:hover .abbr { background: rgba(255,255,255,0.6); }

/* Page Hero */
.page-hero {
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--slate-200);
}
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.page-hero p {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 640px;
    line-height: 1.55;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--slate-500);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumbs a:hover { color: var(--orange-600); text-decoration: underline; }
.breadcrumbs .sep { color: var(--slate-300); }

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3.5rem;
    align-items: start;
}

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

.sidebar .lead-card { position: sticky; top: 88px; }

/* Widgets */
.widget {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.widget-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.875rem;
    letter-spacing: -0.2px;
}
.widget-list {
    list-style: none;
}
.widget-list li {
    border-bottom: 1px solid var(--slate-200);
}
.widget-list li:last-child { border-bottom: none; }
.widget-list a {
    display: block;
    padding: 0.625rem 0;
    color: var(--slate-600);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.widget-list a:hover {
    color: var(--orange-600);
    text-decoration: none;
    padding-left: 0.25rem;
}

/* Content styles */
.content h2 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 2.5rem 0 0.875rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 2rem 0 0.625rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.content p {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.content ul {
    margin: 1rem 0 1.5rem 1.25rem;
    color: var(--slate-600);
}
.content li { margin-bottom: 0.5rem; line-height: 1.6; }

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}
.feature-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
    width: 24px;
    height: 24px;
    background: var(--green-100);
    color: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Info Box */
.info-box {
    background: var(--slate-50);
    border-left: 4px solid var(--orange-500);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0 0 1.75rem;
}
.info-box h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-box svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--orange-500);
}
.info-box p {
    color: var(--slate-500);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
}
.info-box strong { color: var(--slate-700); font-weight: 600; }

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}
.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.15s ease;
}
.city-card:hover {
    border-color: var(--orange-500);
    background: var(--orange-50);
    text-decoration: none;
}
.city-card .name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-900);
}
.city-card .arrow {
    color: var(--orange-600);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
    transform: translateX(-4px);
}
.city-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* Location Tags */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.location-tag {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--slate-600);
    text-decoration: none;
    transition: all 0.15s ease;
    font-weight: 500;
}
.location-tag:hover {
    border-color: var(--orange-500);
    color: var(--orange-600);
    background: var(--orange-50);
    text-decoration: none;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    color: #fff;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}
.cta-box h3 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.cta-box p {
    font-size: 1.0625rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: var(--navy-900);
    color: var(--slate-400);
    padding: 3.5rem 0 1.5rem;
    border-top: 4px solid var(--orange-500);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo:hover { color: #fff; }
.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
    color: var(--slate-400);
}
.footer-col h4 {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    color: var(--slate-400);
    font-size: 0.9375rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* 404 */
.error-page {
    text-align: center;
    padding: 6rem 0;
}
.error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--orange-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.error-page h2 {
    font-size: 1.875rem;
    color: var(--slate-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    z-index: 99;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid var(--slate-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--slate-100); text-decoration: none; }
.mobile-nav .btn-primary { margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .sidebar .lead-card { position: static; }
    .steps-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 767px) {
    .main-nav { display: none; }
    .header-cta .btn-secondary { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 2.5rem 0 3rem; }
    .hero h1 { font-size: 1.875rem; letter-spacing: -0.02em; }
    .hero-desc { font-size: 1.0625rem; }
    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    .page-hero { padding: 2rem 0 1.5rem; }
    .page-hero h1 { font-size: 1.625rem; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item-large { padding: 1.5rem 1rem; }
    .state-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .cta-box { padding: 2rem 1.25rem; margin: 1.5rem 0; }
    .cta-box h3 { font-size: 1.25rem; }
    .content h2 { font-size: 1.25rem; margin-top: 2rem; }
    .content h3 { font-size: 1.125rem; }
    .two-col { gap: 2rem; }
    .lead-card { padding: 1.5rem; }
}
