/* ============================================
    RESET & BASE
 ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0d0e12;
    --surface: #f4f3ef;
    --white: #ffffff;
    --accent: #e85d26;
    --accent2: #f5a623;
    --muted: #6b6e7d;
    --border: #e3e1d8;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .14);
    --ease: .28s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    font-weight: 700;
}

p {
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- LABELS & TITLES ---- */
.section-label {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: #c94d1e;
    border-color: #c94d1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 38, .3);
}

.btn--primary:disabled {
    background: #aaa;
    border-color: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 15px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
    NAV
 ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    transition: all var(--ease);
}

.nav.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    padding: 13px 48px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .09);
}

.nav__logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    transition: color var(--ease);
}

.nav__logo span {
    color: var(--accent);
}

.nav.scrolled .nav__logo {
    color: var(--ink);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav__links li a {
    font-family: var(--font-head);
    font-size: .87rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    transition: color var(--ease);
}

.nav__links li a:hover {
    color: #fff;
}

.nav.scrolled .nav__links li a {
    color: var(--muted);
}

.nav.scrolled .nav__links li a:hover {
    color: var(--ink);
}

.nav__cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: background var(--ease) !important;
}

.nav__cta:hover {
    background: #c94d1e !important;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all var(--ease);
}

.nav.scrolled .nav__hamburger span {
    background: var(--ink);
}

.nav__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
}

.mobile-menu ul li a {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    transition: color var(--ease);
}

.mobile-menu ul li a:hover {
    color: var(--accent);
}

/* ============================================
    HERO
 ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: #09090f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 90px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.hero__glow--1 {
    width: 580px;
    height: 580px;
    background: rgba(232, 93, 38, .22);
    top: -100px;
    left: -80px;
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: rgba(245, 166, 35, .14);
    bottom: -110px;
    right: -70px;
}

.hero__glow--3 {
    width: 340px;
    height: 340px;
    background: rgba(232, 93, 38, .09);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero__dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 65% at 50% 50%, transparent 25%, #09090f 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: .77rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .05em;
    margin-bottom: 28px;
    animation: fadeDown .6s ease both;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    flex-shrink: 0;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.35);
    }
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5.5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp .7s .1s ease both;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #e85d26 0%, #f5a623 55%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: clamp(.98rem, 2vw, 1.13rem);
    color: rgba(255, 255, 255, .48);
    line-height: 1.78;
    max-width: 580px;
    margin-bottom: 36px;
    animation: fadeUp .7s .2s ease both;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeUp .7s .3s ease both;
}

/* Stats strip */
.hero__stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 20px 0;
    margin-bottom: 34px;
    width: 100%;
    max-width: 640px;
    animation: fadeUp .7s .4s ease both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.stat__num {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat__num sup {
    font-size: .62em;
    color: var(--accent);
    vertical-align: super;
}

.stat__lbl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    font-weight: 500;
    letter-spacing: .04em;
    white-space: nowrap;
}

.stat__div {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .09);
    flex-shrink: 0;
}

/* Pills */
.hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    animation: fadeUp .7s .5s ease both;
}

.pill {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .78rem;
    font-weight: 500;
    transition: all var(--ease);
    cursor: default;
    white-space: nowrap;
}

.pill:hover {
    background: rgba(232, 93, 38, .12);
    border-color: rgba(232, 93, 38, .4);
    color: rgba(255, 255, 255, .85);
}

/* ============================================
    LOGOS / MARQUEE
 ============================================ */
.logos {
    background: var(--ink);
    padding: 30px 0;
    overflow: hidden;
}

.logos__label {
    text-align: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .28);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.logos__track {
    overflow: hidden;
}

.logos__inner {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.logos__inner span {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .22);
    flex-shrink: 0;
    letter-spacing: .04em;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
    SERVICES
 ============================================ */
.services {
    padding: 100px 0;
    background: var(--surface);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card--dark {
    background: var(--ink);
    border-color: var(--ink);
}

.service-card--dark h3 {
    color: #fff;
}

.service-card--dark p {
    color: rgba(255, 255, 255, .55);
}

.service-card--dark .service-card__link {
    color: var(--accent);
}

.service-card__icon {
    font-size: 1.9rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.service-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-card__link {
    font-size: .87rem;
    font-weight: 700;
    color: var(--accent);
    transition: letter-spacing var(--ease);
}

.service-card__link:hover {
    letter-spacing: .02em;
}

/* ============================================
    WORK / PORTFOLIO
 ============================================ */
.work {
    padding: 100px 0;
    background: var(--ink);
}

.work .section-title {
    color: #fff;
}

.work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 260px;
    gap: 16px;
}

.work-item {
    display: block;
}

.work-item--tall {
    grid-row: span 2;
}

.work-item--wide {
    grid-column: span 2;
}

.work-item__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-item__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.work-item__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .08) 55%, transparent 100%);
}

.work-item__img--1 {
    background: url('https://i.postimg.cc/NjTy0r9W/Frame-1.jpg');
    background-size: cover;
}

.work-item__img--2 {
    background: url('https://i.postimg.cc/jqmJk7NG/Frame-2-(2).jpg');
    background-size: cover;
}

.work-item__img--3 {
    background: url('https://i.postimg.cc/Hn9B02Jz/Frame-3-(5).jpg');
    background-size: cover;
}

.work-item__img--4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.work-item__img::before {
    content: '';
    position: absolute;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    top: -18%;
    right: -10%;
    z-index: 0;
}

.work-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--ease);
}

.work-item__img:hover .work-item__overlay {
    transform: translateY(0);
    opacity: 1;
}

.work-item__tag {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.work-item__overlay h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.work-item__overlay p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

/* ============================================
    PROCESS
 ============================================ */
.process {
    padding: 100px 0;
    background: var(--surface);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: all var(--ease);
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.process-step__num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    opacity: .2;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity var(--ease);
}

.process-step:hover .process-step__num {
    opacity: .55;
}

.process-step__body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.process-step__body p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
    TESTIMONIALS
 ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    transition: all var(--ease);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testi-card--dark {
    background: var(--ink);
    border-color: var(--ink);
}

.testi-card--dark .testi-card__quote {
    color: rgba(255, 255, 255, .78);
}

.testi-card--dark .testi-card__author strong {
    color: #fff;
}

.testi-card--dark .testi-card__author span {
    color: rgba(255, 255, 255, .4);
}

.testi-card__quote {
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 26px;
}

.testi-card__author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 800;
    color: #fff;
}

.av--1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.av--2 {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.av--3 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.testi-card__author strong {
    display: block;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
}

.testi-card__author span {
    font-size: .78rem;
    color: var(--muted);
}

/* ============================================
    PRICING
 ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--surface);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    transition: all var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card--featured {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-card--featured .pricing-card__tier {
    color: rgba(255, 255, 255, .5);
}

.pricing-card--featured .pricing-card__price {
    color: #fff;
}

.pricing-card--featured .pricing-card__period {
    color: rgba(255, 255, 255, .4);
}

.pricing-card--featured .pricing-card__features li {
    color: rgba(255, 255, 255, .78);
}

.pricing-card--featured .pricing-card__features li.dim {
    color: rgba(255, 255, 255, .22);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
}

.pricing-card__tier {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.pricing-card__price {
    font-family: var(--font-head);
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card__period {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    font-size: .88rem;
    color: var(--ink);
}

.pricing-card__features li.dim {
    color: var(--muted);
    opacity: .5;
}

/* ============================================
    CONTACT
 ============================================ */
.contact {
    padding: 100px 0;
    background: var(--ink);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact .section-label {
    color: var(--accent);
}

.contact .section-title {
    color: #fff;
}

.contact__left>p {
    color: rgba(255, 255, 255, .5);
    font-size: .98rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__info-item {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px 38px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    /* ← 16px — prevents iOS/Android zoom */
    color: var(--ink);
    background: var(--surface);
    outline: none;
    transition: border-color var(--ease);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
}

/* reCAPTCHA legal notice */
.recaptcha-notice {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    display: block;
    /* ensure it's its own row */
}

/* Override global a { display: block } so links sit inline in the sentence */
.recaptcha-notice a {
    display: inline !important;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--ease);
}

.recaptcha-notice a:hover {
    color: #c94d1e;
}

/* Hide the floating badge (legal notice replaces it) */
.grecaptcha-badge {
    visibility: hidden !important;
}

.form-success {
    display: none;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: .88rem;
    font-weight: 600;
    text-align: center;
}

.form-error {
    display: none;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: .88rem;
    font-weight: 600;
    text-align: center;
}

/* ============================================
    FOOTER
 ============================================ */
.footer {
    background: #06070c;
    color: rgba(255, 255, 255, .5);
    padding: 70px 0 28px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer__logo {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.footer__logo span {
    color: var(--accent);
}

.footer__brand p {
    font-size: .88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer__col h4 {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li a {
    font-size: .86rem;
    color: rgba(255, 255, 255, .4);
    transition: color var(--ease);
}

.footer__col ul li a:hover {
    color: #fff;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
}

.footer__legal {
    display: flex;
    gap: 22px;
}

.footer__legal a {
    color: rgba(255, 255, 255, .3);
    transition: color var(--ease);
}

.footer__legal a:hover {
    color: #fff;
}

/* ============================================
    SCROLL REVEAL
 ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
    ANIMATIONS
 ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
    RESPONSIVE
 ============================================ */
@media (max-width: 1100px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .work__grid {
        grid-template-rows: 260px 220px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 18px 22px;
    }

    .nav.scrolled {
        padding: 12px 22px;
    }

    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 20px 72px;
    }

    .hero__stats {
        max-width: 100%;
    }

    .stat {
        padding: 0 12px;
    }

    .stat__num {
        font-size: 1.4rem;
    }

    .hero__pills {
        gap: 8px;
    }

    .pill {
        font-size: .74rem;
        padding: 7px 13px;
    }

    .services {
        padding: 72px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .work__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .work-item--tall,
    .work-item--wide {
        grid-row: auto;
        grid-column: auto;
    }

    .work-item__img {
        height: 220px;
        min-height: 220px;
    }

    .work-item__overlay {
        opacity: 1;
        transform: none;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .section-title {
        margin-bottom: 32px;
    }

    /* Stats 2×2 grid on mobile */
    .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 8px 0;
        max-width: 100%;
        row-gap: 0;
    }

    .stat__div {
        display: none;
    }

    .stat {
        padding: 16px 12px;
        position: relative;
    }

    .stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .09);
    }

    .stat:nth-child(n+4) {
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .stat__num {
        font-size: 1.45rem;
    }

    .stat__lbl {
        font-size: .65rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.3rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        justify-content: center;
    }
}