:root {
    --navy-100: #0A1128;
    --navy-200: #0F1A3E;
    --navy-300: #1B2C5F;
    --navy-400: #243A7A;
    --blue: #4A7BF7;
    --blue-glow: #5B8DEF;
    --blue-soft: #8BB0FF;
    --blue-muted: #3A62CC;
    --blue-pale: rgba(74, 123, 247, 0.10);
    --blue-pale-2: rgba(74, 123, 247, 0.06);
    --black: #080708;
    --white: #FFFFFF;
    --light: #F3F5F6;
    --gray-50: #FAFBFC;
    --gray-100: #F0F2F5;
    --gray-200: #E1E5EB;
    --gray-300: #C8CED8;
    --gray-400: #9AA3B2;
    --gray-500: #6B7689;
    --gray-600: #4A5568;
    --font: 'Titillium Web', sans-serif;
    --max-w: 1180px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.35s var(--ease);
}

* {
    -webkit-tap-highlight-color: transparent;
}

* {
    outline: 0 !important;
}

p {
    margin: 0;
}

.cky-consent-container .cky-consent-bar {
    background-color: #0f1733 !important;
    box-shadow: unset !important;
    border: none !important;
    border-radius: 2em !important;
}

.cky-notice .cky-title {
    color: white !important;
}

.cky-notice-group {
    color: white !important;
}

.cky-btn-reject,
.cky-btn-accept {
    background-color: #142046 !important;
    border-color: #142046 !important;
    border-radius: 2em !important;
}

.cky-notice-des * {
    color: white !important;
}

.cky-btn-customize {
    border-color: #142046 !important;
    border-radius: 2em !important;
    color: white !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
}

p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--blue);
}

/* ===== BUTTONS V4 — tactile, soft, premium ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
}

.btn-primary {
    background: linear-gradient(180deg, #5A8AF8 0%, var(--blue) 100%);
    color: var(--white);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 2px 8px rgba(74, 123, 247, 0.18),
        0 6px 20px rgba(74, 123, 247, 0.14);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(180deg, #6B99FF 0%, var(--blue-glow) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.15) inset,
        0 4px 12px rgba(74, 123, 247, 0.25),
        0 12px 32px rgba(74, 123, 247, 0.18);
}

a.btn-primary:hover,
a.btn-primary:focus-visible {
    color: var(--white) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.04) inset;
}

.btn-glass:hover,
.btn-glass:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.06) inset, 0 8px 24px rgba(0, 0, 0, 0.15);
}

a.btn-glass:hover,
a.btn-glass:focus-visible {
    color: var(--white) !important;
}

.btn-glass:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--navy-300);
    border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 123, 247, 0.08);
}

.btn-white {
    background: linear-gradient(180deg, #fff 0%, #F8F9FB 100%);
    color: var(--navy-200);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.8) inset,
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 6px 20px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.8) inset,
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.07);
}

.btn-arrow::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%201560%201560%22%3E%3Cg%3E%3Cpath%20d%3D%22M1524%20811.8H36c-17.7%200-32-14.3-32-32s14.3-32%2032-32h1410.7l-194.2-194.2c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l248.9%20248.9c9.2%209.2%2011.9%2022.9%206.9%2034.9-5%2011.9-16.7%2019.7-29.6%2019.7z%22%20fill%3D%22%23ffffff%22/%3E%3Cpath%20d%3D%22M1274.8%201061c-8.2%200-16.4-3.1-22.6-9.4-12.5-12.5-12.5-32.8%200-45.3l249.2-249.2c12.5-12.5%2032.8-12.5%2045.3%200s12.5%2032.8%200%2045.3l-249.2%20249.2c-6.3%206.3-14.5%209.4-22.7%209.4z%22%20fill%3D%22%23ffffff%22/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    font-weight: 400;
    transition: transform 0.3s var(--ease);
}

.btn-arrow.btn-white::after {
    filter: invert(1);
}

.btn-arrow:hover::after {
    transform: translateX(5px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--t);
}

.nav.scrolled {
    background: rgba(10, 17, 40, 0.94);
    backdrop-filter: blur(24px);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo svg {
    height: 18px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
    transition: color var(--t);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(180deg, #5A8AF8 0%, var(--blue) 100%) !important;
    color: var(--white) !important;
    border-radius: 16px !important;
    font-weight: 600 !important;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset, 0 2px 10px rgba(74, 123, 247, 0.2) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: linear-gradient(180deg, #6B99FF 0%, var(--blue-glow) 100%) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.65);
    margin: 5px 0;
    transition: all var(--t);
}

/* ===================================================
   HERO V5 — Signature: diagonal accent blade
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #060D1F;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 45% at 15% 50%, rgba(15, 26, 62, 0.95) 0%, transparent 65%),
        radial-gradient(ellipse 35% 50% at 75% 25%, rgba(74, 123, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 55% 105%, rgba(74, 123, 247, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse 25% 80% at 90% 60%, rgba(27, 44, 95, 0.3) 0%, transparent 60%);
    z-index: 1;
}

/* Signature: Diagonal accent blade */
.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: 18%;
    width: 1px;
    height: 160%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 123, 247, 0.12) 30%, rgba(74, 123, 247, 0.06) 70%, transparent 100%);
    transform: rotate(-25deg);
    z-index: 1;
}

/* Second blade for depth */
.hero-blade {
    position: absolute;
    top: -20%;
    right: 28%;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 123, 247, 0.06) 40%, transparent 100%);
    transform: rotate(-25deg);
    z-index: 1;
}

/* Floating glow orbs — stronger */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-orb--1 {
    width: 480px;
    height: 480px;
    background: rgba(74, 123, 247, 0.07);
    filter: blur(80px);
    top: 5%;
    right: 0%;
    animation: drift1 14s ease-in-out infinite;
}

.hero-orb--2 {
    width: 320px;
    height: 320px;
    background: rgba(74, 123, 247, 0.04);
    filter: blur(60px);
    bottom: 10%;
    left: 8%;
    animation: drift2 11s ease-in-out infinite;
}

/* Third orb — subtle warm accent for depth */
.hero-orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(100, 140, 255, 0.03);
    filter: blur(50px);
    top: 60%;
    right: 35%;
    animation: drift3 9s ease-in-out infinite;
}

@keyframes drift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 25px);
    }
}

@keyframes drift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(12px, -18px);
    }
}

@keyframes drift3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, 12px);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.65;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--blue);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- HERO: Glass metrics panel V4 — deeper, more premium --- */
.hero-panel {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 8px 40px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-panel-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 28px;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding-left 0.3s var(--ease);
}

.hero-metric:hover {
    padding-left: 4px;
}

.hero-metric:last-child {
    border-bottom: none;
}

.hero-metric-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hero-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-metric-value.accent {
    color: var(--blue-soft);
}

.hero-metric a.hero-metric-value {
    text-decoration: none;
    cursor: pointer;
}

.hero-metric a.hero-metric-value:visited {
    color: var(--blue-soft);
}

.hero-metric a.hero-metric-value:hover,
.hero-metric a.hero-metric-value:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
    outline: none;
}

.hero-panel-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== PROBLEMS ===== */
.problems {
    padding: 128px 0;
    background: var(--white);
}

.problems-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.problems-header h2 {
    margin-bottom: 14px;
    color: var(--navy-200);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.problem-card {
    padding: 36px 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    transition: all 0.35s var(--ease);
    background: var(--white);
    position: relative;
}

/* Top luminous edge — signature detail */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 123, 247, 0.2), transparent);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

.problem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(74, 123, 247, 0.015) 0%, transparent 40%);
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}

.problem-card:hover {
    border-color: rgba(74, 123, 247, 0.08);
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.03), 0 20px 56px rgba(10, 17, 40, 0.07);
    transform: translateY(-5px);
}

.problem-num {
    font-size: 2rem;
    font-weight: 200;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.problem-card h3 {
    color: var(--navy-200);
    margin-bottom: 8px;
    font-weight: 600;
}

/* ===== BRIDGE ===== */
.bridge {
    padding: 104px 0;
    background: var(--navy-100);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bridge::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 247, 0.05) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bridge .container {
    position: relative;
    z-index: 2;
}

.bridge h2 {
    color: var(--white);
    max-width: 720px;
    margin: 0 auto 18px;
}

.bridge h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bridge p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== SOLUTIONS ===== */
.solutions {
    padding: 128px 0;
    background: var(--gray-50);
}

.solutions-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.solutions-header h2 {
    margin-bottom: 14px;
    color: var(--navy-200);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 36px;
    transition: all 0.35s var(--ease);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 123, 247, 0.2), transparent);
    pointer-events: none;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(74, 123, 247, 0.015) 0%, transparent 35%);
    pointer-events: none;
}

.solution-card:hover {
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.03), 0 20px 56px rgba(10, 17, 40, 0.07);
    transform: translateY(-5px);
    border-color: rgba(74, 123, 247, 0.08);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy-300) 0%, var(--navy-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(10, 17, 40, 0.15);
}

.solution-card h3 {
    color: var(--navy-200);
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-outcome {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--blue-pale-2);
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-300);
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-outcome::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(74, 123, 247, 0.3);
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.solution-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    background: var(--blue-pale);
    border-radius: 16px;
    color: var(--navy-300);
}

/* ===== PROCESS ===== */
.process {
    padding: 128px 0;
    background: var(--gray-50);
}

.process-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.process-header h2 {
    margin-bottom: 14px;
    color: var(--navy-200);
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--gray-100);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--gray-200);
    line-height: 1;
}

.step-content h3 {
    color: var(--navy-200);
    margin-bottom: 8px;
    font-size: 1.1875rem;
    font-weight: 600;
}

.step-outcome {
    padding: 26px 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(10, 17, 40, 0.03), 0 8px 28px rgba(10, 17, 40, 0.04);
    position: relative;
}

.step-outcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 123, 247, 0.18), transparent);
    pointer-events: none;
}

.step-outcome-title {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
}

.step-outcome-title::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%234A7BF7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.step-outcome p {
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ===== SOULCONNECT ===== */
.product {
    padding: 128px 0;
    background: var(--navy-100);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 247, 0.04) 0%, transparent 60%);
    bottom: -200px;
    right: -150px;
}

.product .container {
    position: relative;
    z-index: 2;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-content h2 {
    color: var(--white);
    margin-bottom: 18px;
}

.product-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 32px;
    font-weight: 300;
}

.product-features {
    list-style: none;
    margin-bottom: 36px !important;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

.product-visual {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset, 0 8px 40px rgba(0, 0, 0, 0.2);
}

.product-visual-tag {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
    font-weight: 600;
}

.product-visual h3 {
    color: var(--white);
    font-size: 1.625rem;
    margin-bottom: 10px;
}

.product-visual p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin-bottom: 28px;
    font-weight: 300;
}

.pv-quote {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pv-quote p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

/* ===== CASE STUDIES ===== */
.cases {
    padding: 128px 0;
    background: var(--gray-50);
}

.cases-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.cases-header h2 {
    margin-bottom: 14px;
    color: var(--navy-200);
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 6px rgba(10, 17, 40, 0.02), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.case-content {
    padding: 52px 44px;
}

.case-company-logo {
    margin-bottom: 20px;
}

.case-company-logo__link {
    display: inline-block;
    line-height: 0;
    border-radius: 4px;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.case-company-logo__link:hover,
.case-company-logo__link:focus-visible {
    opacity: 0.88;
    transform: translateY(-1px);
    outline: none;
}

.case-company-logo__img {
    display: block;
    max-height: 40px;
    max-width: min(240px, 100%);
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.case-badge {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--blue-pale);
    color: var(--navy-300);
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 20px;
}

.case-content h3 {
    color: var(--navy-200);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-problem,
.case-solution {
    margin-bottom: 16px;
}

.case-problem h4,
.case-solution h4 {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray-400);
    margin-bottom: 5px;
    font-weight: 600;
}

.case-results {
    background: var(--navy-200);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-results h4 {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 28px;
    font-weight: 600;
}

.case-metric {
    margin-bottom: 24px;
}

.case-metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.case-metric-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
    font-weight: 300;
}

.case-quote {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.case-quote p {
    font-size: 0.8125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    font-weight: 300;
}

.case-quote-author {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 8px;
    font-style: normal;
}

/* ===== TRUST ===== */
.trust {
    padding: 56px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-label {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

ul,
ol {
    margin: 0 !important;
}

.trust-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 180px;
    line-height: 0;
    transition: opacity var(--t);
}

.trust-logos img,
.trust-logos svg {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity var(--t), filter var(--t);
}

.trust-logos a:hover img,
.trust-logos a:focus-visible img,
.trust-logos a:hover svg,
.trust-logos a:focus-visible svg {
    opacity: 1;
    filter: grayscale(0);
}

/* ===== WHY US ===== */
.why-us {
    padding: 120px 0;
    background: var(--gray-50);
}

.why-us-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.why-us-header h2 {
    margin-bottom: 14px;
    color: var(--navy-200);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 36px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s var(--ease);
    background: var(--white);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 123, 247, 0.18), transparent);
    pointer-events: none;
}

.why-card:hover {
    border-color: rgba(74, 123, 247, 0.08);
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.03), 0 16px 44px rgba(10, 17, 40, 0.06);
    transform: translateY(-4px);
}

.why-card-num {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.why-card h3 {
    color: var(--navy-200);
    margin-bottom: 10px;
    font-size: 1.0625rem;
    font-weight: 600;
}

/* ===== SCENARIOS — "To jest o mnie" ===== */
.scenarios {
    padding: 128px 0;
    background: var(--navy-100);
    position: relative;
    overflow: hidden;
}

.scenarios::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 247, 0.04) 0%, transparent 60%);
    top: -200px;
    left: -100px;
}

.scenarios .container {
    position: relative;
    z-index: 2;
}

.scenarios-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.scenarios-header h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.scenarios-header p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.35s var(--ease);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    pointer-events: none;
}

.scenario-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.scenario-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.scenario-phase {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.scenario-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.scenario-phase--start .scenario-dot {
    background: #34D399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

.scenario-phase--start {
    color: #34D399;
}

.scenario-phase--run .scenario-dot {
    background: #FBBF24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.scenario-phase--run {
    color: #FBBF24;
}

.scenario-phase--scale .scenario-dot {
    background: #F87171;
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
}

.scenario-phase--scale {
    color: #F87171;
}

.scenario-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.scenario-pain {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 28px;
}

.scenario-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.scenario-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
}

.scenario-examples {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
}

.scenario-examples li {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.scenario-examples li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 6px rgba(74, 123, 247, 0.25);
}

.scenarios-cta {
    text-align: center;
    margin-top: 56px;
}

.scenarios-cta p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8125rem;
    font-weight: 300;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

/* ===== FOUNDER V4 — editorial, authoritative ===== */
.founder {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.founder-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 840px;
}

.founder-photo {
    width: 148px;
    height: 148px;
    border-radius: 100%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(10, 17, 40, 0.12);
}

.founder-name {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--navy-200);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 18px;
}

.founder-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 28px;
}

.founder-quote {
    padding: 26px 0 28px;
    margin-top: 2px;
    border: none;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    border-radius: 0;
}

.founder-quote p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--navy-200);
    font-style: italic;
    line-height: 1.75;
    letter-spacing: 0.01em;
    max-width: 38em;
}

/* ===== HONEST FILTER ===== */
.honest {
    padding: 100px 0;
    background: var(--navy-100);
    position: relative;
    overflow: hidden;
}

.honest::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 247, 0.03) 0%, transparent 60%);
    top: -100px;
    right: -100px;
}

.honest .container {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.honest h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.honest-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
}

.honest-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.honest-col h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.honest-col h3 .h-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.honest-col--yes h3 .h-dot {
    background: #34D399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

.honest-col--no h3 .h-dot {
    background: rgba(255, 255, 255, 0.25);
}

.honest-col ul {
    list-style: none;
}

.honest-col li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    padding: 8px 0;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.honest-col li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.honest-col--yes li::before {
    background: rgba(52, 211, 153, 0.5);
}

.honest-col--no li::before {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .honest-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .honest {
        padding: 72px 0;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 128px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

.faq-left h2 {
    color: var(--navy-200);
    margin-bottom: 14px;
}

.faq-left>p {
    font-size: 0.9375rem;
    margin-bottom: 28px;
}

.faq-items {
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-200);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--t);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t);
}

.faq-icon svg {
    transition: transform var(--t);
}

.faq-item.open .faq-icon {
    background: var(--blue-pale);
}

.faq-item.open .faq-icon svg {
    transform: rotate(45deg);
}

.faq-item.open .faq-icon svg line {
    stroke: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}

.faq-answer-inner {
    padding-bottom: 20px;
}

.faq-answer-inner p {
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ===== FINAL CTA V5 — Decision moment + tension ===== */
.final-cta {
    padding: 148px 0;
    background: #050C1D;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 247, 0.07) 0%, rgba(74, 123, 247, 0.02) 35%, transparent 55%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(74, 123, 247, 0.2) 50%, transparent 95%);
}

/* Signature blade in CTA */
.final-cta .final-blade {
    position: absolute;
    top: -30%;
    left: 35%;
    width: 1px;
    height: 160%;
    background: linear-gradient(180deg, transparent, rgba(74, 123, 247, 0.06) 50%, transparent);
    transform: rotate(-25deg);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

a:visited {
    color: white !important;
}

.btn-white:visited {
    color: var(--navy-200) !important;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 18px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta>.container>p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.final-cta-tension {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto 40px;
    font-style: italic;
    line-height: 1.7;
}

.final-cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    padding: 32px 0;
    max-width: 500px;
    margin: 0 auto 48px;
}

.cta-step {
    text-align: center;
}

.cta-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 123, 247, 0.08);
    border: 1px solid rgba(74, 123, 247, 0.12);
    color: var(--blue-soft);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.cta-step-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.final-cta-note {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.22);
    font-weight: 300;
}

/* ===== FOOTER V5 — Lighter navy, gradient, premium ===== */
.footer {
    padding: 72px 0 32px;
    background: linear-gradient(180deg, #0D1630 0%, #0A1128 100%);
    border-top: 1px solid rgba(74, 123, 247, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo svg {
    height: 17px;
    width: auto;
}

.footer-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    font-weight: 300;
    max-width: 320px;
}

.footer-company-data {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.9;
}

.footer-col h4 {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 10px;
    font-weight: 300;
    transition: color var(--t);
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.98);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--t);
}

.footer-copy a:hover {
    color: rgba(255, 255, 255, 0.68);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.08s;
}

.reveal-d2 {
    transition-delay: 0.16s;
}

.reveal-d3 {
    transition-delay: 0.24s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .problems-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        grid-template-columns: 48px 1fr;
    }

    .step-outcome {
        grid-column: 2;
    }

    .product-grid,
    .faq-layout,
    .case-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 17, 40, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 12px;
    }

    .nav-links.open a {
        padding: 10px 0;
    }

    .hero-layout {
        padding-top: 100px;
        padding-bottom: 64px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .problems,
    .solutions,
    .process,
    .why-us,
    .faq,
    .cases {
        padding: 80px 0;
    }

    .problems-grid,
    .solutions-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-num {
        font-size: 1.75rem;
    }

    .step-outcome {
        grid-column: auto;
    }

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-results,
    .case-content {
        padding: 32px 24px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-ctas,
    .final-cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-photo {
        margin: 0 auto;
    }

    .founder-quote {
        padding: 22px 8px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .founder-quote p {
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .final-cta {
        padding: 88px 0;
    }

    .final-cta-tension {
        font-size: 0.875rem;
    }

    .hero-blade {
        display: none;
    }

    .final-blade {
        display: none;
    }

    .final-cta-steps {
        flex-direction: column;
        gap: 20px;
    }

    .product-grid {
        gap: 40px;
    }

    .product {
        padding: 80px 0;
    }

    .bridge {
        padding: 72px 0;
    }

    .founder {
        padding: 72px 0;
    }

    .trust {
        padding: 40px 0;
    }

    .trust-logos {
        gap: 24px;
    }
}