/* ═══════════════════════════════════════════════════════════
   KAIROS AI — Website Stylesheet
   Editorial style: cream / anthracite / bordeaux
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg:          #f6f2ea;
    --bg-white:    #fbf9f4;
    --bg-dark:     #1c1f24;
    --bg-darker:   #14171c;
    --ink:         #1f2328;
    --ink-soft:    #3d4450;
    --muted:       #6b7380;
    --line:        #d9d2c3;
    --line-soft:   #e8e1d0;
    --accent:      #6b2433;
    --accent-dk:   #521a27;
    --accent-lt:   #c78a96;  /* bordeaux for dark-bg labels - BETTER READABILITY */
    --accent-bg:   #f0e4e2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
    font-size: 17px;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(246, 242, 234, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

nav .logo-link { display: flex; align-items: center; }
nav .logo-link img {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

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

.nav-links a.active {
    color: var(--accent);
    font-weight: 500;
}

.nav-cta {
    background: var(--ink);
    color: var(--bg) !important;
    padding: 0.6rem 1.3rem;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    transition: background 0.25s;
}

.nav-cta:hover { background: var(--accent) !important; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--ink);
    color: var(--bg);
    padding: 0.95rem 1.8rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.25s;
    border: 1px solid var(--ink);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: all 0.25s;
}

.btn-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Light button for dark backgrounds */
.btn-light {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
}

.btn-light:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════════════════ */
.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--accent);
}

/* On dark backgrounds, use the lighter bordeaux */
.on-dark .section-label { color: var(--accent-lt); }
.on-dark .section-label::before { background: var(--accent-lt); }

/* ═══════════════════════════════════════════════════════════
   HERO (generic - all pages)
   ═══════════════════════════════════════════════════════════ */
.hero {
    padding: 7rem 3rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: 82vh;
}

.hero-text { max-width: 600px; }

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.8rem;
    letter-spacing: -0.015em;
}

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

.hero-sub {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    max-width: 480px;
    font-weight: 400;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-bullets li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.6rem;
    width: 12px;
    height: 1px;
    background: var(--accent);
}

.hero-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-photo img {
    max-width: 100%;
    width: 450px;
    height: auto;
    display: block;
}

/* Simple hero (no photo, single column) */
.hero-simple {
    padding: 9rem 3rem 5rem;
    max-width: 880px;
    margin: 0 auto;
    text-align: left;
}

.hero-simple .hero-eyebrow { margin-bottom: 2rem; }

.hero-simple h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--ink);
    margin-bottom: 1.8rem;
    letter-spacing: -0.015em;
}

.hero-simple h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.hero-simple .hero-sub {
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   URGENCY STRIP (dark)
   ═══════════════════════════════════════════════════════════ */
.urgency {
    background: var(--bg-dark);
    padding: 1.4rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.urgency p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.55;
}

.urgency .tag {
    color: var(--bg);
    background: var(--accent);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    margin-right: 0.8rem;
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
section.std {
    padding: 6rem 3rem;
}

.container { max-width: 1080px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 1.4rem;
    letter-spacing: -0.015em;
}

h2 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.8rem;
    letter-spacing: -0.005em;
}

p.lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.text-block p:last-child { margin-bottom: 0; }

.text-block strong {
    color: var(--accent-dk);
    font-weight: 500;
}

/* Two-column section layout */
.split-2 {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL - HERO STYLE
   ═══════════════════════════════════════════════════════════ */
.testimonial-hero {
    background: var(--bg-white);
    padding: 6rem 3rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.testimonial-hero .inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.testimonial-hero blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    position: relative;
}

.testimonial-hero blockquote::before {
    content: '"';
    position: absolute;
    top: -3.5rem;
    left: -1.5rem;
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.18;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-hero cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2.2rem;
    font-weight: 500;
}

.testimonial-hero cite::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 1rem;
}

/* Small testimonial */
.quote-small {
    background: var(--bg-white);
    padding: 4rem 3rem;
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-small blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 680px;
    margin: 0 auto 1.3rem;
}

.quote-small cite {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TRACK RECORD STRIP (homepage)
   ═══════════════════════════════════════════════════════════ */
.credibility {
    background: var(--bg);
    padding: 3rem 3rem;
    border-bottom: 1px solid var(--line);
}

.cred-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.cred-label-top {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.cred-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.cred-item {
    background: var(--bg);
    padding: 1.4rem 1rem;
    text-align: center;
}

.cred-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
}

.cred-sub {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   OUTCOME BOX (bordeaux accent)
   ═══════════════════════════════════════════════════════════ */
.outcome {
    margin-top: 2.5rem;
    padding: 1.7rem 2rem;
    background: var(--bg-white);
    border-left: 3px solid var(--accent);
}

.outcome p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 400;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   DARK SECTIONS (CTA, final, etc.)
   ═══════════════════════════════════════════════════════════ */
.dark-section {
    background: var(--bg-dark);
    padding: 6rem 3rem;
    color: var(--bg);
}

.dark-section.text-center { text-align: center; }

.dark-section h2 {
    color: var(--bg);
}

.dark-section h2 em {
    color: var(--accent-lt);  /* LIGHT bordeaux for readability on dark */
}

.dark-section .lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.dark-section .inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-meta {
    margin-top: 2.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}

.cta-meta a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-lt);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-meta a:hover {
    color: var(--bg);
    border-color: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   LINKEDIN SECTION
   ═══════════════════════════════════════════════════════════ */
.linkedin-section {
    padding: 5rem 3rem;
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
}

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

.linkedin-section h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    margin-bottom: 1.3rem;
}

.linkedin-section p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   ROADMAP PAGE — TRACKS
   ═══════════════════════════════════════════════════════════ */
.track {
    padding: 5rem 3rem;
    max-width: 1080px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line-soft);
}

.track:last-child { border-bottom: none; }

.track-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.track-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.track-duration {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--line);
    background: var(--bg-white);
}

.track h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1.2rem;
}

.track .headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent-dk);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.track-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 1.5rem;
}

.track-column h3 {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.track-column p {
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.track-column ul {
    list-style: none;
}

.track-column ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.track-column ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
}

/* Step 0 block */
.step-zero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-bottom: 1px solid var(--line-soft);
}

.step-zero-inner {
    background: var(--bg-white);
    padding: 2.5rem 3rem;
    border-left: 3px solid var(--accent);
}

.step-zero h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.step-zero p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-zero a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.step-zero a:hover { color: var(--accent-dk); border-color: var(--accent-dk); }

/* Approach bullets (DE AANPAK section of roadmap) */
.approach-bullets {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-bullets li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.9rem;
    line-height: 1.6;
}

.approach-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.7rem;
    width: 14px;
    height: 1px;
    background: var(--accent);
}

/* Transparency table */
.transparency-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 2rem;
}

.transparency-grid dt {
    font-weight: 500;
    color: var(--accent-dk);
    font-size: 0.98rem;
    padding-top: 0.1rem;
    white-space: nowrap;
}

.transparency-grid dd {
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-highlight {
    padding: 1.5rem;
    background: var(--bg-white);
    border-top: 2px solid var(--accent);
}

.about-highlight h3 {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.about-highlight .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.about-highlight p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.today-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.today-item h3 {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.today-item p {
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-details {
    background: var(--bg-white);
    padding: 3rem;
    border-left: 3px solid var(--accent);
    max-width: 560px;
    margin: 3rem 0;
}

.contact-details .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.contact-details .role {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.contact-details dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem 1.5rem;
    margin-bottom: 0;
}

.contact-details dt {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    padding-top: 0.15rem;
}

.contact-details dd {
    font-size: 1rem;
    color: var(--ink);
}

.contact-details dd a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.contact-details dd a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   SCAN PAGE
   ═══════════════════════════════════════════════════════════ */
.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.1rem;
    margin-top: 2.5rem;
    background: var(--line);
    border: 1px solid var(--line);
}

.dimension {
    background: var(--bg-white);
    padding: 1.8rem;
}

.dimension-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.dimension h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: var(--ink);
}

.dimension p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.receive-list {
    list-style: none;
    margin-top: 1.5rem;
}

.receive-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.receive-list li::before {
    content: '→';
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-weight: 400;
}

.receive-list strong { color: var(--accent-dk); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer .logo-link { display: flex; align-items: center; }
footer .logo-link img { height: 24px; width: auto; opacity: 0.92; }

footer .foot-contact {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
}

footer .foot-contact a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.2s;
}

footer .foot-contact a:hover { color: var(--accent-lt); }

footer .foot-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - TABLET & MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    nav { padding: 0.9rem 1.2rem; }
    .nav-links { gap: 0.8rem; }
    .nav-links li:nth-child(-n+2) { display: none; }
    nav .logo-link img { height: 24px; }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
    }

    .hero-photo { order: -1; }
    .hero-photo img { width: 260px; }

    .hero h1 { font-size: 2.1rem; }
    .hero-sub { font-size: 1rem; }

    .hero-simple {
        padding: 7rem 1.5rem 3rem;
    }
    .hero-simple h1 { font-size: 2rem; }

    .urgency { padding: 1.2rem 1.5rem; }
    .urgency p { font-size: 0.88rem; line-height: 1.55; }
    .urgency .tag {
        display: block;
        margin: 0 auto 0.6rem;
        width: fit-content;
    }

    section.std { padding: 4rem 1.5rem; }

    .split-2 { grid-template-columns: 1fr; gap: 2rem; }

    .testimonial-hero { padding: 4rem 1.5rem; }
    .testimonial-hero .inner { padding: 0 0.5rem; }
    .testimonial-hero blockquote { font-size: 1.25rem; }
    .testimonial-hero blockquote::before {
        top: -2rem; left: -0.5rem; font-size: 4.5rem;
    }

    .credibility { padding: 2.5rem 1.5rem; }
    .cred-items { grid-template-columns: repeat(2, 1fr); }
    .cred-item { padding: 1.2rem 0.8rem; }
    .cred-name { font-size: 1.1rem; }

    .quote-small { padding: 3rem 1.5rem; }

    .dark-section { padding: 4rem 1.5rem; }

    .linkedin-section { padding: 3.5rem 1.5rem; }

    .track { padding: 3.5rem 1.5rem; }
    .track-body { grid-template-columns: 1fr; gap: 2rem; }

    .step-zero { padding: 3rem 1.5rem; }
    .step-zero-inner { padding: 1.8rem; }

    .about-highlights,
    .today-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-details { padding: 2rem; }
    .contact-details dl { grid-template-columns: 1fr; gap: 0.3rem; }
    .contact-details dt { padding-top: 0.8rem; }

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

    .transparency-grid { grid-template-columns: 1fr; gap: 0.3rem 0; }
    .transparency-grid dt { margin-top: 1rem; }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }
}
