:root {
    --red: #D4243A;
    --black: #0a0a0a;
    --white: #ffffff;
    --offwhite: #f5f3f0;
    --darkgray: #1a1a1a;
    --midgray: #2e2e2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Epilogue', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 120px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 36, 58, 0.3);
}

.nav-logo img {
    height: 110px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 2px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: #b81e30 !important;
    color: var(--white) !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 80px 60px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 36, 58, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    border-left: 3px solid var(--red);
    padding-left: 12px;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero h1 span {
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #b81e30;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 2px solid var(--red);
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: var(--red);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 90%;
    max-width: 520px;
    height: auto;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(212, 36, 58, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

.hero-phone {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.hero-phone a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.hero-phone a:hover {
    color: var(--red);
}

/* TRUST BAR */
.trust-bar {
    background: var(--red);
    padding: 20px 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* SECTIONS */
section {
    padding: 100px 80px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

/* SERVICES */
.services {
    background: var(--darkgray);
}

.services-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.service-card {
    background: var(--midgray);
    padding: 48px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
}

.service-card:hover {
    border-top-color: var(--red);
    background: #383838;
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* HOW IT WORKS */
.how {
    background: var(--black);
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps {
    margin-top: 40px;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    margin-bottom: 36px;
    align-items: start;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
}

.step-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-image {
    position: relative;
    text-align: center;
}

.how-image img {
    width: 85%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.08));
}

.how-badge {
    position: absolute;
    bottom: -20px;
    right: 0px;
    background: var(--red);
    padding: 24px 28px;
    text-align: center;
}

.how-badge strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
}

.how-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* AREA */
.area {
    background: var(--darkgray);
}

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-towns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
}

.town-tag {
    background: var(--midgray);
    border-left: 3px solid var(--red);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: background 0.2s;
}

.town-tag:hover {
    background: #3a3a3a;
}

.area-note {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

.area-map {
    background: var(--midgray);
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.85) contrast(0.9);
}

/* PESTS */
.pests {
    background: var(--black);
}

.pests-header {
    text-align: center;
    margin-bottom: 64px;
}

.pests-header .section-desc {
    margin: 0 auto;
}

.pests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.pest-card {
    background: var(--midgray);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.pest-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.pest-card:hover {
    transform: translateY(-4px);
}

.pest-card:hover::after {
    transform: scaleX(1);
}

.pest-emoji {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}

.pest-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
}

/* CTA BAND */
.cta-band {
    background: var(--red);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.cta-band p {
    margin-top: 12px;
    opacity: 0.9;
    font-size: 1.05rem;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-white:hover {
    background: #ffe0e0;
}

/* WHY */
.why {
    background: var(--darkgray);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.why-feat {
    border-left: 3px solid var(--red);
    padding-left: 16px;
}

.why-feat h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.why-feat p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

.why-visual {
    background: var(--black);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(212, 36, 58, 0.08);
    border-radius: 50%;
}

.why-visual img {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(212, 36, 58, 0.2));
}

.why-tagline {
    text-align: center;
    margin-top: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--red);
}

/* CONTACT */
.contact {
    background: var(--black);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.contact-method-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.55);
}

.contact-method-text a,
.contact-method-text p {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-method-text a:hover {
    color: var(--red);
}

.contact-form-box {
    background: var(--darkgray);
    padding: 48px 40px;
}

.contact-form-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color 0.2s;
    outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--red);
}

.form-row textarea {
    height: 120px;
    resize: vertical;
}

.form-row select option {
    background: var(--darkgray);
}

.form-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 18px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background: #b81e30;
}

/* FOOTER */
footer {
    background: #050505;
    padding: 60px 80px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 300px;
}

.footer-col h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 32px 60px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 260px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-phone {
        justify-content: center;
    }

    section {
        padding: 70px 32px;
    }

    .how-inner,
    .why-inner,
    .contact-inner,
    .area-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        text-align: center;
    }

    .trust-bar {
        padding: 16px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 40px 32px 24px;
    }

    .area-towns {
        grid-template-columns: 1fr 1fr;
    }

    .area-map {
        aspect-ratio: 4/3;
    }
}