﻿/* Custom Font - GT Eesti Text Medium */
@font-face {
    font-family: 'GT Eesti';
    src: url('https://flowpressai-prod-bbeb02a2-220b-4e9f-9890-2d27e107b17c.s3.us-east-2.amazonaws.com/uploads/public/2025/08/gt-eesti-text-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
:root {
    --bg-color: #050505;
    --text-main: #e5e5e5;
    --text-muted: #a3a3a3;
    --accent-blue: #0060ED;
    --accent-blue-hover: #0050D0;
    --accent-green: #6ee7b7;
    --accent-green-hover: #34d399;
    --card-bg: #111111;
    --border-color: #333;
    --chart-line-1: #a78bfa;
    --chart-line-2: #6ee7b7;
    --chart-line-3: #fbbf24;
    --chart-line-4: #60a5fa;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'GT Eesti', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header / Menu */
header {
    padding: 2.5rem 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0;
    border-radius: 12px;
    margin: 1rem 0;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.logo-icon {
    border: 1px solid #fff;
    padding: 2px 5px;
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

header nav {
    display: flex;
    justify-content: center;
}

header .logo {
    justify-self: start;
}

header .btn-primary {
    justify-self: end;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: #fff;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    color: #fff !important;
}

.nav-links .btn-primary {
    margin: 0.5rem 0;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(to right, #fff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--text-muted);
}

h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 500;
    line-height: 1.05;
    color: #e2e2e2;
    margin-bottom: 3rem;
    max-width: 900px;
    letter-spacing: -0.03em;
}

/* Dashboard Section */
.dashboard-section {
    padding: 4rem 0 8rem;
}

.dashboard-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Dashboard Sidebar */
.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid var(--border-color);
    padding-right: 1.5rem;
}

.dash-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dash-menu-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dash-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #555;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-checkbox.checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.dash-checkbox.checked::after {
    content: '✓';
    font-size: 10px;
    color: #000;
}

/* Dashboard Main */
.dash-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dash-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.dash-controls {
    display: flex;
    gap: 0.5rem;
}

.dash-btn {
    background: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* CSS Chart */
.chart-container {
    height: 300px;
    position: relative;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 1rem 0;
    display: flex;
    align-items: flex-end;
    padding: 0 1rem;
}

.chart-grid-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed #222;
    width: 100%;
}

.chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.path-1 {
    stroke: var(--chart-line-1);
}

.path-2 {
    stroke: var(--chart-line-2);
}

.path-3 {
    stroke: var(--chart-line-3);
}

.path-4 {
    stroke: var(--chart-line-4);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: #555;
    font-size: 0.75rem;
}

/* Timeline Sections */
.timeline-section {
    padding: 6rem 0;
    position: relative;
}

.timeline-container {
    display: flex;
    gap: 4rem;
    position: relative;
}

.timeline-line-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    margin-bottom: 1rem;
}

.timeline-line {
    width: 1px;
    background: linear-gradient(to bottom, #444, transparent);
    flex-grow: 1;
    min-height: 200px;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.profile-block {
    margin-bottom: 2rem;
}

.profile-img {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    margin-bottom: 1rem;
    background-size: cover;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.quote-mark {
    font-size: 4rem;
    color: #333;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

/* Content Opportunities */
.opportunities-box {
    margin-top: 3rem;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.opp-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.opp-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.opp-item {
    background-color: #111;
    border: 1px solid #333;
    padding: 1rem;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.9rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
    margin-top: 4rem;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Growth Chart Section */
.growth-section {
    padding: 8rem 0;
    background: var(--bg-color);
}

.growth-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.growth-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #e5e5e5;
}

.growth-subtitle {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: #555;
}

.growth-chart-wrapper {
    position: relative;
    padding: 2rem 0;
}

.growth-chart-svg {
    width: 100%;
    height: 500px;
    overflow: visible;
}

.axis-line {
    stroke: #333;
    stroke-width: 1;
}

.axis-text {
    fill: #999;
    font-size: 12px;
    font-family: 'GT Eesti', 'Inter', sans-serif;
}

.chart-line-grey {
    fill: none;
    stroke: #666;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-line-green {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-area-fill {
    fill: url(#greenGradient);
    opacity: 0.5;
}

.chart-point {
    fill: var(--bg-color);
    stroke-width: 2;
    r: 6;
}

.point-grey {
    stroke: #666;
}

.point-green {
    stroke: var(--accent-green);
}

.chart-annotation {
    fill: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-anchor: middle;
}

.annotation-box {
    fill: #fff;
    rx: 2;
}

.annotation-icon {
    fill: #000;
    font-size: 14px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

/* Services Grid Section */
.services-section {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.service-item {
    background-color: #111;
    border: 1px solid #222;
    padding: 1rem;
    color: #999;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
}

.service-item:hover {
    background-color: #1a1a1a;
    border-color: #333;
    color: #ccc;
}

/* Final CTA Section */
.final-cta-section {
    padding: 10rem 0;
    text-align: left;
}

.final-cta-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    color: #666;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.btn-chat {
    background-color: var(--accent-blue);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-chat:hover {
    background-color: var(--accent-blue-hover);
}

/* Responsive - Tablet & Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    header {
        padding: 1.5rem 0;
    }

    .logo img {
        height: 24px !important;
    }

    .btn-primary {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .dashboard-section {
        padding: 3rem 0 4rem;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dash-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .chart-labels {
        font-size: 0.7rem;
    }

    .timeline-section {
        padding: 3rem 0;
    }

    .timeline-container {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-line-container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .timeline-line {
        width: 50px;
        height: 1px;
        min-height: 1px;
        flex-grow: 0;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .opp-item {
        font-size: 0.85rem;
        width: 100%;
    }

    .growth-section {
        padding: 4rem 0;
    }

    .growth-title,
    .growth-subtitle {
        font-size: 2rem;
    }

    .growth-chart-svg {
        height: 300px;
    }

    .services-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-header {
        font-size: 1rem;
    }

    .service-item {
        font-size: 0.8rem;
        padding: 0.85rem;
    }

    .final-cta-section {
        padding: 5rem 0;
    }

    .final-cta-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .btn-chat {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    footer {
        padding: 3rem 0;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .growth-title,
    .growth-subtitle {
        font-size: 1.75rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .btn-primary {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
    }
}