/**
 * Distressed Property Solutions - Design System
 * Version: 2.0
 */

/* Screen reader only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    /* Navy Blue Palette (DPS Brand) */
    --blue-50: #f0f4f8;
    --blue-100: #d9e2ec;
    --blue-200: #bcccdc;
    --blue-300: #9fb3c8;
    --blue-400: #6d8fad;
    --blue-500: #486581;
    --blue-600: #1e3a5f;
    --blue-700: #1a3050;
    --blue-800: #142740;
    --blue-900: #0f1d30;
    --blue-950: #0a1420;

    /* Gold Accent (DPS Brand) */
    --amber-400: #d4b462;
    --amber-500: #c8a951;
    --amber-600: #b89840;
    
    /* Semantic Colors */
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --red-500: #ef4444;
    --red-600: #dc2626;
    
    /* Neutrals */
    --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;
    
    /* 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);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-blue: 0 10px 40px -10px rgba(30, 58, 95, 0.4);
    --shadow-amber: 0 10px 40px -10px rgba(200, 169, 81, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--blue-700);
}

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

h1, h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

h1 { font-size: 2.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* =====================================================
   STICKY MOBILE CTA
   ===================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    border-top: 3px solid var(--blue-600);
}

.sticky-cta-inner {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 0.875rem 1rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 80px;
    }
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--blue-600), var(--blue-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}

.logo-mark svg {
    width: 26px;
    height: 26px;
    color: white;
    position: relative;
    z-index: 1;
}

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

.logo-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--blue-600);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

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

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    padding: 0.625rem 1rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.header-phone:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header-phone svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-700);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links a {
    display: block;
    padding: 1rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-links a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .header-phone {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(145deg, var(--blue-600), var(--blue-700));
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(0, 109, 199, 0.5);
    color: white;
}

.btn-amber {
    background: linear-gradient(145deg, var(--amber-400), var(--amber-500));
    color: var(--gray-900);
    box-shadow: var(--shadow-amber);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(245, 158, 11, 0.5);
    color: var(--gray-900);
}

.btn-white {
    background: white;
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--blue-200);
    background: var(--blue-50);
    color: var(--blue-700);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 109, 199, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, var(--amber-400), var(--amber-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: var(--blue-600);
}

.hero-text {
    font-size: 1.35rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--blue-600);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 0.375rem;
}

/* Location Hero (smaller) */
.hero-location {
    padding: 8rem 0 4rem;
}

.hero-location h1 {
    font-size: 3.25rem;
}

/* =====================================================
   HERO FORM CARD
   ===================================================== */
.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), var(--shadow-2xl);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
    border-radius: 0 0 4px 4px;
}

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

.card-header h2 {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
}

.card-header p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--gray-50);
    color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 109, 199, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.form-footer svg {
    width: 14px;
    height: 14px;
    color: var(--emerald-500);
}

.form-error {
    color: var(--red-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    background: var(--emerald-500);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
    background: var(--gray-900);
    padding: 1.25rem 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9375rem;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 18px;
    height: 18px;
    color: var(--amber-400);
}

@media (max-width: 768px) {
    .trust-grid {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gray-900);
    color: white;
}

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

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue-200);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================================================
   BENEFITS GRID
   ===================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue-600);
}

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

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =====================================================
   INLINE CTA BANNER
   ===================================================== */
.inline-cta {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.inline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.inline-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.inline-cta-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.inline-cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

.inline-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .inline-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .inline-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* =====================================================
   PHONE CTA STRIP
   ===================================================== */
.phone-cta-strip {
    background: var(--amber-500);
    padding: 1.5rem 0;
}

.phone-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.phone-cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.phone-cta-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-900);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.phone-cta-number:hover {
    background: var(--gray-800);
    transform: scale(1.02);
    color: white;
}

.phone-cta-number svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .phone-cta-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =====================================================
   STEPS / HOW IT WORKS
   ===================================================== */
.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-100), var(--blue-300), var(--blue-100));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
}

.step-number {
    width: 88px;
    height: 88px;
    background: white;
    border: 3px solid var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: linear-gradient(145deg, var(--blue-600), var(--blue-700));
    border-radius: 50%;
}

.step-number span {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
}

.step:hover .step-number {
    transform: scale(1.08);
    border-color: var(--blue-300);
    box-shadow: 0 8px 30px -8px rgba(0, 109, 199, 0.4);
}

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

.step p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-line {
        display: none;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 2.5rem;
    }
}

/* =====================================================
   SITUATIONS GRID
   ===================================================== */
.situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.situation-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    text-decoration: none;
    transition: all 0.2s;
}

.situation-card:hover {
    border-color: var(--blue-200);
    background: var(--blue-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.situation-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.situation-card:hover .situation-icon {
    background: var(--blue-100);
}

.situation-icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue-600);
}

.situation-card h3 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.situation-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .situations-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   URGENCY CTA
   ===================================================== */
.urgency-cta {
    background: linear-gradient(135deg, var(--red-600) 0%, #b91c1c 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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'%3E%3Cg fill='%23fff' 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");
}

.urgency-cta-content {
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.urgency-badge svg {
    width: 16px;
    height: 16px;
}

.urgency-cta h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.urgency-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--blue-100);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--amber-400);
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--blue-500), var(--blue-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-location {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* =====================================================
   COMPARISON SECTION
   ===================================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.comparison-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.comparison-card.highlight {
    background: linear-gradient(145deg, var(--blue-600), var(--blue-700));
    border-color: var(--blue-500);
    position: relative;
}

.comparison-card.highlight::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber-500);
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.comparison-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.comparison-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.comparison-list li svg.check {
    color: var(--emerald-500);
}

.comparison-list li svg.x {
    color: var(--red-500);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.final-cta {
    background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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'%3E%3Cg fill='%23fff' fill-opacity='0.03'%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");
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.final-cta > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.final-cta-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
}

.final-cta-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.final-cta-form .form-group {
    margin-bottom: 0;
}

.final-cta-form .form-btn {
    grid-column: span 2;
    margin-top: 0.5rem;
}

.final-cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.final-cta-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.final-cta-contact a:hover {
    color: var(--amber-400);
}

.final-cta-contact svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .final-cta-form-grid {
        grid-template-columns: 1fr;
    }
    .final-cta-form .form-btn {
        grid-column: span 1;
    }
    .final-cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo .logo-mark svg {
    width: 22px;
    height: 22px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.footer-brand > p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--gray-500);
}

.footer-contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--amber-400);
}

.footer-column h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

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

.footer-column li {
    margin-bottom: 0.625rem;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    padding: 1rem 0;
    margin-top: 80px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-list a {
    color: var(--blue-600);
}

.breadcrumb-list span {
    color: var(--gray-400);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray-300);
}

/* =====================================================
   CONTENT PAGES
   ===================================================== */
.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.content-section h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--gray-900);
}

.content-section p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlight Box */
.highlight-box {
    background: var(--blue-600);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255,255,255,0.9);
}

.highlight-box a {
    color: var(--amber-400);
}

/* =====================================================
   RESPONSIVE HERO
   ===================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-text {
        font-size: 1.15rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-value {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    .section {
        padding: 4rem 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

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

@media (min-width: 769px) {
    .hide-desktop { display: none; }
}
