/* ========================================
   TaxEase Bemutató Oldal - CSS
   Meglévő design rendszer alapján
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ---- Particles Canvas ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 26, 81, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 26, 81, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ce7d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00ce7d;
}

.nav-cta {
    background: linear-gradient(45deg, #00ce7d, #00b569);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 206, 125, 0.4);
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, #0c1a51 0%, #1e3a8a 30%, #0f172a 100%);
    color: white;
    padding: 150px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 206, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 206, 125, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2300ce7d" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: drift 20s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(1deg);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-60px);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 206, 125, 0.1);
    border: 1px solid rgba(0, 206, 125, 0.3);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    color: #00ce7d;
    font-weight: 600;
    margin-bottom: 28px;
    animation: slideDown 0.8s ease-out;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ce7d;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: slideUp 0.8s ease-out 0.2s both;
    background: linear-gradient(45deg, #ffffff, #00ce7d, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease-out 0.2s both, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #e2e8f0;
    max-width: 520px;
    line-height: 1.7;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.cta-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #00ce7d, #00b569);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 206, 125, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 206, 125, 0.6);
}

.cta-secondary {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 20px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary:hover {
    border-color: #00ce7d;
    color: #00ce7d;
    transform: translateY(-2px);
}

/* ---- Progress Card (Hero Right) ---- */
.hero-visual {
    animation: slideUp 1s ease-out 0.5s both;
}

.progress-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px;
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

.progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ce7d, #1e3a8a, #00ce7d);
    background-size: 200% 100%;
    animation: borderShimmer 3s ease-in-out infinite;
}

@keyframes borderShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.progress-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: white;
}

.progress-bar-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, #00ce7d, #00b569);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 206, 125, 0.4);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

.progress-percentage {
    position: absolute;
    right: 0;
    top: -32px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ce7d;
    text-shadow: 0 0 20px rgba(0, 206, 125, 0.5);
}

.progress-milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.milestone {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s ease;
}

.milestone.completed {
    border-color: rgba(0, 206, 125, 0.2);
}

.milestone.completed .milestone-icon {
    color: #00ce7d;
}

.milestone.in-progress {
    border-color: rgba(0, 206, 125, 0.15);
    background: rgba(0, 206, 125, 0.03);
}

.milestone-icon {
    font-size: 1.1rem;
    margin-bottom: 4px;
    display: block;
}

.milestone-text {
    font-size: 0.82rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* ---- Light Sections ---- */
.section-light {
    padding: 140px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* ---- Dark Sections ---- */
.section-dark {
    padding: 140px 0;
    background: linear-gradient(135deg, #0c1a51 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 206, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 206, 125, 0.08) 0%, transparent 50%);
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 206, 125, 0.1);
    border: 1px solid rgba(0, 206, 125, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00ce7d;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 3.2rem;
    color: #0c1a51;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: #e2e8f0;
}

/* ---- Stats Grid ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: white;
    padding: 44px 36px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ce7d, #0c1a51);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #00ce7d;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: #0c1a51;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ---- Info Cards Grid ---- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.section-dark .info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.section-dark .info-card:hover {
    border-color: rgba(0, 206, 125, 0.2);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0c1a51;
}

.section-dark .info-card h3 {
    color: white;
}

.info-card h3 .icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00ce7d, #00b569);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 206, 125, 0.25);
}

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

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-dark .info-list li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

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

.info-list .label {
    color: #64748b;
    font-size: 0.95rem;
}

.section-dark .info-list .label {
    color: #e2e8f0;
}

.info-list .value {
    font-weight: 700;
    color: #00ce7d;
    font-size: 1rem;
}

/* ---- Product Section ---- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-features {
    list-style: none;
    margin-top: 28px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
}

.section-dark .product-features li {
    color: #e2e8f0;
}

.product-features .check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: rgba(0, 206, 125, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ce7d;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ---- Mockup ---- */
.mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.mockup:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 206, 125, 0.1);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-body {
    padding: 28px;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.mockup-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.mockup-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ce7d;
    display: block;
}

.mockup-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    display: block;
}

.mockup-chart {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    padding: 20px;
    height: 140px;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
    padding-top: 16px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar.green {
    background: linear-gradient(180deg, #00ce7d, rgba(0, 206, 125, 0.3));
}

.chart-bar.blue {
    background: linear-gradient(180deg, #1e3a8a, rgba(30, 58, 138, 0.3));
}

/* ---- Traction Cards ---- */
.traction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.traction-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.traction-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ce7d, #0c1a51);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.traction-card:hover::after {
    transform: scaleX(1);
}

.traction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.traction-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.traction-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ce7d;
    display: block;
    margin-bottom: 8px;
}

.traction-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ce7d, #0c1a51, rgba(255, 255, 255, 0.05));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 44px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 36px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 36px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 2;
}

.timeline-dot.completed {
    background: #00ce7d;
    box-shadow: 0 0 14px rgba(0, 206, 125, 0.5);
}

.timeline-dot.current {
    background: #00ce7d;
    box-shadow: 0 0 18px rgba(0, 206, 125, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

.timeline-dot.upcoming {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: rgba(0, 206, 125, 0.15);
    transform: translateY(-3px);
}

.timeline-date {
    font-size: 0.78rem;
    color: #00ce7d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.timeline-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.timeline-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timeline-status.done {
    background: rgba(0, 206, 125, 0.12);
    color: #00ce7d;
}

.timeline-status.active {
    background: rgba(0, 206, 125, 0.15);
    color: #00ce7d;
}

.timeline-status.planned {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Timeline in Light Sections ---- */
.section-light .timeline::before {
    background: linear-gradient(180deg, #00ce7d, #0c1a51, rgba(0, 0, 0, 0.05));
}

.section-light .timeline-content {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.section-light .timeline-content:hover {
    border-color: rgba(0, 206, 125, 0.3);
}

.section-light .timeline-title {
    color: #0c1a51;
}

.section-light .timeline-desc {
    color: #475569;
}

.section-light .timeline-dot.upcoming {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.section-light .timeline-status.planned {
    background: rgba(0, 0, 0, 0.06);
    color: #64748b;
}

/* ---- Business Model Cards ---- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.business-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 206, 125, 0.02), rgba(12, 26, 81, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.business-card:hover::before {
    opacity: 1;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.business-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00ce7d, #00b569);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 206, 125, 0.3);
    position: relative;
    z-index: 1;
}

.business-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0c1a51;
    position: relative;
    z-index: 1;
}

.business-card p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.business-highlight {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(0, 206, 125, 0.06);
    border-radius: 10px;
    border-left: 3px solid #00ce7d;
    position: relative;
    z-index: 1;
}

.business-highlight span {
    font-weight: 700;
    color: #00ce7d;
    font-size: 1.3rem;
    display: block;
}

.business-highlight small {
    color: #64748b;
    font-size: 0.82rem;
}

/* ---- Economics ---- */
.economics {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.economics h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #0c1a51;
}

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

.economics-item {
    text-align: center;
    padding: 24px;
    background: #fafbfc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.economics-item:hover {
    background: #f1f5f9;
}

.economics-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0c1a51;
    display: block;
    margin-bottom: 6px;
}

.economics-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

/* ---- Team ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 206, 125, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00ce7d, #0c1a51);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 206, 125, 0.3);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.team-role {
    color: #00ce7d;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-bio {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- CTA / Contact Section ---- */
.section-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, #00ce7d 0%, #00b569 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(12, 26, 81, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(12, 26, 81, 0.05) 0%, transparent 50%);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-inner p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ce7d, #0c1a51, #00ce7d);
    background-size: 200% 100%;
    animation: borderShimmer 3s ease-in-out infinite;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #0c1a51;
}

.form-subtitle {
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0c1a51;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ce7d;
    box-shadow: 0 0 0 3px rgba(0, 206, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #0c1a51, #1e3a8a);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(12, 26, 81, 0.4);
}

/* ---- Footer ---- */
footer {
    background: #0c1a51;
    color: white;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

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

.footer-text {
    color: #e2e8f0;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ce7d;
}

/* ---- Animations ---- */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Mobile Menu ---- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .section-title {
        font-size: 2.5rem;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin: 0 auto 36px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-light,
    .section-dark,
    .section-cta {
        padding: 100px 0;
    }

    .container {
        padding: 0 20px;
    }

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

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

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .progress-card {
        padding: 28px 20px;
    }

    .mockup-stat-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 36px 24px;
        margin: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 52px;
        padding-right: 0;
        text-align: left;
        flex-direction: row;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .progress-percentage {
        font-size: 1.8rem;
    }

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

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

/* ---- Product Screenshot ---- */
.product-image-showcase {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid #1e293b;
    transition: all 0.5s ease;
}

.product-image-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 206, 125, 0.15);
}