:root {
    --font-heading: Georgia, "Times New Roman", serif;
    --font-body: Arial, Helvetica, sans-serif;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow: 0 22px 60px rgba(24, 24, 27, 0.12);
    --shadow-soft: 0 14px 36px rgba(24, 24, 27, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    background: #ffffff;
}

img, svg {
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(35px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

h3, h4 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

p, li {
    font-size: 16px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a, .mobile-panel a {
    color: #27272a;
    font-size: 18px;
    font-weight: 700;
}

.desktop-nav a:hover, .mobile-panel a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 800;
    min-height: 50px;
    padding: 13px 22px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(171, 26, 26, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(171, 26, 26, 0.31);
}

.btn-dark {
    background: #18181b;
    color: #ffffff;
}

.btn-dark:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: #111827;
    border-color: #d4d4d8;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: #111827;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid #d4d4d8;
    border-radius: 14px;
    background: #fff;
    color: #111827;
}

.mobile-panel {
    display: none;
    padding: 0 0 18px;
}

.mobile-links {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.hero {
    padding: 46px 0 72px;
    background: radial-gradient(circle at 15% 12%, rgba(171, 26, 26, 0.12), transparent 28%), linear-gradient(135deg, #f5f5f4 0%, #ffffff 58%, #eeeeee 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: stretch;
    gap: 34px;
}

.hero-copy, .hero-media {
    min-height: 560px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(24, 24, 27, 0.06);
}

.stars {
    color: var(--accent);
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 18px;
    color: #27272a;
    max-width: 680px;
    margin-bottom: 24px;
}

.hero-cta {
    font-size: 18px;
    color: #111827;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-buttons, .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 0;
}

.trust-icons img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    padding: 10px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(24, 24, 27, 0.08);
}

.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #18181b;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-badge strong {
    display: block;
    color: #111827;
    font-size: 18px;
}

.hero-badge span {
    color: #3f3f46;
    font-size: 14px;
}

.section {
    padding: 86px 0;
}

.section-alt {
    background: #f5f5f4;
}

.section-dark {
    background: #18181b;
    color: #fafafa;
}

.section-dark p, .section-dark li, .section-dark a {
    color: #f4f4f5;
}

.section-dark .split-box, .section-dark .step-card {
    color: #374151;
}

.section-dark .split-box h3, .section-dark .step-card h3 {
    color: #111827;
}

.section-dark .split-box p, .section-dark .step-card p {
    color: #374151;
}

.section-dark .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.section-head {
    max-width: 790px;
    margin-bottom: 34px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #18181b;
    font-weight: 800;
}

.label-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
}

.intro-card {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.intro-text {
    padding: 44px;
}

.intro-media img, .split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.reason-card, .service-card, .step-card, .payment-card, .faq-card {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    background: #cd2121;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.reason-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #18181b;
    color: #ffffff;
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 28px;
    align-items: stretch;
}

.split-box {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.split-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #fff1f1;
    color: var(--primary);
}

.service-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.service-card ul {
    padding-left: 18px;
    margin: 0 0 14px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    right: 18px;
    top: 8px;
    color: rgba(171, 26, 26, 0.08);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.reviews-wrap {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    min-height: 260px;
    padding: 26px;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #27272a;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-soft);
}

.review-card .stars {
    font-size: 18px;
    margin-bottom: 12px;
}

.review-card p {
    color: #27272a;
}

.review-card strong {
    color: #111827;
    font-size: 18px;
}

.carousel-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.circle-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #d4d4d8;
    border-radius: 50%;
    background: #ffffff;
    color: #111827;
    font-size: 22px;
    cursor: pointer;
}

.circle-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.area-pills, .payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d4d4d8;
    color: #111827;
    font-weight: 800;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.contact-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: #27272a;
    box-shadow: var(--shadow);
}

.contact-card a {
    color: #111827;
    font-weight: 900;
}

.contact-card a:hover {
    color: var(--primary);
}

.cta-band {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #18181b, #3f0b0b);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.cta-band h2, .cta-band p {
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.site-footer {
    padding: 54px 0 84px;
    background: #18181b;
    color: #f4f4f5;
    font-size: 14px;
}

.site-footer p, .site-footer a, .site-footer li {
    color: #f4f4f5;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    gap: 28px;
}

.footer-logo {
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-disclaimer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-call {
    display: none;
    position: fixed;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 80;
    min-height: 54px;
    border-radius: 18px;
    background: #18181b;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    white-space: nowrap;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 700ms ease forwards;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1020px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-panel.open {
        display: block;
    }

    .hero-grid, .intro-card, .split, .contact-panel, .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy, .hero-media {
        min-height: auto;
    }

    .hero-media {
        aspect-ratio: 1 / 1;
    }

    .reason-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 74px;
    }

    h1 {
        font-size: clamp(35px, 9vw, 45px);
    }

    h2 {
        font-size: clamp(28px, 8vw, 34px);
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 104px;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 0;
    }

    .logo {
        font-size: 24px;
        flex: 1 1 100%;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-actions .btn {
        min-height: 44px;
        padding: 10px 13px;
        font-size: 14px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding: 24px 0 52px;
    }

    .hero-copy {
        justify-content: flex-start;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-buttons .btn, .cta-buttons .btn {
        width: 100%;
    }

    .trust-icons img {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .hero-badge {
        grid-template-columns: 1fr;
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .section {
        padding: 62px 0;
    }

    .intro-text, .split-box, .contact-card, .cta-band {
        padding: 26px;
    }

    .reason-grid, .process-grid, .services-grid, .reviews-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .mobile-call {
        display: inline-flex;
        font-size: 15px;
    }
}
