/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #2C5F8A;
    --bg: #1A1A1A;
    --bg-light: #222222;
    --bg-card: #2A2A2A;
    --text: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dim: #6B6B6B;
    --border: #333333;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.925rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

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

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255,255,255,0.25);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--bg-light);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    color: var(--text);
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #111111;
    padding: 10px 0;
    font-size: 0.825rem;
    border-bottom: 1px solid var(--border);
}

.top-bar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
}

.top-bar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.top-bar__link:hover {
    color: var(--accent);
}

.top-bar__link svg {
    flex-shrink: 0;
}

/* ===== NAV ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav--scrolled {
    border-bottom-color: var(--border);
    background: rgba(26, 26, 26, 0.97);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    white-space: nowrap;
}

.nav__logo:hover {
    color: var(--accent);
}

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

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav__links a:hover {
    color: var(--text);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.55) 100%
    );
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    width: 100%;
}

.hero__content {
    text-align: left;
}

.hero__headline {
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.hero__sub {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 540px;
}

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

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.3);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== HERO FORM ===== */
.hero__form-wrap {
    width: 100%;
}

.hero-form {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.hero-form__header {
    background: var(--accent);
    padding: 24px 28px;
    text-align: center;
}

.hero-form__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-form__sub {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    line-height: 1.4;
}

.hero-form__body {
    padding: 24px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-form__field input,
.hero-form__field select,
.hero-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.925rem;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    outline: none;
}

.hero-form__field input::placeholder,
.hero-form__field textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.hero-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.hero-form__field select option {
    background: var(--bg);
    color: #fff;
}

.hero-form__field input:focus,
.hero-form__field select:focus,
.hero-form__field textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.hero-form__field textarea {
    resize: vertical;
    min-height: 70px;
}

.hero-form__submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.hero-form__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px 18px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-slider-section {
    background: var(--bg);
}

.ba-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    line-height: 0;
}

.ba-slider__img {
    width: 100%;
}

.ba-slider__after {
    display: block;
}

.ba-slider__after img,
.ba-slider__before img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-slider__before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-slider__before img {
    position: absolute;
    top: 0;
    left: 0;
    /* width set dynamically by JS to match container */
}

.ba-slider__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-slider__line {
    flex: 1;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-slider__knob {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bg);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ba-slider:active .ba-slider__knob {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.ba-slider__label {
    position: absolute;
    top: 20px;
    z-index: 5;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.ba-slider__label--before {
    left: 20px;
    background: rgba(0,0,0,0.55);
}

.ba-slider__label--after {
    right: 20px;
    background: rgba(0,0,0,0.55);
}

@media (max-width: 768px) {
    .ba-slider__after img,
    .ba-slider__before img {
        height: 320px;
    }

    .ba-slider__knob {
        width: 40px;
        height: 40px;
    }

    .ba-slider__knob svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== STATS ===== */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat__value {
    display: block;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== ABOUT ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    border-radius: 8px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about__image:hover img {
    transform: scale(1.03);
}

.about__content .section__eyebrow {
    text-align: left;
}

.about__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.about__content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about__content .btn {
    margin-top: 12px;
}

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    transition: background 0.3s var(--ease);
}

.service-card:hover .service-card__icon {
    background: var(--accent);
    color: #fff;
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== WHY CHOOSE US ===== */
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.why-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}

.why-card:hover .why-card__icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.why-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.925rem;
}

/* ===== PROJECTS ===== */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.project-card__img {
    overflow: hidden;
    height: 280px;
}

.project-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.project-card:hover .project-card__img img {
    transform: scale(1.03);
}

.project-card__info {
    padding: 28px;
}

.project-card__info h3 {
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.project-card__info p {
    font-size: 0.925rem;
}

/* ===== PROCESS ===== */
.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
}

.process-step__num {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.process-step h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.925rem;
}

/* ===== REVIEWS ===== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease);
}

.review-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.review-card__stars {
    color: #F59E0B;
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-card__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card__author strong {
    color: var(--text);
    font-weight: 600;
}

.review-card__author span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq__list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-dim);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    padding: 0 0;
}

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

.faq-answer p {
    font-size: 0.975rem;
    line-height: 1.7;
}

/* ===== SERVICE AREAS ===== */
.areas__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-pill {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
    cursor: default;
}

.area-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,255,255,0.03);
}

/* ===== FINAL CTA ===== */
.cta {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    color: var(--text);
    margin-bottom: 16px;
}

.cta__desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    background: var(--accent);
    padding: 14px 0;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
}

.marquee__track span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
    background: #111111;
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer__logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 12px;
}

.footer__tagline {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.footer__contact h4,
.footer__info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer__contact a {
    display: block;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: color 0.3s var(--ease);
}

.footer__contact a:hover {
    color: var(--accent);
}

.footer__info p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.footer__bottom {
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.825rem;
    color: var(--text-dim);
    text-align: center;
}

/* ===== ANIMATIONS ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stats__grid .anim-fade-up:nth-child(2) { transition-delay: 0.1s; }
.stats__grid .anim-fade-up:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .anim-fade-up:nth-child(4) { transition-delay: 0.3s; }

.why__grid .anim-fade-up:nth-child(2) { transition-delay: 0.08s; }
.why__grid .anim-fade-up:nth-child(3) { transition-delay: 0.16s; }
.why__grid .anim-fade-up:nth-child(4) { transition-delay: 0.24s; }
.why__grid .anim-fade-up:nth-child(5) { transition-delay: 0.32s; }
.why__grid .anim-fade-up:nth-child(6) { transition-delay: 0.4s; }

.process__grid .anim-fade-up:nth-child(2) { transition-delay: 0.08s; }
.process__grid .anim-fade-up:nth-child(3) { transition-delay: 0.16s; }
.process__grid .anim-fade-up:nth-child(4) { transition-delay: 0.24s; }
.process__grid .anim-fade-up:nth-child(5) { transition-delay: 0.32s; }
.process__grid .anim-fade-up:nth-child(6) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image img {
        height: 360px;
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section__header {
        margin-bottom: 48px;
    }

    .top-bar__inner {
        justify-content: center;
        gap: 20px;
        font-size: 0.75rem;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav__links.active {
        display: flex;
    }

    .nav__links a {
        font-size: 1.5rem;
        color: var(--text);
    }

    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

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

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

    .process__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .hero__bg {
        background-attachment: scroll;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero__form-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero__grid {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .btn--lg {
        padding: 16px 32px;
        font-size: 0.925rem;
        width: 100%;
    }
}
