/* === TOKENS === */
:root {
    --bg:          #050505;
    --bg-2:        #0a0a0a;
    --bg-card:     #111111;
    --bg-card-2:   #141414;
    --accent:      #FF5A00;
    --accent-2:    #FF7A00;
    --white:       #FFFFFF;
    --neutral:     #F5F5F2;
    --border:      #252525;
    --border-2:    #1e1e1e;
    --text-1:      #FFFFFF;
    --text-2:      #A0A0A0;
    --text-3:      #666666;
    --font:        'Lexend', -apple-system, sans-serif;
    --radius:      6px;
    --radius-lg:   10px;
    --container:   1280px;
    --section-v:   88px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text-1); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
svg { flex-shrink: 0; }

/* === BASE === */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.section-label--center { text-align: center; }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-2);
    max-width: 620px;
    line-height: 1.7;
}

.section-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
    padding-bottom: 6px;
}
.section-link:hover { opacity: 0.75; }

.accent { color: var(--accent); }
.hero-headline .accent {
    background: linear-gradient(135deg, #FF5A00 0%, #FF8A00 60%, #FFA040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 13px 24px;
    border-radius: var(--radius);
    transition: all 0.22s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, #FF5A00 0%, #FF7A00 100%);
    color: var(--white);
    border: 1.5px solid #FF6800;
    box-shadow: 0 4px 18px rgba(255,90,0,0.28);
}
.btn-primary:hover { background: linear-gradient(135deg, #e04e00 0%, #e86a00 100%); border-color: #e04e00; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,90,0,0.42); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text-2); }
.btn-sm { font-size: 12px; padding: 10px 18px; }
.btn-lg { font-size: 14px; padding: 16px 32px; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Fade-in animation */
.service-card, .process-step, .cs-card, .testi-card, .pillar-card, .impact-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card.visible, .process-step.visible, .cs-card.visible,
.testi-card.visible, .pillar-card.visible, .impact-item.visible {
    opacity: 1;
    transform: none;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--border-2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); }

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-logo-img {
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}
.footer-logo-img {
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}
.logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
}
.logo-accent { color: var(--accent); }

.header-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.18s;
}
.nav-item > a:hover, .nav-item.active > a { color: var(--white); }
.nav-arrow {
    font-size: 14px;
    line-height: 1;
    color: var(--text-3);
    transition: transform 0.2s;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    min-width: 210px;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.18s ease;
    z-index: 100;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li a {
    display: block;
    font-size: 13px;
    color: var(--text-2);
    padding: 9px 14px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: var(--white); background: rgba(255,90,0,0.08); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.25s;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* === HERO === */
.hero {
    background: var(--bg);
    padding: 126px 0 64px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 15%;
    width: 720px;
    height: 720px;
    background: radial-gradient(ellipse at center, rgba(255,90,0,0.09) 0%, rgba(255,90,0,0.03) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 18px;
    display: inline-block;
    background: rgba(255,90,0,0.08);
    border: 1px solid rgba(255,90,0,0.22);
    border-radius: 20px;
    padding: 5px 14px;
}

.hero-headline {
    font-size: clamp(34px, 3.8vw, 56px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-copy {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-number {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, #FF5A00 0%, #FF8A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-plus { font-size: 22px; }
.stat-label {
    font-size: 12px;
    color: var(--text-2);
    font-weight: 400;
    white-space: nowrap;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual-wrap {
    position: relative;
    width: 440px;
    height: 440px;
}
.hero-visual-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,90,0,0.12) 0%, rgba(255,90,0,0.04) 50%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.hero-svg { position: relative; z-index: 1; }

.hero-svg {
    width: 100%;
    height: 100%;
}

@keyframes orbit-cw  { to { transform: rotate(360deg); } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }

.orbit-ring--outer {
    transform-origin: 200px 200px;
    animation: orbit-cw 40s linear infinite;
}
.orbit-ring--mid {
    transform-origin: 200px 200px;
    animation: orbit-ccw 30s linear infinite;
}
@keyframes logo-pulse {
    0%, 100% { stroke-opacity: 0.6; }
    50% { stroke-opacity: 1; }
}
.logo-pulse {
    animation: logo-pulse 3s ease-in-out infinite;
}

.hv-card {
    position: absolute;
    background: rgba(12,12,12,0.92);
    border: 1px solid rgba(255,90,0,0.15);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 168px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hv-card-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,90,0,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hv-card-title { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 2px; line-height: 1.3; }
.hv-card-desc  { font-size: 10px; color: var(--text-3); line-height: 1.4; }

.hv-card--tl { top: 24px;  left: -20px; }
.hv-card--tr { top: 24px;  right: -20px; }
.hv-card--bl { bottom: 60px; left: -20px; }
.hv-card--br { bottom: 60px; right: -20px; }

/* Parallax will-change hints */
.hero-content,
.hero-visual-wrap,
.hv-card { will-change: transform; }

/* Mouse-following glow */
.hero-mouse-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    margin-left: -280px;
    margin-top: -280px;
    background: radial-gradient(circle, rgba(255,90,0,0.11) 0%, rgba(255,90,0,0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

/* === TRUST BAR === */
.trust-bar {
    background: #f7f7f5;
    padding: 28px 0;
    border-top: 1px solid #e4e4e0;
    border-bottom: 1px solid #e4e4e0;
}
.trust-bar-heading {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.trust-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2a2a2a;
    opacity: 0.65;
    transition: opacity 0.2s, color 0.2s;
}
.trust-logo:hover { opacity: 1; color: #111; }
.trust-logo span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.trust-logo em { font-style: italic; font-weight: 400; }

/* === SERVICES === */
.services {
    background: var(--bg-2);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
}

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

.service-card {
    background: var(--bg-card);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s, box-shadow 0.2s, opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    background: var(--bg-card-2);
    box-shadow: inset 0 0 0 1px rgba(255,90,0,0.25);
}

.service-num {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255,90,0,0.05);
    pointer-events: none;
    user-select: none;
    transition: color 0.2s;
}
.service-card:hover .service-num { color: rgba(255,90,0,0.09); }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,90,0,0.08);
    border: 1px solid rgba(255,90,0,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover .service-icon {
    background: rgba(255,90,0,0.13);
    border-color: rgba(255,90,0,0.4);
    box-shadow: 0 0 18px rgba(255,90,0,0.12);
}
.service-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}
.service-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}
.service-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

.services-additional { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.services-additional-label { font-size: 13px; color: var(--text-3); white-space: nowrap; }
.services-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 40px;
    transition: border-color 0.2s, color 0.2s;
}
.service-tag:hover { border-color: var(--accent); color: var(--accent); }

/* === PROCESS === */
.process {
    background: var(--bg);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
}

.process-track { position: relative; }
.process-connector {
    position: absolute;
    top: 64px;
    left: calc(8.33% + 16px);
    right: calc(8.33% + 16px);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.process-connector::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,90,0,0.3) 10%, rgba(255,90,0,0.3) 90%, transparent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}

.process-step-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.process-step-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.process-step:hover .process-step-icon {
    border-color: var(--accent);
    background: rgba(255,90,0,0.06);
}

.process-step-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.process-step-desc {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.6;
}

/* === CASE STUDIES === */
.case-studies {
    background: var(--bg-2);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
    overflow: hidden;
}
.case-studies .container { margin-bottom: 40px; }

.case-studies-track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 80px;
}

.case-studies-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 20px;
}
.case-studies-track::-webkit-scrollbar { display: none; }

.cs-card {
    flex: 0 0 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    transition: border-color 0.2s, transform 0.2s, opacity 0.5s ease;
}
.cs-card:hover { border-color: var(--border); transform: translateY(-2px); }

.cs-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.cs-mockup {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.cs-image--green  { background: linear-gradient(135deg, #071a0e 0%, #0a2e16 100%); }
.cs-image--teal   { background: linear-gradient(135deg, #040f12 0%, #06222a 100%); }
.cs-image--blue   { background: linear-gradient(135deg, #050814 0%, #0a1530 100%); }
.cs-image--purple { background: linear-gradient(135deg, #0c0514 0%, #1a0830 100%); }
.cs-image--amber  { background: linear-gradient(135deg, #130a00 0%, #2a1500 100%); }
.cs-image--red    { background: linear-gradient(135deg, #130000 0%, #2a0500 100%); }

.cs-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(8,8,8,0.82);
    border: 1px solid rgba(255,90,0,0.3);
    padding: 3px 8px;
    border-radius: 40px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    z-index: 1;
}

.cs-body { padding: 24px; }
.cs-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cs-result { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
.cs-metrics {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    margin-bottom: 20px;
}
.cs-metric-value { display: block; font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.cs-metric-label { display: block; font-size: 11px; color: var(--text-3); margin-top: 2px; }
.cs-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.cs-cta:hover { gap: 9px; }

.cs-arrow {
    position: absolute;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2;
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.cs-arrow:hover { border-color: var(--accent); background: rgba(255,90,0,0.08); }
.cs-arrow--prev { left: 20px; }
.cs-arrow--next { right: 20px; }

/* === IMPACT STATS === */
.impact-stats {
    background: #080808;
    padding: 80px 0;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.impact-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 32px;
}
.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 24px;
}
.impact-number {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
}
.impact-plus { font-size: 0.7em; }
.impact-label {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 8px;
    font-weight: 400;
    white-space: nowrap;
}
.impact-sep {
    width: 1px;
    height: 56px;
    background: var(--border);
    flex-shrink: 0;
}

/* === WHY BRND GURU === */
.why-bg {
    background: var(--bg);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
}
/* Outer 2-column: text | visual */
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
/* Left: text column */
.why-left { display: flex; flex-direction: column; gap: 16px; }
.why-left .section-title { font-size: clamp(22px, 2.4vw, 32px); }
.why-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-1);
    font-weight: 500;
}
.why-check {
    width: 20px;
    height: 20px;
    background: rgba(255,90,0,0.10);
    border: 1px solid rgba(255,90,0,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Right: 3D canvas orbital */
.why-right { position: relative; display: flex; align-items: center; justify-content: center; }
.why-3d-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; max-width: 560px; }
.why-3d-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Corner feature cards */
@keyframes wg-float {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-6px); }
}
.why-fc {
    position: absolute;
    background: rgba(14,9,5,0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,90,0,0.18);
    border-radius: 12px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 38%;
    animation: wg-float 4s ease-in-out infinite;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.why-fc:hover { border-color: rgba(255,90,0,0.5); box-shadow: 0 4px 28px rgba(255,90,0,0.12); }
.why-fc--tl { top: 6%;    left: 0;  animation-delay: 0s;    }
.why-fc--tr { top: 6%;    right: 0; animation-delay: -1.2s; }
.why-fc--bl { bottom: 6%; left: 0;  animation-delay: -2.4s; }
.why-fc--br { bottom: 6%; right: 0; animation-delay: -3.6s; }
.why-fc-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(255,90,0,0.10); border: 1px solid rgba(255,90,0,0.22);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.why-fc-text h3 { font-size: 12.5px; font-weight: 700; color: #fff; margin: 0 0 3px; line-height: 1.3; }
.why-fc-text p  { font-size: 11px; color: var(--text-3); margin: 0; line-height: 1.4; }

/* === TESTIMONIALS === */
.testimonials {
    background: var(--bg-2);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
}
/* Centered label, title centred, link floats right */
.testi-label-center { text-align: center; }
.testi-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.testi-row .section-link {
    position: absolute;
    right: 0;
    bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s, opacity 0.5s ease, transform 0.5s ease;
}
.testi-card--featured {
    background: #0e0e0e;
    border-color: rgba(255,90,0,0.2);
}
.testi-card:hover { border-color: rgba(255,90,0,0.25); }
.testi-stars { color: #FF8C00; font-size: 13px; letter-spacing: 2px; }
.testi-quote {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
    font-style: normal;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-2);
    padding-top: 14px;
}
.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,90,0,0.3) 0%, rgba(255,90,0,0.08) 100%);
    border: 1px solid rgba(255,90,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}
.testi-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,90,0,0.25);
}
.testi-meta { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-size: 13px; font-weight: 700; }
.testi-role { font-size: 11px; color: var(--text-3); }

/* === BUSINESS PILLARS === */
.pillars {
    background: var(--bg);
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border-2);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.5s ease;
}
.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover {
    border-color: rgba(255,90,0,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,90,0,0.07), 0 2px 8px rgba(0,0,0,0.4);
}
.pillar-card:hover .pillar-icon {
    background: rgba(255,90,0,0.13);
    border-color: rgba(255,90,0,0.25);
}

.pillar-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.pillar-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,90,0,0.08);
    border: 1px solid rgba(255,90,0,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.pillar-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pillar-desc  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; flex: 1; }
.pillar-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.pillar-link:hover { gap: 9px; }

/* === CTA SECTION === */
.cta-section {
    background: #080808;
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--border-2);
    position: relative;
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-circuit {
    width: 100%;
    height: 100%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-wrap: balance;
}
.cta-subheadline {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}
.btn-cta { margin: 0 auto; }
.cta-social-proof {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-3);
}
.cta-avatars {
    display: flex;
    align-items: center;
}
.cta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #080808;
    margin-left: -10px;
}
.cta-avatars .cta-avatar:first-child { margin-left: 0; }

/* === FOOTER === */
.site-footer { background: #030303; border-top: 1px solid var(--border); }
.footer-main { padding: 80px 0 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-desc {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--white); border-color: var(--text-3); }

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: var(--text-3);
    transition: color 0.18s;
}
.footer-links a:hover { color: var(--white); }

.footer-cta-col .footer-cta-text {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-2);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-brand { grid-column: 1 / -1; display: flex; gap: 40px; }
    .footer-desc { max-width: 320px; }
}

@media (max-width: 1024px) {
    :root { --section-v: 64px; }
    .container { padding: 0 28px; }
    .header-inner { padding: 0 28px; gap: 24px; }

    .hero { padding: 120px 0 72px; }
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-headline { font-size: clamp(38px, 7vw, 58px); }
    .hero-visual { order: -1; }
    .hero-visual-wrap { width: 360px; height: 360px; }
    .hv-card--tl, .hv-card--bl { left: -10px; }
    .hv-card--tr, .hv-card--br { right: -10px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-connector { display: none; }
    .process-step { align-items: flex-start; text-align: left; }

    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-right { display: none; }

    .case-studies-track-wrap { padding: 0 60px; }

    .impact-item { padding: 0 28px; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; flex-direction: column; gap: 0; }
}

@media (max-width: 768px) {
    :root { --section-v: 56px; }
    .container { padding: 0 20px; }
    .header-inner { padding: 0 20px; gap: 16px; height: 60px; }

    /* Mobile nav */
    .header-nav {
        display: none;
        position: fixed;
        top: 60px; left: 0; right: 0; bottom: 0;
        background: #070707;
        padding: 24px 20px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .header-nav.open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-item > a { padding: 12px 16px; font-size: 15px; color: var(--white); }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .nav-item:focus-within .nav-dropdown,
    .nav-item.open .nav-dropdown { display: block; }
    .mobile-toggle { display: flex; }
    .header-actions .btn-primary { display: none; }

    .hero { padding: 100px 0 60px; }
    .hero-inner { gap: 40px; }
    .hero-headline { font-size: clamp(34px, 9vw, 48px); }
    .hero-visual-wrap { width: 280px; height: 280px; }
    .hv-card { max-width: 140px; }
    .hv-card--tl, .hv-card--bl { left: 0; }
    .hv-card--tr, .hv-card--br { right: 0; }
    .hero-stats { gap: 0; flex-wrap: wrap; row-gap: 20px; }
    .hero-stat { padding: 0 20px 0 0; }
    .hero-stat-divider { margin: 0 20px 0 0; }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid .service-card::before { display: none; }
    .services-grid { gap: 1px; }

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

    .cs-card { flex: 0 0 280px; }
    .case-studies-track-wrap { padding: 0 40px; }

    .impact-grid { flex-wrap: wrap; row-gap: 32px; }
    .impact-item { flex: 0 0 calc(50% - 1px); padding: 0 20px; }
    .impact-sep:nth-child(even) { display: none; }

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

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

    .section-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-cta-col { grid-column: 1 / -1; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(30px, 9vw, 40px); }
    .hero-visual { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { column-gap: 0; }
    .hero-stat { padding: 0 16px 0 0; }
    .hero-stat-divider { margin: 0 16px 0 0; }
    .impact-item { flex: 0 0 100%; }
    .impact-sep { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .trust-bar-logos { gap: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
}
