/* ─────────────────────────────────────────────
    TOKENS
───────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ─────────────────────────────────────────────
    SHARED
───────────────────────────────────────────── */
.wrap {
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 var(--wrap-pad);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.section-label {
    display: flex;
    align-items: center;
    margin-bottom: var(--sp-12);
    gap: var(--sp-12);
    font-size: var(--fs-11);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

/* ─────────────────────────────────────────────
    SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* ─────────────────────────────────────────────
    NAVBAR
───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--navbar-z);
    padding: 0 var(--section-pad-x);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: background var(--duration-slow) ease, border-color var(--duration-slow) ease, backdrop-filter var(--duration-slow) ease;
}

.navbar.scrolled {
    background: var(--navbar-bg-scrolled);
    backdrop-filter: blur(16px);
    border-color: var(--border);
    box-shadow: var(--shadow-nav);
}

.logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: var(--fs-13);
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.3px;
    transition: color var(--duration-fast);
}

.nav-links a:hover {
    color: var(--text-1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    background: var(--gold);
    color: var(--text-on-dark);
    font-size: var(--fs-13);
    font-weight: 700;
    padding: var(--sp-10) 22px;
    border-radius: var(--r-pill);
    transition: background var(--duration-fast), transform var(--duration-fast);
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-1);
    font-size: 20px;
    cursor: pointer;
}


/* ─────────────────────────────────────────────
    HERO
───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--section-pad-x) var(--section-pad-y-sm);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 30%, var(--hero-gold-glow) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 80%, var(--hero-ember-glow) 0%, transparent 50%),
        var(--bg);
}

/* Decorative grid lines */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
    background-size: var(--hero-grid-size);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-badge {
    position: absolute;
    top: 110px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--hero-badge-bg);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.hero-badge .avatars {
    display: flex;
}

.hero-badge .avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--bg);
    margin-left: -8px;
}

.hero-badge .avatars img:first-child {
    margin-left: 0;
}

.hero-badge p {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.4;
}

.hero-badge p strong {
    color: var(--text-1);
    font-weight: 600;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--wrap-max);
    width: 100%;
}

.hero-kicker {
    margin-bottom: 28px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 32px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-h1 .line-block {
    display: block;
}

.hero-desc {
    max-width: 440px;
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 10vw;
    margin-top: 30px;

}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-8);
    background: var(--ember);
    color: var(--text-white);
    font-size: var(--fs-14);
    font-weight: 600;
    padding: var(--sp-14) var(--sp-28);
    border-radius: var(--r-pill);
    transition: background var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    background: var(--ember-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-ember);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-8);
    color: var(--text-2);
    font-size: var(--fs-14);
    font-weight: 500;
    border-bottom: 1px solid var(--text-3);
    padding-bottom: 2px;
    transition: color var(--duration-fast), border-color var(--duration-fast);
}

.btn-ghost:hover {
    color: var(--text-1);
    border-color: var(--text-2);
}

.hero-scroll-line {
    position: absolute;
    bottom: 80px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll-line span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    writing-mode: vertical-rl;
}

.hero-scroll-line::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-3), transparent);
}

/* ─────────────────────────────────────────────
    HERO OBJECTS SVG
───────────────────────────────────────────── */
.hero-objects {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 2;
    pointer-events: none;
}

.hero-objects-cta {
    pointer-events: all;
}

.hero-objects-svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .hero-objects {
        display: none;
    }
}


/* ─────────────────────────────────────────────
    TICKER / MARQUEE
───────────────────────────────────────────── */
.ticker-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    background: var(--surface);
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker var(--duration-ticker) linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--sp-24);
    padding: 0 var(--sp-48);
    font-size: var(--fs-13);
    font-weight: 500;
    color: var(--text-3);
    white-space: nowrap;
}

.ticker-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ─────────────────────────────────────────────
    CLIENTS STRIP
───────────────────────────────────────────── */
.clients-section {
    padding: var(--section-pad-y-sm) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-48);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.client-tile {
    padding: var(--sp-32) var(--section-pad-x);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--sp-14);
    background-color: var(--hero-badge-bg);
    font-size: var(--fs-18);
    font-weight: 600;
    color: var(--text-2);
    transition: color var(--duration-base), background var(--duration-base);
}

.client-tile:hover {
    color: var(--text-1);
    background: var(--gold-tint-05);
}

.client-tile:nth-child(3n) {
    border-right: none;
}

.client-tile:nth-last-child(-n+3) {
    border-bottom: none;
}

.client-tile svg {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.client-tile:hover svg {
    opacity: 1;
}


/* ─────────────────────────────────────────────
    DATA COMPARE SECTION
───────────────────────────────────────────── */
.data-compare {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
    background: var(--surface);
}

.data-compare-inner {
    width: 100%;
}

.data-compare-header {
    margin-bottom: var(--sp-48);
    max-width: 640px;
}

.data-compare-header .section-label {
    margin-bottom: var(--sp-12);
}

.data-compare-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin: 0 0 var(--sp-16);
}

.data-compare-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.data-compare-subtitle {
    font-size: var(--fs-15);
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.compare-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-32);
    align-items: stretch;
}

.compare-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-36) var(--sp-32);
    display: flex;
    flex-direction: column;
    gap: var(--sp-20);
    transition: border-color var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}

.compare-card--negative {
    border-color: var(--border);
}

.compare-card--negative:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.compare-card--positive {
    background: var(--card);
    border: 3px solid var(--border-gold);
}

.compare-card--positive:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.compare-card-header {
    display: flex;
    align-items: center;
    gap: var(--sp-14);
}

.compare-card-badge {
    width: 36px;
    height: 36px;
    border-radius: var(--r-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-14);
    flex-shrink: 0;
}

.compare-card-badge--negative {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-3);
}

.compare-card-badge--positive {
    background: var(--gold-alpha-20);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.compare-card h3 {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-20), 2.2vw, var(--fs-24));
    font-weight: 500;
    color: var(--text-1);
    letter-spacing: -0.01em;
    margin: 0;
}

.compare-card--positive h3 {
    color: var(--gold); 
    font-weight: 900;
}

.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
}

.compare-list li {
    font-size: var(--fs-15);
    color: var(--text-2);
    line-height: 1.7;
    padding-left: var(--sp-28);
    position: relative;
}

.compare-list li::before {
    position: absolute;
    left: 0;
    top: 0.35em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.compare-card--negative .compare-list li::before {
    content: "\00d7";
    color: var(--text-3);
}

.compare-card--positive .compare-list li::before {
    content: "\2713";
    color: var(--gold);
}

/* ─────────────────────────────────────────────
    ABOUT SECTION
───────────────────────────────────────────── */
.about-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

/* ── Abundance Through Connection (shared section) ───────────────── */
.abundance-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
    background: var(--surface);
}

.abundance-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.abundance-section .section-label {
    justify-content: center;
    margin-bottom: 24px;
}

.abundance-section .section-label::before {
    display: none;
}

.abundance-section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 32px;
}

.abundance-section h2 em {
    font-style: italic;
    color: var(--gold);
}

.abundance-section .abundance-body p {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 24px;
}

.abundance-section .abundance-tagline {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-top: 40px;
    letter-spacing: 0.02em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-left .section-label {
    margin-bottom: 40px;
}

.about-left h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 3.5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.about-left h2 em {
    font-style: italic;
    color: var(--gold);
}

.about-left p {
    font-size: 15.5px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-cta {
    margin-top: 36px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.stat-card {
    background: var(--card);
    padding: var(--sp-36) var(--section-pad-x);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    transition: background var(--duration-base);
}

.stat-card:hover {
    background: var(--surface);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -2px;
    color: var(--text-1);
    line-height: 1;
}

.stat-number sup {
    font-size: 24px;
    letter-spacing: 0;
    vertical-align: super;
    color: var(--gold);
}

.stat-label {
    font-size: var(--fs-13);
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* ─────────────────────────────────────────────
    SERVICES SECTION
───────────────────────────────────────────── */
.services-section {
    background: var(--surface);
    padding: var(--section-pad-y) var(--section-pad-x);
}

.services-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.services-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.services-header p {
    font-size: var(--fs-15);
    color: var(--text-2);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.service-card {
    background: var(--card);
    padding: var(--sp-44) var(--sp-36);
    display: flex;
    flex-direction: column;
    gap: var(--sp-20);
    transition: background var(--duration-base), transform var(--duration-base);
    cursor: default;
}

.service-card:hover {
    background: var(--surface);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.service-num {
    font-size: var(--fs-11);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-3);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-1);
}

.service-card p {
    font-size: var(--fs-14);
    color: var(--text-2);
    line-height: 1.7;
    flex: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-8);
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: var(--gold-alpha-20);
    border: 1px solid var(--gold-alpha-20);
    padding: 4px 12px;
    border-radius: var(--r-pill);
}


/* ─────────────────────────────────────────────
    FEATURED WORK
───────────────────────────────────────────── */
.work-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.work-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.work-controls {
    display: flex;
    gap: 10px;
}

.ctrl-btn {
    width: var(--sp-44);
    height: var(--sp-44);
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text-2);
    font-size: var(--fs-16);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

.ctrl-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-alpha-20);
}

.work-carousel-wrap {
    overflow: hidden;
}

.work-track {
    display: flex;
    gap: 24px;
}

.work-card {
    flex: 0 0 calc(50% - 12px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.work-card:hover {
    border-color: var(--gold-alpha-20);
    transform: translateY(-4px);
}

.work-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.work-info {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.work-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
}

.work-info span {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.work-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.work-card:hover .work-arrow {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-alpha-20);
}

.work-counter {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 24px;
    text-align: right;
}

.work-counter span {
    color: var(--text-1);
}


/* ─────────────────────────────────────────────
    PROCESS SECTION
───────────────────────────────────────────── */
.process-section {
    background: var(--surface);
    padding: var(--section-pad-y) var(--section-pad-x);
}

.process-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.process-intro {
    max-width: 640px;
    margin-bottom: 80px;
}

.process-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 3.5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 20px 0 24px;
}

.process-intro h2 em {
    font-style: italic;
    color: var(--gold);
}

.process-intro p {
    font-size: var(--fs-15);
    color: var(--text-2);
    line-height: 1.75;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.process-step {
    background: var(--card);
    padding: var(--sp-48) 28px;
    display: flex;
    flex-direction: column;
    gap: var(--sp-20);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -3px;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-1);
}

.process-step p {
    font-size: var(--fs-14);
    color: var(--text-2);
    line-height: 1.7;
}


/* ─────────────────────────────────────────────
    TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.testi-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 3vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    max-width: 400px;
}

.testi-controls {
    display: flex;
    gap: 10px;
}

.testi-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 60px;
}

.testi-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

.testi-metric {
    position: sticky;
    top: 100px;
}

.testi-metric h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-3);
    line-height: 1.5;
    max-width: 180px;
    margin-bottom: 48px;
}

.big-num {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 300;
    letter-spacing: -4px;
    color: var(--text-1);
    line-height: 1;
}

.big-num sub {
    font-size: 48px;
    color: var(--gold);
    vertical-align: baseline;
    letter-spacing: -2px;
}

.big-num-label {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 10px;
}

.testi-carousel-wrap {
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease);
}

.testi-slide {
    flex: 0 0 100%;
    padding-right: 20px;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--quote-color);
    line-height: 0.5;
    margin-bottom: 24px;
}

.testi-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-1);
    letter-spacing: -0.01em;
    margin-bottom: 44px;
}

.testi-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--sp-16);
}

.author-info img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.testi-badge {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 15px;
}


/* ─────────────────────────────────────────────
    CTA BANNER
───────────────────────────────────────────── */
.cta-section {
    padding: 40px;
}

.cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-alpha-20), transparent);
    pointer-events: none;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-inner h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-inner p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.cta-note {
    font-size: 11.5px;
    color: var(--text-3);
    letter-spacing: 0.3px;
}


/* ─────────────────────────────────────────────
    FOOTER
───────────────────────────────────────────── */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--section-pad-y-sm) var(--section-pad-x) var(--sp-40);
    margin-top: var(--sp-40);
}

.footer-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
}

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

.footer-brand .logo {
    display: block;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: var(--sp-36);
    height: var(--sp-36);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: var(--fs-13);
    transition: border-color var(--duration-fast), color var(--duration-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--text-2);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-3);
}

.footer-bottom a {
    font-size: 12px;
    color: var(--text-3);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--text-2);
}


/* ─────────────────────────────────────────────
    MOBILE NAV DRAWER
───────────────────────────────────────────── */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-24) var(--section-pad-x);
    gap: var(--sp-4);
    z-index: var(--mobile-nav-z);
    box-shadow: var(--shadow-drawer);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: var(--fs-15);
    font-weight: 500;
    color: var(--text-2);
    padding: var(--sp-12) 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--duration-fast);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--text-1);
}


/* ─────────────────────────────────────────────
    RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .compare-sections {
        gap: var(--sp-24);
    }

    .data-compare-header {
        margin-bottom: var(--sp-40);
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 0 var(--wrap-pad) 64px;
    }

    .hero-badge {
        display: none;
    }

    .hero-h1 {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-sub-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .navbar {
        padding: 0 var(--wrap-pad);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .clients-section,
    .data-compare,
    .about-section,
    .abundance-section,
    .work-section,
    .testimonials-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }

    .services-section,
    .process-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }

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

    .client-tile:nth-child(2n) {
        border-right: none;
    }

    .client-tile:nth-child(3n) {
        border-right: 1px solid var(--border);
    }

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

    .testi-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testi-metric {
        position: static;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        padding: var(--sp-48) var(--sp-32);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .work-card {
        flex: 0 0 calc(90vw - 48px);
    }

    .cta-section {
        padding: var(--sp-24);
    }

    .footer {
        padding: var(--sp-60) var(--wrap-pad) var(--sp-32);
    }
}

@media (max-width: 500px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-tile {
        border-right: none;
    }

    .compare-sections {
        grid-template-columns: 1fr;
        gap: var(--sp-24);
    }

    .compare-card {
        padding: var(--sp-28) var(--sp-24);
    }

    .compare-card-header {
        gap: var(--sp-12);
    }

    .compare-card-badge {
        width: 32px;
        height: 32px;
        font-size: var(--fs-13);
    }

    .compare-card h3 {
        font-size: var(--fs-20);
    }

    .data-compare-header {
        margin-bottom: var(--sp-32);
    }

    .data-compare-header h2 {
        margin-bottom: var(--sp-12);
    }

    .data-compare-subtitle {
        font-size: var(--fs-14);
    }

    .compare-list li {
        padding-left: var(--sp-24);
        font-size: var(--fs-14);
    }
}


/* ─────────────────────────────────────────────
    ACTIVE NAV LINK
───────────────────────────────────────────── */
.nav-links a.active {
    color: var(--gold);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
    INNER PAGE HERO
───────────────────────────────────────────── */
.page-hero {
    padding: 160px var(--section-pad-x) 100px;
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.page-hero .section-label {
    margin-bottom: 32px;
}

.page-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 88px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--text-1);
    margin-bottom: 28px;
}

.page-hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 520px;
}

.page-hero-sub+.hero-actions {
    margin-top: 36px;
}

/* Decorative separator line below page-hero */
.page-hero-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

/* ─────────────────────────────────────────────
    LEGAL CONTENT (Terms, Privacy)
───────────────────────────────────────────── */
.legal-content {
    padding: var(--section-pad-y-sm) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.legal-inner {
    max-width: 720px;
}

.legal-updated {
    font-size: var(--fs-13);
    color: var(--text-3);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--text-1);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 65ch;
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--ember);
}

/* ─────────────────────────────────────────────
    BREADCRUMB
───────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    font-size: var(--fs-12);
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.3px;
    padding: 100px var(--section-pad-x) 0;
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text-3);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: var(--text-2);
}

/* ─────────────────────────────────────────────
    TEAM SECTION
───────────────────────────────────────────── */
.team-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-24);
    margin-top: var(--sp-60);
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-card-body {
    padding: var(--sp-24);
}

.team-card-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-1);
    margin-bottom: 4px;
}

.team-card-body p {
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-card-body span {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
    ABOUT VALUES
───────────────────────────────────────────── */
.values-section {
    background: var(--surface);
    padding: var(--section-pad-y) var(--section-pad-x);
}

.values-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 60px;
}

.value-card {
    background: var(--card);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-1);
}

.value-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
    PRICING SECTION
───────────────────────────────────────────── */
.pricing-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
    margin-top: var(--sp-60);
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-48) var(--section-pad-x);
    display: flex;
    flex-direction: column;
    gap: var(--sp-20);
    position: relative;
    transition: transform var(--duration-base), border-color var(--duration-base), box-shadow var(--duration-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, var(--gold-alpha-20), transparent);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 40px;
    background: var(--gold);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.pricing-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--text-1);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-price span {
    font-size: 18px;
    color: var(--text-3);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-top: 4px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-2);
}

.pricing-features li i {
    color: var(--gold);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
    WORK FILTER BAR
───────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-pill {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-2);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--gold);
    color: var(--text-white);
    border-color: var(--gold);
}

/* ─────────────────────────────────────────────
    WORK FULL GRID
───────────────────────────────────────────── */
.work-grid-section {
    padding: 0 var(--section-pad-x) var(--section-pad-y);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.work-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
}

.work-grid-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-grid-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.work-grid-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.work-grid-body {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.work-grid-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-1);
    margin-bottom: 4px;
}

.work-grid-body span {
    font-size: 11.5px;
    color: var(--text-3);
    font-weight: 500;
}

.work-grid-arrow {
    width: var(--sp-36);
    height: var(--sp-36);
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: var(--fs-13);
    flex-shrink: 0;
    transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

.work-grid-card:hover .work-grid-arrow {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-alpha-20);
}

/* ─────────────────────────────────────────────
    PROJECT DETAIL
───────────────────────────────────────────── */
.project-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    max-width: 1240px;
    margin: 40px auto 0;
    border-radius: var(--r-lg);
    padding: 0 40px;
    box-sizing: border-box;
}

.project-detail-section {
    padding: 80px 40px 120px;
    max-width: 1240px;
    margin: 0 auto;
}

.project-detail-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
}

.project-detail-header h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.project-detail-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.project-detail-header p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 560px;
}

.project-meta-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 200px;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-meta-item .meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
}

.project-meta-item .meta-value {
    font-size: 14px;
    color: var(--text-1);
    font-weight: 500;
}

.project-csrg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 80px;
}

.csrg-block {
    background: var(--card);
    padding: 48px 40px;
}

.csrg-block h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-1);
    margin-bottom: 16px;
}

.csrg-block p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.75;
}

.project-metrics {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 80px;
}

/* ─────────────────────────────────────────────
    RELATED PROJECTS
───────────────────────────────────────────── */
.related-section {
    padding: 0 40px 120px;
    max-width: 1240px;
    margin: 0 auto;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

/* ─────────────────────────────────────────────
    BLOG GRID
───────────────────────────────────────────── */
.blog-section {
    padding: 0 var(--section-pad-x) var(--section-pad-y);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 60px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.blog-featured:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.blog-featured img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.blog-featured-body {
    padding: 48px 48px 48px 0;
}

.blog-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.blog-featured-body h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-1);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.blog-featured-body p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.blog-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--duration-base), border-color var(--duration-base), box-shadow var(--duration-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 28px;
}

.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-1);
    line-height: 1.25;
    margin: 12px 0 12px;
    letter-spacing: -0.01em;
}

.blog-card-body p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
    BLOG DETAIL
───────────────────────────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--sp-80);
    align-items: start;
    padding: var(--sp-60) var(--section-pad-x) var(--section-pad-y);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin: 40px 0 16px;
    color: var(--text-1);
}

.article-body p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 24px;
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 24px 32px;
    margin: 40px 0;
    background: linear-gradient(90deg, var(--gold-alpha-20), transparent);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.article-body blockquote p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-1);
    margin: 0;
    line-height: 1.4;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-32);
}

.sidebar-box h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 20px;
}

.sidebar-article-link {
    display: block;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.sidebar-article-link:last-child {
    border-bottom: none;
}

.sidebar-article-link h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-1);
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.sidebar-article-link span {
    font-size: 11.5px;
    color: var(--text-3);
}

.sidebar-article-link:hover h5 {
    color: var(--gold);
}

/* ─────────────────────────────────────────────
    RESULTS / CASE STUDIES
───────────────────────────────────────────── */
.metrics-strip {
    background: var(--surface);
    padding: var(--section-pad-y-sm) var(--section-pad-x);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metrics-strip-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.metric-block {
    background: var(--surface);
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-block .big-num {
    font-size: 60px;
    letter-spacing: -3px;
}

.metric-block .big-num-label {
    font-size: 13px;
}

.cases-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
    margin-top: var(--sp-60);
}

.case-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--duration-base), border-color var(--duration-base), box-shadow var(--duration-base);
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.case-card-body {
    padding: 32px;
}

.case-card-body .kpi-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.kpi-item .kpi-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: var(--text-1);
    line-height: 1;
}

.kpi-item .kpi-num sup {
    font-size: 16px;
    color: var(--gold);
    vertical-align: super;
}

.kpi-item .kpi-label {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.case-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-1);
    margin-bottom: 8px;
}

.case-card-body p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 20px;
}

.case-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.case-card:hover .case-link {
    gap: 10px;
}

/* ─────────────────────────────────────────────
    CONTACT FORM
───────────────────────────────────────────── */
.contact-section {
    padding: 0 var(--section-pad-x) var(--section-pad-y);
    max-width: var(--wrap-max);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-48);
}

.contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    color: var(--text-1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: var(--sp-12) var(--sp-16);
    font-size: var(--fs-14);
    font-family: var(--font-body);
    color: var(--text-1);
    outline: none;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: var(--shadow-focus-gold);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
}

.contact-info>p {
    font-size: 15.5px;
    color: var(--text-2);
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-1);
    font-weight: 500;
}

/* FAQ Accordion */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--card);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--surface);
}

.faq-question i {
    color: var(--gold);
    font-size: 13px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.3s;
    background: var(--surface);
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.7;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 16px 24px 20px;
}

/* ─────────────────────────────────────────────
    RESPONSIVE  NEW PAGES
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-full-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

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

    .project-csrg {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .project-detail-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px var(--wrap-pad) var(--section-pad-y-sm);
    }

    .breadcrumb {
        padding: 100px var(--wrap-pad) 0;
    }

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

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

    .work-full-grid {
        grid-template-columns: 1fr;
    }

    .work-grid-section {
        padding: 0 var(--wrap-pad) var(--section-pad-y-sm);
    }

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

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

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured img {
        height: 240px;
    }

    .blog-featured-body {
        padding: 32px;
    }

    .blog-section {
        padding: 0 var(--wrap-pad) var(--section-pad-y-sm);
    }

    .metrics-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        padding: var(--sp-40) var(--wrap-pad) var(--section-pad-y-sm);
    }

    .contact-section {
        padding: 0 var(--wrap-pad) var(--section-pad-y-sm);
    }

    .contact-form-wrap {
        padding: var(--sp-32) var(--wrap-pad);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .project-hero-img {
        height: 280px;
        padding: 0 var(--wrap-pad);
    }

    .project-detail-section {
        padding: var(--sp-48) var(--wrap-pad) var(--section-pad-y-sm);
    }

    .related-section {
        padding: 0 var(--wrap-pad) var(--section-pad-y-sm);
    }

    .team-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }

    .values-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }

    .pricing-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }

    .cases-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }
}

/* ─────────────────────────────────────────────
    SERVICE TAGS
───────────────────────────────────────────── */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.service-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-alpha-20);
    border: 1px solid var(--border-gold);
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

/* ─────────────────────────────────────────────
    ARTICLE HEADER & IN-ARTICLE CTA
───────────────────────────────────────────── */
.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-1);
    margin: 20px 0 0;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-1);
    margin: 32px 0 12px;
}

.article-body strong {
    color: var(--text-1);
    font-weight: 600;
}

.article-body .lead {
    font-size: 20px;
    color: var(--text-1);
    line-height: 1.65;
    font-family: var(--font-display);
    font-weight: 300;
    margin-bottom: 32px;
}

.article-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--gold-alpha-20), transparent);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    padding: 48px 40px;
}

.article-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-1);
    margin: 0 0 12px !important;
}

.article-cta p {
    color: var(--text-2) !important;
    margin-bottom: 24px !important;
}

/* ─────────────────────────────────────────────
    SIDEBAR WIDGETS
───────────────────────────────────────────── */
.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-32);
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
}

.sidebar-widget h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
}

.sidebar-widget strong {
    font-size: 15px;
    color: var(--text-1);
    font-family: var(--font-display);
    font-weight: 400;
}

.sidebar-widget p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-links a {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-1);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
    transition: color 0.2s;
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--gold-alpha-20), transparent);
    border-color: var(--border-gold);
}

/* ─────────────────────────────────────────────
    CASE CARD INNER ELEMENTS
───────────────────────────────────────────── */
.case-img {
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

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

.case-body {
    padding: 36px 32px 28px;
}

.case-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.case-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-1);
    line-height: 1.2;
    margin-bottom: 12px;
}

.case-body p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 24px;
}

.case-metrics {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-metric-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: var(--text-1);
    line-height: 1;
}

.case-metric span:last-child {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
}

/* ─────────────────────────────────────────────
    METRICS STRIP (flex row layout for results.html)
───────────────────────────────────────────── */
.metrics-strip {
    display: flex;
    align-items: stretch;
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
    gap: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metric-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -3px;
    color: var(--gold);
    line-height: 1;
}

.metric-num sup {
    font-size: 0.4em;
    color: var(--gold);
    vertical-align: super;
    letter-spacing: 0;
}

.metric-label {
    margin-top: 5px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    max-width: 200px;
}

.metric-divider {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    align-self: stretch;
}

.metric-block {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .metrics-strip {
        flex-direction: column;
        padding: 0 var(--wrap-pad);
    }

    .metric-divider {
        width: 100%;
        height: 1px;
    }

    .metric-block {
        padding: 40px 0;
    }

    .cases-section {
        padding: var(--section-pad-y-sm) var(--wrap-pad);
    }
}