/* ============================================
   Investor Relations — Landing Page
   Style: Minimal + Bold Typography + Color Blocking
   Ref: dowhatmatter.com aesthetic
   ============================================ */

:root {
    --navy: #0a1628;
    --navy-light: #0f2140;
    --navy-mid: #162d50;
    --accent: #f5a623;
    --accent-hover: #e69516;
    --accent-soft: #ffecd2;
    --blue-accent: #4a9eff;
    --blue-soft: #e8f2ff;
    --yellow: #ffd000;
    --yellow-soft: #fff8db;
    --cyan: #9bceff;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #1a1a2e;
    --text-secondary: #4a5568;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: rgba(255,255,255,0.0);
}

.nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -1px;
}

.accent-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

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

.nav-lang {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: background var(--transition) !important;
}

.nav-lang:hover {
    background: var(--gray-200) !important;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background var(--transition) !important;
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    padding: 14px 32px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--navy);
    background: var(--gray-50);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    width: 100%;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 18px;
}

/* ---- Hero ---- */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 220px 24px 150px;
    background: linear-gradient(165deg, var(--white) 0%, var(--off-white) 50%, var(--blue-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74,158,255,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.2s forwards;
}

.hero-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--navy);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s 0.4s forwards;
}

.hero-highlight {
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s 0.8s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0 0;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.6s 1s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ---- Sections Common ---- */
.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--navy);
}

/* ---- Cases ---- */
.cases {
    padding: 120px 24px;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-4px);
}

.case-yellow {
    background: var(--yellow);
    color: var(--navy);
}

.case-blue {
    background: var(--cyan);
    color: var(--navy);
}

.case-dark {
    background: var(--navy);
    color: var(--white);
}

.case-stage {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.case-industry {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.case-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    flex: 1;
}

.case-result {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.case-dark .case-result {
    border-top-color: rgba(255,255,255,0.15);
}

.case-result-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- About ---- */
.about {
    padding: 120px 24px;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--navy-light), var(--navy));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text.accent-text {
    color: var(--navy);
    font-weight: 600;
    font-size: 19px;
}

/* ---- Numbers ---- */
.numbers {
    padding: 100px 24px;
    background: var(--navy);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 20px;
}

.number-value {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
}

.number-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ---- Services ---- */
.services {
    padding: 120px 24px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.service-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.service-main {
    background: var(--navy);
    color: var(--white);
    border-color: transparent;
    position: relative;
}

.service-main:hover {
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(10,22,40,0.3);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 50px;
}

.service-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding: 8px 0;
    font-size: 15px;
    position: relative;
    padding-left: 24px;
    opacity: 0.85;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 2px;
    background: var(--accent);
}

.service-fit {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.service-price {
    margin-top: auto;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
}

.price-period {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 500;
}

.price-alt {
    display: block;
    font-size: 14px;
    opacity: 0.5;
    margin-top: 4px;
}

.service-main .btn-primary {
    background: var(--accent);
    color: var(--navy);
}

.service-main .btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 30px rgba(245,166,35,0.3);
}

/* ---- Case Proof Card ---- */
.case-proof {
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white);
    padding: 48px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.case-proof-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 32px;
    align-self: flex-start;
}

/* Chain — full width, big nodes */
.proof-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.proof-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 160px;
    height: 110px;
    flex-shrink: 0;
    transition: background var(--transition);
}

.proof-node:hover { background: rgba(255,255,255,0.1); }

.proof-node-start {
    border-color: rgba(245,166,35,0.4);
    background: rgba(245,166,35,0.08);
}

.proof-node-end {
    border-color: rgba(74,158,255,0.4);
    background: rgba(74,158,255,0.1);
}

.proof-node-amount {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-node-start .proof-node-amount { color: var(--accent); }
.proof-node-end .proof-node-amount   { color: var(--cyan); }

.proof-node-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.proof-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    flex-shrink: 0;
}

.proof-arrow-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    position: relative;
}

.proof-arrow-line::after {
    content: '▸';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.proof-arrow-text {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Bottom: text left, image right */
.proof-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.proof-bottom-text {
    padding: 36px 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.proof-bottom-image {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.proof-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    max-height: 280px;
}

.case-proof-thesis {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.case-proof-thesis strong { color: var(--accent); }

.case-proof-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    flex-grow: 1;
}

.case-proof-sub strong {
    color: var(--white);
    font-weight: 700;
}

.case-proof-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color var(--transition);
    letter-spacing: 0.2px;
}

.case-proof-source:hover { color: var(--accent); }

@media (max-width: 1024px) {
    .case-proof { padding: 40px 32px 40px; }
    .proof-bottom { grid-template-columns: 1fr; }
    .proof-bottom-text {
        padding: 32px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .proof-image { max-height: 240px; }
}

@media (max-width: 600px) {
    .proof-chain { flex-wrap: wrap; gap: 12px; }
    .proof-arrow { display: none; }
    .proof-node { min-width: 120px; height: 90px; padding: 20px; }
    .proof-node-amount { font-size: 28px; }
}



/* ---- Case Proof Card ---- */
.case-proof {
    background: var(--navy);
    color: var(--white);
    padding: 48px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    border-radius: var(--radius);
}

.case-proof-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 32px;
    align-self: flex-start;
}

.proof-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.proof-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 160px;
    height: 110px;
    flex-shrink: 0;
    transition: background var(--transition);
}

.proof-node:hover { background: rgba(255,255,255,0.1); }

.proof-node-start {
    border-color: rgba(245,166,35,0.4);
    background: rgba(245,166,35,0.08);
}

.proof-node-end {
    border-color: rgba(74,158,255,0.4);
    background: rgba(74,158,255,0.1);
}

.proof-node-amount {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-node-start .proof-node-amount { color: var(--accent); }
.proof-node-end .proof-node-amount   { color: var(--cyan); }

.proof-node-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.proof-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    flex-shrink: 0;
}

.proof-arrow-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    position: relative;
}

.proof-arrow-line::after {
    content: '▸';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.proof-arrow-text {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.proof-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.proof-bottom-text {
    padding: 36px 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.proof-bottom-image {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.proof-image {
    width: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    max-height: 280px;
}

.case-proof-thesis {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.case-proof-thesis strong { color: var(--accent); }

.case-proof-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.case-proof-sub strong {
    color: var(--white);
    font-weight: 700;
}

.case-proof-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color var(--transition);
}

.case-proof-source:hover { color: var(--accent); }

@media (max-width: 1024px) {
    .case-proof { padding: 40px 32px; }
    .proof-bottom { grid-template-columns: 1fr; }
    .proof-bottom-text {
        padding: 32px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .proof-image { max-height: 240px; }
}

@media (max-width: 600px) {
    .proof-chain { flex-wrap: wrap; gap: 12px; }
    .proof-arrow { display: none; }
    .proof-node { min-width: 120px; height: 90px; padding: 20px; }
    .proof-node-amount { font-size: 28px; }
}

/* ---- Fit ---- */
.fit {
    padding: 120px 24px;
    background: var(--off-white);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 32px;
    align-items: start;
}

.fit-col {
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.fit-col:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.fit-icon-no {
    background: linear-gradient(135deg, var(--gray-300), var(--gray-500));
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.2);
    font-size: 32px;
}

.fit-yes {
    background: var(--white);
    border: 2px solid #d1fae5;
}

.fit-no {
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
}

.fit-heading {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--navy);
}

.fit-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.fit-list {
    list-style: none;
}

.fit-list li {
    padding: 14px 0;
    position: relative;
    padding-left: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.fit-list li:last-child {
    border-bottom: none;
}

.fit-item-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.fit-item-desc {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.fit-yes .fit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    color: #22c55e;
    font-weight: 800;
    font-size: 18px;
}

.fit-no .fit-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--gray-300);
    font-weight: 700;
    font-size: 18px;
}

.fit-cta {
    margin-top: 32px;
}

.fit-note {
    margin-top: 28px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fit-note a {
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
}

.fit-note a:hover {
    text-decoration: underline;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 120px 24px;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--gray-100);
}

.testimonial-placeholder {
    opacity: 0.5;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-200);
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ---- Contact ---- */
.contact {
    padding: 120px 24px;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
}

.contact-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-actions .btn-primary {
    background: var(--accent);
    color: var(--navy);
}

.contact-actions .btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 40px rgba(245,166,35,0.3);
}

.contact-links {
    display: flex;
    gap: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--white);
}

.contact-link svg {
    flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
    padding: 28px 24px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ---- Animations ---- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-photo {
        max-width: 360px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 100px;
    }

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

    .cases {
        padding: 80px 24px;
    }

    .about {
        padding: 80px 24px;
    }

    .numbers {
        padding: 60px 24px;
    }

    .services {
        padding: 80px 24px;
    }

    .testimonials {
        padding: 80px 24px;
    }

    .contact {
        padding: 80px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .number-card {
        padding: 16px 12px;
    }

    .case-card {
        padding: 32px 24px;
    }

    .fit-col {
        padding: 32px 24px;
    }

    .service-card {
        padding: 32px 24px;
    }
}