:root {
    --bg-dark: #f8fafc;
    --bg-panel: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --brand-blue: #1d4ed8;
    --brand-blue-hover: #1e40af;
    --brand-cyan: #0284c7;
    --brand-green: #16a34a;
    --brand-yellow: #d97706;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

.app-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem;
    position: relative;
    min-height: 100vh;
}

/* Background effects */
.bg-network { position: absolute }
.bg-network { top: 0 }
.bg-network { right: 0 }
.bg-network { width: 60% }
.bg-network { height: 950px }
.bg-network { background: radial-gradient(circle at 65% 35%, rgba(29, 78, 216, 0.08) 0%, transparent 50%) }
.bg-network { z-index: -1 }
.bg-network { pointer-events: none }

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.logo { display: flex }
.logo { align-items: center }
.logo { gap: 1rem }
.logo { flex-shrink: 0 }
.logo { text-decoration: none }
.logo { color: inherit }

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--text-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.btn-secondary {
    background-color: var(--bg-panel);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
}

.btn-secondary:hover {
    background-color: var(--bg-dark);
}

.top-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Column */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.subtitle {
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 90%;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Features Grid */
.features-grid { display: grid }
.features-grid { grid-template-columns: repeat(4, 1fr) }
.features-grid { gap: 1rem }
.features-grid { position: relative }
.features-grid { z-index: 2 }
.features-grid { margin-top: 2rem }

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.1), 0 4px 6px -2px rgba(29, 78, 216, 0.05);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Stats Banner */
.stats-banner { display: flex }
.stats-banner { justify-content: space-between }
.stats-banner { background: var(--bg-panel) }
.stats-banner { border: 1px solid var(--border-color) }
.stats-banner { border-radius: 12px }
.stats-banner { padding: 1.5rem 2rem }
.stats-banner { backdrop-filter: blur(10px) }
.stats-banner { position: relative }
.stats-banner { z-index: 2 }
.stats-banner { margin-top: 1.5rem }
.stats-banner { margin-bottom: 2rem }

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.stat-item strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Right Column */
.right-col { position: relative }
.right-col { min-height: 580px }

.portrait-img {
    position: absolute;
    top: 50px;
    left: -45%;
    width: 125%;
    max-width: 800px;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.dashboard-panels {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.dash-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.dash-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Donut Chart */
.chart-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.donut-chart { width: 80px }
.donut-chart { height: 80px }
.donut-chart { border-radius: 50% }
.donut-chart { background: conic-gradient(var(--brand-cyan) 0% 72%, var(--brand-yellow) 72% 90%, var(--brand-blue) 90% 100%) }
.donut-chart { display: flex }
.donut-chart { align-items: center }
.donut-chart { justify-content: center }

.donut-inner {
    width: 64px;
    height: 64px;
    background-color: var(--bg-panel);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-val {
    font-size: 1.2rem;
    font-weight: 700;
}

.donut-lbl {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.legend-item span:last-child {
    margin-left: auto;
    color: var(--text-primary);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.c-done { background: var(--brand-cyan); }
.c-prog { background: var(--brand-yellow); }
.c-plan { background: var(--brand-blue); }

/* Stages List */
.stages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stages-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.stage-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.box {
    width: 12px;
    height: 12px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge.w-toku { color: var(--brand-yellow); }
.badge.zakonczone { color: var(--brand-green); }
.badge.w-planie { color: var(--brand-blue); }

/* Gantt Chart */
.gantt-months {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding: 0 10px;
}

.gantt-grid {
    position: relative;
    height: 60px;
    border-top: 1px solid var(--border-color);
}

.g-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}
.g-line:nth-child(1) { left: 25%; }
.g-line:nth-child(2) { left: 50%; }
.g-line:nth-child(3) { left: 75%; }

.g-now { position: absolute }
.g-now { top: -10px }
.g-now { bottom: -10px }
.g-now { width: 1px }
.g-now { left: 72% }
.g-now { border-left: 1px dashed var(--brand-cyan) }
.g-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-cyan);
}

.g-bar {
    position: absolute;
    height: 6px;
    border-radius: 3px;
}
.g-bar.b1 { top: 8px }
.g-bar.b1 { left: 5% }
.g-bar.b1 { width: 50% }
.g-bar.b1 { background: var(--brand-cyan) }
.g-bar.b2 { top: 20px }
.g-bar.b2 { left: 45% }
.g-bar.b2 { width: 35% }
.g-bar.b2 { background: var(--brand-yellow) }
.g-bar.b3 { top: 32px }
.g-bar.b3 { left: 55% }
.g-bar.b3 { width: 30% }
.g-bar.b3 { background: var(--brand-yellow) }
.g-bar.b4 { top: 44px }
.g-bar.b4 { left: 80% }
.g-bar.b4 { width: 15% }
.g-bar.b4 { background: #cbd5e1 }

/* Risks Card */
.risks-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.risks-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.risk-icon {
    width: 40px;
    height: 40px;
    background: rgba(29, 78, 216, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.risk-count span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-text {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    justify-content: center;
    transition: all 0.2s;
}
.btn-text:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    
    .left-col {
        display: contents;
    }
    
    .right-col {
        display: contents;
    }
    
    .hero-section {
        order: 1;
    }
    
    .portrait-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 500px;
        order: 2;
        margin: 0 auto;
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    
    .dashboard-panels {
        position: relative;
        right: 0;
        width: 100%;
        max-width: 500px;
        order: 3;
        margin: 0 auto;
    }
    
    .features-grid {
        order: 4;
    }
    
    .stats-banner {
        order: 5;
    }
}

@media (max-width: 900px) {
    .app-container {
        padding: 1.5rem;
    }

    .header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

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

    .stats-banner {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .app-container {
        padding: 1rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .main-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0.25rem;
        gap: 1.5rem;
        scrollbar-width: none;
    }
    
    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-desc {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        display: flex;
    }

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

    .stats-banner {
        padding: 1rem;
        gap: 1.5rem;
    }
}

/* New Content Sections */
.section { padding-top: 6rem }
.section { padding-bottom: 2rem }
.section { border-top: 1px solid var(--border-color) }
.section { margin-left: calc(-50vw + 50%) }
.section { margin-right: calc(-50vw + 50%) }
.section { padding-left: calc(50vw - 50% + 4rem) }
.section { padding-right: calc(50vw - 50% + 4rem) }
.section { background-color: #ffffff }
.section { position: relative }
.section { z-index: 5 }

.section-alt { background-color: var(--bg-dark) }

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.section-subtitle-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
}

/* Section 1: Plan vs Progress */
.section-plan-vs-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.plan-vs-progress-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.plan-vs-progress-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.plan-vs-progress-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-vs-progress-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.timeline-graph { display: flex }
.timeline-graph { flex-direction: column }
.timeline-graph { gap: 1.5rem }
.timeline-graph { position: relative }

.timeline-headers { display: grid }
.timeline-headers { grid-template-columns: repeat(4, 1fr) }
.timeline-headers { font-size: 0.75rem }
.timeline-headers { font-weight: 600 }
.timeline-headers { color: var(--text-secondary) }
.timeline-headers { text-align: center }
.timeline-headers { padding-left: 60px }

.timeline-row { display: flex }
.timeline-row { align-items: center }
.timeline-row { gap: 1rem }

.row-label { width: 50px }
.row-label { font-size: 0.85rem }
.row-label { font-weight: 700 }
.row-label { color: var(--text-primary) }

.timeline-line-wrapper { flex-grow: 1 }
.timeline-line-wrapper { position: relative }
.timeline-line-wrapper { height: 30px }
.timeline-line-wrapper { display: flex }
.timeline-line-wrapper { align-items: center }

.line-bar { position: absolute }
.line-bar { left: 12.5% }
.line-bar { right: 12.5% }
.line-bar { height: 3px }
.line-bar { z-index: 1 }

.line-blue { background-color: var(--brand-blue) }
.line-green { background-color: var(--brand-green) }

.line-nodes { position: absolute }
.line-nodes { left: 0 }
.line-nodes { right: 0 }
.line-nodes { display: grid }
.line-nodes { grid-template-columns: repeat(4, 1fr) }
.line-nodes { justify-items: center }
.line-nodes { z-index: 2 }

.node { width: 14px }
.node { height: 14px }
.node { border-radius: 50% }
.node { background-color: var(--bg-panel) }
.node { border: 3px solid var(--border-color) }
.node { transition: all 0.2s ease }

.node-blue.active { border-color: var(--brand-blue) }
.node-blue.active { background-color: var(--brand-blue) }

.node-green.completed { border-color: var(--brand-green) }
.node-green.completed { background-color: var(--brand-green) }

.node-green.hollow { border-color: var(--brand-green) }
.node-green.hollow { background-color: var(--bg-panel) }

.timeline-now { position: absolute }
.timeline-now { top: 35px }
.timeline-now { bottom: 45px }
.timeline-now { left: calc(50% + 33px) }
.timeline-now { border-left: 1px dashed var(--brand-cyan) }
.timeline-now { z-index: 1 }

.timeline-now-lbl { position: absolute }
.timeline-now-lbl { top: -18px }
.timeline-now-lbl { transform: translateX(-50%) }
.timeline-now-lbl { font-size: 0.65rem }
.timeline-now-lbl { color: var(--brand-cyan) }
.timeline-now-lbl { font-weight: 600 }

.line-bar.line-green-actual { position: absolute }
.line-bar.line-green-actual { left: 12.5% }
.line-bar.line-green-actual { width: 35.5% }
.line-bar.line-green-actual { height: 3px }
.line-bar.line-green-actual { background-color: var(--brand-green) }
.line-bar.line-green-actual { z-index: 1 }

.postep-nodes { position: absolute }
.postep-nodes { left: 0 }
.postep-nodes { right: 0 }
.postep-nodes { top: 0 }
.postep-nodes { bottom: 0 }
.postep-nodes { z-index: 2 }

.postep-nodes .node { position: absolute }
.postep-nodes .node { top: 50% }
.postep-nodes .node { transform: translate(-50%, -50%) }

.risk-marker { position: absolute }
.risk-marker { top: -22px }
.risk-marker { left: 50% }
.risk-marker { transform: translateX(-50%) }
.risk-marker { width: 15px }
.risk-marker { height: 15px }
.risk-marker { background-color: var(--brand-yellow) }
.risk-marker { color: white }
.risk-marker { border-radius: 50% }
.risk-marker { font-size: 0.65rem }
.risk-marker { font-weight: 700 }
.risk-marker { display: flex }
.risk-marker { align-items: center }
.risk-marker { justify-content: center }

.timeline-legend {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.legend-circle { display: inline-block }
.legend-circle { width: 10px }
.legend-circle { height: 10px }
.legend-circle { border-radius: 50% }
.legend-circle { margin-right: 0.5rem }

.circ-blue { background-color: var(--brand-blue) }
.circ-green { background-color: var(--brand-green) }
.circ-orange-warning { width: 14px }
.circ-orange-warning { height: 14px }
.circ-orange-warning { background-color: var(--brand-yellow) }
.circ-orange-warning { color: white }
.circ-orange-warning { border-radius: 50% }
.circ-orange-warning { display: inline-flex }
.circ-orange-warning { align-items: center }
.circ-orange-warning { justify-content: center }
.circ-orange-warning { font-size: 0.6rem }
.circ-orange-warning { font-weight: 700 }
.circ-orange-warning { margin-right: 0.5rem }

/* Section 2: Barkow Grid */
.barkow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.barkow-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.barkow-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 20px -3px rgba(29, 78, 216, 0.08);
}

.barkow-icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.barkow-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.barkow-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section 3: PM Contract */
.section-pm-contract {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pm-contract-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.pm-contract-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pm-contract-text .highlight-text {
    font-weight: 600;
    color: var(--text-primary);
    border-left: 3px solid var(--brand-blue);
    padding-left: 1rem;
    margin-top: 2rem;
}

.pm-contract-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
}

.guarantee-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.guarantee-badge {
    width: 32px;
    height: 32px;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.guarantee-content strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
}

.guarantee-content span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Section 4: How Work */
.how-work-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.how-work-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
}

.number-badge {
    width: 36px;
    height: 36px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.how-work-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-work-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section 5: CTA Banner */
.section-cta-banner {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem !important;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-banner-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.cta-banner-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* New Sections Responsive adjustments */
@media (max-width: 1200px) {
    .section-plan-vs-progress,
    .section-pm-contract {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .section { margin-left: -1.5rem }
    .section { margin-right: -1.5rem }
    .section { padding-left: 1.5rem }
    .section { padding-right: 1.5rem }

    .barkow-grid {
        grid-template-columns: 1fr;
    }
    
    .how-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-actions {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .section { margin-left: -1rem }
    .section { margin-right: -1rem }
    .section { padding-left: 1rem }
    .section { padding-right: 1rem }

    .how-work-grid {
        grid-template-columns: 1fr;
    }
    
    .section-cta-banner {
        padding: 2rem 1.5rem !important;
    }
}

.collaboration-grid { display: grid }
.collaboration-grid { grid-template-columns: repeat(3, 1fr) }
.collaboration-grid { gap: 2rem }
.collaboration-grid { margin-bottom: 3rem }

.collaboration-card { background: var(--bg-panel) }
.collaboration-card { border: 1px solid var(--border-color) }
.collaboration-card { border-radius: 16px }
.collaboration-card { padding: 2.5rem }
.collaboration-card { box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03) }
.collaboration-card { transition: all 0.3s ease }

.collaboration-card:hover { transform: translateY(-4px) }
.collaboration-card:hover { border-color: var(--brand-blue) }
.collaboration-card:hover { box-shadow: 0 12px 20px -3px rgba(29, 78, 216, 0.08) }

.collaboration-card h3 { font-size: 1.25rem }
.collaboration-card h3 { font-weight: 700 }
.collaboration-card h3 { margin-bottom: 1rem }

.collaboration-card p { font-size: 0.95rem }
.collaboration-card p { color: var(--text-secondary) }
.collaboration-card p { line-height: 1.6 }

@media (max-width: 900px) {
    .collaboration-grid { grid-template-columns: 1fr }
}

.log-page-main { padding-top: 2rem }
.log-page-main { padding-bottom: 6rem }

.log-page-header { text-align: center }
.log-page-header { margin-bottom: 4rem }

.log-page-title { font-size: 2.5rem }
.log-page-title { font-weight: 800 }
.log-page-title { margin-bottom: 1.5rem }
.log-page-title { letter-spacing: -1px }

.log-page-desc { font-size: 1.1rem }
.log-page-desc { color: var(--text-secondary) }
.log-page-desc { max-width: 800px }
.log-page-desc { margin: 0 auto }

.log-controls { display: flex }
.log-controls { justify-content: space-between }
.log-controls { align-items: center }
.log-controls { gap: 2rem }
.log-controls { margin-bottom: 3rem }
.log-controls { background: var(--bg-panel) }
.log-controls { border: 1px solid var(--border-color) }
.log-controls { border-radius: 16px }
.log-controls { padding: 1.5rem }
.log-controls { box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02) }

.filter-group { display: flex }
.filter-group { gap: 0.75rem }

.filter-btn { padding: 0.75rem 1.25rem }
.filter-btn { border-radius: 8px }
.filter-btn { border: 1px solid var(--border-color) }
.filter-btn { background: var(--bg-panel) }
.filter-btn { color: var(--text-secondary) }
.filter-btn { font-weight: 500 }
.filter-btn { font-size: 0.9rem }
.filter-btn { cursor: pointer }
.filter-btn { transition: all 0.2s }

.filter-btn:hover { background: var(--bg-dark) }
.filter-btn:hover { color: var(--text-primary) }

.filter-btn.active { background: var(--brand-blue) }
.filter-btn.active { color: white }
.filter-btn.active { border-color: var(--brand-blue) }

.search-group { flex-grow: 1 }
.search-group { max-width: 400px }

#search-input { width: 100% }
#search-input { padding: 0.75rem 1.25rem }
#search-input { border-radius: 8px }
#search-input { border: 1px solid var(--border-color) }
#search-input { font-size: 0.9rem }
#search-input { outline: none }
#search-input { transition: border-color 0.2s }

#search-input:focus { border-color: var(--brand-blue) }

.log-table { background: var(--bg-panel) }
.log-table { border: 1px solid var(--border-color) }
.log-table { border-radius: 20px }
.log-table { overflow: hidden }
.log-table { box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02) }

.log-table-header { display: grid }
.log-table-header { grid-template-columns: 140px 1fr 1fr }
.log-table-header { background: var(--bg-dark) }
.log-table-header { border-bottom: 1px solid var(--border-color) }
.log-table-header { padding: 1.25rem 2rem }
.log-table-header { font-weight: 700 }
.log-table-header { font-size: 0.9rem }
.log-table-header { color: var(--text-primary) }

.log-rows-container { display: flex }
.log-rows-container { flex-direction: column }

.log-row { display: grid }
.log-row { grid-template-columns: 140px 1fr 1fr }
.log-row { border-bottom: 1px solid var(--border-color) }
.log-row { transition: background-color 0.2s }

.log-row:last-child { border-bottom: none }
.log-row:hover { background-color: rgba(248, 250, 252, 0.5) }

.log-date { padding: 2rem }
.log-date { border-right: 1px solid var(--border-color) }
.log-date { display: flex }
.log-date { flex-direction: column }
.log-date { gap: 0.25rem }

.log-date strong { font-size: 1.15rem }
.log-date strong { font-weight: 700 }
.log-date strong { color: var(--brand-blue) }

.log-date span { font-size: 0.75rem }
.log-date span { color: var(--text-muted) }
.log-date span { text-transform: uppercase }
.log-date span { letter-spacing: 0.5px }

.log-project-col { padding: 2rem }
.log-project-col { display: flex }
.log-project-col { flex-direction: column }
.log-project-col { gap: 0.5rem }

.portal-col { border-right: 1px solid var(--border-color) }

.col-lbl { font-size: 0.7rem }
.col-lbl { font-weight: 700 }
.col-lbl { color: var(--text-muted) }
.col-lbl { text-transform: uppercase }
.col-lbl { letter-spacing: 1px }
.col-lbl { display: none }

.portal-desc { font-size: 0.95rem }
.portal-desc { color: var(--text-secondary) }
.portal-desc { line-height: 1.6 }

.analytics-desc { font-size: 0.95rem }
.analytics-desc { color: var(--text-secondary) }
.analytics-desc { line-height: 1.6 }

.tag-inline { display: inline-block }
.tag-inline { padding: 0.1rem 0.4rem }
.tag-inline { border-radius: 4px }
.tag-inline { font-size: 0.8rem }
.tag-inline { font-weight: 600 }

.t-standup { background: rgba(2, 132, 199, 0.1) }
.t-standup { color: var(--brand-cyan) }

.t-plan { background: rgba(29, 78, 216, 0.1) }
.t-plan { color: var(--brand-blue) }

.t-risk { background: rgba(217, 119, 6, 0.1) }
.t-risk { color: var(--brand-yellow) }

.t-qa { background: rgba(22, 163, 74, 0.1) }
.t-qa { color: var(--brand-green) }

.t-reporting { background: rgba(2, 132, 199, 0.1) }
.t-reporting { color: var(--brand-cyan) }

.t-deploy { background: rgba(22, 163, 74, 0.1) }
.t-deploy { color: var(--brand-green) }

.log-row.single-col { grid-template-columns: 140px 1fr }
.log-row.single-col .portal-col { border-right: none }
.log-row.single-col .analytics-col { border-right: none }

@media (max-width: 900px) {
    .log-controls { flex-direction: column }
    .log-controls { align-items: stretch }
    .search-group { max-width: none }
    .log-table-header { display: none }
    .log-row { grid-template-columns: 1fr }
    .log-row.single-col { grid-template-columns: 1fr }
    .log-date { border-right: none }
    .log-date { border-bottom: 1px solid var(--border-color) }
    .log-date { padding: 1rem 1.5rem }
    .log-date { flex-direction: row }
    .log-date { align-items: center }
    .log-date { gap: 1rem }
    .log-project-col { padding: 1.5rem }
    .portal-col { border-right: none }
    .portal-col { border-bottom: 1px solid var(--border-color) }
    .col-lbl { display: block }
}
.log-preview-table { margin-bottom: 2rem }
.log-preview-more { display: flex }
.log-preview-more { justify-content: center }
.log-preview-more { margin-top: 2rem }

@media (max-width: 600px) {
    .hero-title br { display: none }
    .hero-title { font-size: 1.8rem }
    .hero-desc { max-width: 100% }
    .dash-card { padding: 1rem }
    .stages-list li { font-size: 0.75rem }
    .stages-list li { flex-wrap: wrap }
    .stages-list li { gap: 0.25rem }
    .stage-name { font-size: 0.75rem }
    .badge { font-size: 0.7rem }
    .badge { margin-left: auto }
    .plan-vs-progress-card { padding: 1.25rem 1rem }
    .timeline-headers { padding-left: 45px }
    .timeline-headers { font-size: 0.65rem }
    .row-label { width: 35px }
    .row-label { font-size: 0.75rem }
    .timeline-row { gap: 0.5rem }
    .timeline-now { left: calc(50% + 21.5px) }
    .barkow-card { padding: 1.5rem 1.25rem }
    .collaboration-card { padding: 1.5rem 1.25rem }
    .how-work-card { padding: 1.5rem 1.25rem }
    .filter-group { flex-direction: column }
    .filter-btn { width: 100% }
    .log-row.single-col .portal-col { border-bottom: none }
}

.footer { padding-top: 4rem }
.footer { padding-bottom: 2rem }
.footer { border-top: 1px solid var(--border-color) }
.footer { margin-top: 4rem }

.footer-grid { display: grid }
.footer-grid { grid-template-columns: 2fr 1fr 1fr }
.footer-grid { gap: 4rem }
.footer-grid { margin-bottom: 3rem }

.footer-brand .logo-text { font-size: 1.2rem }
.footer-brand .logo-text { font-weight: 700 }
.footer-brand .logo-text { color: var(--text-primary) }
.footer-brand .logo-text { display: block }
.footer-brand .logo-text { margin-bottom: 1rem }

.footer-brand p { font-size: 0.9rem }
.footer-brand p { color: var(--text-secondary) }
.footer-brand p { max-width: 320px }

.footer-info strong, .footer-contact strong { font-size: 0.95rem }
.footer-info strong, .footer-contact strong { font-weight: 700 }
.footer-info strong, .footer-contact strong { color: var(--text-primary) }
.footer-info strong, .footer-contact strong { display: block }
.footer-info strong, .footer-contact strong { margin-bottom: 1rem }

.footer-info p, .footer-contact p { font-size: 0.9rem }
.footer-info p, .footer-contact p { color: var(--text-secondary) }
.footer-info p, .footer-contact p { line-height: 1.6 }

.footer-bottom { border-top: 1px solid var(--border-color) }
.footer-bottom { padding-top: 1.5rem }
.footer-bottom { text-align: center }

.footer-bottom p { font-size: 0.8rem }
.footer-bottom p { color: var(--text-muted) }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr }
    .footer-grid { gap: 2rem }
}

.policy-container { max-width: 800px }
.policy-container { margin: 0 auto 4rem }
.policy-container { display: flex }
.policy-container { flex-direction: column }
.policy-container { gap: 2rem }

.policy-item-title { margin-bottom: 0.5rem }
.policy-item-title { font-size: 1.2rem }

.policy-item-text { color: var(--text-secondary) }

.section-pm-contract .stats-banner { grid-column: 1 / -1 }
.section-pm-contract .stats-banner { margin-top: 0 }
.section-pm-contract .stats-banner { margin-bottom: 0 }

.section-title-left { font-size: 2.2rem }
.section-title-left { font-weight: 800 }
.section-title-left { margin-bottom: 1rem }
.section-title-left { letter-spacing: -0.5px }

.section-desc-left { font-size: 1.1rem }
.section-desc-left { color: var(--text-secondary) }
.section-desc-left { max-width: 800px }
.section-desc-left { margin-bottom: 3rem }
.section-desc-left { line-height: 1.6 }

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

.blog-card { background: var(--bg-panel) }
.blog-card { border: 1px solid var(--border-color) }
.blog-card { border-radius: 12px }
.blog-card { overflow: hidden }
.blog-card { display: flex }
.blog-card { flex-direction: column }
.blog-card { text-decoration: none }
.blog-card { color: inherit }
.blog-card { transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s }
.blog-card { box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03) }

.blog-card:hover:not(.blog-soon) { transform: translateY(-5px) }
.blog-card:hover:not(.blog-soon) { border-color: var(--brand-blue) }
.blog-card:hover:not(.blog-soon) { box-shadow: 0 12px 20px -3px rgba(29, 78, 216, 0.08) }

.blog-thumb { position: relative }
.blog-thumb { aspect-ratio: 16 / 9 }
.blog-thumb { background: linear-gradient(135deg, #e3ede8 0%, #cdddd5 55%, #b9cfc4 100%) }
.blog-thumb { overflow: hidden }

.blog-ph { position: absolute }
.blog-ph { left: 1.25rem }
.blog-ph { bottom: 1rem }
.blog-ph { font-size: 0.65rem }
.blog-ph { font-weight: 700 }
.blog-ph { color: #ffffff }
.blog-ph { background: rgba(15, 23, 42, 0.75) }
.blog-ph { padding: 4px 10px }
.blog-ph { border-radius: 4px }
.blog-ph { letter-spacing: 1.5px }
.blog-ph { backdrop-filter: blur(4px) }
.blog-ph { -webkit-backdrop-filter: blur(4px) }

.blog-body { padding: 1.5rem }
.blog-body { display: flex }
.blog-body { flex-direction: column }
.blog-body { gap: 0.75rem }
.blog-body { flex-grow: 1 }

.blog-meta { font-size: 0.8rem }
.blog-meta { color: var(--text-muted) }

.blog-card h3 { font-size: 1.2rem }
.blog-card h3 { font-weight: 700 }
.blog-card h3 { line-height: 1.3 }

.blog-card p { font-size: 0.9rem }
.blog-card p { color: var(--text-secondary) }
.blog-card p { line-height: 1.5 }

.blog-more { margin-top: auto }
.blog-more { padding-top: 0.75rem }
.blog-more { font-weight: 600 }
.blog-more { font-size: 0.9rem }
.blog-more { color: var(--brand-blue) }

.blog-soon { opacity: 0.75 }
.blog-soon .blog-more { color: var(--text-muted) }

.blog-badge { display: inline-block }
.blog-badge { font-size: 0.7rem }
.blog-badge { font-weight: 700 }
.blog-badge { color: var(--brand-yellow) }
.blog-badge { border: 1px solid var(--brand-yellow) }
.blog-badge { border-radius: 4px }
.blog-badge { padding: 0.2rem 0.5rem }
.blog-badge { align-self: flex-start }

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr }
}

.blog-thumb img { display: block }
.blog-thumb img { width: 100% }
.blog-thumb img { height: 100% }
.blog-thumb img { object-fit: cover }

.blog-post-content { max-width: 760px }
.blog-post-content { margin: 0 auto }
.crumb { margin-bottom: 2rem }
.back-link { color: var(--brand-blue) }
.back-link { text-decoration: none }
.back-link { font-weight: 600 }
.back-link { font-size: 0.95rem }
.back-link:hover { text-decoration: underline }
.article-header { margin-bottom: 2.5rem }
.article-header h2 { font-size: 2.5rem }
.article-header h2 { font-weight: 800 }
.article-header h2 { line-height: 1.2 }
.article-header h2 { color: var(--text-primary) }
.article-header h2 { margin-top: 1rem }
.article-header h2 { margin-bottom: 1.5rem }
.article-header h2 { letter-spacing: -0.5px }
.article-header .lede { font-size: 1.2rem }
.article-header .lede { color: var(--text-secondary) }
.article-header .lede { line-height: 1.6 }
.article-cover { position: relative }
.article-cover { border-radius: 12px }
.article-cover { overflow: hidden }
.article-cover { margin-bottom: 3rem }
.article-cover { aspect-ratio: 16 / 9 }
.article-cover img { width: 100% }
.article-cover img { height: 100% }
.article-cover img { object-fit: cover }
.article-cover .blog-ph { position: absolute }
.article-cover .blog-ph { left: 1.25rem }
.article-cover .blog-ph { bottom: 1rem }
.article-cover .blog-ph { font-size: 0.65rem }
.article-cover .blog-ph { font-weight: 700 }
.article-cover .blog-ph { color: #ffffff }
.article-cover .blog-ph { background: rgba(15, 23, 42, 0.75) }
.article-cover .blog-ph { padding: 4px 10px }
.article-cover .blog-ph { border-radius: 4px }
.article-cover .blog-ph { letter-spacing: 1.5px }
.article-cover .blog-ph { backdrop-filter: blur(4px) }
.article-cover .blog-ph { -webkit-backdrop-filter: blur(4px) }
.article-body { font-size: 1.1rem }
.article-body { line-height: 1.8 }
.article-body { color: var(--text-secondary) }
.article-body p { margin-bottom: 1.5rem }
.article-body h2 { font-size: 1.6rem }
.article-body h2 { font-weight: 700 }
.article-body h2 { color: var(--text-primary) }
.article-body h2 { margin-top: 2.5rem }
.article-body h2 { margin-bottom: 1rem }
.article-body h2 { letter-spacing: -0.3px }
.article-body strong { color: var(--text-primary) }
.article-body p:last-child { margin-bottom: 0 }
.article-body .pull { margin: 2rem 0 }
.article-body .pull { padding: 1.5rem 2rem }
.article-body .pull { background: var(--bg-panel) }
.article-body .pull { border: 1px solid var(--border-color) }
.article-body .pull { border-left: 4px solid var(--brand-blue) }
.article-body .pull { border-radius: 8px }
.article-body .pull { font-size: 1.05rem }
.article-body .pull { color: var(--text-primary) }

.cta-banner-spacer { margin-top: 4rem }
.cta-banner-spacer { margin-bottom: 4rem }
.backline { margin-bottom: 4rem }

.o-mnie-story { grid-column: 1 / -1 }
.o-mnie-story { margin-top: 4rem }
.o-mnie-story { border-top: 1px solid var(--border-color) }
.o-mnie-story { padding-top: 4rem }

.timeline-container-grid { display: grid }
.timeline-container-grid { grid-template-columns: 320px 1fr }
.timeline-container-grid { gap: 4rem }

.timeline-left-panel { position: sticky }
.timeline-left-panel { top: 6rem }
.timeline-left-panel { align-self: start }

.timeline-left-subtitle { display: block }
.timeline-left-subtitle { font-size: 0.875rem }
.timeline-left-subtitle { font-weight: 600 }
.timeline-left-subtitle { text-transform: uppercase }
.timeline-left-subtitle { letter-spacing: 0.05em }
.timeline-left-subtitle { color: var(--brand-blue) }
.timeline-left-subtitle { margin-bottom: 0.5rem }

.timeline-left-title { font-size: 2.25rem }
.timeline-left-title { font-weight: 800 }
.timeline-left-title { line-height: 1.2 }
.timeline-left-title { color: var(--text-primary) }
.timeline-left-title { margin-bottom: 1.5rem }
.timeline-left-title { letter-spacing: -0.025em }

.timeline-accent-line { width: 60px }
.timeline-accent-line { height: 4px }
.timeline-accent-line { background: var(--brand-blue) }
.timeline-accent-line { margin-bottom: 2rem }
.timeline-accent-line { border-radius: 2px }

.timeline-left-desc { font-size: 1.05rem }
.timeline-left-desc { line-height: 1.6 }
.timeline-left-desc { color: var(--text-secondary) }
.timeline-left-desc { margin-bottom: 1.25rem }

.timeline-left-quote { margin-top: 2.5rem }
.timeline-left-quote { padding: 1.5rem }
.timeline-left-quote { background: var(--bg-panel) }
.timeline-left-quote { border-left: 4px solid var(--brand-blue) }
.timeline-left-quote { border-radius: 8px }
.timeline-left-quote { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) }

.timeline-quote-icon { margin-bottom: 0.75rem }
.timeline-quote-icon { color: var(--brand-blue) }

.quote-text { font-style: italic }
.quote-text { color: var(--text-primary) }
.quote-text { line-height: 1.5 }
.quote-text { font-size: 1rem }
.quote-text { margin: 0 }

.timeline-list-wrapper { position: relative }
.timeline-list-wrapper { padding-left: 20px }

.timeline-list-wrapper::before { content: "" }
.timeline-list-wrapper::before { position: absolute }
.timeline-list-wrapper::before { left: 20px }
.timeline-list-wrapper::before { top: 1.5rem }
.timeline-list-wrapper::before { bottom: 1.5rem }
.timeline-list-wrapper::before { width: 2px }
.timeline-list-wrapper::before { border-left: 2px dashed rgba(29, 78, 216, 0.25) }
.timeline-list-wrapper::before { z-index: 1 }

.timeline-item { position: relative }
.timeline-item { display: grid }
.timeline-item { grid-template-columns: 100px 1fr }
.timeline-item { gap: 2rem }
.timeline-item { margin-bottom: 3.5rem }
.timeline-item { padding-left: 40px }

.timeline-item:last-child { margin-bottom: 0 }

.timeline-badge { position: absolute }
.timeline-badge { left: 20px }
.timeline-badge { top: 1.5rem }
.timeline-badge { transform: translate(-50%, -50%) }
.timeline-badge { width: 36px }
.timeline-badge { height: 36px }
.timeline-badge { border-radius: 50% }
.timeline-badge { background: var(--brand-blue) }
.timeline-badge { color: white }
.timeline-badge { display: flex }
.timeline-badge { align-items: center }
.timeline-badge { justify-content: center }
.timeline-badge { font-weight: 700 }
.timeline-badge { font-size: 0.95rem }
.timeline-badge { z-index: 2 }
.timeline-badge { box-shadow: 0 0 0 6px var(--bg-dark) }

.timeline-icon-card { background: #f1f5f9 }
.timeline-icon-card { border: 1px solid rgba(226, 232, 240, 0.8) }
.timeline-icon-card { border-radius: 12px }
.timeline-icon-card { width: 100px }
.timeline-icon-card { height: 100px }
.timeline-icon-card { display: flex }
.timeline-icon-card { align-items: center }
.timeline-icon-card { justify-content: center }
.timeline-icon-card { transition: transform 0.3s ease }

.timeline-icon-card svg { width: 36px }
.timeline-icon-card svg { height: 36px }

.timeline-card { background: var(--bg-panel) }
.timeline-card { border: 1px solid var(--border-color) }
.timeline-card { border-radius: 16px }
.timeline-card { padding: 1.5rem 2rem }
.timeline-card { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) }
.timeline-card { transition: transform 0.3s ease, box-shadow 0.3s ease }

.timeline-card-tag { display: inline-block }
.timeline-card-tag { font-size: 0.75rem }
.timeline-card-tag { font-weight: 600 }
.timeline-card-tag { text-transform: uppercase }
.timeline-card-tag { color: var(--brand-blue) }
.timeline-card-tag { background: rgba(29, 78, 216, 0.08) }
.timeline-card-tag { padding: 0.25rem 0.75rem }
.timeline-card-tag { border-radius: 20px }
.timeline-card-tag { margin-bottom: 0.75rem }

.timeline-card h4 { font-size: 1.25rem }
.timeline-card h4 { font-weight: 700 }
.timeline-card h4 { color: var(--text-primary) }
.timeline-card h4 { margin-bottom: 0.5rem }

.timeline-card p { font-size: 0.95rem }
.timeline-card p { line-height: 1.5 }
.timeline-card p { color: var(--text-secondary) }
.timeline-card p { margin: 0 }

.timeline-item:hover .timeline-card { transform: translateY(-4px) }
.timeline-item:hover .timeline-card { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) }

.timeline-item:hover .timeline-icon-card { transform: scale(1.05) rotate(3deg) }
.timeline-item:hover .timeline-icon-card { background: rgba(29, 78, 216, 0.05) }

@media (max-width: 1024px) {
  .timeline-container-grid { grid-template-columns: 1fr }
  .timeline-container-grid { gap: 3rem }
  .timeline-left-panel { position: static }
  .timeline-list-wrapper { padding-left: 10px }
  .timeline-list-wrapper::before { left: 10px }
  .timeline-badge { left: 10px }
  .timeline-item { padding-left: 25px }
  .timeline-item { grid-template-columns: 80px 1fr }
  .timeline-item { gap: 1.5rem }
  .timeline-icon-card { width: 80px }
  .timeline-icon-card { height: 80px }
  .timeline-icon-card svg { width: 28px }
  .timeline-icon-card svg { height: 28px }
}

@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 1fr }
  .timeline-item { gap: 1rem }
  .timeline-icon-card { width: 60px }
  .timeline-icon-card { height: 60px }
  .timeline-icon-card { border-radius: 8px }
  .timeline-icon-card svg { width: 24px }
  .timeline-icon-card svg { height: 24px }
  .timeline-card { padding: 1.25rem 1.5rem }
}

#o-mnie-story-section { padding-bottom: 6rem }
#o-mnie-story-section .o-mnie-story { margin-top: 0 }
#o-mnie-story-section .o-mnie-story { border-top: none }
#o-mnie-story-section .o-mnie-story { padding-top: 0 }


