:root {
    --yellow: #F6C000;
    --yellow-dark: #d9aa00;
    --black: #111111;
    --dark: #1a1a1a;
    --dark2: #222222;
    --gray: #444444;
    --light-gray: #f5f5f5;
    --text: #333333;
    --white: #ffffff;
    --red: #e53e3e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* ===== HEADER ===== */
header {
    background: var(--black);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--yellow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--light-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    line-height: 1.1;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 11px;
    color: #aaa;
    text-transform: none;
    font-family: 'PT Sans', sans-serif;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'PT Sans', sans-serif;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--yellow);
}

.header-phone {
    text-align: right;
}

.header-phone a {
    display: block;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.header-phone a:hover {
    color: var(--yellow);
}

.header-phone span {
    font-size: 11px;
    color: #888;
    display: block;
}

/* ===== HERO ===== */
.hero {
    background: var(--black);
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: url('./background.png') center/cover no-repeat;
    opacity: 0.95;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, var(--black) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px 60px;
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero h1 .accent {
    color: var(--yellow);
    display: block;
}

.hero-sub {
    font-size: 20px;
    color: #ddd;
    margin: 16px 0 28px;
    line-height: 1.4;
    font-family: 'PT Sans', sans-serif;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    font-family: 'PT Sans', sans-serif;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 16px;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}

.hero-reply {
    margin-top: 12px;
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-reply::before {
    content: '↩';
    font-size: 15px;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: var(--dark2);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.urgency-bar .warn {
    font-size: 20px;
}

/* ===== SITUATIONS ===== */
.section {
    padding: 64px 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.situations {
    background: var(--white);
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 24px;
}

.situation-card {
    text-align: center;
}

.situation-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    display: block;
    overflow: hidden;
}

.situation-img-wrap {
    position: relative;
    margin-bottom: 10px;
}

.situation-img-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    filter: grayscale(20%);
}

.situation-img-wrap::before {
    content: '✕';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 22px;
    text-align: center;
}

.situation-card p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text);
    font-weight: 700;
}

.situation-note {
    text-align: center;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== HOW WE SOLVE ===== */
.how-section {
    background: var(--light-gray);
}

.process-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex: 1;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: 10px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.step-title {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text);
    font-family: 'PT Sans', sans-serif;
}

.step-arrow {
    color: var(--yellow);
    font-size: 24px;
    padding-top: 24px;
    flex-shrink: 0;
}

.result-box {
    background: var(--black);
    color: var(--white);
    border-left: 4px solid var(--yellow);
    padding: 24px 28px;
    min-width: 220px;
    border-radius: 6px;
}

.result-box h4 {
    font-size: 16px;
    color: var(--yellow);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.result-box li {
    list-style: none;
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-box li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
}

/* ===== PRICING + WHY ===== */
.bottom-section {
    background: var(--black);
    color: var(--white);
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-col {
    padding: 40px 36px;
    border-right: 1px solid #333;
}

.pricing-col h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-val {
    color: var(--yellow);
    font-weight: 700;
    white-space: nowrap;
}

.price-note {
    margin-top: 20px;
    background: #2a2a2a;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-note-icon {
    font-size: 20px;
}

.why-col {
    padding: 40px 36px;
    border-right: 1px solid #333;
}

.why-col h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: #ddd;
}

.why-item::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.cta-col {
    padding: 40px 36px;
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-col h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.cta-col p {
    font-size: 14px;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background: #333;
}

.cta-col .hint {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== MAP + REVIEWS ===== */
.geo-reviews {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
}

.geo-col {
    padding: 52px 60px;
    border-right: 1px solid #e5e5e5;
}

.geo-col h3 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.geo-col p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.map-placeholder {
    background: #e8ebe8;
    border-radius: 8px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 40px;
    position: relative;
    overflow: hidden;
    background-image: url(./map.png);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(#ccc 1px, transparent 1px),
        linear-gradient(90deg, #ccc 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.reviews-col {
    padding: 52px 60px;
}

.reviews-col h3 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.review-card {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px 22px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--yellow);
    position: absolute;
    top: -8px;
    left: 18px;
    line-height: 1;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    padding-top: 16px;
    margin-bottom: 12px;
}

.review-author {
    font-size: 13px;
    color: #888;
    font-weight: 700;
}

.review-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: var(--yellow);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    background: var(--dark2);
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-cta-text h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.footer-cta-text p {
    color: #aaa;
    font-size: 14px;
}

.footer-cta-right {
    text-align: center;
}

.footer-cta-right a {
    display: block;
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.footer-cta-right span {
    font-size: 13px;
    color: #888;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeUp 0.6s ease both;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.55s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.65s;
}

/* Pulse on CTA button */
@keyframes pulse-yellow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(246, 192, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(246, 192, 0, 0);
    }
}

.btn-primary {
    animation: pulse-yellow 2s ease-in-out 1s infinite;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .geo-reviews {
        grid-template-columns: 1fr;
    }

    .process-row {
        flex-direction: column;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 40px 20px;
    }
}