/* ============================================================
   Lenad Consulting v2 — Premium Corporate Stylesheet
   Palette: Navy #0C1A35 · Green #2E9B3E · White · Off-white
   Fonts: Cormorant Garamond (display) · DM Sans (UI/body)
   ============================================================ */

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

:root {
    --navy:        #0C1A35;
    --navy-mid:    #14274E;
    --navy-light:  #1B3A6B;
    --green:       #2E9B3E;
    --green-light: #42B549;
    --green-pale:  #EAF6EB;
    --white:       #FFFFFF;
    --off-white:   #F6F7FA;
    --gray-100:    #EEF0F5;
    --gray-200:    #D8DCE8;
    --gray-400:    #9AA3B8;
    --text-body:   #2D3748;
    --text-mid:    #4A5568;
    --text-light:  #718096;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui:      'DM Sans', system-ui, sans-serif;

    --radius:  6px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(12,26,53,0.07);
    --shadow-md: 0 8px 32px rgba(12,26,53,0.11);
    --shadow-lg: 0 20px 60px rgba(12,26,53,0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-ui);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Scroll Bar ────────────────────────────────────────────── */
.scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    z-index: 1000;
    transition: width 0.1s linear;
}

/* ─── Reveal Animation ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--right {
    transform: translateX(32px);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── Shared Tokens ─────────────────────────────────────────── */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.label-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    border: 1px solid rgba(46,155,62,0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.label-tag--light {
    color: var(--green-light);
    background: rgba(66,181,73,0.12);
    border-color: rgba(66,181,73,0.3);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.values h2 { color: var(--white); }

h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--primary:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12,26,53,0.25);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--sm { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Header / Navbar ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}
.site-header.scrolled .nav-item { color: var(--text-mid); }
.site-header.scrolled .nav-item:hover { color: var(--navy); }
.site-header.scrolled .nav-item.active { color: var(--navy); }

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand { display: flex; align-items: center; }
.brand-logo {
    height: 36px;
    background: var(--white);
    padding: 3px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0.85rem; right: 0.85rem;
    height: 2px;
    background: var(--green-light);
    transform: scaleX(0);
    border-radius: 1px;
    transition: transform var(--transition);
}
.nav-item:hover::after,
.nav-item.active::after { transform: scaleX(1); }
.nav-item:hover { color: var(--white); }
.nav-item.active { color: var(--white); font-weight: 600; }

.nav-cta {
    margin-left: 0.5rem;
    background: var(--green);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--green);
}
.nav-cta:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-1px);
}
.site-header.scrolled .nav-cta { /* stays green on white header */ }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: var(--transition);
}
.site-header.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071020 0%, #0C1A35 45%, #14274E 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Ambient glow */
.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    left: 55%; top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(46,155,62,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Concentric rings — repositioned to left */
.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}
.geo-ring--1 {
    width: 460px; height: 460px;
    left: -120px; top: 50%;
    transform: translateY(-50%);
    animation: slowSpin 40s linear infinite;
}
.geo-ring--2 {
    width: 680px; height: 680px;
    left: -240px; top: 50%;
    transform: translateY(-50%);
    border-color: rgba(46,155,62,0.07);
    animation: slowSpin 60s linear infinite reverse;
}
.geo-ring--3 {
    width: 920px; height: 920px;
    left: -360px; top: 50%;
    transform: translateY(-50%);
    animation: slowSpin 80s linear infinite;
}

@keyframes slowSpin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Dot grid */
.geo-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
}

/* ── Inner grid layout ── */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 9rem 3rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Left column ── */
.hero-body { display: flex; flex-direction: column; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    border: 1px solid rgba(66,181,73,0.35);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 8px var(--green-light);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.75rem;
}
.ht-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
}
.ht-line--1 {
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    animation: fadeUp 0.9s ease 0.3s forwards;
}
.ht-line--2 {
    font-size: clamp(3.4rem, 6.5vw, 7.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--green-light);
    animation: fadeUp 0.9s ease 0.5s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

/* Mini stats row */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
}
.hms-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hms-item strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}
.hms-item span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.hms-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── Right column — visual ── */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hv-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}
.hv-frame img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}
.hv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(12,26,53,0.15) 0%,
        rgba(12,26,53,0.05) 40%,
        rgba(12,26,53,0.35) 100%
    );
}

/* Floating badges */
.hv-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    animation: floatBadge 4s ease-in-out infinite;
}
.hv-badge--tl { top: 1.5rem; left: -1.5rem; animation-delay: 0s; }
.hv-badge--br { bottom: 1.75rem; right: -1.5rem; animation-delay: 2s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hv-badge-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hv-badge-icon svg { width: 18px; height: 18px; stroke: var(--green); }

.hv-badge > div:last-child,
.hv-badge > div:not(.hv-badge-icon):not(.hv-live-dot) {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.hv-badge strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.hv-badge span {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 500;
}

.hv-live-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 3px rgba(66,181,73,0.25);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* Decorative accent block */
.hv-accent {
    position: absolute;
    width: 160px; height: 160px;
    bottom: -24px; right: -24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.35;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.hero-scroll-hint span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ── Hero responsive ── */
@media (max-width: 1100px) {
    .hero-inner { gap: 3rem; padding: 8rem 2rem 5rem; }
    .hv-frame img { height: 460px; }
    .hv-badge--tl { left: -0.75rem; }
    .hv-badge--br { right: -0.75rem; }
}
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 4rem;
    }
    .hero-visual {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .hv-frame img { height: 320px; }
    .hv-badge--tl { top: 1rem; left: 0.5rem; }
    .hv-badge--br { bottom: 1rem; right: 0.5rem; }
    .hv-accent { display: none; }
}
@media (max-width: 768px) {
    .hero-mini-stats { gap: 1rem; }
    .hms-item strong { font-size: 1.3rem; }
}

/* ─── Stats Band ─────────────────────────────────────────────── */
.stats-band {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.stat-block {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1rem;
}
.stat-val {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-lbl {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ─── Philosophy ─────────────────────────────────────────────── */
.philosophy {
    background: var(--white);
    padding: 7rem 0;
    overflow: hidden;
}
.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.phil-text .label-tag { display: block; width: fit-content; }
.phil-text h2 { margin-bottom: 1.25rem; }
.phil-text p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.img-frame {
    position: relative;
}
.img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.img-accent {
    position: absolute;
    width: 120px; height: 120px;
    bottom: -20px; left: -20px;
    border-radius: var(--radius-lg);
    background: var(--navy);
    z-index: -1;
}
.img-accent--green { background: var(--green); }

/* ─── Expertise ──────────────────────────────────────────────── */
.expertise {
    background: var(--off-white);
    padding: 7rem 0;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}
.exp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.exp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--green);
    border-radius: 0 0 3px 3px;
    transition: height 0.4s ease;
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.exp-card:hover::before { height: 100%; }

.exp-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}
.exp-card:hover .exp-number { color: rgba(46,155,62,0.12); }

.exp-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background var(--transition);
}
.exp-icon svg {
    width: 22px; height: 22px;
    stroke: var(--green);
}
.exp-card:hover .exp-icon {
    background: var(--green);
}
.exp-card:hover .exp-icon svg { stroke: var(--white); }

.exp-card h3 { margin-bottom: 0.65rem; font-size: 1.1rem; }
.exp-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ─── Services ───────────────────────────────────────────────── */
.services {
    background: var(--white);
    padding: 7rem 0;
}
.services-list {
    border-top: 1px solid var(--gray-200);
}
.svc-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: default;
    transition: var(--transition);
}
.svc-row:hover { padding-left: 1.25rem; }

.svc-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-200);
    transition: color var(--transition);
    line-height: 1;
}
.svc-row:hover .svc-num { color: var(--green); }

.svc-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.svc-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

.svc-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.svc-arrow svg { width: 16px; height: 16px; stroke: var(--gray-400); transition: var(--transition); }
.svc-row:hover .svc-arrow {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateX(4px);
}
.svc-row:hover .svc-arrow svg { stroke: var(--white); }

/* ─── Slideshow ──────────────────────────────────────────────── */
.slideshow {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--navy);
}

.slideshow-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(12,26,53,0.75) 0%,
        rgba(12,26,53,0.45) 50%,
        rgba(12,26,53,0.15) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 3.5rem 4rem;
}

.slide-content {
    max-width: 520px;
    color: var(--white);
}

.slide-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    border: 1px solid rgba(66,181,73,0.45);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.slide-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
}

.slide-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
}

/* Nav buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.slide-btn svg { width: 20px; height: 20px; stroke: var(--white); }
.slide-prev { left: 1.75rem; }
.slide-next { right: 1.75rem; }
.slide-btn:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-50%) scale(1.08);
}

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 1.75rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}
.slide-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    transition: background var(--transition), transform var(--transition), width var(--transition);
    padding: 0;
}
.slide-dot--active {
    background: var(--green-light);
    width: 24px;
    border-radius: 4px;
}
.slide-dot:hover { background: rgba(255,255,255,0.65); }

@media (max-width: 768px) {
    .slideshow { height: 440px; }
    .slide-overlay { padding: 2rem 1.5rem; }
    .slide-content { max-width: 100%; }
    .slide-btn { width: 38px; height: 38px; }
    .slide-prev { left: 0.75rem; }
    .slide-next { right: 0.75rem; }
}

@media (max-width: 480px) {
    .slideshow { height: 360px; }
}

/* ─── Values ─────────────────────────────────────────────────── */
.values {
    background: var(--navy);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.values::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.val-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
}
.val-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(66,181,73,0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.val-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: rgba(46,155,62,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.val-icon svg { width: 24px; height: 24px; stroke: var(--green-light); }
.val-card:hover .val-icon { background: var(--green); }
.val-card:hover .val-icon svg { stroke: var(--white); }

.val-card h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.15rem; }
.val-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ─── About ──────────────────────────────────────────────────── */
.about {
    background: var(--off-white);
    padding: 7rem 0;
    overflow: hidden;
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text .label-tag { display: block; width: fit-content; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.check-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
}
.check-list svg {
    width: 18px; height: 18px;
    stroke: var(--green);
    flex-shrink: 0;
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact {
    background: var(--white);
    padding: 7rem 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ci-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.ci-block:first-child { padding-top: 0; }
.ci-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.ci-block > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.ci-block strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
}
.ci-block span { font-size: 0.92rem; color: var(--text-mid); }

/* Form */
.contact-form {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    color: var(--text-body);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(12,26,53,0.08);
}
.field input.error,
.field select.error,
.field textarea.error {
    border-color: #e53e3e;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.field--check {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.field--check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--navy);
    margin-top: 2px;
    flex-shrink: 0;
    border-radius: 3px;
    padding: 0;
}
.field--check label {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0;
}
.field--check a { color: var(--green); text-decoration: underline; }

.field-err {
    font-size: 0.75rem;
    color: #e53e3e;
    margin-top: 0.3rem;
    min-height: 1rem;
}
.char-info {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: right;
    margin-top: 0.3rem;
}
.form-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius);
}
.form-msg.success { background: var(--green-pale); color: var(--green); }
.form-msg.error { background: #fff5f5; color: #e53e3e; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
    height: 32px;
    background: var(--white);
    padding: 3px 6px;
    border-radius: 5px;
    width: fit-content;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }
.footer-links-col h4 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col a {
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--green-light); }
.footer-links-col p { font-size: 0.88rem; margin-bottom: 0.4rem; line-height: 1.6; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    flex-wrap: wrap;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-light); }

/* ─── Back to Top ────────────────────────────────────────────── */
.top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    pointer-events: none;
}
.top-btn svg { width: 18px; height: 18px; stroke: var(--white); }
.top-btn.visible { opacity: 1; transform: none; pointer-events: auto; }
.top-btn:hover { background: var(--green); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .philosophy-inner,
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .phil-image { order: -1; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .burger { display: flex; }

    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 85vw);
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    }
    .main-nav.open { transform: none; }

    .nav-item {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
        padding: 0.65rem 1rem;
        width: 100%;
    }
    .nav-item.active,
    .nav-item:hover { color: var(--white); }
    .nav-cta { width: 100%; text-align: center; margin-left: 0; margin-top: 1rem; }

    .site-header.scrolled .nav-item { color: rgba(255,255,255,0.8); }
    .site-header.scrolled .burger span { background: var(--navy); }

    .hero-body { padding: 7rem 1.5rem 5rem; }
    .ht-line--1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .ht-line--2 { font-size: clamp(3.5rem, 13vw, 6rem); }

    .stats-inner { flex-direction: column; }
    .stat-sep { width: 48px; height: 1px; }

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

    .svc-row { grid-template-columns: 50px 1fr; gap: 1rem; }
    .svc-arrow { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.75rem; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
