:root {
    /* Strict Palette: Orange, Grey, Black, White */
    --orange: #f99731;
    --orange-light: #ffb854;
    --orange-dark: #e88620;
    --gray: #666666;
    --gray-dark: #222222;
    --gray-light: #999999;
    --gray-lighter: #cccccc;
    --white: #ffffff;
    --off-white: #f4f4f4;
    --black: #000000;
    --near-black: #111111;
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Karla', sans-serif;
    --hero-text-size: clamp(80px, 12vw, 180px);
    --headline-xl: clamp(56px, 9vw, 120px);
    --headline-lg: clamp(44px, 7vw, 90px);
    --headline-md: clamp(32px, 5vw, 56px);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-secondary); background: var(--off-white); color: var(--gray); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
::selection { background: var(--orange); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Cursor */
.cursor { width: 20px; height: 20px; border: 2px solid var(--orange); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.15s var(--ease-out-expo), background 0.15s ease; transform: translate(-50%, -50%); mix-blend-mode: difference; }
.cursor.hovering { transform: translate(-50%, -50%) scale(2); background: var(--orange); }
@media (max-width: 768px) { .cursor { display: none; } }

/* Loader */
#loader { position: fixed; inset: 0; background: var(--white); z-index: 10000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
#loader.loaded { opacity: 0; visibility: hidden; }
.loader-logo { max-width: 240px; height: auto; animation: loader-reveal 1s var(--ease-out-expo) forwards; opacity: 0; transform: translateY(20px); }
@keyframes loader-reveal { to { opacity: 1; transform: translateY(0); } }
.loader-bar { width: 200px; height: 3px; background: var(--off-white); margin-top: 40px; overflow: hidden; border-radius: 2px; }
.loader-bar::after { content: ''; display: block; width: 100%; height: 100%; background: var(--orange); animation: loader-progress 1.5s var(--ease-out-expo) forwards; transform: translateX(-100%); }
@keyframes loader-progress { to { transform: translateX(0); } }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 24px max(40px, calc((100% - 1400px) / 2 + 40px)); display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; box-sizing: border-box; }
.nav.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); padding: 16px max(40px, calc((100% - 1400px) / 2 + 40px)); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); }
.nav__logo { font-family: var(--font-primary); font-size: 32px; font-weight: 900; color: var(--white); transition: color 0.3s ease; display: flex; align-items: center; }
.nav__logo span { color: var(--orange); }
.nav.scrolled .nav__logo { color: var(--black); }
.nav__logo-img { height: 70px; width: auto; transition: filter 0.3s ease; }
.nav__menu { display: flex; gap: 40px; list-style: none; }
.nav__menu a { font-family: var(--font-secondary); font-size: 17px; font-weight: 600; color: var(--white); position: relative; padding: 8px 0; transition: color 0.3s ease; }
.nav.scrolled .nav__menu a { color: var(--gray); }
.nav__menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.4s var(--ease-out-expo); }
.nav__menu a:hover::after { width: 100%; }
.nav__menu a:hover { color: var(--orange); }
.nav__cta { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; padding: 14px 28px; background: var(--orange); color: var(--white); border-radius: 4px; transition: all 0.3s ease; }
.nav__cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249, 151, 49, 0.3); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.nav.scrolled .nav__toggle span { background: var(--gray-dark); }
@media (max-width: 968px) {
    .nav__menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 24px 40px; gap: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .nav__menu a { color: var(--gray-dark); padding: 16px 0; border-bottom: 1px solid var(--off-white); }
    .nav__menu a:hover { color: var(--orange); }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav.menu-open .nav__menu { display: flex; }
    .nav.menu-open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
    .nav.menu-open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero__video-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--black);
}

/* Strong Orange Override for Video (No muddy blending) */
.hero__video-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    mix-blend-mode: color;
    opacity: 0.8;
    z-index: 1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.6);
}

.hero__mask-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
}

#maskCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pure black vignette for clean contrast */
.hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(
        ellipse 60% 60% at center,
        transparent 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.8) 85%,
        rgba(0,0,0,0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 32px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out-expo) 0.3s forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero__eyebrow::before, .hero__eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.hero__headline {
    font-family: var(--font-primary);
    font-size: var(--headline-xl);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out-expo) 0.5s forwards;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7);
}

.hero__headline span { display: block; }
.hero__headline span:last-child { color: var(--orange); }

.hero__sub {
    font-family: var(--font-secondary);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out-expo) 0.7s forwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 1s var(--ease-out-expo) 0.9s forwards;
}

@keyframes fade-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; font-family: var(--font-secondary); font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: all 0.4s var(--ease-out-expo); border-radius: 4px; }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(249, 151, 49, 0.3); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.btn__arrow { transition: transform 0.3s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Hero Scroll Indicator */
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; animation: fade-up 1s var(--ease-out-expo) 1.1s forwards; }
.hero__scroll-text { font-family: var(--font-secondary); font-size: 16px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } }

/* Marquee Strip */
.marquee-strip { background: var(--orange); padding: 20px 0; overflow: hidden; }
.marquee-strip__track { display: flex; animation: marquee-strip 30s linear infinite; }
.marquee-strip__item { font-family: var(--font-primary); font-size: 18px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); white-space: nowrap; padding: 0 48px; display: flex; align-items: center; gap: 48px; }
.marquee-strip__item::after { content: '\2726'; font-size: 16px; }
@keyframes marquee-strip { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Intro Section */
.intro { position: relative; padding: 180px 0; background: var(--white); overflow: hidden; }
.intro__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.intro__eyebrow { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.intro__eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--orange); }
.intro__headline { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--gray-dark); margin-bottom: 32px; }
.intro__headline em { font-style: normal; color: var(--orange); }
.intro__text { font-family: var(--font-secondary); font-size: 18px; line-height: 1.8; color: var(--gray); max-width: 480px; }
.intro__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 60px;
}
.stat {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 8px;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat--full {
    grid-column: span 2;
    align-items: center;
    text-align: center;
}
.stat:hover { background: var(--off-white); border-color: var(--orange); z-index: 2; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stat__number { font-family: var(--font-primary); font-size: 56px; font-weight: 900; line-height: 1; color: var(--gray-dark); margin-bottom: 8px; }
.stat__number span { color: var(--orange); }
.stat--full .stat__number { font-size: clamp(28px, 4vw, 40px); color: var(--orange); margin-bottom: 4px; }
.stat__label { font-family: var(--font-secondary); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.intro__image-wrap { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; }
.intro__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.intro__image-wrap:hover .intro__image { transform: scale(1.05); }
.intro__bg-text { position: absolute; top: 50%; right: -5%; transform: translateY(-50%); font-family: var(--font-primary); font-size: clamp(180px, 25vw, 400px); font-weight: 900; color: var(--off-white); pointer-events: none; z-index: 0; line-height: 0.8; writing-mode: vertical-rl; }
@media (max-width: 1200px) {
    .intro__container { grid-template-columns: 1fr; gap: 60px; }
    .intro__bg-text { display: none; }
}

/* Services Section */
.services { position: relative; padding: 180px 0; background: var(--near-black); overflow: hidden; }
.services::before { content: ''; position: absolute; top: -80px; left: 0; width: 100%; height: 160px; background: var(--white); transform: skewY(-3deg); transform-origin: top left; }
.services__header { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; position: relative; z-index: 1; }
.services__title { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--white); }
.services__title em { font-style: normal; color: var(--orange); }
.services__intro { font-family: var(--font-secondary); font-size: 18px; line-height: 1.8; color: var(--gray-lighter); padding-top: 16px; }
.services__grid { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.service-card { background: var(--gray-dark); padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.5s var(--ease-out-expo); border: 1px solid transparent; border-radius: 8px; }
.service-card:nth-child(1) { transform: translateY(40px); }
.service-card:nth-child(2) { transform: translateY(20px); }
.service-card:nth-child(3) { transform: translateY(0); }
.service-card:nth-child(4) { transform: translateY(-20px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out-expo); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--black); border-color: var(--orange); transform: translateY(0) !important; }
.service-card__icon { font-size: 28px; color: var(--orange); margin-bottom: 28px; }
.service-card__title { font-family: var(--font-primary); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.service-card__text { font-family: var(--font-secondary); font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin-bottom: 24px; position: relative; z-index: 1; }
.service-card__list { list-style: none; position: relative; z-index: 1; }
.service-card__list li { font-family: var(--font-secondary); font-size: 16px; color: rgba(255, 255, 255, 0.85); padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 10px; }
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li i { color: var(--orange); font-size: 16px; }
@media (max-width: 1200px) { .services__header { grid-template-columns: 1fr; gap: 24px; } .services__grid { grid-template-columns: repeat(2, 1fr); } .service-card { transform: none !important; } }
@media (max-width: 768px) { .services__grid { grid-template-columns: 1fr; } }

/* Cases Section */
.cases { position: relative; padding: 180px 0; background: var(--off-white); overflow: hidden; }
.cases__header { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.cases__title { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--black); }
.cases__title em { font-style: normal; color: var(--orange); }
.cases__scroll { display: flex; gap: 32px; max-width: 1400px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.cases__scroll::-webkit-scrollbar { display: none; }
.case-card { flex: 1 1 0; min-width: 0; scroll-snap-align: start; position: relative; overflow: hidden; cursor: pointer; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); }
.case-card__image { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.case-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); filter: grayscale(20%); }
.case-card:hover .case-card__image img { transform: scale(1.1); filter: grayscale(0%); }
.case-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.case-card__content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 36px; z-index: 2; }
.case-card__tag { display: inline-block; font-family: var(--font-secondary); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); background: var(--orange); padding: 6px 12px; margin-bottom: 16px; border-radius: 4px; }
.case-card__title { font-family: var(--font-primary); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.case-card__stats { display: flex; gap: 28px; }
.case-card__stat-value { font-family: var(--font-primary); font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.case-card__stat-label { font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-lighter); margin-top: 4px; }
@media (max-width: 768px) { .case-card { flex: 0 0 85vw; } .cases__header { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* Testimonial Section */
.testimonial { position: relative; padding: 180px 0; background: var(--orange); overflow: hidden; }
.testimonial__bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-primary); font-size: clamp(250px, 45vw, 500px); font-weight: 900; color: rgba(255,255,255,0.1); pointer-events: none; line-height: 1; }
.testimonial__content { max-width: 900px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; z-index: 1; }
.testimonial__quote { font-family: var(--font-primary); font-size: clamp(26px, 4vw, 44px); font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 40px; }
.testimonial__quote em { font-style: normal; text-decoration: underline; text-decoration-color: var(--white); text-underline-offset: 6px; text-decoration-thickness: 3px; }
.testimonial__author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial__line { width: 50px; height: 2px; background: var(--white); }
.testimonial__name { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); }

/* About Section */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.about__image { position: relative; overflow: hidden; }
.about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); filter: grayscale(15%); }
.about__image:hover img { transform: scale(1.05); filter: grayscale(0%); }
.about__content { background: var(--white); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.about__eyebrow { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.about__eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--orange); }
.about__title { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: var(--black); margin-bottom: 32px; }
.about__text { font-family: var(--font-secondary); font-size: 18px; line-height: 1.9; color: var(--gray); margin-bottom: 20px; }
.about__values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.about__value { font-family: var(--font-secondary); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 20px; border: 1px solid var(--gray-lighter); color: var(--gray-dark); border-radius: 4px; transition: all 0.3s ease; }
.about__value:hover { border-color: var(--orange); color: var(--orange); background: rgba(249, 151, 49, 0.05); }
@media (max-width: 968px) { .about { grid-template-columns: 1fr; } .about__image { min-height: 400px; } .about__content { padding: 60px 40px; } }

/* FAQ Section */
.faq { position: relative; padding: 180px 0; background: var(--off-white); }
.faq__container { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.faq__header { text-align: center; margin-bottom: 60px; }
.faq__eyebrow { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.faq__title { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; letter-spacing: -0.02em; color: var(--black); }
.faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.05); background: var(--white); margin-bottom: 12px; border-radius: 8px; overflow: hidden; }
.faq-item__header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; cursor: pointer; transition: background 0.3s ease; }
.faq-item__header:hover { background: var(--off-white); }
.faq-item__question { font-family: var(--font-primary); font-size: 18px; font-weight: 700; color: var(--black); transition: color 0.3s ease; }
.faq-item.active .faq-item__question { color: var(--orange); }
.faq-item__icon { font-size: 20px; color: var(--orange); transition: transform 0.4s var(--ease-out-expo); }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.faq-item.active .faq-item__answer { max-height: 300px; }
.faq-item__answer-inner { padding: 0 28px 24px; font-family: var(--font-secondary); font-size: 16px; line-height: 1.8; color: var(--gray); }

/* CTA Section */
.cta { position: relative; padding: 180px 0; background: var(--near-black); overflow: hidden; }
.cta__bg-text { position: absolute; bottom: -15%; left: 50%; transform: translateX(-50%); font-family: var(--font-primary); font-size: clamp(150px, 30vw, 400px); font-weight: 900; color: rgba(255, 255, 255, 0.02); pointer-events: none; white-space: nowrap; }
.cta__container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.cta__eyebrow { font-family: var(--font-secondary); font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.cta__title { font-family: var(--font-primary); font-size: var(--headline-md); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; }
.cta__text { font-family: var(--font-secondary); font-size: 18px; line-height: 1.8; color: var(--gray-light); margin-bottom: 40px; }
.cta__phone { font-family: var(--font-primary); font-size: 32px; font-weight: 900; color: var(--white); display: flex; align-items: center; gap: 16px; transition: color 0.3s ease; }
.cta__phone:hover { color: var(--orange); }
.cta__phone i { font-size: 24px; color: var(--orange); }
.cta__social-text { font-family: var(--font-secondary); font-size: 16px; font-weight: 600; color: var(--white); margin-top: 36px; margin-bottom: 16px; }
.cta__socials { display: flex; gap: 12px; }
.cta__social { width: 48px; height: 48px; border: 1px solid var(--gray); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; transition: all 0.3s ease; }
.cta__social:hover { background: var(--orange); border-color: var(--orange); }
.cta__form { background: var(--white); padding: 48px; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2); }
.cta__form-title { font-family: var(--font-primary); font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-secondary); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; font-family: var(--font-secondary); font-size: 16px; background: var(--off-white); border: 2px solid transparent; border-radius: 6px; color: var(--black); transition: border-color 0.3s ease, background 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 18px; font-family: var(--font-secondary); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--orange); color: var(--white); border: none; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; }
.form-submit:hover { background: var(--orange-dark); box-shadow: 0 10px 30px rgba(249, 151, 49, 0.3); }
@media (max-width: 968px) { .cta__container { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--black); padding: 60px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer__container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer__logo { font-family: var(--font-primary); font-size: 28px; font-weight: 900; color: var(--white); display: flex; align-items: center; }
.footer__logo .nav__logo-img { height: 70px; }
.footer__logo span { color: var(--orange); }
.footer__links { display: flex; gap: 32px; list-style: none; }
.footer__links a { font-family: var(--font-secondary); font-size: 16px; color: var(--gray-light); transition: color 0.3s ease; }
.footer__links a:hover { color: var(--orange); }
.footer__copy { font-family: var(--font-secondary); font-size: 16px; color: var(--gray); }
@media (max-width: 768px) { .footer__container { flex-direction: column; text-align: center; } .footer__links { flex-wrap: wrap; justify-content: center; gap: 20px; } }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s var(--ease-out-expo); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s var(--ease-out-expo); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s var(--ease-out-expo); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    /* Section padding — mobile only */
    .intro, .services, .cases, .testimonial, .faq, .cta { padding: 40px 0; }
    .footer { padding: 40px 0; }

    /* Nav */
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav__logo-img { height: 48px; }
    .nav__menu { padding: 20px; }

    /* Hero */
    .hero { min-height: 600px; }
    .hero__content { padding: 0 20px; }
    .hero__scroll { left: 50%; transform: translateX(-50%); width: auto; }
    .hero__scroll-text { text-align: center; margin-left: -0.2em; }
    .hero__eyebrow { font-size: 14px; margin-bottom: 20px; }
    .hero__headline { margin-bottom: 20px; }
    .hero__sub { margin-bottom: 32px; }
    .hero__cta-group { flex-direction: column; align-items: center; }
    .btn { padding: 16px 28px; width: 100%; justify-content: center; }

    /* Marquee */
    .marquee-strip { padding: 12px 0; }
    .marquee-strip__item { font-size: 16px; padding: 0 24px; gap: 24px; }

    /* Intro */
    .intro__container { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
    .intro__text { max-width: 100%; }
    .intro__stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
    .stat { padding: 16px; }
    .stat__number { font-size: 36px; }
    .intro__image-wrap { aspect-ratio: 4/3; }
    .intro__bg-text { display: none; }

    /* Services */
    .services::before { top: -20px; height: 40px; }
    .services__header { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; margin-bottom: 24px; }
    .services__grid { grid-template-columns: 1fr; padding: 0 20px; gap: 16px; }
    .service-card { padding: 28px 24px; transform: none !important; }
    .service-card__title { font-size: 20px; }

    /* Cases */
    .cases__header { padding: 0 20px; margin-bottom: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .cases__scroll { padding: 0 20px; gap: 16px; }
    .case-card { flex: 0 0 85vw; }
    .case-card__content { padding: 20px; }
    .case-card__title { font-size: 20px; margin-bottom: 12px; }
    .case-card__stat-value { font-size: 24px; }
    .case-card__stats { gap: 16px; flex-wrap: wrap; }

    /* Testimonial */
    .testimonial__content { padding: 0 20px; }
    .testimonial__quote { margin-bottom: 24px; }

    /* About */
    .about { grid-template-columns: 1fr; min-height: auto; }
    .about__image { min-height: 300px; }
    .about__content { padding: 32px 20px; }
    .about__values { gap: 8px; }
    .about__value { padding: 10px 16px; }

    /* FAQ */
    .faq__container { padding: 0 20px; }
    .faq__header { margin-bottom: 24px; }
    .faq-item__header { padding: 18px 20px; }
    .faq-item__question { font-size: 16px; }
    .faq-item__answer-inner { padding: 0 20px 18px; }

    /* CTA */
    .cta__container { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
    .cta__phone { font-size: 24px; }
    .cta__form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer__container { flex-direction: column; text-align: center; padding: 0 20px; }
    .footer__logo .nav__logo-img { height: 48px; }
    .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
