:root {
    --bg-primary: #0F1013;
    --bg-secondary: #14151A;
    --bg-card: #181A21;
    --bg-elevated: #1C1E26;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.16);
    --text-primary: #ECE9E2;
    --text-secondary: rgba(236,233,226,0.72);
    --text-muted: rgba(236,233,226,0.45);
    --accent: #D97B3C;
    --accent-light: #E58F54;
    --accent-dim: rgba(217,123,60,0.08);
    --cta-bg: #D97B3C;
    --cta-bg-hover: #E58F54;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; background: rgba(15,16,19,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-full { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links > li > a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.02em; color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.nav-links > li > a:hover { color: var(--text-primary); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-lang { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-lang:hover { color: var(--text-secondary); }
.nav-cta-btn { font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; color: var(--bg-primary); background: var(--accent); padding: 0.6rem 1.2rem; border-radius: 2px; text-decoration: none; transition: all 0.3s; }
.nav-cta-btn:hover { background: var(--cta-bg-hover); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text-secondary); transition: all 0.3s; }

.nav-item-dropdown { position: relative; }
.nav-dropdown { list-style: none; position: absolute; top: 100%; left: -1rem; min-width: 280px; background: rgba(24,26,33,0.98); backdrop-filter: blur(20px); border: 1px solid var(--border); border-top: 2px solid var(--accent); padding: 0.75rem 0 0.5rem; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s; z-index: 200; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 0.6rem 1.25rem; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.02em; color: var(--text-secondary); white-space: nowrap; transition: color 0.2s, background 0.2s; }
.nav-dropdown a:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.nav-item-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.45; vertical-align: middle; }

/* LAYOUT */
section { position: relative; }
section[id] { scroll-margin-top: 5rem; }
section[id="nasze-produkty"] { scroll-margin-top: 7rem; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.gold-line { width: 40px; height: 2px; background: var(--accent); margin-bottom: 2rem; }
.section-header { margin-bottom: 3.5rem; }
.section-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em; max-width: 720px; line-height: 1.3; color: var(--text-primary); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; position: relative; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(217,123,60,0.06) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,255,255,0.02) 0%, transparent 60%), var(--bg-primary); }
.hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 820px; }
.hero-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-tag::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.025em; color: var(--text-primary); opacity: 0; animation: fadeUp 0.8s ease forwards 0.35s; }
.hero h1 .accent { color: var(--accent); }
.hero-desc { font-size: 0.95rem; font-weight: 300; color: rgba(236,233,226,0.92); max-width: 620px; line-height: 1.85; margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s; }
.hero-desc:last-of-type { margin-bottom: 1.75rem; }
.hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; }
.hero-tags span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,233,226,0.62); border: 1px solid rgba(255,255,255,0.08); padding: 0.25rem 0.65rem; border-radius: 2px; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; color: var(--bg-primary); background: var(--cta-bg); padding: 0.9rem 1.8rem; text-decoration: none; transition: all 0.3s; border-radius: 2px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.95s; }
.hero-cta:hover { background: var(--cta-bg-hover); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(217,123,60,0.25); }
.hero-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(3px); }
.hero-proprietary { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-secondary); letter-spacing: 0.05em; margin-bottom: 1.75rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.58s; }
.hero-footnote { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-secondary); margin-top: 1.5rem; letter-spacing: 0.04em; opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s; }

/* PROBLEM */
.problem { padding: 8rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.problem-item { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; transition: all 0.35s; }
.problem-item:hover { border-color: var(--border-hover); }
.problem-item .q { font-size: 1.02rem; font-weight: 500; color: var(--text-primary); line-height: 1.45; margin-bottom: 0.85rem; }
.problem-item .a { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* WHY NOW */
.why-now { padding: 8rem 0; background: var(--bg-primary); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-now p { font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; }
.why-now .first { color: var(--accent); margin-bottom: 0.5rem; }
.why-now .second { color: var(--text-primary); opacity: 0.85; }

/* VALUE */
.value { padding: 7rem 0; background: var(--bg-primary); }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
.value-item { display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem; align-items: start; }
.value-item .num { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 300; color: rgba(255,255,255,0.1); line-height: 1; letter-spacing: -0.02em; }
.value-item .title { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; margin-bottom: 0.7rem; }
.value-item .desc { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* DIFFERENTIATOR */
.differentiator { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.comp-table { border: 1px solid var(--border); background: var(--bg-card); margin-top: 1rem; }
.comp-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.comp-row:last-child { border-bottom: none; }
.comp-row > div { padding: 1.1rem 1.25rem; font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; border-left: 1px solid var(--border); }
.comp-row > div:first-child { border-left: none; color: var(--text-muted); }
.comp-row.head { background: rgba(255,255,255,0.02); }
.comp-row.head > div { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; }
.comp-row.head > div.us { color: var(--accent); }
.comp-row .us { color: var(--text-primary); font-weight: 500; }
.diff-pdf-line { margin-top: 2.5rem; padding: 1.5rem 1.75rem; border-left: 2px solid var(--accent); background: var(--accent-dim); max-width: 780px; }
.diff-pdf-line p { font-size: 1rem; font-weight: 500; color: var(--text-primary); line-height: 1.5; margin: 0; }
.diff-note { font-size: 0.9rem; color: var(--text-secondary); margin-top: 2rem; max-width: 720px; line-height: 1.7; font-weight: 300; }

/* DEEPER */
.deeper { padding: 7rem 0; background: var(--bg-primary); }
.deeper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.deeper-item .tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; }
.deeper-item h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; line-height: 1.35; max-width: 440px; }
.deeper-item p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.75; max-width: 480px; }

/* PROCESS */
.process { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.process-phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.process-phase { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem 1.75rem; display: flex; flex-direction: column; }
.phase-num { font-family: var(--font-mono); font-size: 2.8rem; font-weight: 300; letter-spacing: -0.02em; color: rgba(255,255,255,0.06); margin-bottom: 0.5rem; line-height: 1; }
.phase-name { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.5rem; }
.phase-time { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); margin-bottom: 1rem; letter-spacing: 0.08em; }
.process-phase > p { font-size: 0.82rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; flex: 1; }

/* PROCESS TECH BANNER */
.process-tech-banner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.25rem; padding: 1.1rem 2rem; background: var(--bg-card); border: 1px solid var(--border); border-left: 2px solid var(--accent); text-decoration: none; font-size: 0.82rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.process-tech-banner:hover { border-color: var(--accent); color: var(--text-primary); background: rgba(255,255,255,0.02); }
.process-tech-banner::after { content: '→'; color: var(--accent); font-family: var(--font-mono); flex-shrink: 0; }

/* PROCESS MODES */
.process-modes { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.process-modes-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.process-modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.process-mode h4 { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.process-mode p { font-size: 0.82rem; font-weight: 300; color: var(--text-secondary); line-height: 1.75; }
@media (max-width: 768px) { .process-modes-grid { grid-template-columns: 1fr; } }

/* OUTCOMES */
.outcomes { padding: 7rem 0; background: var(--bg-primary); }
.outcomes-list { max-width: 820px; }
.outcomes-item { display: flex; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.outcomes-item:last-child { border-bottom: none; }
.outcomes-item .arrow { color: var(--accent); font-family: var(--font-mono); min-width: 24px; font-size: 0.9rem; padding-top: 2px; }
.outcomes-item p { font-size: 0.98rem; font-weight: 400; color: var(--text-primary); line-height: 1.55; margin: 0; }

/* SERVICE DEEP DIVE */
.service-deeplink { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; font-size: 0.75rem; font-weight: 400; color: var(--text-secondary); background: transparent; border: 1px solid var(--border); border-radius: 2px; text-decoration: none; margin-top: 2rem; padding: 0.6rem 0.9rem; transition: border-color 0.25s, background 0.25s, color 0.25s; }
.service-deeplink:hover { border-color: var(--border-hover); color: var(--text-primary); background: rgba(255,255,255,0.02); }
.service-deeplink svg { width: 12px; height: 12px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.25s; }
.service-deeplink:hover svg { transform: translateY(2px); }
.service-deep { padding: 7rem 0; border-top: 1px solid var(--border); scroll-margin-top: 5rem; overflow: hidden; }
.service-deep--bg-primary { background: var(--bg-primary); }
.service-deep--bg-secondary { background: var(--bg-secondary); }
.service-deep:target .reveal { opacity: 1; transform: translateY(0); }
.service-deep-inner { max-width: 860px; width: 100%; }
.service-deep-eyebrow { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.service-deep-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--border); flex-shrink: 0; }
.service-deep h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.2; }
.service-deep-stmt { font-size: 0.98rem; font-weight: 300; color: var(--text-secondary); margin-bottom: 3.5rem; line-height: 1.8; max-width: 640px; }
.service-deep-block { margin-bottom: 2.5rem; }
.service-deep-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.service-deep-img { width: 100%; max-width: 480px; height: auto; display: block; border: 1px solid var(--border); border-radius: 2px; }
.service-deep-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.service-deep-list li { font-size: 0.92rem; font-weight: 300; color: var(--text-primary); line-height: 1.55; padding-left: 1.4rem; position: relative; }
.service-deep-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); font-size: 0.72rem; top: 2px; }
.service-deep-back { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--text-muted); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 3rem; transition: color 0.25s; }
.service-deep-back:hover { color: var(--text-secondary); }
.service-deep-back-top { margin-top: 0; margin-bottom: 1.5rem; }
.service-deep-pullquote { font-size: 1.5rem; font-weight: 300; line-height: 1.5; color: var(--text-primary); border-left: 3px solid var(--accent); padding-left: 24px; margin: 48px 0; max-width: 640px; }
#attack-surface-validation-deep .service-deep-inner { max-width: 720px; }
#attack-surface-validation-deep .service-deep-block { margin-top: 5.25rem; }

/* SERVICES */
.services { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.2rem 2rem; transition: all 0.35s; position: relative; display: flex; flex-direction: column; scroll-margin-top: 5rem; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { border-color: var(--border-hover); box-shadow: 0 4px 20px rgba(0,0,0,0.2); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 18px; height: 18px; color: var(--text-muted); margin-bottom: 1.2rem; flex-shrink: 0; }
.service-how { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; margin-bottom: 0; }
.service-how-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.service-how ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.service-how li { font-size: 0.8rem; font-weight: 300; color: var(--text-secondary); line-height: 1.5; padding-left: 1rem; position: relative; }
.service-how li::before { content: '–'; position: absolute; left: 0; color: var(--text-muted); font-family: var(--font-mono); }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.9rem; letter-spacing: -0.01em; line-height: 1.35; color: var(--text-primary); }
.service-card > p { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }
.service-outcome { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1.25rem; }
.service-outcome-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem; }
.service-outcome p { font-size: 0.82rem; font-weight: 400; color: var(--text-primary); line-height: 1.6; margin: 0; }
.service-signal { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1.25rem; }
.service-signal-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; }
.service-signal p { font-size: 0.82rem; font-weight: 300; font-style: italic; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.services-note { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); max-width: 740px; line-height: 1.75; margin-top: 2.5rem; font-style: italic; opacity: 0.85; }

/* HOW WE DO IT / CYCLE OUTPUT */
.how-we-do { padding: 7rem 0; background: var(--bg-primary); border-top: 1px solid var(--border); }
.cycle-output { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }

/* DELIVERY */
.delivery { padding: 7rem 0; background: var(--bg-primary); border-top: 1px solid var(--border); }
.delivery-intro { max-width: 720px; margin: 0 0 4rem; text-align: left; font-size: 1rem; line-height: 1.75; color: var(--text-secondary); font-weight: 300; }
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-bottom: 4rem; }
.delivery-item { padding: 2rem; border: 1px solid var(--border); background: var(--bg-card); transition: border-color 0.25s; }
.delivery-item:hover { border-color: var(--accent); }
.delivery-num { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 1rem; }
.delivery-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.9rem; color: var(--text-primary); line-height: 1.35; }
.delivery-item p { font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary); font-weight: 300; margin-bottom: 1rem; }
.delivery-footnote { text-align: center; font-size: 0.88rem; color: var(--text-muted); font-style: italic; }
.delivery-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0 2.5rem; }
.delivery-tags span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(170,170,170,0.4); border: 1px solid rgba(255,255,255,0.04); padding: 0.25rem 0.65rem; border-radius: 2px; }
.delivery-item .delivery-backed-by { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0.25rem 0 1rem; }
.delivery-item .delivery-roadmap { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; }
.service-card .service-backed-by { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0.25rem 0 1rem; }
.process-modes-intro { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.engagement-format { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.format-intro { max-width: 720px; margin: 0 0 2rem; font-size: 1rem; line-height: 1.75; color: var(--text-secondary); font-weight: 300; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.format-footer { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; margin-top: 2.5rem; max-width: 720px; }


/* ICP */
.icp { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.icp-intro { font-size: 1.02rem; font-weight: 300; color: var(--text-primary); max-width: 680px; line-height: 1.75; margin-top: -1.5rem; margin-bottom: 3rem; font-style: italic; opacity: 0.85; }
.icp-list { max-width: 900px; margin-bottom: 2.5rem; }
.icp-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.icp-item:last-child { border-bottom: none; }
.icp-item .num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); padding-top: 6px; letter-spacing: 0.1em; }
.icp-item p { font-size: 0.95rem; color: var(--text-primary); line-height: 1.65; font-weight: 400; }
.icp-item p strong { font-weight: 600; }
.icp-item p .muted { color: var(--text-secondary); font-weight: 300; }
.icp-exclusion { border: 1px solid rgba(217,123,60,0.3); background: var(--accent-dim); padding: 1.5rem 1.75rem; max-width: 900px; }
.icp-exclusion p { font-size: 0.9rem; line-height: 1.7; margin: 0; font-weight: 300; }
.icp-exclusion .lead { color: var(--accent); font-weight: 500; }
.icp-exclusion .rest { color: var(--text-primary); opacity: 0.85; }

/* CREDIBILITY */
.cred { padding: 7rem 0; background: var(--bg-primary); }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }

/* FOUNDERS (3 co-founder cards) */
.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.founder-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem 1.75rem; display: flex; flex-direction: column; transition: all 0.35s; position: relative; }
.founder-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.founder-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.founder-card:hover::before { transform: scaleX(1); }
.founder-header { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.founder-name { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 0.3rem; }
.founder-role { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.founder-exp-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.6rem; }
.founder-bio { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.founder-bio li { font-size: 0.82rem; font-weight: 300; color: var(--text-secondary); line-height: 1.55; padding-left: 1rem; position: relative; }
.founder-bio li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); font-size: 0.68rem; }
.founder-bio li strong { color: var(--text-primary); font-weight: 500; }
.bio-org { color: var(--text-primary); font-weight: 500; }
.founder-linkedin { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); letter-spacing: 0.08em; text-decoration: none; transition: letter-spacing 0.25s; align-self: flex-start; }
.founder-linkedin:hover { letter-spacing: 0.12em; }
.cred-item { padding-left: 1.5rem; border-left: 1px solid var(--border); }
.cred-item.first { border-left-color: var(--accent); }
.cred-item .num { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.12em; margin-bottom: 0.65rem; }
.cred-item p { font-size: 0.95rem; color: var(--text-primary); line-height: 1.6; font-weight: 400; }
.cred-item p strong { font-weight: 600; }
.cred-certs-block { padding: 1.5rem 1.75rem; background: var(--bg-card); border: 1px solid var(--border); max-width: 900px; margin-bottom: 2rem; }
.cred-certs-block .label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.cred-certs-block .certs { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-primary); letter-spacing: 0.05em; line-height: 1.7; }
.cred-certs-block .certs strong { color: var(--accent); font-weight: 500; }
.cred-footnote { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* CONTACT */
.contact { padding: 7rem 0; background: var(--bg-secondary); color: var(--text-primary); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4.5rem; }
.contact .section-title { margin-bottom: 1.5rem; }
.contact-body { font-size: 0.95rem; font-weight: 300; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.25rem; max-width: 480px; }
.contact-note { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--text-muted); margin: 1.5rem 0 2.5rem; }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.contact-detail-value { font-size: 0.92rem; color: var(--text-primary); }
.contact-detail-value a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--accent); }

/* FORM */
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group .req { color: var(--accent); margin-left: 2px; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--text-primary); background: var(--bg-card); border: 1px solid var(--border); border-radius: 2px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }
.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-submit { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; color: var(--bg-primary); background: var(--accent); border: none; border-radius: 2px; padding: 0.95rem 2rem; cursor: pointer; transition: all 0.3s; width: 100%; }
.form-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(217,123,60,0.25); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-status { margin-top: 0.8rem; font-size: 0.78rem; text-align: center; min-height: 1.5em; }
.form-status.success { color: var(--accent-light); }
.form-status.error { color: #EF4444; }
.form-group-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-group-checkbox input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 16px; height: 16px; min-width: 16px; border: 1px solid var(--border-hover); border-radius: 2px; background: var(--bg-card); cursor: pointer; margin-top: 2px; transition: border-color 0.3s, background 0.3s; }
.form-group-checkbox input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%230F1013' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.form-group-checkbox input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-group-checkbox label { font-size: 0.75rem; font-weight: 300; color: var(--text-muted); line-height: 1.55; cursor: pointer; }

.contact-closing { font-size: 1rem; font-weight: 400; color: var(--accent); max-width: 640px; line-height: 1.6; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* FOOTER */
footer { padding: 2rem 2.5rem; background: var(--bg-primary); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 2rem; font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.03em; }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
.footer-legal a:hover { color: var(--text-secondary); }

/* EU FUNDS BANNER — pinned to viewport bottom on PL homepage load, dismissible */
.eu-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: rgba(8, 8, 8, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 0.75rem 3.5rem 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease; }
.eu-banner.dismissed { transform: translateY(100%); opacity: 0; pointer-events: none; }
.eu-banner-legal { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; color: var(--text-muted); flex-wrap: wrap; }
.eu-banner-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
.eu-banner-legal a:hover { color: var(--text-primary); }
.eu-banner-link { display: block; flex: 0 0 auto; max-width: 360px; width: 100%; transition: opacity 0.25s; }
.eu-banner-link:hover { opacity: 0.8; }
.eu-banner-link img { display: block; width: 100%; height: auto; }
.eu-banner-close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: transparent; border: 1px solid var(--border); color: var(--text-secondary); width: 1.75rem; height: 1.75rem; border-radius: 50%; font-size: 1rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: color 0.25s, border-color 0.25s; }
.eu-banner-close:hover { color: var(--text-primary); border-color: var(--text-secondary); }
@media (max-width: 720px) {
    .eu-banner { padding: 0.6rem 2.75rem 0.6rem 1rem; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-start; }
    .eu-banner-legal { font-size: 0.55rem; gap: 0.5rem; }
    .eu-banner-link { max-width: 220px; margin-left: auto; }
}

/* FOOTER — HOMEPAGE VARIANT (with company info + EU sponsor banner) */
.footer-home { align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
.footer-left { display: flex; flex-direction: column; gap: 0.55rem; min-width: 0; }
.footer-company { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--text-muted); font-weight: 300; }
.footer-copy { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-sponsors { display: block; flex: 0 0 auto; max-width: 360px; width: 100%; transition: opacity 0.25s; }
.footer-sponsors:hover { opacity: 0.8; }
.footer-sponsors img { display: block; width: 100%; height: auto; }
@media (max-width: 720px) {
    .footer-home { align-items: flex-start; }
    .footer-sponsors { max-width: 280px; }
    .footer-company { font-size: 0.58rem; }
}

/* BLOG INDEX */
.blog-hero { padding: 8rem 0 4rem; border-bottom: 1px solid var(--border); }
.blog-hero .section-label { color: var(--accent); }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
.blog-hero p { font-size: 1.05rem; font-weight: 300; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }

.blog-list { padding: 5rem 0 7rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; background: var(--bg-secondary); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: border-color 0.3s, transform 0.3s; overflow: hidden; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.blog-card-image { aspect-ratio: 16 / 10; background: linear-gradient(135deg, rgba(217,123,60,0.12) 0%, rgba(15,16,19,0.6) 60%, rgba(20,21,26,1) 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%); pointer-events: none; }
.blog-card-tag { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); padding: 0.3rem 0.6rem; border: 1px solid var(--accent); background: rgba(15,16,19,0.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 2; }
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.blog-card-meta { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: flex; align-items: center; gap: 0.6rem; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.blog-card h2 { font-size: 1.1rem; font-weight: 500; line-height: 1.35; color: var(--text-primary); letter-spacing: -0.01em; }
.blog-card-excerpt { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; margin-top: 0.25rem; }
.blog-card-cta { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: auto; padding-top: 1rem; }

@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; } .blog-hero { padding: 6rem 0 3rem; } .blog-list { padding: 3rem 0 5rem; } }

/* TRAININGS PAGE */
.trainings-hero { padding: 8rem 0 4rem; border-bottom: 1px solid var(--border); }
.trainings-hero .section-label { color: var(--accent); }
.trainings-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
.trainings-hero p { font-size: 1.05rem; font-weight: 300; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }

.trainings-list { padding: 5rem 0 7rem; }
.trainings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.training-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem 2.25rem; position: relative; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.training-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.training-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.training-card:hover::before { transform: scaleX(1); }
.training-card-name { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem; }
.training-card-title { font-size: 1.25rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 1.1rem; }
.training-card-body { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem; }
.training-card-for { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--text-secondary); padding-top: 1.25rem; border-top: 1px solid var(--border); margin-top: auto; }
.training-card-for strong { color: var(--accent); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.6rem; margin-right: 0.5rem; }

@media (max-width: 880px) { .trainings-grid { grid-template-columns: 1fr; gap: 1.25rem; } }
@media (max-width: 640px) { .trainings-hero { padding: 6rem 0 3rem; } .trainings-list { padding: 3rem 0 5rem; } .training-card { padding: 2rem 1.75rem; } }

/* ARTICLE PAGE */
.article-page { padding: 6rem 0 5rem; }
.article-page .container { max-width: 760px; }
.article-back { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem; transition: color 0.25s; text-decoration: none; }
.article-back:hover { color: var(--text-primary); }
.article-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); padding: 0.35rem 0.7rem; border: 1px solid var(--accent); margin-bottom: 1.5rem; }
.article-title { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--text-primary); margin-bottom: 1.25rem; }
.article-meta { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.article-meta span::before { content: '·'; margin-right: 1rem; color: var(--text-muted); }
.article-meta span:first-child::before { content: none; margin: 0; }
.article-lead { font-size: 1.15rem; font-weight: 400; line-height: 1.65; color: var(--text-primary); margin-bottom: 2.5rem; padding-left: 1rem; border-left: 2px solid var(--accent); }
.article-body h2 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; color: var(--text-primary); margin: 3.5rem 0 1.25rem; line-height: 1.3; }
.article-body p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.25rem; }
.article-body strong { color: var(--text-primary); font-weight: 500; }
.article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(217,123,60,0.4); transition: border-color 0.25s; }
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.article-body ul li { font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.article-body ul li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--text-muted); font-family: var(--font-mono); }
.article-body ol { list-style: none; counter-reset: item; padding: 0; margin: 0 0 1.5rem; }
.article-body ol li { font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; padding-left: 2rem; position: relative; margin-bottom: 0.75rem; counter-increment: item; }
.article-body ol li::before { content: counter(item) '.'; position: absolute; left: 0; top: 0; color: var(--accent); font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; }
.article-cta { margin-top: 4rem; padding: 2rem 2rem; border: 1px solid var(--border); border-left: 2px solid var(--accent); background: rgba(217,123,60,0.04); }
.article-cta p { font-size: 0.95rem; color: var(--text-secondary); margin: 0 0 1.25rem; line-height: 1.65; }
.article-cta .hero-cta { font-size: 0.78rem; opacity: 1; animation: none; }
.article-back-bottom { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); display: flex; justify-content: center; }
.article-back-bottom .article-back { margin-bottom: 0; }
@media (max-width: 640px) {
    .article-page { padding: 4rem 0 3.5rem; }
    .article-lead { font-size: 1.02rem; }
    .article-body p { font-size: 0.95rem; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { padding: 1.1rem 1.5rem; }
    .nav-right { gap: 0.7rem; }
    .nav-cta-btn { font-size: 0.62rem; padding: 0.35rem 0.7rem; letter-spacing: 0; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(15,16,19,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.2rem; align-items: flex-start; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .problem-grid, .deeper-grid, .value-list, .services-grid, .process-phases, .cred-grid, .founders-grid, .contact-grid, .delivery-grid, .format-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .contact-grid { gap: 2.5rem; }
    .comp-row { grid-template-columns: 1fr; }
    .comp-row > div { border-left: none; border-top: 1px solid var(--border); padding-top: 0.8rem; }
    .comp-row > div:first-child { border-top: none; }
    .comp-row.head { display: none; }
    .comp-row > div::before { content: attr(data-label); display: block; font-family: var(--font-mono); font-size: 0.55rem; color: var(--text-muted); letter-spacing: 0.12em; margin-bottom: 0.3rem; text-transform: uppercase; }
    .hero { padding-top: 6rem; }
    .container { padding: 0 1.5rem; }
    footer { padding: 1.5rem; flex-direction: column; gap: 1rem; }
    .nav-item-dropdown > a::after { content: ''; }
    .nav-dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; border: none; border-left: 1px solid var(--border); border-top: none; background: transparent; backdrop-filter: none; box-shadow: none; padding: 0.4rem 0 0.1rem 1rem; margin-top: 0.35rem; min-width: 0; }
    .nav-dropdown a { padding: 0.3rem 0; font-size: 0.72rem; color: var(--text-muted); }
    section { padding: 4rem 0 !important; }
}
@media (min-width: 481px) and (max-width: 768px) {
    .problem-grid, .deeper-grid, .process-phases, .founders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .process-phases { grid-template-columns: repeat(2, 1fr); }
    .delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
