:root {
    --turquoise: #40E0D0;
    --turquoise-dark: #2bb8a8;
    --turquoise-deep: #1a8a7e;
    --turquoise-glow: rgba(64, 224, 208, 0.15);
    --gray-900: #1a1a1a;
    --gray-800: #242424;
    --gray-700: #2e2e2e;
    --gray-600: #404040;
    --gray-500: #A9A9A9;
    --gray-300: #d4d4d4;
    --gray-100: #f4f4f4;
    --white: #ffffff;
    --section-dark: #1e2424;
    --section-mid: #2a3030;
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--gray-900);
    color: var(--white);
    font-family: 'Crimson Pro', serif;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    z-index: 1000;
    background: var(--gray-900);
    border-bottom: 1px solid rgba(64, 224, 208, 0.6);
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    height: 60px;
}

#navbar.scrolled .nav-brand-zone {
    backdrop-filter: blur(12px);
}

#navbar.scrolled {
    border-bottom-color: var(--turquoise);
}

.nav-brand-zone {
    width: 32%;
    background: var(--section-dark);
    display: flex;
    align-items: center;
    padding: 0 28px;
    position: relative;
    border-left: 4px solid var(--turquoise);
    box-shadow: inset -4px 0 20px rgba(64, 224, 208, 0.1);
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.nav-brand-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    line-height: 1;
}

.nav-brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 9px;
    color: var(--turquoise);
    letter-spacing: 0.4em;
    line-height: 1;
    margin-top: 3px;
}

.nav-links-zone {
    width: 42%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-links-zone a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--gray-300);
    letter-spacing: 0.18em;
    text-decoration: none;
    padding: 0 14px;
    position: relative;
    transition: color 0.25s;
}

.nav-links-zone a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.25s ease;
}

.nav-links-zone a:hover,
.nav-links-zone a.active {
    color: var(--turquoise);
}

.nav-links-zone a:hover::after,
.nav-links-zone a.active::after {
    width: calc(100% - 28px);
}

.nav-sep {
    color: var(--turquoise);
    opacity: 0.3;
    font-size: 7px;
    user-select: none;
    pointer-events: none;
}

.nav-cta-zone {
    width: 26%;
    background: linear-gradient(135deg, #40E0D0, #2bb8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.2s;
    text-decoration: none;
}

.nav-cta-zone:hover {
    background: linear-gradient(135deg, #2bb8a8, #1a8a7e);
    transform: scale(1.02);
}

.nav-cta-text {
    display: flex;
    flex-direction: column;
}

.nav-phone-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
}

.nav-free {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 9px;
    color: var(--gray-700);
    letter-spacing: 0.2em;
    margin-top: 2px;
}

/* hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 20px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--turquoise);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--gray-900);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.open {
    transform: translateY(0);
}

.mobile-overlay a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    text-decoration: none;
    line-height: 60px;
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);
    width: 80%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.mobile-overlay.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay a:hover {
    color: var(--turquoise);
}

.mobile-phone {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 22px;
    color: var(--turquoise);
    margin-top: 24px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--turquoise);
    cursor: pointer;
    background: none;
    border: none;
}

/* ─── HERO ─── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 36, 36, 0.75);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, rgba(26, 36, 36, 0.6) 100%);
}

.hero-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.08) 0%, transparent 70%);
    animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    color: var(--turquoise);
    letter-spacing: 0.35em;
    opacity: 0;
    animation: fadeIn 0.7s ease forwards;
}

.hero-rule {
    width: 80px;
    height: 2px;
    background: var(--turquoise);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
    margin: 16px auto;
    opacity: 0;
    animation: fadeIn 0.7s 0.1s ease forwards;
}

.hero-h1-a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 8vw, 94px);
    color: var(--white);
    line-height: 0.95;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s 0.2s ease forwards;
}

.hero-h1-b {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 8vw, 94px);
    color: var(--turquoise);
    line-height: 0.95;
    text-shadow: 0 0 30px rgba(64, 224, 208, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s 0.35s ease forwards;
    margin-bottom: 22px;
}

.hero-sub {
    font-family: 'Crimson Pro', serif;
    font-weight: 400;
    font-size: 19px;
    color: var(--gray-300);
    max-width: 560px;
    line-height: 1.75;
    opacity: 0;
    animation: fadeIn 0.7s 0.5s ease forwards;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.7s 0.65s ease forwards;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--gray-900);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    padding: 16px 36px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--turquoise-dark);
    box-shadow: 0 6px 24px rgba(64, 224, 208, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--turquoise);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    padding: 16px 36px;
    border-radius: 3px;
    border: 2px solid var(--turquoise);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--turquoise);
    color: var(--gray-900);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.7s 0.8s ease forwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--gray-300);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--turquoise);
}

.scroll-ind {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 1s 1.2s ease forwards;
}

.scroll-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--turquoise);
    letter-spacing: 0.3em;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--turquoise);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    width: 2px;
    height: 8px;
    background: var(--white);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        top: -8px;
    }

    100% {
        top: 40px;
    }
}

/* corner brackets */
.hero-corner {
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
}

.hero-corner::before,
.hero-corner::after {
    content: '';
    position: absolute;
    background: var(--turquoise);
}

.hero-corner::before {
    width: 2px;
    height: 40px;
}

.hero-corner::after {
    width: 40px;
    height: 2px;
}

.hero-corner.tl {
    top: 100px;
    left: 40px;
}

.hero-corner.tr {
    top: 100px;
    right: 40px;
}

.hero-corner.bl {
    bottom: 80px;
    left: 40px;
}

.hero-corner.br {
    bottom: 80px;
    right: 40px;
}

.hero-corner.tl::before {
    top: 0;
    left: 0;
}

.hero-corner.tl::after {
    top: 0;
    left: 0;
}

.hero-corner.tr::before {
    top: 0;
    right: 0;
}

.hero-corner.tr::after {
    top: 0;
    right: 0;
}

.hero-corner.bl::before {
    bottom: 0;
    left: 0;
}

.hero-corner.bl::after {
    bottom: 0;
    left: 0;
}

.hero-corner.br::before {
    bottom: 0;
    right: 0;
}

.hero-corner.br::after {
    bottom: 0;
    right: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* ─── GENERAL SECTION ANIM ─── */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SECTION 3 — SERVICES ─── */
#services {
    background: var(--section-dark);
    position: relative;
}

.services-label-bar {
    width: 100%;
    height: 48px;
    background: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.services-label-bar span:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-900);
    letter-spacing: 0.5em;
}

.services-label-bar span:last-child {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--gray-700);
}

.services-main {
    display: flex;
    min-height: 750px;
}

.services-img-zone {
    width: 44%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    overflow: hidden;
}

.services-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-img-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 36, 36, 0.9) 0%, transparent 100%);
}

.services-cert-strip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(26, 36, 36, 0.85);
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--turquoise);
    letter-spacing: 0.25em;
}

.services-exp-badge {
    position: absolute;
    top: 50%;
    right: -44px;
    transform: translateY(-50%);
    z-index: 10;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 24px rgba(64, 224, 208, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-exp-badge .num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--gray-900);
    line-height: 1;
}

.services-exp-badge .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 8px;
    color: var(--gray-900);
}

.services-content-zone {
    width: 56%;
    padding: 70px 60px 70px 80px;
    position: relative;
}

.micro-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    color: var(--turquoise);
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

.section-title-stack {
    line-height: 1;
}

.title-white {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white);
    display: block;
}

.title-teal {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--turquoise);
    display: block;
}

.teal-rule {
    width: 60px;
    height: 2px;
    background: var(--turquoise);
    box-shadow: 0 0 8px rgba(64, 224, 208, 0.4);
    margin: 20px 0;
}

.services-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.9;
    max-width: 540px;
    margin-bottom: 32px;
}

.service-list {
    list-style: none;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(169, 169, 169, 0.15);
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.service-row::before {
    content: '';
    position: absolute;
    left: -12px;
    width: 0;
    height: 100%;
    border-left: 3px solid var(--turquoise);
    transition: width 0s;
}

.service-row:hover {
    background: rgba(64, 224, 208, 0.05);
    padding-left: 12px;
}

.service-row:hover::before {
    width: 3px;
}

.service-row:hover .svc-name {
    color: var(--turquoise);
}

.svc-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.svc-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--turquoise);
    min-width: 32px;
}

.svc-vline {
    width: 2px;
    height: 22px;
    background: var(--turquoise);
    opacity: 0.5;
}

.svc-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: color 0.2s;
}

.svc-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    color: var(--gray-500);
    max-width: 240px;
    text-align: right;
}

.svc-arrow {
    color: var(--turquoise);
    font-size: 18px;
}

.services-cta-strip {
    width: calc(100% + 60px);
    margin-left: -60px;
    height: 52px;
    background: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    margin-top: 32px;
    cursor: pointer;
    transition: background 0.2s;
}

.services-cta-strip:hover {
    background: var(--turquoise-dark);
}

.services-cta-strip .cta-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
}

.services-cta-strip .cta-free {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--gray-700);
}

/* ─── SECTION 4 — WHY CHOOSE ─── */
#whyus {
    background: var(--gray-900);
    padding: 100px 60px;
    position: relative;
}

#whyus::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(64, 224, 208, 0.02) 0px, rgba(64, 224, 208, 0.02) 1px, transparent 1px, transparent 12px);
    pointer-events: none;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.sh-micro {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--turquoise);
    letter-spacing: 0.35em;
    margin-bottom: 12px;
}

.sh-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 58px);
    color: var(--white);
    margin-bottom: 20px;
}

.sh-rule {
    width: 70px;
    height: 2px;
    background: var(--turquoise);
    box-shadow: 0 0 8px rgba(64, 224, 208, 0.4);
    margin: 0 auto 20px;
}

.sh-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gray-300);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: var(--gray-800);
    border: 1px solid rgba(169, 169, 169, 0.1);
    border-top: 3px solid var(--turquoise);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.why-card:hover {
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.15);
    transform: translateY(-5px);
}

.ghost-num {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 120px;
    color: rgba(64, 224, 208, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.why-card-tall {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.06) 0%, transparent 60%) var(--gray-800);
}

.why-card-wide {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--section-dark) 0%, var(--section-mid) 100%);
    border-top: 2px solid rgba(64, 224, 208, 0.3);
    text-align: center;
    padding: 48px 60px;
}

.why-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.why-icon-lg {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.why-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card-title-lg {
    font-size: 26px;
}

.why-card-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.why-card-desc-lg {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.85;
}

.why-badge-strip {
    margin-top: 24px;
    padding: 10px 16px;
    background: rgba(64, 224, 208, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--turquoise);
    letter-spacing: 0.15em;
}

.why-quote-mark {
    font-family: 'Crimson Pro', serif;
    font-size: 80px;
    color: var(--turquoise);
    line-height: 0.8;
    margin-bottom: 16px;
    display: block;
}

.why-quote-text {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.why-quote-attr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--turquoise);
}

/* ─── SECTION 5 — FAQ ─── */
#faq {
    background: var(--section-dark);
    display: flex;
    min-height: 700px;
}

.faq-left {
    width: 40%;
    position: sticky;
    top: 76px;
    height: fit-content;
    background: linear-gradient(160deg, var(--turquoise-deep) 0%, var(--section-dark) 100%);
    border-right: 2px solid rgba(64, 224, 208, 0.2);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.faq-ghost {
    position: absolute;
    bottom: -30px;
    left: -20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.faq-micro {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--turquoise);
    letter-spacing: 0.4em;
    margin-bottom: 8px;
}

.faq-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.faq-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-divider {
    width: 100%;
    height: 1px;
    background: rgba(64, 224, 208, 0.3);
    margin-bottom: 24px;
}

.faq-contact-info {
    margin-bottom: 28px;
}

.faq-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
}

.faq-phone:hover {
    color: var(--turquoise);
}

.faq-addr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.faq-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--turquoise);
    color: var(--gray-900);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.faq-cta-btn:hover {
    background: var(--turquoise-dark);
}

.faq-right {
    width: 60%;
    padding: 60px 56px;
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(169, 169, 169, 0.12);
    transition: all 0.2s;
}

.faq-item.open {
    background: rgba(64, 224, 208, 0.04);
    border-left: 3px solid var(--turquoise);
    padding-left: 16px;
}

.faq-city-pill {
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 20px;
    background: var(--turquoise);
    color: var(--gray-900);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.2em;
    border-radius: 3px;
    padding: 3px 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    cursor: pointer;
}

.faq-q-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--white);
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--turquoise);
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.9;
    padding-bottom: 24px;
}

/* ─── WAVE DIVIDER ─── */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ─── SECTION 6 — FEATURED SERVICES ─── */
#featured {
    background: var(--gray-100);
}

.featured-header {
    padding: 80px 60px 48px;
}

.feat-micro {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--turquoise-deep);
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.feat-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6vw, 68px);
    color: var(--gray-900);
    line-height: 0.9;
    margin-bottom: 16px;
}

.feat-rule {
    width: 70px;
    height: 2px;
    background: var(--turquoise);
    margin-bottom: 0;
}

.feat-row {
    display: flex;
    min-height: 520px;
    align-items: stretch;
}

.feat-row-dark {
    background: var(--gray-900);
}

.feat-row-light {
    background: var(--gray-100);
}

.feat-img-zone {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.feat-img-zone.diagonal-cut {
    clip-path: polygon(0 0, 95% 0, 80% 100%, 0 100%);
}

.feat-img-zone.diagonal-cut-r {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%);
}

.feat-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-img-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 36, 36, 0.8) 0%, transparent 100%);
}

.feat-badge {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    z-index: 10;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feat-badge .b-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--gray-900);
    line-height: 1;
}

.feat-content {
    width: 55%;
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-content-wide {
    width: 60%;
}

.feat-content-60 {
    width: 60%;
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-svc-micro {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--turquoise-deep);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.feat-svc-micro-light {
    color: var(--turquoise);
}

.feat-svc-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--gray-900);
    line-height: 1.05;
    margin-bottom: 16px;
}

.feat-svc-title-dark {
    color: var(--white);
}

.feat-svc-title-line2 {
    color: var(--turquoise-deep);
}

.feat-svc-title-line2-dark {
    color: var(--turquoise);
}

.feat-svc-rule {
    width: 50px;
    height: 2px;
    background: var(--turquoise);
    margin-bottom: 20px;
}

.feat-svc-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 17px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.feat-svc-desc-dark {
    color: var(--gray-300);
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feat-tag {
    background: rgba(64, 224, 208, 0.12);
    border: 1px solid var(--turquoise);
    color: var(--turquoise-deep);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 3px;
}

.feat-tag-dark {
    color: var(--turquoise);
}

.feat-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--turquoise-deep);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    display: inline-block;
}

.feat-link:hover {
    text-decoration: underline;
}

.feat-link-dark {
    color: var(--turquoise);
}

.feat-ghost-zone {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feat-ghost-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 280px;
    color: rgba(64, 224, 208, 0.05);
    line-height: 1;
    position: absolute;
    user-select: none;
}

.feat-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(64, 224, 208, 0.5);
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.2);
    position: relative;
    z-index: 1;
}

/* ─── SECTION 7 — CTA BANNER ─── */
#cta-banner {
    height: 420px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.cta-left {
    width: 58%;
    background: linear-gradient(135deg, var(--turquoise-deep) 0%, var(--turquoise) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 56px);
    color: var(--gray-900);
    margin-bottom: 16px;
}

.cta-sub {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    color: rgba(26, 36, 36, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--gray-900);
    color: var(--turquoise);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    padding: 16px 32px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-dark:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-900);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    padding: 16px 32px;
    border-radius: 3px;
    border: 2px solid var(--gray-900);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.cta-right {
    width: 42%;
    background: var(--gray-900);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-trust-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.cta-trust-rule {
    width: 100%;
    height: 1px;
    background: rgba(64, 224, 208, 0.2);
}

/* ─── SECTION 8 — WHAT WE DO ─── */
#whatwedo {
    background: var(--section-dark);
    padding: 100px 0;
}

.whatwedo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.marquee-strip {
    width: 100%;
    height: 48px;
    overflow: hidden;
    background: rgba(64, 224, 208, 0.08);
    border-top: 1px solid rgba(64, 224, 208, 0.2);
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
    display: flex;
    align-items: center;
    margin: 36px 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--turquoise);
    letter-spacing: 0.2em;
    padding: 0 24px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 24px;
}

.icon-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.3s ease;
}

.icon-col:hover::after {
    width: 60%;
}

.icon-col svg {
    margin-bottom: 18px;
}

.icon-col-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.icon-col-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.seasonal-header {
    text-align: center;
    margin-bottom: 48px;
}

.seasonal-micro {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--turquoise);
    letter-spacing: 0.4em;
    margin-bottom: 8px;
}

.seasonal-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 54px;
    color: var(--white);
    margin-bottom: 12px;
}

.seasonal-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gray-500);
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.season-card {
    border-top: 4px solid var(--turquoise);
    border-radius: 4px;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.season-card.spring {
    background: rgba(26, 42, 36, 0.8);
}

.season-card.summer {
    background: rgba(30, 40, 30, 0.8);
}

.season-card.fall {
    background: rgba(36, 30, 20, 0.8);
}

.season-card.winter {
    background: rgba(20, 28, 36, 0.8);
}

.season-card:hover {
    background: rgba(64, 224, 208, 0.06);
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.1);
}

.season-ghost {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 100px;
    color: rgba(64, 224, 208, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.season-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.season-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.season-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--turquoise);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.season-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ─── SECTION 9 — CONTACT ─── */
#contact {
    background: var(--gray-900);
    padding: 100px 0 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 60px;
}

.contact-main {
    display: flex;
    min-height: 600px;
}

.contact-info-zone {
    width: 44%;
    background: linear-gradient(160deg, var(--section-mid) 0%, var(--section-dark) 100%);
    border-right: 1px solid rgba(64, 224, 208, 0.15);
    padding: 60px 48px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-block svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.ci-address {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.ci-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--gray-400);
}

.ci-phone {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--turquoise);
    text-decoration: none;
}

.ci-phone:hover {
    color: var(--turquoise-dark);
}

.ci-web {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--turquoise);
}

.ci-hours {
    font-family: 'Crimson Pro', serif;
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

.contact-map {
    width: 100%;
    height: 460px;
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 4px;
    margin: 28px 0;
    filter: grayscale(90%) contrast(1.05) brightness(0.8);
}

.contact-kpi-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
}

.kpi-item {
    text-align: center;
    flex: 1;
}

.kpi-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--turquoise);
    display: block;
    line-height: 1;
}

.kpi-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--gray-500);
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.kpi-divider {
    width: 1px;
    height: 30px;
    background: rgba(64, 224, 208, 0.3);
}

.contact-form-zone {
    width: 56%;
    background: var(--gray-800);
    padding: 60px 56px;
}

.form-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 8px;
}

.form-sub {
    font-family: 'Crimson Pro', serif;
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 36px;
}

.form-field {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(169, 169, 169, 0.25);
    color: var(--white);
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    padding: 14px 4px;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-field select option {
    background: var(--gray-800);
    color: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--turquoise);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-500);
}

.form-field select {
    cursor: pointer;
}

.form-field textarea {
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    position: absolute;
    bottom: -20px;
    left: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #ff6b6b;
    display: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-bottom-color: #ff6b6b;
}

.form-field.has-error .form-error {
    display: block;
}

.submit-btn {
    width: 100%;
    height: 52px;
    background: var(--turquoise);
    color: var(--gray-900);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: var(--turquoise-dark);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.4);
}

.form-privacy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gray-600);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.success-check {
    font-size: 56px;
    margin-bottom: 16px;
}

.success-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--turquoise);
}

.success-msg {
    font-family: 'Crimson Pro', serif;
    font-size: 17px;
    color: var(--gray-300);
    margin-top: 8px;
}

/* ─── FOOTER ─── */
#footer {
    background: var(--gray-900);
}

.footer-marquee {
    width: 100%;
    height: 52px;
    overflow: hidden;
    background: var(--turquoise);
    display: flex;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    border-top: 2px solid rgba(64, 224, 208, 0.1);
}

.footer-cell {
    padding: 56px 48px;
    border-right: 1px solid rgba(64, 224, 208, 0.08);
}

.footer-cell:last-child {
    border-right: none;
}

.footer-brand-icon {
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--white);
    line-height: 0.9;
}

.footer-brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--turquoise);
    letter-spacing: 0.4em;
    margin-bottom: 16px;
    display: block;
}

.footer-brand-desc {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-addr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 2.2;
}

.footer-phone {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: var(--turquoise);
    text-decoration: none;
    display: block;
    margin-top: 12px;
}

.footer-col-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--turquoise);
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}

.footer-rule {
    width: 30px;
    height: 2px;
    background: var(--turquoise);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: 8px 0;
}

.footer-links a {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a .arr {
    opacity: 0;
    color: var(--turquoise);
    transition: opacity 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover .arr {
    opacity: 1;
}

.footer-areas {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 2.0;
}

.footer-hours {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 2.0;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-social {
    color: var(--gray-500);
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
}

.footer-social:hover {
    color: var(--turquoise);
    transform: scale(1.15);
}

.footer-cta {
    display: block;
    width: 100%;
    height: 44px;
    background: var(--turquoise);
    color: var(--gray-900);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.footer-cta:hover {
    background: var(--turquoise-dark);
}

.copyright-bar {
    height: 48px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.copy-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gray-600);
}

.copy-site {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--turquoise);
}

/* ─── RESPONSIVE ─── */
@media (max-width:768px) {
    .nav-links-zone {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-overlay {
        display: flex;
    }

    .nav-cta-zone {
        clip-path: none;
        width: auto;
        flex: 1;
    }

    .nav-brand-zone {
        clip-path: none;
        width: auto;
    }

    #hero {
        padding: 0 20px;
    }

    .hero-corner {
        display: none;
    }

    .services-main {
        flex-direction: column;
    }

    .services-img-zone {
        width: 100%;
        clip-path: none;
        height: 300px;
    }

    .services-content-zone {
        width: 100%;
        padding: 40px 24px;
    }

    .services-exp-badge {
        right: 20px;
        top: 20px;
        transform: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card-tall,
    .why-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    #faq {
        flex-direction: column;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-left {
        position: relative;
        top: 0;
    }

    .feat-row {
        flex-direction: column;
    }

    .feat-img-zone,
    .feat-content,
    .feat-ghost-zone {
        width: 100%;
    }

    .feat-img-zone {
        height: 260px;
        clip-path: none !important;
    }

    .feat-badge {
        display: none;
    }

    #cta-banner {
        flex-direction: column;
        height: auto;
    }

    .cta-left {
        width: 100%;
        clip-path: none;
        padding: 40px 24px;
    }

    .cta-right {
        width: 100%;
        padding: 40px 24px;
    }

    .icon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .season-cards {
        grid-template-columns: 1fr 1fr;
    }

    .contact-main {
        flex-direction: column;
    }

    .contact-info-zone,
    .contact-form-zone {
        width: 100%;
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cell {
        border-right: none;
        padding: 32px 24px;
    }

    .copyright-bar {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 4px;
        text-align: center;
    }

    .services-label-bar,
    .form-row {
        flex-direction: column;
        height: auto;
    }

    .form-row {
        display: flex;
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .trust-divider {
        width: 30px;
        height: 1px;
    }
}


/* ─── SECTION — SERVICE AREAS ─── */
#service-areas {
    background: var(--gray-900);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

#service-areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(64, 224, 208, 0.015) 0px, rgba(64, 224, 208, 0.015) 1px, transparent 1px, transparent 16px);
    pointer-events: none;
}

.sa-ghost-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 360px;
    color: rgba(64, 224, 208, 0.025);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.sa-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.sa-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.sa-header-left {}

.sa-micro {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--turquoise);
    letter-spacing: 0.35em;
    margin-bottom: 10px;
}

.sa-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(44px, 6vw, 72px);
    color: var(--white);
    line-height: 0.9;
}

.sa-title-teal {
    color: var(--turquoise);
}

.sa-header-right {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--gray-400);
    max-width: 380px;
    line-height: 1.7;
    text-align: right;
}

/* county accordion tabs */
.sa-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sa-tab {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 10px 22px;
    border: 1.5px solid rgba(64, 224, 208, 0.3);
    color: var(--gray-400);
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.sa-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--turquoise);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 0;
}

.sa-tab span {
    position: relative;
    z-index: 1;
}

.sa-tab:hover,
.sa-tab.active {
    color: var(--gray-900);
    border-color: var(--turquoise);
}

.sa-tab:hover::before,
.sa-tab.active::before {
    transform: translateX(0);
}

/* county panels */
.sa-panel {
    display: none;
}

.sa-panel.active {
    display: block;
}

.sa-county-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.08) 0%, rgba(64, 224, 208, 0.02) 100%);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

.sa-county-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--turquoise);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

.sa-county-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
}

.sa-county-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--turquoise);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.sa-county-badge {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: var(--gray-900);
    background: var(--turquoise);
    padding: 6px 14px;
    border-radius: 3px;
    white-space: nowrap;
}

/* city grid */
.sa-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(64, 224, 208, 0.15);
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.sa-city-card {
    padding: 22px 24px;
    border-right: 1px solid rgba(64, 224, 208, 0.1);
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    background: var(--gray-800);
}

.sa-city-card:nth-child(4n) {
    border-right: none;
}

.sa-city-card:nth-last-child(-n+4) {
    border-bottom: none;
}

.sa-city-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--turquoise);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sa-city-card:hover {
    background: rgba(64, 224, 208, 0.05);
}

.sa-city-card:hover::before {
    transform: scaleX(1);
}

.sa-city-card:hover .sa-city-name {
    color: var(--turquoise);
}

.sa-city-zip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--turquoise);
    letter-spacing: 0.2em;
    margin-bottom: 6px;
    opacity: 0.7;
}

.sa-city-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    transition: color 0.25s;
    line-height: 1.1;
    margin-bottom: 4px;
}

.sa-city-state {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--gray-500);
}

.sa-city-dist {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(64, 224, 208, 0.4);
    letter-spacing: 0.1em;
}

/* bottom stats strip */
.sa-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    gap: 2px;
}

.sa-stat {
    background: var(--section-dark);
    padding: 24px 28px;
    position: relative;
    text-align: center;
    border-radius: 3px;
}