/* ==========================================
   QUICKKEY DISPATCH – STYLES
   Emergency Locksmith Dispatch Website
   ========================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #1B56FD;
    --primary-dark: #1445D4;
    --primary-light: #E8EEFF;
    --primary-glow: rgba(27, 86, 253, 0.15);
    --accent: #FF6B2C;
    --accent-light: #FFF0E8;

    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;
    --white: #FFFFFF;

    --green: #22C55E;
    --green-light: #ECFDF5;
    --red: #EF4444;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(27, 86, 253, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --transition: 0.2s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(27, 86, 253, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-500);
    border-color: transparent;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 16px 20px;
}
.btn-ghost:hover {
    color: var(--primary);
    background: transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

/* ---------- SECTION STYLING ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 600;
    transition: color var(--transition);
}
.top-bar-phone:hover { color: var(--primary); }

/* ---------- HEADER ---------- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-icon-light {
    background: rgba(255, 255, 255, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
}

.logo-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.header-cta {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 50%, var(--gray-50) 100%);
    z-index: -2;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--green-light);
    color: #15803D;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.pulse-dot-green { background: var(--green); }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}
.trust-item svg { color: var(--green); }

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-card-body {
    padding: 32px 24px;
    text-align: center;
}

.eta-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.eta-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 4px;
    margin-bottom: 16px;
}

.hero-card-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
}

.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 13px;
    color: var(--gray-500);
}

.mini-avatars {
    display: flex;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    margin-left: -8px;
}
.mini-avatar:first-child { margin-left: 0; }
.mini-avatar:nth-child(2) { background: #6366F1; }
.mini-avatar:nth-child(3) { background: var(--accent); }

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
}
.service-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}
.service-card-featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 6px 0;
}
.service-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.services-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 32px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px var(--primary-light);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 16px;
    color: var(--gray-300);
    flex-shrink: 0;
}

/* ---------- PRICING ---------- */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-banner {
    background: linear-gradient(135deg, var(--primary), #4F46E5);
    border-radius: var(--radius-xl);
    padding: 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.pricing-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.pricing-content {
    flex: 1;
}
.pricing-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
}
.pricing-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 900;
}
.price-dash {
    font-weight: 400;
    opacity: 0.5;
}

.price-note {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.pricing-action {
    text-align: center;
    flex-shrink: 0;
}

.pricing-sub {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 12px;
}

/* ---------- SERVICE AREAS ---------- */
.areas {
    padding: 100px 0;
    background: var(--gray-50);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
    text-align: center;
}
.area-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.area-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
}

.area-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
    line-height: 1.6;
}

.area-card-primary {
    grid-column: span 2;
    padding: 32px;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary-light);
}
.area-card-primary h3 {
    font-size: 20px;
    color: var(--primary);
}

.area-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 12px;
}

.areas-note {
    text-align: center;
    font-size: 15px;
    color: var(--gray-500);
    margin-top: 24px;
}

.areas-expansion {
    margin-top: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.expansion-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--primary-light);
    border: 1px solid rgba(27, 86, 253, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.expansion-inner svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
    min-width: 20px;
}

.expansion-inner > div {
    flex: 1;
    min-width: 0;
}

.expansion-inner strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.expansion-inner p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.expansion-inner p strong {
    display: inline;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .expansion-inner {
        padding: 18px 20px;
    }
    .expansion-inner p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .areas-expansion {
        margin-left: 0;
        margin-right: 0;
    }
    .expansion-inner {
        flex-direction: column;
        gap: 12px;
        text-align: left;
        align-items: flex-start;
        padding: 16px;
    }
}

/* ---------- REQUEST FORM ---------- */
.request {
    padding: 100px 0;
    background: var(--white);
}

.request-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.request-info .section-tag {
    margin-bottom: 16px;
}

.request-info h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.request-info > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.request-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.request-contact-item svg {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.request-contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.request-contact-item a,
.request-contact-item span {
    font-size: 14px;
    color: var(--gray-500);
}
.request-contact-item a:hover { color: var(--primary); }

.request-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-inner {
    text-align: center;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 86, 253, 0.15) 0%, transparent 60%);
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-inner p {
    font-size: 17px;
    opacity: 0.7;
    margin-bottom: 32px;
    position: relative;
}

.cta-inner .btn {
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: var(--primary); }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- MOBILE CTA (STICKY) ---------- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta-buttons {
    display: flex;
    gap: 10px;
}

.mobile-cta-main {
    flex: 1;
}

.mobile-cta-secondary {
    flex-shrink: 0;
    padding: 16px 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        display: flex;
        justify-content: center;
    }
    .hero-card {
        max-width: 360px;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .request-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-text { display: none; }
    .top-bar-inner { justify-content: center; }

    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }
    .nav.open .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav.open .nav-link:last-child { border: none; }

    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 48px 0 64px;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
    .area-card-primary {
        grid-column: span 2;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p { margin: 0 auto; }
    .footer-brand .logo { justify-content: center; }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .mobile-cta { display: block; }
    body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn { width: 100%; }
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .area-card-primary {
        grid-column: span 1;
    }
    .pricing-banner { padding: 32px 24px; }
    .price-amount { font-size: 28px; }
    .request-form { padding: 24px; }
}

/* ==========================================
   DISPATCH ANIMATION OVERLAY
   ========================================== */

.dispatch-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dispatch-overlay.active {
    opacity: 1;
}

.dispatch-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 480px;
    width: 100%;
    padding: 40px 36px;
    transform: scale(0.95) translateY(12px);
    transition: transform 0.3s ease;
}
.dispatch-overlay.active .dispatch-modal {
    transform: scale(1) translateY(0);
}

.dispatch-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dispatch-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    opacity: 0.35;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}
.dispatch-step.active {
    opacity: 1;
    transform: translateX(0);
    background: var(--primary-light);
    border-color: rgba(27, 86, 253, 0.15);
}
.dispatch-step.completed {
    opacity: 1;
    transform: translateX(0);
    background: var(--green-light);
    border-color: rgba(34, 197, 94, 0.15);
}

.dispatch-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}
.dispatch-step.active .dispatch-step-icon {
    color: var(--primary);
    border-color: var(--primary);
}
.dispatch-step.completed .dispatch-step-icon {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.dispatch-spinner {
    animation: spinPulse 1.2s ease-in-out infinite;
}
@keyframes spinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 6px var(--primary-glow); }
}

.dispatch-step.completed .dispatch-spinner {
    animation: none;
}

.dispatch-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dispatch-step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}
.dispatch-step.active .dispatch-step-title {
    color: var(--primary-dark);
}
.dispatch-step.completed .dispatch-step-title {
    color: #15803D;
}

.dispatch-step-desc {
    font-size: 13px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dispatch-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}
.dispatch-footer.active {
    opacity: 1;
    transform: translateY(0);
}
.dispatch-footer p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Dispatch modal responsive */
@media (max-width: 480px) {
    .dispatch-modal {
        padding: 28px 20px;
    }
    .dispatch-step {
        padding: 12px;
        gap: 12px;
    }
    .dispatch-step-icon {
        width: 40px;
        height: 40px;
    }
    .dispatch-step-icon svg {
        width: 20px;
        height: 20px;
    }
    .dispatch-step-title {
        font-size: 14px;
    }
}
