/* ============================================================
   LYNIQ® – GLOBAL STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #999;
    --gray-600: #555;
    --red: #e63b2e;
    --cyan: #00d4cf;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; }

/* ============================================================
   SPLASH — curtain split reveal
   ============================================================ */
.splash {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
}
.splash.active { pointer-events: all; }
.splash.done   { display: none; }

/* Top & bottom curtain panels */
.splash-panel {
    position: absolute; left: 0; right: 0;
    background: #e63b2e;
    overflow: hidden;
    transition: transform 0.85s cubic-bezier(0.87, 0, 0.13, 1);
}
.splash-panel--top {
    top: 0; height: 50%;
    display: flex; align-items: flex-end; justify-content: center;
}
.splash-panel--bottom {
    bottom: 0; height: 50%;
    display: flex; align-items: flex-start; justify-content: center;
}

/* Content inside panels */
.splash-content-top {
    padding-bottom: 20px;
    text-align: center;
    opacity: 0; transform: translateY(24px);
    animation: splash-rise-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
}
.splash-content-bot {
    padding-top: 18px;
    text-align: center;
    opacity: 0; transform: translateY(-18px);
    animation: splash-rise-down 0.6s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
}
.splash-title {
    font-family: var(--font); font-weight: 900;
    font-size: clamp(2.6rem, 8vw, 6rem);
    color: #fff; letter-spacing: -0.02em; line-height: 1;
    white-space: nowrap;
}
.splash-title sup {
    font-size: 0.38em; vertical-align: super; font-weight: 700;
}
.splash-tagline {
    font-size: clamp(0.82rem, 1.6vw, 1.05rem);
    font-weight: 400; color: rgba(255,255,255,0.88);
    letter-spacing: 0.05em;
}

/* Logo image in splash (dark → invert to white) */
.splash-logo-img {
    max-height: 60px;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Split-out state */
.splash.splitting .splash-panel--top    { transform: translateY(-100%); }
.splash.splitting .splash-panel--bottom { transform: translateY(100%); }

@keyframes splash-rise-up   { to { opacity: 1; transform: translateY(0); } }
@keyframes splash-rise-down { to { opacity: 1; transform: translateY(0); } }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background 0.4s;
    overflow: visible;
}
.navbar.scrolled {
    background: rgba(8,8,8,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-container {
    max-width: 1440px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 48px; min-height: 72px;
    overflow: visible;
    position: relative;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav-logo-name { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-name sup { font-size: 0.5em; font-weight: 700; }
.nav-logo-sub { font-size: 0.62rem; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 72px; }
.nav-link { color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; transition: color 0.2s; }
.nav-link:hover { color: var(--white); }
.nav-counter {
    font-size: 4.2rem; font-weight: 900; color: #00c8d4;
    line-height: 1.1; letter-spacing: 0.04em;
}
/* Logo image in navbar */
.nav-logo-img {
    height: 36px; max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block; transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.75; }
/* Footer logo image */
.footer-logo-img {
    height: 40px; max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block; margin-bottom: 8px;
}
.nav-menu-btn {
    display: flex; align-items: center; gap: 12px;
    background: none; border: none;
    color: var(--white); font-size: 1.4rem; font-weight: 900;
    letter-spacing: 0.06em; padding: 0; cursor: pointer;
    font-family: var(--font); transition: opacity 0.2s;
}
.nav-menu-btn:hover { opacity: 0.7; }
.menu-icon { display: flex; flex-direction: column; gap: 6px; }
.menu-icon span { display: block; width: 26px; height: 2px; background: var(--white); }
.mobile-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--black); padding: 20px 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.active { display: block; }
.mobile-nav-link { display: block; padding: 14px 0; color: var(--white); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-nav-link:hover { color: var(--cyan); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column;
    background: #090910; overflow: hidden;
}
.hero-bg {
    display: none;
}

/* Hero portrait – full-width background */
.hero-portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 15%;
    z-index: 0;
    display: block;
}

/* Hero content – sits on top of the portrait */
.hero-content {
    display: flex; flex-direction: column;
    flex: 1; position: relative; z-index: 2;
    padding-top: 72px;
}

/* Hero meta */
.hero-meta {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 18px 48px;
}
.hero-copyright { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }
.hero-services {
    position: absolute; left: 70%; top: 0;
    list-style: none; display: flex; flex-direction: column; gap: 5px;
    text-align: left; margin: 0; padding: 0; z-index: 3;
}
.hero-services li { color: rgba(255,255,255,0.95); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; }

/* Hero headline – full width, overlapping portrait */
.hero-headline-wrap {
    padding: 0; flex: 1;
    display: flex; flex-direction: column; align-items: flex-start;
    padding-top: 0;
    position: relative;
}
.hero-headline { display: flex; flex-direction: column; gap: 0; width: 100%; }
.hero-hl-1 {
    font-size: clamp(5rem, 17vw, 17rem);
    font-weight: 700;
    background: linear-gradient(to right, #f5a04a 0%, #f8c060 22%, #f8d890 42%, #70d4cc 62%, #00c8d4 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em; line-height: 0.85;
    display: block;
    white-space: nowrap;
    opacity: 0;
    animation: hero-fade 0.7s ease 1.6s forwards;
}
.hero-hl-2 {
    font-size: clamp(3.5rem, 12vw, 12rem);
    font-weight: 700;
    background: linear-gradient(to right, #ffffff 0%, #f5a04a 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em; line-height: 1;
    display: block;
    white-space: nowrap;
    opacity: 0;
    animation: hero-fade 0.7s ease 1.75s forwards;
}
@keyframes hero-fade { to { opacity: 1; } }

/* Body text row below Design Studio */
.hero-between-row {
    display: flex; align-items: center; gap: 48px;
    padding: 24px 48px 36px;
    max-width: 60%;
    position: relative; z-index: 2;
}
.hero-body { color: rgba(255,255,255,0.85); font-size: 1.05rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1.65; max-width: 320px; }
.hero-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--black);
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
    padding: 14px 28px; border-radius: 6px;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.hero-cta-btn:hover { background: var(--red); color: var(--white); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { padding: 100px 0; }
.stats-header { display: flex; align-items: flex-start; gap: 64px; margin-bottom: 80px; }
.stats-header-label { font-size: 0.85rem; font-weight: 600; white-space: nowrap; padding-top: 4px; }
.arrow-label { color: var(--red); margin-right: 6px; }
.stats-heading { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.03em; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--gray-200); }
.stat-item { padding: 44px 32px 44px 0; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(3.5rem, 6.5vw, 5.5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 22px; }
.stat-rule { width: 100%; height: 1px; background: var(--gray-200); margin-bottom: 16px; }
.stat-label { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.stat-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   FROM ORDINARY TO EXTRAORDINARY
   ============================================================ */
.xtra-section {
    background: var(--white); overflow: hidden; position: relative;
}
.xtra-inner {
    position: relative;
    background: var(--white);
    will-change: transform;
    transform-origin: center center;
}
/* White text + difference blend = black on white, white on dark */
.xtra-line {
    font-size: clamp(4rem, 12vw, 13rem); font-weight: 900;
    letter-spacing: -0.04em; line-height: 0.88;
    padding: 28px 48px;
    white-space: nowrap; overflow: hidden;
    color: #ffffff;
    mix-blend-mode: difference;
    position: relative; z-index: 2;
}
/* Centered dark rectangle — taller than the text, extends beyond both rows */
.xtra-center-block {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 42%;
    height: 130%;
    background: #0a0a0a;
    z-index: 1;
    overflow: hidden;
}
.xtra-product-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.xtra-tagline-row {
    background: var(--black); color: var(--white);
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 48px; border-top: 1px solid rgba(255,255,255,0.08);
}
.xtra-tagline-left { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.xtra-tagline-right { font-size: 0.9rem; font-weight: 900; letter-spacing: 0.04em; }
.xtra-tagline-right sup { font-size: 0.5em; }

/* ============================================================
   YOUR GOALS — 4-COLUMN GRID
   ============================================================ */
.goals-section { padding: 100px 0; background: var(--white); }
.goals-header { text-align: center; margin-bottom: 60px; }
.goals-title { font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 18px; }
.goals-sub { font-size: 0.95rem; color: var(--gray-500); line-height: 1.75; }

/* 4-column equal grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* Base card */
.gc {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

/* ── CARD 1: 24/7 care ── */
.gc--care { background: var(--gray-100); }
.gc-photo { flex: 1; overflow: hidden; }
.gc-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.gc-body { padding: 22px 22px 24px; }
.gc-title { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.gc-desc { font-size: 0.8rem; color: var(--gray-600); line-height: 1.65; }
.gc-desc strong { color: var(--black); }

/* ── CARD 2: Tailored tweaks ── */
.gc--tweaks {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    padding: 22px;
    position: relative;
}
/* Red corner bracket top-right */
.gc-tweaks-corner {
    position: absolute; top: 16px; right: 16px;
    width: 14px; height: 14px;
    border-top: 2px solid #f94532;
    border-right: 2px solid #f94532;
}
.gc-tweaks-top { margin-bottom: 16px; }
.gc--tweaks .gc-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.gc-avatars { display: flex; margin-top: 14px; }
.gc-avatar {
    width: 26px; height: 26px; border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover; margin-right: -7px;
}
/* Launch checklist */
.gc-launch { border-top: 1px solid var(--gray-200); padding-top: 14px; margin-top: auto; }
.gc-launch-label { font-size: 0.73rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.gc-launch-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.gc-launch-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--black); }
.gc-launch-item--done .gc-launch-text { text-decoration: line-through; color: var(--gray-400); }
.gc-dot {
    width: 13px; height: 13px; border-radius: 50%;
    border: 1.5px solid var(--gray-300); flex-shrink: 0;
}
.gc-dot--red { background: #f94532; border-color: #f94532; }
.gc-launch-footer { font-size: 0.7rem; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.gc-launch-checkbox {
    width: 11px; height: 11px; border: 1.5px solid var(--gray-300);
    border-radius: 2px; display: inline-block; flex-shrink: 0;
}

/* ── CARD 3: Brand kit ── */
.gc--brandkit {
    background: #111;
    color: var(--white);
    padding: 22px;
}
.gc-bk-top { margin-bottom: 8px; }
.gc-bk-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.gc-bk-icons {
    display: flex; gap: 14px;
    color: rgba(255,255,255,0.3);
    align-items: center;
}
.gc-bk-center {
    flex: 1; display: flex;
    align-items: center; justify-content: center;
    padding: 20px 0;
}
.gc-bk-btn {
    width: 110px; height: 110px; border-radius: 50%;
    background: #f94532;
    display: flex; align-items: center; justify-content: center;
    position: relative; cursor: pointer;
    box-shadow: 0 8px 40px rgba(249,69,50,0.45);
    transition: transform 0.2s;
}
.gc-bk-btn:hover { transform: scale(1.05); }
.gc-bk-badge {
    position: absolute; top: 5px; right: 9px;
    background: var(--white); color: #f94532;
    font-size: 0.6rem; font-weight: 800;
    border-radius: 50%; width: 17px; height: 17px;
    display: flex; align-items: center; justify-content: center;
}
.gc-bk-bottom { }
.gc-bk-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.gc-bk-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.gc-bk-desc strong { color: rgba(255,255,255,0.8); }

/* ── CARD 4: Real-time support ── */
.gc--support {
    position: relative;
    overflow: hidden;
    padding: 20px;
    justify-content: space-between;
}
.gc-support-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}
.gc-support-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 100%; gap: 12px;
}
/* Phone widget */
.gc-support-phone {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 32px;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.gc-phone-notch {
    width: 60px; height: 5px; border-radius: 3px;
    background: rgba(255,255,255,0.3); margin: 0 auto 4px;
}
.gc-phone-time {
    font-size: 2.4rem; font-weight: 800; letter-spacing: -0.06em;
    color: var(--white); text-align: center; line-height: 1;
}
.gc-phone-notif {
    background: rgba(255,255,255,0.95); border-radius: 12px;
    padding: 10px 12px; display: flex; gap: 9px; align-items: flex-start;
}
.gc-notif-avatar { width: 28px; height: 28px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.gc-notif-body { flex: 1; }
.gc-notif-top {
    font-size: 0.68rem; font-weight: 700; color: var(--black);
    display: flex; justify-content: space-between; margin-bottom: 2px;
}
.gc-notif-ts { font-weight: 400; color: var(--gray-400); }
.gc-notif-msg { font-size: 0.68rem; color: var(--gray-600); line-height: 1.35; }
/* Bottom branding */
.gc-support-bottom { }
.gc-support-brand {
    font-size: 1.35rem; font-weight: 900; font-style: italic;
    letter-spacing: -0.02em; color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    line-height: 1;
}
.gc-support-brand sup { font-size: 0.45em; vertical-align: super; }
.gc-support-badge {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65); text-transform: uppercase; margin-top: 4px;
}

/* ============================================================
   SELECTED WORK / PORTFOLIO
   ============================================================ */
.work-section { padding: 100px 0; }
.work-header { text-align: center; margin-bottom: 60px; }
.section-sublabel { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.work-sublabel { justify-content: center; }
.red-dot { color: var(--red); }
.work-title { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 28px; }
.work-year { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; color: var(--gray-400); }

/* Projects grid — 3-row asymmetric layout */
.projects-grid { padding: 0; }

.proj-row {
    display: flex;
    padding: 0 6%;
    gap: 13%;
    align-items: flex-start;
}
.proj-row--center {
    justify-content: center;
    padding: 0 6%;
}

/* Big card ~55% of padded container, small fills the rest */
.proj-big { flex: 0 0 55%; }
.proj-small { flex: 1; }
.proj-center { flex: 0 0 54%; }

/* Base card */
.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
}
.project-card-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.project-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.project-card:hover .project-card-img { transform: scale(1.04); }

/* Red corner bracket (top-right of image) */
.project-card-corner {
    position: absolute; top: 16px; right: 16px;
    width: 13px; height: 13px;
    border-top: 2px solid #f94532;
    border-right: 2px solid #f94532;
    pointer-events: none;
}

/* Info area */
.project-card-info { padding: 18px 24px 26px; }
.project-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.project-card-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.project-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.project-card-tag {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
    border: 1.5px solid var(--gray-200); padding: 4px 10px;
    border-radius: 100px; color: var(--gray-500); text-transform: uppercase;
}

.work-all-link-wrap { margin-top: 48px; }
.work-all-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; color: var(--black); border-bottom: 1.5px solid var(--black); padding-bottom: 4px; transition: color 0.2s; }
.work-all-link:hover { color: var(--red); border-color: var(--red); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: #0a0a0a;
    color: var(--white);
    padding: 0;
    position: relative;
    scroll-margin-top: 64px;
}

/* Top bar */
.svc-topbar {
    display: flex;
    justify-content: flex-end;
    padding: 28px 48px 0;
}
.svc-topbar-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Body: left + right */
.svc-body {
    display: flex;
    align-items: flex-start;
    padding: 60px 48px 80px;
    gap: 0;
}

/* LEFT sticky panel */
.svc-left {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}
.svc-panel-img-wrap {
    width: 200px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}
.svc-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.svc-panel-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.svc-panel-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    max-width: 200px;
}

/* RIGHT service list */
.svc-right {
    flex: 1;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
}
.svc-list {
    flex: 1;
}

/* Each service item */
.svc-item {
    cursor: pointer;
    padding: 10px 0 22px;
    transition: opacity 0.25s ease;
    opacity: 0.28;
}
.svc-item:hover,
.svc-item--active {
    opacity: 1;
}
.svc-item:hover .svc-num,
.svc-item--active .svc-num {
    color: var(--red);
}
.svc-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 18px;
}
.svc-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.svc-num {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
    letter-spacing: 0.04em;
    align-self: flex-start;
    margin-top: 10px;
    flex-shrink: 0;
}
.svc-name {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
}

/* Pricing row */
.svc-pricing-row {
    padding-top: 28px;
    text-align: right;
}
.svc-pricing-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}
.svc-pricing-link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ============================================================
   FOUNDER / ABOUT SECTION
   ============================================================ */
.founder-section { background: var(--white); padding: 100px 0; overflow: hidden; }

/* Scrolling marquee */
.founder-marquee { overflow: hidden; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 24px 0; margin-bottom: 80px; }
.founder-marquee-track {
    display: flex; gap: 80px; white-space: nowrap;
    animation: marquee 28s linear infinite; width: max-content;
}
.founder-marquee-track span { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; letter-spacing: -0.01em; color: var(--black); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Founder content */
.founder-content-wrap { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 80px; align-items: center; max-width: 1320px; margin: 0 auto; padding: 0 48px; margin-bottom: 80px; }
.founder-portrait { border-radius: 0; overflow: hidden; position: relative; }
.founder-corner-bracket { position: absolute; top: 12px; right: 12px; font-size: 1rem; color: var(--red); z-index: 2; line-height: 1; }
.founder-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(100%); aspect-ratio: 2/3; display: block; }

/* Quote block */
.founder-quote-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.founder-quote-mark { font-size: 3rem; line-height: 1; color: var(--red); font-weight: 900; flex-shrink: 0; margin-top: 4px; font-family: Georgia, serif; }
.founder-quote-text { font-size: clamp(1.3rem, 2.2vw, 1.85rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.03em; color: var(--black); margin: 0; }

.founder-body-text { font-size: 0.88rem; line-height: 1.7; color: var(--gray-500); margin-bottom: 32px; max-width: 520px; }
.founder-rule { width: 100%; height: 1px; background: var(--gray-200); margin-bottom: 20px; }
.founder-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.founder-role { font-size: 0.82rem; color: var(--gray-400); }

/* Logos ticker */
.logos-ticker { overflow: hidden; border-top: 1px solid var(--gray-200); padding: 40px 0; }
.logos-track { display: flex; align-items: center; gap: 80px; animation: marquee 22s linear infinite; width: max-content; }
.logo-item { height: 28px; width: auto; opacity: 0.4; filter: grayscale(100%); transition: opacity 0.2s; }
.logo-item:hover { opacity: 0.8; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
/* ── Full-bleed team hero ── */
.team-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}
.team-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.team-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
}
.team-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 480px;
    padding: 32px 48px 40px;
    color: var(--white);
}
/* Top bar — avatars on the right */
.team-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: auto;
}
.team-avatars-row {
    display: flex;
    align-items: center;
}
.team-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255,255,255,0.8);
    margin-left: -10px;
}
.team-avatar:first-child { margin-left: 0; }
.team-count {
    background: var(--black);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid rgba(255,255,255,0.8);
    margin-left: -10px;
    flex-shrink: 0;
}
/* Main heading block */
.team-main {
    margin-bottom: 48px;
    margin-top: 40px;
}
.team-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 14px;
}
.team-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    max-width: 340px;
}
.team-sub strong { color: var(--white); font-weight: 700; }
/* Bottom stats bar */
.team-stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}
.team-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.team-stat-accent {
    font-size: 0.8rem;
    color: var(--red);
    margin-right: 4px;
    flex-shrink: 0;
}
.team-stat-num {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
    flex-shrink: 0;
}
.team-stat-info { display: flex; flex-direction: column; }
.team-stat-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.3; }
.team-stat-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { padding: 100px 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-title { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; letter-spacing: -0.05em; margin-bottom: 16px; }
.pricing-sub { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.pricing-toggle-wrap { display: inline-flex; align-items: center; gap: 12px; }
.toggle-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.toggle-btn { width: 52px; height: 28px; background: var(--red); border: none; border-radius: 100px; cursor: pointer; position: relative; transition: background 0.3s; }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: var(--white); border-radius: 50%; transition: transform 0.3s; display: block; }
.toggle-btn.active .toggle-thumb { transform: translateX(24px); }
.save-badge { font-size: 0.68rem; font-weight: 700; background: rgba(230,59,46,0.12); color: var(--red); padding: 3px 10px; border-radius: 100px; }

.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card { background: #f7f7f7; border: none; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 16px; position: relative; transition: box-shadow 0.3s; }
.pricing-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.pricing-card--popular { background: #f2f2f2; }
.pc-corner-bracket { position: absolute; top: 28px; right: 28px; font-size: 1.1rem; color: var(--red); font-weight: 900; line-height: 1; }
.pc-header { display: flex; justify-content: space-between; align-items: center; }
.pc-name { font-size: 0.92rem; font-weight: 700; color: var(--black); }
.pc-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; display: inline-flex; align-items: center; gap: 4px; }
.pc-badge--hot { background: rgba(230,59,46,0.1); color: var(--red); border: 1px solid rgba(230,59,46,0.25); }
.pc-badge--premium { background: var(--black); color: var(--white); }
.pc-price-wrap { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; perspective: 400px; }
.pc-old-price { font-size: 1rem; color: var(--gray-400); text-decoration: line-through; margin-right: 4px; display: inline-block; }
.pc-price { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em; color: var(--black); display: inline-block; }
.pc-period { font-size: 0.78rem; color: var(--gray-400); }

@keyframes price-flip-out {
    0%   { transform: translateY(0) rotateX(0deg); opacity: 1; }
    100% { transform: translateY(-24px) rotateX(90deg); opacity: 0; }
}
@keyframes price-flip-in {
    0%   { transform: translateY(24px) rotateX(-90deg); opacity: 0; }
    100% { transform: translateY(0) rotateX(0deg); opacity: 1; }
}
.price-flip-out { animation: price-flip-out 0.18s cubic-bezier(0.4,0,1,1) forwards; }
.price-flip-in  { animation: price-flip-in  0.22s cubic-bezier(0,0,0.2,1) forwards; }
.pc-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.pc-cta { display: block; text-align: center; padding: 13px 24px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; border: 1.5px solid var(--black); color: var(--black); background: transparent; transition: background 0.2s, color 0.2s; text-decoration: none; }
.pc-cta:hover { background: var(--black); color: var(--white); }
.pc-cta--red { background: var(--red); border-color: var(--red); color: var(--white); }
.pc-cta--red:hover { background: #c0332a; border-color: #c0332a; }
.pc-rule { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 4px 0; }
.pc-features-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gray-400); text-transform: uppercase; }
.pc-features { display: flex; flex-direction: column; gap: 10px; }
.pc-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
.pc-check { color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { padding: 100px 0; background: var(--white); }
.process-wrap { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }
.process-left { position: sticky; top: 100px; }
.process-title { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; }
.process-sub { font-size: 0.85rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }
.process-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--black); transition: color 0.2s; }
.process-cta:hover { color: var(--red); }
.process-right { display: flex; flex-direction: column; }
.proc-row { display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; border-top: 1px solid var(--gray-200); }
.proc-row:last-child { border-bottom: 1px solid var(--gray-200); }
.proc-num { font-size: 0.72rem; font-weight: 600; color: var(--gray-400); flex-shrink: 0; width: 28px; padding-top: 4px; letter-spacing: 0.02em; }
.proc-body { flex: 1; }
.proc-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.proc-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }
.proc-arrow { font-size: 0.85rem; color: var(--red); flex-shrink: 0; padding-top: 2px; }

/* ============================================================
   TESTIMONIALS / SUCCESS STORIES — 4-card horizontal grid
   ============================================================ */
.ts-section { background: var(--white); padding: 80px 0; }
.ts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1320px; margin: 0 auto; padding: 0 48px; border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; }
.ts-card { padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; min-height: 320px; }
.ts-card + .ts-card { border-left: 1px solid var(--gray-200); }

/* Card 1 – Intro */
.ts-card--intro { background: #f7f7f7; justify-content: space-between; }
.ts-intro-brand { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; color: var(--black); text-transform: uppercase; }
.ts-intro-brand sup { font-size: 0.55em; }
.ts-intro-heading { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; color: var(--black); margin-top: auto; }
.ts-intro-tagline { font-size: 0.78rem; color: var(--gray-500); line-height: 1.65; }

/* Card 2 – Photo */
.ts-card--photo { background-size: cover; background-position: center; position: relative; padding: 0; min-height: 320px; }
.ts-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(200,60,30,0.88) 0%, rgba(180,40,10,0.45) 55%, transparent 100%); }
.ts-photo-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 28px; gap: 12px; }
.ts-photo-quote { font-size: 0.88rem; font-weight: 600; color: #fff; line-height: 1.55; }
.ts-photo-author { display: flex; flex-direction: column; gap: 2px; }
.ts-photo-name { font-size: 0.8rem; font-weight: 700; color: #fff; }
.ts-photo-role { font-size: 0.72rem; color: rgba(255,255,255,0.75); }

/* Cards 3 & 4 – shared elements */
.ts-stars { font-size: 0.75rem; color: var(--red); letter-spacing: 2px; }
.ts-stars--dark { color: var(--black); }
.ts-card-quote { font-size: 0.82rem; font-weight: 500; line-height: 1.6; flex: 1; }
.ts-card-quote--dark { color: var(--black); }
.ts-card-stats { display: flex; gap: 20px; margin-top: auto; }
.ts-card-stat { display: flex; flex-direction: column; gap: 2px; }
.ts-card-num { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.04em; color: #fff; }
.ts-card-num--dark { color: var(--black); }
.ts-card-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.ts-card-lbl--dark { color: var(--gray-500); }
.ts-card-author { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.ts-card-author--dark {}
.ts-card-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.ts-card-name { font-size: 0.78rem; font-weight: 700; color: #fff; }
.ts-card-name--dark { color: var(--black); }
.ts-card-role { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.ts-card-role--dark { color: var(--gray-500); }

/* Card 3 – Dark */
.ts-card--dark { background: var(--black); }
.ts-card--dark .ts-card-quote { color: rgba(255,255,255,0.9); }

/* Card 4 – Light */
.ts-card--light { background: #f7f7f7; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 20px; }
.faq-sub { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.faq-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--black); transition: color 0.2s; }
.faq-cta:hover { color: var(--red); }
.faq-list { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; text-align: left; font-family: var(--font);
    font-size: 0.92rem; font-weight: 500; color: var(--black); gap: 24px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-icon { font-size: 1.2rem; font-weight: 300; flex-shrink: 0; color: var(--red); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; }
.faq-answer p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.75; }

/* ============================================================
   BLOG / LATEST INSIGHTS SECTION
   ============================================================ */
.blog-section { padding: 100px 0; background: var(--white); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.blog-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -0.04em; }
.blog-sub { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; max-width: 360px; }
.blog-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; border-bottom: 1.5px solid var(--black); padding-bottom: 3px; white-space: nowrap; transition: color 0.2s; }
.blog-cta:hover { color: var(--red); border-color: var(--red); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { display: block; border: 1.5px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-card-img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-info { padding: 24px; }
.blog-card-date { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); margin-bottom: 10px; }
.blog-card-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 16px; letter-spacing: -0.01em; }
.blog-read-more { font-size: 0.8rem; font-weight: 700; color: var(--black); border-bottom: 1.5px solid var(--gray-200); padding-bottom: 2px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 100px 0 120px; background: var(--black); }
.contact-title { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: var(--white); margin-bottom: 80px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 48px; }
.contact-info-desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 400; }
.contact-person { display: flex; align-items: center; gap: 16px; }
.contact-person-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.contact-person-name { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.contact-person-role { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.alert-success { background: rgba(16,185,129,0.15); color: #6ee7b7; padding: 16px 20px; border-radius: 8px; font-weight: 600; margin-bottom: 20px; font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; }
.form-group input, .form-group textarea { border: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 18px 0; font-size: 0.95rem; font-family: var(--font); background: transparent; color: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.6); }
.form-group textarea { resize: none; min-height: 100px; }
.form-error { font-size: 0.78rem; color: #f87171; }
.contact-submit { background: var(--white); color: var(--black); border: none; border-radius: 100px; padding: 14px 32px; font-size: 0.88rem; font-weight: 700; cursor: pointer; font-family: var(--font); align-self: flex-start; margin-top: 32px; transition: background 0.2s, color 0.2s; }
.contact-submit:hover { background: var(--red); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #f2f2f2; color: var(--black); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 56px 48px 48px; }

/* Top: 4-col grid */
.footer-top { display: grid; grid-template-columns: 1.8fr 1.6fr 1fr 0.8fr; gap: 40px; align-items: start; padding-bottom: 48px; }

/* Col 1 – Logo */
.footer-logo-col {}
.footer-logo { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: var(--black); }
.footer-logo sup { font-size: 0.38em; vertical-align: super; }

/* Col 2 – Newsletter */
.footer-nl-heading { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.footer-nl-sub { font-size: 0.78rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
.footer-nl-form { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #ccc; padding-bottom: 10px; }
.footer-nl-input { flex: 1; background: none; border: none; outline: none; font-family: var(--font); font-size: 0.82rem; color: var(--black); placeholder-color: var(--gray-400); }
.footer-nl-input::placeholder { color: var(--gray-400); }
.footer-nl-btn { width: 30px; height: 30px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; color: #fff; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.footer-nl-btn:hover { background: #c0332a; }

/* Col 3 & 4 – Links */
.footer-nav-col,
.footer-social-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.82rem; color: var(--gray-600); transition: color 0.2s; text-decoration: none; }
.footer-link:hover { color: var(--black); }

/* Divider */
.footer-divider { border: none; border-top: 1px solid #d8d8d8; margin: 0; }

/* Bottom bar */
.footer-bottom { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: end; padding-top: 32px; }
.footer-contact-col { display: flex; flex-direction: column; gap: 4px; }
.footer-phone { font-size: 0.72rem; color: var(--gray-400); }
.footer-email { font-size: clamp(0.95rem, 1.8vw, 1.25rem); font-weight: 800; color: var(--black); letter-spacing: -0.02em; text-decoration: none; transition: color 0.2s; }
.footer-email:hover { color: var(--red); }
.footer-bottom-tagline { font-size: 0.75rem; color: var(--gray-500); line-height: 1.7; }

.footer-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--black);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 99px;
    border: 1.5px solid var(--black);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.footer-admin-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.footer-admin-icon {
    font-size: 13px;
    line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .goals-grid { grid-template-columns: 1fr 1fr; }
    .gc { min-height: 380px; }
    .projects-grid { grid-template-columns: 1fr; }
    .svc-left { display: none; }
    .svc-right { padding-left: 0; }
    .founder-content-wrap { grid-template-columns: 1fr; }
    .founder-img { aspect-ratio: 16/9; max-height: 400px; }
    .team-inner { padding: 24px 24px 32px; }
    .team-stats-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .process-wrap { grid-template-columns: 1fr; gap: 40px; }
    .process-left { position: static; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
    .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: static; }
    .blog-grid { grid-template-columns: repeat(2,1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
    .footer-inner { padding: 40px 24px 32px; }
}

@media (max-width: 768px) {
    /* ── Layout ── */
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-container { padding-left: 20px; padding-right: 20px; }

    /* ── Hero ── */
    .hero-meta, .hero-headline-wrap, .hero-between-row { padding-left: 20px; padding-right: 20px; }
    .hero-services { display: none; }
    .hero-between-row { flex-direction: column; gap: 20px; align-items: flex-start; }

    /* ── Stats ── */
    .stats-section { padding: 56px 0; }
    .stats-header { flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .stats-heading { font-size: 1.35rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 24px 16px 24px 0; }
    .stat-number { font-size: clamp(2.2rem, 9vw, 3.5rem); margin-bottom: 12px; }
    .stat-label { font-size: 0.85rem; }
    .stat-desc { font-size: 0.78rem; }

    /* ── Goals ── */
    .goals-section { padding: 56px 0; }
    .goals-header { margin-bottom: 32px; }
    .goals-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .goals-grid { grid-template-columns: 1fr; gap: 12px; }
    .gc { min-height: auto; }
    .gc-body { padding: 16px 18px 20px; }

    /* ── Work / Projects ── */
    .work-section { padding: 56px 0; }
    .work-header { margin-bottom: 32px; }
    .work-title { font-size: clamp(1.8rem, 7vw, 3rem); }
    .proj-row { flex-direction: column; padding: 0 20px; gap: 32px; }
    .proj-row--center { padding: 0 20px; }
    .proj-big, .proj-small, .proj-center { flex: none; width: 100%; }

    /* ── Xtra ── */
    .xtra-line, .xtra-tagline-row { padding-left: 20px; padding-right: 20px; }
    .xtra-line { font-size: clamp(2.2rem, 9vw, 4rem); }

    /* ── Services ── */
    .svc-body { padding: 32px 20px 48px; }
    .svc-topbar { padding: 20px 20px 0; }
    .svc-name { font-size: clamp(28px, 7vw, 48px); }

    /* ── Founder ── */
    .founder-content-wrap { padding: 0 20px; }
    .founder-marquee-track span { font-size: 0.95rem; }

    /* ── Process ── */
    .section-sublabel { justify-content: center; }
    .proc-num { display: none; }

    /* ── Blog ── */
    .blog-grid { grid-template-columns: 1fr; }

    /* ── Testimonials ── */
    .ts-grid { grid-template-columns: 1fr; }

    /* ── Footer ── */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
    .footer-inner { padding: 36px 20px 28px; }
}

@media (max-width: 480px) {
    /* ── Hero headline ── */
    .hero-hl-1 { font-size: clamp(3rem, 17vw, 5rem); }
    .hero-hl-2 { font-size: clamp(2rem, 11vw, 3.5rem); }

    /* ── Stats: keep 2 columns, just tighter ── */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 20px 12px 20px 0; }
    .stat-number { font-size: clamp(1.9rem, 9vw, 3rem); }

    /* ── Pricing ── */
    .pricing-cards { max-width: 100%; }

    /* ── Contact ── */
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }

    /* ── Footer ── */
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── NAV active state ── */
.nav-link.active { color: var(--red); }

/* ── About page: solid dark navbar from the start, no (17) counter ── */
body.page-about .navbar {
    background: rgba(8,8,8,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
body.page-about .nav-counter {
    display: none;
}
body.page-about .nav-links {
    gap: 80px;
}

/* ── SECTION 1: Hero ── */
.au-hero {
    padding: 160px 80px 80px;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}
.au-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.au-hero-label {
    font-size: 11px;
    color: #aaa;
    letter-spacing: .1em;
    margin-bottom: 20px;
}
.au-hero-title {
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 40px;
}
.au-hero-byline {
    display: flex;
    align-items: center;
    gap: 12px;
}
.au-hero-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.au-hero-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.au-hero-author-role {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}
.au-hero-right {
    padding-top: 80px;
}
.au-hero-lead {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 28px;
}
.au-hero-body {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ── SECTION 2: Team / Join us ── */
.au-team-section {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}
.au-team-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    min-height: 520px;
}
.au-join-left {
    padding: 60px;
    border-right: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.au-join-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #aaa;
}
.au-join-heading {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1.1;
    margin: 16px 0 16px;
}
.au-join-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 32px;
}
.au-join-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    transition: background .2s;
    align-self: flex-start;
}
.au-join-cta:hover { background: var(--red); }

.au-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.au-team-card {
    border-left: 1px solid #ebebeb;
    overflow: hidden;
}
.au-team-photo-wrap {
    overflow: hidden;
    height: 420px;
}
.au-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s ease;
}
.au-team-card:hover .au-team-photo { transform: scale(1.04); }
.au-team-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    padding: 16px 20px 4px;
}
.au-team-role {
    font-size: 12px;
    color: #aaa;
    padding: 0 20px 20px;
}

/* ── SECTION 3: Description ── */
.au-desc-section {
    background: #fff;
    padding: 80px 80px;
    border-bottom: 1px solid #ebebeb;
}
.au-desc-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.au-desc-lead {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    letter-spacing: -0.02em;
}
.au-desc-body {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ── SECTION 4: Stats/Partners Strip ── */
.au-strip {
    background: #f7f7f7;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 28px 80px;
}
.au-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.au-strip-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.au-strip-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
}
.au-strip-label {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 3px;
}
.au-strip-divider {
    width: 1px;
    height: 36px;
    background: #d8d8d8;
    flex-shrink: 0;
}
.au-strip-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}
.au-partner-img {
    height: 20px;
    width: auto;
    opacity: .4;
    filter: grayscale(1);
    transition: opacity .2s;
}
.au-strip-logo:hover .au-partner-img { opacity: .8; }

/* ── SECTION 5: Awards ── */
.au-awards-section {
    background: #fff;
    padding: 80px 80px 100px;
    border-bottom: 1px solid #ebebeb;
}
.au-awards-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.au-awards-title {
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--black);
    line-height: 1.0;
    margin-bottom: 48px;
    padding-left: 220px;
}

/* Four-column table grid */
.au-awards-table {
    display: flex;
    flex-direction: column;
}
.au-awards-colheads,
.au-award-row {
    display: grid;
    grid-template-columns: 200px 1fr 1.4fr 80px;
    align-items: baseline;
    gap: 32px;
    padding: 14px 0;
    border-top: 1px solid #e0e0e0;
}
.au-award-row {
    padding: 22px 0;
    transition: background .15s;
}
.au-award-row:hover { background: #fafafa; }
.au-awards-colheads {
    border-top: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
}

/* Column header labels */
.au-awards-col-left,
.au-awards-col-name,
.au-awards-col-desc,
.au-awards-col-year {
    font-size: 11px;
    color: #aaa;
    font-weight: 400;
    letter-spacing: .02em;
}
.au-awards-col-year { text-align: right; }

/* Award data */
.au-award-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.au-award-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    font-weight: 400;
}
.au-award-year {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-align: right;
}

/* ── SECTION 6: Full-width dark image ── */
.au-fullimg-section {
    background: #000;
}
.au-fullimg-wrap {
    position: relative;
    aspect-ratio: 2.5 / 1;
    min-height: 380px;
    max-height: 640px;
    overflow: hidden;
}
.au-fullimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%);
    opacity: .6;
    display: block;
}
.au-fullimg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.au-fullimg-brand {
    font-size: clamp(28px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.0;
    white-space: nowrap;
}
.au-fullimg-brand sup { font-size: .38em; vertical-align: super; }
.au-fullimg-caption {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 14px 80px;
    background: #fff;
    border-top: 1px solid #ebebeb;
}
.au-caption-date {
    font-size: 11px;
    color: #888;
    letter-spacing: .04em;
}
.au-caption-note {
    font-size: 11px;
    color: #666;
    letter-spacing: .02em;
    text-align: center;
}

/* ── SECTION 7: What Drives Us ── */
.au-drives-section {
    background: #fff;
    padding: 80px 80px 0;
    border-bottom: 1px solid #ebebeb;
}
.au-drives-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.au-drives-text {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 60px;
    max-width: 900px;
}
.au-drives-label-col {
    font-size: 11px;
    color: #aaa;
    font-weight: 400;
    letter-spacing: .04em;
    padding-top: 5px;
}
.au-drives-heading {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.au-drives-body {
    font-size: 13px;
    line-height: 1.75;
    color: #888;
}
.au-drives-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.au-drives-photo-wrap {
    overflow: hidden;
}
.au-drives-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
    transition: transform .6s ease, filter .3s;
}
.au-drives-photo-wrap:hover .au-drives-photo {
    transform: scale(1.03);
    filter: grayscale(60%);
}
.au-drives-section--text-only {
    padding-bottom: 80px;
}
.au-drives-text--expanded {
    max-width: 100%;
    padding-bottom: 0;
}

/* ── SECTION 7 & 8: Split sections (legacy) ── */
.au-split-section {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}
.au-split-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.au-split-inner--reversed {
    direction: rtl;
}
.au-split-inner--reversed > * { direction: ltr; }

.au-split-img-col {
    overflow: hidden;
    position: relative;
}
.au-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.au-split-img-col:hover .au-split-img { transform: scale(1.03); }

.au-split-text-col {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.au-split-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.au-split-heading {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 24px;
}
.au-split-body {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
.au-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: .04em;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color .2s, border-color .2s;
}
.au-split-cta:hover { color: var(--red); border-color: var(--red); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .au-hero { padding: 140px 40px 60px; }
    .au-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .au-hero-right { padding-top: 0; }
    .au-team-inner { grid-template-columns: 1fr; }
    .au-join-left { border-right: none; border-bottom: 1px solid #ebebeb; padding: 40px; }
    .au-team-grid { grid-template-columns: repeat(3, 1fr); }
    .au-desc-section, .au-awards-section { padding: 60px 40px; }
    .au-drives-section { padding: 60px 40px 0; }
    .au-drives-text { grid-template-columns: 1fr; gap: 16px; }
    .au-drives-photos { gap: 8px; }
    .au-desc-inner { grid-template-columns: 1fr; gap: 32px; }
    .au-strip { padding: 24px 40px; }
    .au-split-inner { grid-template-columns: 1fr; }
    .au-split-inner--reversed { direction: ltr; }
    .au-split-img-col { min-height: 300px; }
    .au-split-text-col { padding: 40px; }
    .au-fullimg-caption { padding: 14px 40px; }
}
@media (max-width: 768px) {
    .au-hero { padding: 120px 24px 48px; }
    .au-team-grid { grid-template-columns: 1fr; }
    .au-team-photo-wrap { height: 280px; }
    .au-team-card { border-left: none; border-top: 1px solid #ebebeb; }
    .au-join-left { padding: 32px 24px; }
    .au-desc-section, .au-awards-section { padding: 48px 24px; }
    .au-strip { padding: 20px 24px; overflow-x: auto; }
    .au-awards-title { padding-left: 0; }
    .au-awards-colheads { display: none; }
    .au-award-row { grid-template-columns: 1fr auto; gap: 12px; }
    .au-awards-col-left, .au-awards-col-desc { display: none; }
    .au-award-desc { display: none; }
    .au-split-text-col { padding: 32px 24px; }
    .au-fullimg-wrap { aspect-ratio: 1.8/1; }
    .au-fullimg-brand { white-space: normal; font-size: clamp(22px, 7vw, 48px); }
    .au-fullimg-caption { padding: 12px 24px; grid-template-columns: 1fr; gap: 4px; }
    .au-caption-note { text-align: left; }
}

/* ================================================================
   PROJECTS PAGE
================================================================ */

/* ── Navbar: white bg, dark text (white page) ── */
body.page-projects .nav-counter { display: none; }
body.page-projects .navbar {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}
body.page-projects .nav-logo-name { color: #111; }
body.page-projects .nav-logo-sub  { color: rgba(0,0,0,0.45); }
body.page-projects .nav-link { color: rgba(0,0,0,0.65); }
body.page-projects .nav-link:hover { color: #111; }
body.page-projects .nav-link.active { color: var(--red); }
body.page-projects .nav-menu-btn { color: #111; }
body.page-projects .nav-menu-btn .nav-menu-lines span { background: #111; }
body.page-projects .nav-menu-label { color: #111; }
body.page-projects .navbar.scrolled { background: #fff; }

/* ── Page header ── */
.proj-header {
    background: #fff;
    padding: 100px 60px 40px;
}
.proj-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
}
.proj-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
    line-height: 1;
    margin: 0;
}
.proj-subtitle {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
    max-width: 360px;
}

/* ── Filter tabs ── */
.proj-filters {
    background: #fff;
    padding: 0 60px 28px;
}
.proj-filters-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 12px;
}
.proj-filter-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 12px;
}
.proj-filter-btn:hover { color: #111; }
.proj-filter-btn.active {
    color: #111;
    font-weight: 600;
}
.proj-filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: #111;
}

/* ── Project grid ── */
.proj-grid-section {
    background: #fff;
    padding: 0 60px 80px;
}
.proj-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
}

/* ── Project card ── */
.proj-card {
    display: flex;
    flex-direction: column;
}
.proj-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    margin-bottom: 16px;
    text-decoration: none;
}
.proj-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.proj-card-img-wrap:hover .proj-card-img {
    transform: scale(1.04);
}
.proj-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 1rem;
    color: #111;
    background: rgba(255,255,255,0.9);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.proj-card-img-wrap:hover .proj-card-arrow {
    opacity: 1;
}
.proj-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.proj-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -0.01em;
}
.proj-card-desc {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
.proj-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.proj-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #444;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 3px 8px;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .proj-header { padding: 90px 24px 32px; }
    .proj-header-inner { grid-template-columns: 1fr; gap: 16px; }
    .proj-filters { padding: 0 24px 20px; }
    .proj-filters-inner { gap: 20px; overflow-x: auto; }
    .proj-grid-section { padding: 0 24px 60px; }
    .proj-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   PAYMENT MODAL
   ============================================================ */
.pay-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.pay-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.pay-modal {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(.16,1,.3,1), opacity 0.28s ease;
    opacity: 0;
}
.pay-overlay.active .pay-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.pay-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.pay-close:hover { color: #111; background: #f2f2f2; }
.pay-header { margin-bottom: 20px; }
.pay-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 6px;
}
.pay-subtitle { font-size: 0.85rem; color: #666; }
.pay-summary {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
}
.pay-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}
.pay-field { margin-bottom: 18px; }
.pay-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.pay-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.94rem;
    font-family: inherit;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.pay-input:focus { border-color: #111; }
.pay-card-element {
    padding: 13px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s;
}
.pay-card-element.StripeElement--focus { border-color: #111; }
.pay-card-element.StripeElement--invalid { border-color: #e53e3e; }
.pay-card-errors {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #e53e3e;
    min-height: 18px;
}
.pay-submit {
    width: 100%;
    padding: 15px 24px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pay-submit:hover:not(:disabled) { background: #333; }
.pay-submit:active:not(:disabled) { transform: scale(0.99); }
.pay-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.pay-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: paySpinAnim 0.7s linear infinite;
    display: inline-block;
}
@keyframes paySpinAnim { to { transform: rotate(360deg); } }
.pay-secure-note {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 14px;
}
@media (max-width: 520px) {
    .pay-modal { padding: 28px 20px; }
    .pay-title { font-size: 1.25rem; }
}

/* ============================================================
   MULTI-STEP PAYMENT MODAL – extended styles
   ============================================================ */

/* Progress indicator */
.pay-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
}
.pay-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.pay-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #888;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
}
.pay-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s;
}
.pay-step--active .pay-step-dot   { background: #111; color: #fff; }
.pay-step--active .pay-step-label { color: #111; }
.pay-step--completed .pay-step-dot   { background: #22c55e; color: #fff; }
.pay-step--completed .pay-step-label { color: #22c55e; }
.pay-step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
}

/* Order bar */
.pay-order-bar {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 8px;
}
.pay-order-bar-left { display: flex; flex-direction: column; gap: 2px; }
.pay-order-plan  { font-size: 0.95rem; font-weight: 700; color: #111; }
.pay-order-billing { font-size: 0.75rem; color: #888; }
.pay-order-amount  { font-size: 1.05rem; font-weight: 800; color: #111; white-space: nowrap; }

/* Step header */
.pay-step-header { margin-bottom: 20px; }

/* Two-column row */
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .pay-row { grid-template-columns: 1fr; } }

/* Required asterisk */
.pay-required { color: #e53e3e; }

/* Inline field errors */
.pay-field-error {
    display: block;
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 5px;
    min-height: 16px;
}
.pay-input--error { border-color: #e53e3e !important; }

/* Review box on step 2 */
.pay-review-box {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pay-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    gap: 8px;
}
.pay-review-row span  { color: #888; }
.pay-review-row strong { color: #111; font-weight: 600; text-align: right; word-break: break-all; }

/* Actions row (back + pay) */
.pay-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 8px;
}
.pay-back-btn {
    flex-shrink: 0;
    padding: 14px 18px;
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: #555;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.pay-back-btn:hover { border-color: #111; color: #111; }
.pay-submit--flex { flex: 1; margin-top: 0; }

/* Larger modal for multi-step */
.pay-modal { max-width: 520px; max-height: 92vh; overflow-y: auto; }
