:root {
    --purple: #7B5EA7;
    --purple-light: #9B7EC8;
    --purple-dark: #5A3E85;
    --purple-pale: #EDE8F5;
    --purple-mid: #C4B0E0;
    --white: #FFFFFF;
    --off-white: #F8F6FC;
    --dark: #1A1025;
    --gray: #6B7280;
    --light-gray: #F3F0F9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ============ NAVBAR ============ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 48px;
    background: transparent;
}

#navbar.large {
    padding: 28px 48px;
    background: transparent;
}

#navbar.compact {
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(123, 94, 167, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.nav-brand-text .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    line-height: 1;
    transition: all 0.4s;
}

#navbar.large .brand-name {
    color: var(--white);
}

#navbar.compact .brand-name {
    color: var(--dark);
}

.nav-tagline {
    font-size: 11px;
    color: var(--purple-light);
    letter-spacing: 0.05em;
    transition: all 0.4s;
    overflow: hidden;
    max-height: 20px;
    opacity: 1;
}

#navbar.compact .nav-tagline {
    max-height: 0;
    opacity: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

#navbar.large .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

#navbar.compact .nav-links a {
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--purple-light) !important;
}

.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s;
    overflow: hidden;
}

.nav-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    overflow: hidden;
    max-height: 50px;
    opacity: 1;
    transition: all 0.4s;
}

#navbar.compact .nav-cta-group {
    max-height: 0;
    opacity: 0;
}

.nav-tagline-big {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s;
}

#navbar.compact .nav-tagline-big {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    display: none;
}

.btn-nav-cta {
    background: var(--white);
    color: var(--purple);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background: var(--purple-pale);
}

.btn-nav-phone {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-nav-phone:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-compact-phone {
    display: none;
}

#navbar.compact .nav-compact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

/* ============ HERO: CARD PEEL ============ */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 40%, #9B6FD0 70%, #C084FC 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Card Stack */
.card-stack {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.card-peel {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--purple-dark) 0%, #3D2568 100%);
    transform-origin: top center;
    transform: rotateX(0deg);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease;
    backface-visibility: hidden;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-peel.peeled {
    transform: rotateX(-90deg) translateZ(-200px);
    opacity: 0;
    pointer-events: none;
}

.card-peel-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.card-peel-hint svg {
    animation: bounceArrow 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.card-peel-content {
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.card-peel-content .logo-big {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 12vw, 140px);
    font-weight: 900;
    color: white;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.card-peel-content .tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-peel-content .location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* Hero revealed content */
.hero-revealed {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
}

.hero-revealed-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-text h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.hero-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--purple-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge span.dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

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

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* ============ ABOUT ============ */
#about {
    padding: 120px 48px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-pale) 0%, transparent 70%);
    pointer-events: none;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: 32px;
    padding: 60px 48px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(123, 94, 167, 0.3);
}

.about-main-card::before {
    content: 'J&S';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    pointer-events: none;
}

.about-main-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.about-main-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.about-float-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(123, 94, 167, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-float-card.top-right {
    top: -24px;
    right: -24px;
}

.about-float-card.bottom-left {
    bottom: -24px;
    left: -24px;
}

.float-icon {
    width: 48px;
    height: 48px;
    background: var(--purple-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.float-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.float-value {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s;
}

.about-feature:hover {
    background: var(--purple-pale);
    transform: translateX(4px);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============ SERVICES TIMELINE ============ */
#services {
    padding: 120px 48px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before {
    display: none;
}

.services-header .section-title {
    color: white;
}

.services-header .section-desc {
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(123, 94, 167, 0.2);
}

.timeline-progress {
    position: absolute;
    left: 23px;
    top: 0;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--purple-light), var(--purple));
    transition: height 0.1s linear;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon-wrap {
    position: absolute;
    left: -80px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 6px rgba(123, 94, 167, 0.15), 0 0 0 12px rgba(123, 94, 167, 0.05);
    position: relative;
    z-index: 3;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s;
}

.timeline-content:hover {
    background: rgba(123, 94, 167, 0.12);
    border-color: rgba(123, 94, 167, 0.3);
    transform: translateX(8px);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(123, 94, 167, 0.25);
    color: var(--purple-mid);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(123, 94, 167, 0.3);
}

.timeline-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    right: 32px;
    top: 12px;
    line-height: 1;
    pointer-events: none;
}

/* ============ FAQ ============ */
#faq {
    padding: 120px 48px;
    background: var(--off-white);
    position: relative;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(123, 94, 167, 0.06);
}

.faq-item.open {
    border-color: var(--purple-light);
    box-shadow: 0 4px 24px rgba(123, 94, 167, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-item.open .faq-question {
    color: var(--purple-dark);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--purple);
    transform: rotate(45deg);
}

.faq-icon svg {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
}

/* ============ HOW WE WORK ============ */
#how-we-work {
    padding: 120px 48px;
    background: white;
    position: relative;
    overflow: hidden;
}

#how-we-work::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-pale) 0%, transparent 70%);
    pointer-events: none;
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--purple));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(123, 94, 167, 0.2);
    transition: all 0.3s;
    position: relative;
}

.step-circle::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--purple-pale);
    border-radius: 50%;
}

.step:hover .step-circle {
    background: var(--purple);
    transform: scale(1.1);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--purple-dark);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* ============ SERVICE AREAS ============ */
#service-areas {
    padding: 120px 48px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.areas-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.areas-header .section-title {
    color: white;
}

.areas-header .section-desc {
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
}

.areas-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.areas-primary {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: 24px;
    padding: 32px 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(123, 94, 167, 0.3);
}

.areas-primary .primary-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.areas-primary .primary-city {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    font-weight: 900;
}

.areas-primary .primary-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    width: 100%;
}

.area-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.area-chip:hover {
    background: rgba(123, 94, 167, 0.25);
    border-color: var(--purple-light);
    transform: translateY(-3px);
}

.area-chip .city-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.area-chip .city-state {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============ FEATURED SERVICES SPLIT ============ */
#featured {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.split-panel {
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.split-panel.left {
    background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple) 100%);
}

.split-panel.right {
    background: linear-gradient(145deg, #1A1025 0%, #2D1B4E 100%);
}

.split-panel:hover {
    flex: 1.3;
}

.split-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s;
}

.split-panel:hover::before {
    background: rgba(0, 0, 0, 0.05);
}

.split-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.04);
    right: -20px;
    bottom: -20px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.split-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.split-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
}

.split-panel p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 32px;
}

.split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    width: fit-content;
}

.split-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.split-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 10;
}

.split-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    width: fit-content;
}

/* ============ CONTACT ============ */
#contact {
    padding: 120px 48px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--purple-pale) 0%, transparent 70%);
    pointer-events: none;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contact-inner .section-label {
    justify-content: center;
}

.contact-inner .section-label::before {
    display: none;
}

.contact-inner .section-title {
    font-size: clamp(36px, 4.5vw, 60px);
}

.contact-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(123, 94, 167, 0.08);
    border: 1.5px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(123, 94, 167, 0.18);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--purple-pale);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 4px;
}

.contact-card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
}

.contact-card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.contact-card-sub {
    font-size: 13px;
    color: var(--gray);
}

.contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(123, 94, 167, 0.1);
    border: 1px solid var(--purple-pale);
}

.hours-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.footer-brand-text .name {
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.footer-brand-text .address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-btn.phone {
    background: var(--purple);
    color: white;
}

.footer-btn.phone:hover {
    background: var(--purple-light);
}

.footer-btn.email {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-btn.email:hover {
    background: rgba(255, 255, 255, 0.14);
}

.footer-btn.map {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-btn.map:hover {
    background: rgba(255, 255, 255, 0.14);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    #navbar {
        padding: 16px 24px;
    }

    #navbar.large {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-revealed-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 80px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-float-card {
        display: none;
    }

    .timeline {
        padding-left: 60px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }

    .split-screen {
        grid-template-columns: 1fr;
    }

    .split-panel {
        min-height: 50vh;
    }

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    #hero,
    #about,
    #services,
    #faq,
    #how-we-work,
    #service-areas,
    #featured,
    #contact {
        padding: 80px 24px;
    }

    footer {
        padding: 32px 24px;
    }
}