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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f3f4f6;
    line-height: 1.6;
}

a {
    color: #ea580c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* Header */

.site-header {
    background: #111827;
    color: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 20;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #f9fafb;
    font-weight: 700;
}

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

.brand-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #d1d5db;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.9rem;
}

.main-nav a {
    color: #e5e7eb;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
}

.main-nav a:hover {
    background-color: #1f2937;
}

.nav-cta {
    background: #ea580c;
    color: #f9fafb;
    font-weight: 500;
}

.nav-cta:hover {
    background: #f97316;
}

.header-phone {
    display: none;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #f97316;
    color: #fef3c7;
    font-size: 0.85rem;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #fee2e2 0, #f3f4f6 35%, #e5e7eb 100%);
    padding: 3rem 0 3.5rem;
}

.hero-free {
    background: radial-gradient(circle at top left, #ffedd5 0, #f3f4f6 35%, #e5e7eb 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2.75rem;
    align-items: stretch;
}

.hero-content h1 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

.hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: #b45309;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #f9fafb;
    box-shadow: 0 12px 25px rgba(234, 88, 12, 0.35);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(234, 88, 12, 0.45);
}

.btn.secondary {
    background: #f9fafb;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.btn.secondary:hover {
    background: #f3f4f6;
}

.hero-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #1d4ed8;
}

/* Hero card */

.hero-card {
    background: #f9fafb;
    border-radius: 1.25rem;
    padding: 1.6rem 1.5rem 1.8rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.hero-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

.checklist {
    list-style: none;
    margin-top: 0.45rem;
    margin-bottom: 0.45rem;
}

.checklist li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.78rem;
    color: #059669;
    font-weight: 700;
    transform: translateY(1px);
}

.contact-snippet {
    margin-top: 0.4rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: #111827;
    color: #f9fafb;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 0.15rem;
}

.contact-phone {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f97316;
}

.contact-address {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    color: #e5e7eb;
}

.note {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Sections */

section {
    padding: 3rem 0;
}

.section-intro {
    max-width: 640px;
    font-size: 0.96rem;
    color: #4b5563;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
}

/* Steps */

.steps {
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.step {
    background: #f9fafb;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.35rem;
    border: 1px solid #e5e7eb;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.step p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Services */

.services {
    background: #f3f4f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.35rem;
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Benefits */

.benefits {
    background: #ffffff;
}

.benefits-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2rem;
    align-items: start;
}

.benefits-list {
    list-style: disc;
    padding-left: 1.2rem;
    font-size: 0.92rem;
    color: #374151;
}

.benefits-list li + li {
    margin-top: 0.45rem;
}

.benefits-aside {
    background: #f9fafb;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.35rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Areas */

.areas {
    background: #f3f4f6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.areas-grid h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.areas-grid p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Info strip */

.info-strip {
    background: #111827;
    color: #f9fafb;
    padding: 1.6rem 0;
}

.info-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.info-strip-inner p {
    font-weight: 500;
}

/* FAQ */

.faq {
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.35rem;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Contact */

.contact {
    background: #f3f4f6;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2rem;
    align-items: start;
}

.contact-details {
    list-style: none;
    margin: 0.75rem 0 0.75rem;
    font-size: 0.92rem;
}

.contact-details li + li {
    margin-top: 0.2rem;
}

.contact-box {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.35rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Footer */

.site-footer {
    background: #0b1120;
    color: #9ca3af;
    padding: 1.4rem 0 1.6rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact a {
    color: #e5e7eb;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    display: block;
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

.dot {
    opacity: 0.5;
}

/* Headings */

h2 {
    font-size: 1.4rem;
    color: #111827;
}

h3 {
    color: #111827;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner,
    .benefits-inner,
    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }

    .header-phone {
        display: inline-flex;
    }

    .hero {
        padding-top: 2.25rem;
    }

    .hero-card {
        order: -1;
    }

    .steps-grid,
    .services-grid,
    .areas-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .info-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
