@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --gold: #DCCC4B;
    --gold-dark: #c4b53e;
    --gold-light: #f0e68c;
    --gray: #706F6F;
    --gray-dark: #3a3a3a;
    --gray-light: #9a9999;
    --dark: #1a1a1a;
    --darker: #111;
    --light: #fff;
    --white: #fff;
    --off-white: #f8f7f4;
    --cream: #faf9f5
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 0 0 8px 0
}

.skip-link:focus-visible {
    left: 0
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

ul {
    list-style: none
}

/* ====== SCROLL PROGRESS BAR ====== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    z-index: 9999;
    width: 0;
    transition: none
}

/* ====== REVEAL SYSTEM ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1)
}

.stagger>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

.stagger.visible>* {
    opacity: 1;
    transform: translateY(0)
}

.stagger.visible>*:nth-child(1) {
    transition-delay: .06s
}

.stagger.visible>*:nth-child(2) {
    transition-delay: .14s
}

.stagger.visible>*:nth-child(3) {
    transition-delay: .22s
}

.stagger.visible>*:nth-child(4) {
    transition-delay: .30s
}

.stagger.visible>*:nth-child(5) {
    transition-delay: .38s
}

.stagger.visible>*:nth-child(6) {
    transition-delay: .46s
}

.stagger.visible>*:nth-child(7) {
    transition-delay: .54s
}

.stagger.visible>*:nth-child(8) {
    transition-delay: .62s
}

.stagger.visible>*:nth-child(9) {
    transition-delay: .70s
}

.stagger.visible>*:nth-child(10) {
    transition-delay: .78s
}

.stagger.visible>*:nth-child(11) {
    transition-delay: .86s
}

.stagger.visible>*:nth-child(12) {
    transition-delay: .94s
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--darker);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: .3px
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.top-bar a {
    color: var(--gold);
    font-weight: 500;
    transition: color .2s
}

.top-bar a:hover {
    color: var(--gold-light)
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

/* ====== HEADER ====== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06)
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.5px
}

.logo-image {
    display: block;
    width: auto;
    height: 52px;
    max-width: 220px
}

.logo-image-mobile {
    height: 40px;
    max-width: 180px
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--dark)
}

.logo-text span {
    color: var(--gold-dark)
}

.logo-wordmark {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.5px
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-link {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all .2s;
    white-space: nowrap
}

.nav-link:hover {
    background: var(--cream);
    color: var(--dark)
}

.nav-link.active {
    color: var(--gold-dark);
    background: rgba(220, 204, 75, .08)
}

.nav-cta {
    margin-left: 8px
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    padding: 4px
}

/* ====== MOBILE NAV ====== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--dark);
    padding: 4px
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    color: var(--gray-dark);
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0
}

.mobile-nav-link:hover {
    color: var(--gold-dark)
}

.mobile-nav-link.active {
    color: var(--gold-dark)
}

.mobile-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    gap: 8px;
    margin-top: 24px
}

.mobile-nav-cta svg {
    width: 18px;
    height: 18px
}

/* ====== HERO ====== */
.hero {
    background: var(--darker);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    position: relative;
    z-index: 2;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 204, 75, .12);
    border: 1px solid rgba(220, 204, 75, .25);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInUp .6s ease both
}

.hero-badge svg {
    width: 16px;
    height: 16px
}

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -2px;
    animation: fadeInUp .6s ease .1s both
}

.hero h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeInUp .6s ease .2s both
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp .6s ease .3s both
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    animation: fadeInUp .6s ease .4s both;
    flex-wrap: wrap;
    justify-content: flex-start
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55)
}

.hero-trust-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -.5px
}

.hero-google {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 10px 14px
}

.hero-google-stars {
    display: flex;
    gap: 2px
}

.hero-google-stars svg {
    width: 14px;
    height: 14px
}

.hero-google-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .55)
}

.hero-google-score {
    font-weight: 700;
    color: var(--gold);
    font-size: 14px
}

/* ====== BUTTONS ====== */
.btn-primary {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 204, 75, .3)
}

.btn-primary svg {
    width: 18px;
    height: 18px
}

.nav-desktop .btn-primary.nav-cta {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1;
    gap: 7px;
    min-height: 34px;
    white-space: nowrap
}

.nav-desktop .btn-primary.nav-cta svg {
    width: 15px;
    height: 15px
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    border: 1px solid rgba(255, 255, 255, .25);
    font-family: 'Plus Jakarta Sans', sans-serif
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-secondary svg {
    width: 18px;
    height: 18px
}

/* MAGNETIC BUTTON */
.btn-magnetic {
    transition: transform .2s ease-out
}

/* ====== MARQUEE ====== */
.marquee-section {
    background: var(--gold);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee-track-group {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0)
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center
}

.brand-marquee .marquee-track {
    justify-content: flex-start
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .5px;
    text-transform: uppercase
}

.brand-marquee .marquee-item {
    padding: 0 24px
}

.marquee-section.marquee-enhanced .marquee-track-group {
    animation: none;
    width: auto
}

.marquee-section.marquee-enhanced .marquee-track[aria-hidden="true"] {
    display: none
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--dark);
    border-radius: 50%;
    opacity: .4
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(-50%, 0, 0)
    }
}

/* ====== SECTIONS ====== */
.section {
    padding: 80px 0
}

.section-dark {
    background: var(--darker);
    color: var(--white)
}

.section-cream {
    background: var(--cream)
}

.section-gray {
    background: var(--off-white)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px
}

.section-label-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    display: inline-block
}

.section-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -1px
}

.section-dark .section-title {
    color: var(--white)
}

.section-dark .section-label {
    color: var(--gold)
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7
}

.section-label-gold {
    color: var(--gold)
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px
}

.section-title-spaced {
    margin-bottom: 32px
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, .55)
}

.btn-spaced-top {
    margin-top: 24px
}

.btn-block {
    width: 100%;
    justify-content: center
}

.btn-gap-top-sm {
    margin-top: 8px
}

/* ====== SERVICE CARDS — CURSOR SPOTLIGHT ====== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.service-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 204, 75, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.service-card:hover::before {
    opacity: 1
}

.service-card:hover {
    border-color: rgba(220, 204, 75, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(220, 204, 75, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 20px;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-8deg)
}

.service-icon svg {
    width: 28px;
    height: 28px
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
    margin-top: 16px;
    transition: gap .3s
}

.service-card-link svg {
    width: 16px;
    height: 16px
}

.service-card:hover .service-card-link {
    gap: 12px
}

/* ====== STATS — COUNTERS ====== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden
}

.stat-item {
    text-align: left;
    padding: 36px 28px;
    background: var(--darker)
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: -1px;
    line-height: 1;
    font-variant-numeric: tabular-nums
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .45)
}

/* ====== TWO COL ====== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.two-col-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream), #e8e6de);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ece8de;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .05)
}

.two-col-image-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.two-col-monogram {
    font-size: clamp(58px, 9vw, 92px);
    font-weight: 800;
    letter-spacing: -2px;
    color: rgba(26, 26, 26, .16);
    text-shadow: 0 8px 20px rgba(0, 0, 0, .08)
}

.process-step-center {
    text-align: center
}

.service-icon-center {
    margin: 0 auto 20px
}

.service-icon-hidden {
    display: none
}

/* ====== VIDEO EMBED ====== */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1)
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

/* ====== VIDEO PROOF ====== */
.proof-video-section {
    position: relative;
    overflow: hidden
}

.proof-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 220px at 50% 0,
            rgba(220, 204, 75, .14) 0%,
            rgba(220, 204, 75, .07) 38%,
            rgba(220, 204, 75, 0) 82%);
    pointer-events: none
}

.proof-video-section .container {
    position: relative;
    z-index: 1
}

.proof-video-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 42px
}

.proof-video-head .section-subtitle {
    max-width: 760px;
    margin: 0 auto
}

.proof-video-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: start
}

.proof-video-copy {
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(220, 204, 75, .4);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(26, 26, 26, .08)
}

.proof-checks {
    display: grid;
    gap: 14px;
    margin-bottom: 24px
}

.proof-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark)
}

.proof-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 8px 20px rgba(220, 204, 75, .35)
}

.proof-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--dark);
    background: rgba(220, 204, 75, .22);
    border: 1px solid rgba(220, 204, 75, .5);
    border-radius: 999px;
    padding: 8px 14px
}

.proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center
}

.proof-phone-cta {
    white-space: nowrap
}

.proof-video-media {
    position: relative;
    width: 100%;
    align-self: center;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(220, 204, 75, .35);
    border-radius: 20px;
    background: #000;
    box-shadow: 0 22px 52px rgba(17, 17, 17, .2);
    overflow: hidden
}

.proof-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

/* ====== PROJECT REFERENCES ====== */
.projects-section {
    position: relative;
    overflow: hidden
}

.projects-section::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 204, 75, .18) 0%, rgba(220, 204, 75, 0) 70%);
    pointer-events: none
}

.projects-head {
    max-width: 760px
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px
}

.project-card {
    background: var(--white);
    border: 1px solid #eceae3;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.project-card::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(220, 204, 75, .14) 0%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.project-card:hover::before {
    opacity: 1
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 204, 75, .55);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .08)
}

.project-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: 1px solid #eceae3
}

.project-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.project-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(220, 204, 75, .2);
    color: #8b7a1b
}

.project-location {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600
}

.project-card h3 {
    font-size: 21px;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.4px
}

.project-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65
}

.project-metrics {
    margin-top: auto;
    display: grid;
    gap: 8px
}

.project-metrics li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-dark)
}

.project-metrics strong {
    font-size: 15px;
    color: var(--dark)
}

.projects-cta {
    margin-top: 30px;
    border: 1px solid #e8e5dc;
    border-radius: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .65);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px
}

.projects-cta p {
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 600
}

/* ====== BENEFITS + TRUST ====== */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    display: grid;
    gap: 12px
}

.benefit-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.52;
    border: 1px solid #eceae3;
    border-radius: 14px;
    background: rgba(255, 255, 255, .84);
    overflow: hidden;
    transition: border-color .28s, box-shadow .28s, transform .28s
}

.benefit-item::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(220, 204, 75, .16) 0%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.benefit-item:hover::before {
    opacity: 1
}

.benefit-item:hover {
    border-color: rgba(220, 204, 75, .55);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .06)
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(220, 204, 75, .2);
    color: #8b7a1b
}

.benefit-icon svg {
    width: 14px;
    height: 14px
}

.trust-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #faf9f5 0%, #f2f0e9 100%)
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 204, 75, .22) 0%, rgba(220, 204, 75, 0) 70%);
    pointer-events: none
}

.trust-surface {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(135deg, #141414 0%, #1d1d1d 42%, #2a2a2a 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
    padding: clamp(30px, 4vw, 46px);
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 30px;
    overflow: hidden
}

.trust-surface::before {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 204, 75, .24) 0%, rgba(220, 204, 75, 0) 74%);
    pointer-events: none
}

.trust-intro {
    position: relative;
    z-index: 1
}

.trust-section .section-label {
    color: rgba(220, 204, 75, .95)
}

.trust-section .section-label-line {
    background: var(--gold)
}

.trust-section .section-title {
    color: var(--white);
    font-size: clamp(34px, 4.3vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    max-width: 640px
}

.trust-lead {
    font-size: 17px;
    line-height: 1.74;
    color: rgba(255, 255, 255, .74);
    max-width: 560px;
    margin: 0 0 22px
}

.trust-numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px
}

.trust-number {
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    display: grid;
    gap: 3px
}

.trust-number strong {
    font-size: 26px;
    color: var(--white);
    letter-spacing: -.8px;
    line-height: 1
}

.trust-number span {
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    line-height: 1.35
}

.benefits-list-premium {
    margin-top: 0;
    align-self: stretch;
    align-content: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 100%
}

.benefits-list-premium .benefit-item {
    min-height: 0;
    height: 100%;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .94);
    align-items: center;
    gap: 0;
    padding: 16px 18px 16px 24px
}

.benefits-list-premium .benefit-item::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(129, 197, 126, .85) 0%, rgba(129, 197, 126, .2) 100%);
    box-shadow: 0 0 12px rgba(129, 197, 126, .24);
    opacity: .82;
    transition: opacity .28s, box-shadow .28s
}

.benefits-list-premium .benefit-item:hover {
    border-color: rgba(220, 204, 75, .76);
    background: rgba(255, 255, 255, .1)
}

.benefits-list-premium .benefit-item:hover::after {
    opacity: 1;
    box-shadow: 0 0 16px rgba(129, 197, 126, .34)
}

.benefits-list-premium .benefit-icon {
    display: none
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 48px
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.testimonial-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 204, 75, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.testimonial-card:hover::before {
    opacity: 1
}

.testimonial-card:hover {
    border-color: rgba(220, 204, 75, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px
}

.testimonial-stars svg {
    width: 18px;
    height: 18px
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px
}

.testimonial-author {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark)
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    color: rgba(220, 204, 75, .12);
    line-height: 1;
    font-weight: 800
}

/* ====== PROCESS ====== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px
}

.process-step {
    text-align: left;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.process-step::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 204, 75, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.process-step:hover::before {
    opacity: 1
}

.process-step:hover {
    border-color: rgba(220, 204, 75, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 20px;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(-8deg)
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

/* ====== TEAM ====== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.team-member {
    text-align: center;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.team-member::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(220, 204, 75, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.team-member:hover::before {
    opacity: 1
}

.team-member:hover {
    border-color: rgba(220, 204, 75, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cream), #e8e6de);
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-dark)
}

.team-member-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark)
}

.team-member-role {
    font-size: 12px;
    color: var(--gray)
}

/* ====== TEAM SHOWCASE ====== */
.team-section .section-subtitle {
    max-width: 760px
}

.team-showcase {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 28px;
    align-items: stretch
}

.team-photo-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e5dc;
    box-shadow: 0 20px 56px rgba(0, 0, 0, .08)
}

.team-photo {
    width: 100%;
    min-height: 460px;
    height: 100%;
    object-fit: cover
}

.team-photo-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 14px;
    background: rgba(17, 17, 17, .82);
    color: var(--white);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px)
}

.team-photo-badge strong {
    font-size: 16px;
    font-weight: 700
}

.team-photo-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, .8)
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.team-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px
}

.team-kpi {
    border: 1px solid #e8e5dc;
    border-radius: 14px;
    background: var(--white);
    padding: 14px 12px;
    text-align: center;
    display: grid;
    gap: 4px
}

.team-kpi strong {
    font-size: 24px;
    letter-spacing: -.7px;
    color: var(--dark)
}

.team-kpi span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600
}

.team-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px
}

.team-role-card {
    background: var(--white);
    border: 1px solid #eceae3;
    border-radius: 12px;
    padding: 12px 14px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s
}

.team-role-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(220, 204, 75, .14) 0%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.team-role-card:hover::before {
    opacity: 1
}

.team-role-card:hover {
    border-color: rgba(220, 204, 75, .55);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06)
}

.team-role-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark)
}

.team-role-job {
    margin-top: 3px;
    font-size: 12px;
    color: var(--gray);
    font-weight: 600
}

.team-note {
    margin-top: 6px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #eceae3;
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-dark)
}

/* ====== PARTNERS ====== */
.partner-slider {
    overflow: hidden;
    margin-top: 40px;
    padding: 24px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent)
}

.partner-slider-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: partnerScroll 30s linear infinite
}

.partner-logo-img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: .45;
    filter: grayscale(100%);
    transition: all .4s ease;
    flex-shrink: 0
}

.partner-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08)
}

@keyframes partnerScroll {
    0% { transform: translateX(0) }
    100% { transform: translateX(-50%) }
}

/* ====== FAQ ====== */
.faq-list {
    margin-top: 40px
}

.faq-item {
    border-bottom: 1px solid #eee
}

.section-dark .faq-item {
    border-bottom-color: rgba(255, 255, 255, .1)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color .2s, padding-left .3s
}

.faq-question:hover {
    color: var(--gold-dark);
    padding-left: 6px
}

.section-dark .faq-question {
    color: rgba(255, 255, 255, .85)
}

.section-dark .faq-question:hover {
    color: var(--gold)
}

.faq-chevron {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
    flex-shrink: 0;
    margin-left: 16px
}

.faq-chevron.open {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.16, 1, .3, 1)
}

.faq-answer.open {
    max-height: 400px
}

.faq-answer-inner {
    padding-bottom: 20px
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7
}

.section-dark .faq-answer p {
    color: rgba(255, 255, 255, .5)
}

/* ====== CTA BANNER ====== */
.cta-banner {
    background: var(--dark);
    border-radius: 20px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden
}

.cta-banner h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -.5px
}

.cta-banner p {
    color: rgba(255, 255, 255, .55);
    font-size: 16px
}

.cta-banner-text {
    position: relative;
    z-index: 1
}

.cta-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

/* ====== CONTACT ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 204, 75, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: all .35s cubic-bezier(.16, 1, .3, 1)
}

.contact-info-item:hover .contact-info-icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1) rotate(-5deg)
}

.contact-info-icon svg {
    width: 20px;
    height: 20px
}

.contact-info-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px
}

.contact-info-value {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark)
}

.contact-info-value a {
    color: var(--dark)
}

.contact-info-value a:hover {
    color: var(--gold-dark)
}

.contact-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 32px
}

.contact-form-title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -.4px
}

.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    transition: border-color .2s, box-shadow .2s;
    background: var(--white);
    -webkit-appearance: none
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(220, 204, 75, .12)
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    text-align: center
}

.form-narrow {
    max-width: 600px
}

.form-intro {
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 300
}

.jobs-list {
    margin-top: 32px
}

.calculator-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--gray-dark);
    line-height: 1.7
}

.calculator-frame-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    background: #fff
}

.calculator-frame {
    border: 0;
    min-width: 100%;
    margin: 0;
    overflow: hidden;
    height: 582px;
    width: 100%;
    display: block
}

.trust-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--cream);
    border-radius: 12px
}

.trust-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.trust-box-header svg {
    width: 24px;
    height: 24px;
    color: var(--gold-dark)
}

.trust-box-header span {
    font-weight: 700;
    color: var(--dark)
}

.trust-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

/* ====== PAGE HERO ====== */
.page-hero {
    background: var(--darker);
    color: var(--white);
    padding: 60px 0 50px
}

.page-hero .container {
    position: relative;
    z-index: 2
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px
}

.page-hero h1 em {
    color: var(--gold);
    font-style: normal
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    line-height: 1.7
}

.page-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap
}

/* ====== JOBS ====== */
.job-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.job-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 204, 75, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    transform: translate(-50%, -50%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%)
}

.job-card:hover::before {
    opacity: 1
}

.job-card:hover {
    border-color: rgba(220, 204, 75, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.job-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 700
}

.job-badge {
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700
}

.job-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px
}

.job-perk {
    background: rgba(220, 204, 75, .1);
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600
}

/* ====== FOOTER ====== */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 64px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.5px
}

.logo-image-footer {
    height: 56px;
    max-width: 230px
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 280px
}

.footer h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold)
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    padding: 6px 0;
    transition: color .2s, padding-left .3s
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 4px
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .55)
}

.footer-contact-item a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    flex-wrap: wrap;
    gap: 12px
}

.footer-legal {
    display: flex;
    gap: 20px
}

.footer-legal a {
    color: rgba(255, 255, 255, .3)
}

.footer-legal a:hover {
    color: var(--gold)
}

/* ====== STICKY CTA — PULSE ====== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--dark);
    padding: 12px 16px;
    display: none;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
    border-top: 2px solid var(--gold)
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.sticky-cta-btn svg {
    width: 18px;
    height: 18px
}

.sticky-cta-call {
    animation: pulseGold 2.5s ease-in-out infinite
}

.sticky-cta-form {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .15)
}

/* ====== LEGAL ====== */
.legal-content {
    max-width: 760px;
    line-height: 1.8;
    color: var(--gray-dark);
    font-size: 15px
}

.legal-content-wide {
    max-width: 860px;
    margin: 0 auto
}

.legal-content p {
    margin-bottom: 16px
}

.legal-content h2 {
    font-weight: 800;
    font-size: 30px;
    margin-top: 38px;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.25;
    letter-spacing: -.5px
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-content h3 {
    font-weight: 700;
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark)
}

.legal-content h4 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--dark)
}

.legal-content a {
    color: var(--gold-dark)
}

/* ====== NEW CONVERSION ELEMENTS ====== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

.service-card-image {
    width: calc(100% + 56px);
    max-width: none;
    height: 200px;
    background-color: var(--cream);
    margin: -36px -28px 24px -28px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 12px;
    object-fit: cover;
    background-color: var(--cream);
}

.interactive-hook {
    background: var(--gold);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.interactive-hook h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.interactive-hook p {
    color: var(--darker);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-dark {
    background: var(--dark);
    color: var(--gold);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.25s;
}

.btn-dark:hover {
    background: #000;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ====== KEYFRAMES ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 204, 75, .45)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(220, 204, 75, 0)
    }
}

/* ====== RESPONSIVE ====== */
@media(max-width:1024px) {
    .nav-desktop {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .hero h1 {
        font-size: 38px
    }

    .section-title {
        font-size: 32px
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px
    }

    .cta-banner-actions {
        justify-content: center
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .trust-surface {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .trust-numbers {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .benefits-list-premium {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        height: auto
    }

    .team-showcase {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .team-photo {
        min-height: 360px
    }

    .proof-video-head {
        text-align: left;
        margin-bottom: 30px
    }

    .proof-video-head .section-subtitle {
        margin: 0
    }

    .proof-video-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media(max-width:768px) {
    .sticky-cta {
        display: flex
    }

    .top-bar-right {
        display: none
    }

    .hero {
        min-height: auto
    }

    .hero-inner {
        padding: 48px 24px 80px
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px
    }

    .hero-sub {
        font-size: 16px
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .section {
        padding: 56px 0
    }

    .section-title {
        font-size: 28px
    }

    .stat-number {
        font-size: 36px
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: 30px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    body {
        padding-bottom: 72px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

    .benefit-item {
        padding: 12px 14px;
        font-size: 14px
    }

    .trust-surface {
        border-radius: 22px;
        padding: 24px 20px
    }

    .trust-lead {
        font-size: 16px
    }

    .trust-numbers {
        grid-template-columns: 1fr
    }

    .benefits-list-premium {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto
    }

    .projects-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .team-kpis {
        grid-template-columns: 1fr 1fr
    }

    .team-role-grid {
        grid-template-columns: 1fr
    }

    .team-photo-badge {
        left: 14px;
        right: 14px;
        bottom: 14px
    }

    .marquee-section {
        padding: 12px 0
    }

    .marquee-item {
        font-size: 13px;
        padding: 0 28px
    }

    .proof-video-copy {
        padding: 22px
    }

    .proof-check {
        font-size: 14px
    }

    .proof-pill {
        font-size: 11px;
        padding: 7px 12px
    }

    .proof-actions .btn-primary {
        width: 100%;
        justify-content: center
    }

    .proof-phone-cta {
        width: 100%;
        justify-content: center
    }

    .proof-video-media {
        border-radius: 16px
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 27px
    }

    .hero-actions {
        flex-direction: column
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-kpis {
        grid-template-columns: 1fr
    }

    .page-hero-actions {
        flex-direction: column
    }

    .page-hero-actions .btn-primary,
    .page-hero-actions .btn-secondary {
        width: 100%;
        justify-content: center
    }
}

@media(max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        transform: none;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .hero-trust {
        gap: 12px;
    }
}

@media(max-width: 600px) {
    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-google {
        grid-column: 1 / -1;
    }
}
/* ====== WOW HERO ====== */
.wow-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #000; color: #fff; padding: 120px 0 80px; }
.wow-hero-bg { position: absolute; inset: 0; z-index: 1; }
.wow-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transform: scale(1.05); animation: subtleZoom 20s ease-out infinite alternate; }
.wow-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2) 100%); }
.wow-hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; width: 100%; }

.wow-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; animation: fadeInUp 0.8s ease both; }
.pulse-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(220, 204, 75, 0.7); animation: pulseDot 2s infinite; }

.wow-title { font-size: clamp(48px, 6vw, 84px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.1s both; }
.text-gradient { background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.wow-subtitle { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 540px; margin-bottom: 40px; animation: fadeInUp 0.8s ease 0.2s both; }
.wow-subtitle strong { color: var(--white); font-weight: 600; }

.wow-actions { display: flex; align-items: center; gap: 24px; animation: fadeInUp 0.8s ease 0.3s both; flex-wrap: wrap; }
.wow-actions .btn-primary { border-radius: 10px; }

/* Right Side - Glass Cards */
.wow-hero-right { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; animation: fadeIn 1s ease 0.5s both; }
.glass-card { position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.3); transition: transform 0.3s; }
.glass-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

.g-card-1 { top: 10%; right: 0; max-width: 320px; animation: floatY 6s ease-in-out infinite; z-index: 3; }
.g-card-2 { bottom: 20%; left: 0; display: flex; align-items: center; gap: 16px; animation: floatY 7s ease-in-out infinite reverse; z-index: 2; }
.g-card-3 { bottom: 5%; right: 10%; display: flex; align-items: center; gap: 16px; animation: floatY 8s ease-in-out 1s infinite; z-index: 1; }

.g-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.g-text { font-size: 15px; font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 12px; line-height: 1.6; }
.g-author { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; }

.g-icon { font-size: 32px; font-weight: 800; color: var(--gold); background: rgba(220, 204, 75, 0.1); padding: 12px 16px; border-radius: 12px; }
.g-info { display: flex; flex-direction: column; }
.g-info strong { font-size: 16px; color: #fff; }
.g-info span { font-size: 13px; color: rgba(255,255,255,0.6); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.6; animation: fadeIn 1s ease 1s both; }
.scroll-indicator span { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.mouse { width: 24px; height: 36px; border: 2px solid #fff; border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.wheel { width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrollWheel 2s infinite; }

.dark-marquee { background: #111; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-marquee .marquee-item { color: rgba(255,255,255,0.5); }
.dark-marquee .marquee-dot { background: var(--gold); }

@keyframes subtleZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.1); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

@media(max-width: 1024px) {
    .wow-hero-content { grid-template-columns: 1fr; gap: 80px; }
    .wow-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%); }
    .wow-hero-right { height: 350px; }
    .g-card-1 { top: 0; right: 10%; }
    .g-card-2 { bottom: 10%; left: 0; }
    .g-card-3 { bottom: -10%; right: 0; }
}

@media(max-width: 768px) {
    .wow-title { font-size: 42px; }
    .wow-actions { flex-direction: column; align-items: flex-start; }
    .wow-actions .btn-primary { width: 100%; justify-content: center; }
    .wow-hero-right { transform: scale(0.85); transform-origin: left; }
    .g-card-1 { right: 0; }
}
