/* Commercial Presentation Specific Styles - Pure CSS */

:root {
    --bg-dark: #1a1d2e;
    --bg-darker: #12141f;
    --bg-card: #22253a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0a0c3;
    --accent: #667eea;
    --success: #00d4aa;
    --radius: 12px;
}

/* --- Layout & Structure --- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.2;
}

.title-hero {
    font-size: 3.5rem;
    /* Fallback */
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .title-hero {
        font-size: 7.5rem;
        /* 120px approx */
    }
}

.title-section {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    color: var(--text-primary);
}

.subtitle-hero {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 56rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.subtitle-hero .highlight {
    font-weight: 700;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
}

/* --- Components --- */

/* Navigation */
.presentation-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 29, 46, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.presentation-nav.scrolled {
    background: rgba(26, 29, 46, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    margin: 0;
    padding: 0;
}

/* Back to Portal Button */
.btn-portal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin: 0;
    line-height: 1;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

.btn-portal-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-demo {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-demo:hover {
    opacity: 0.9;
    width: auto;
    /* Reset pseudo element logic if applied */
}

.btn-demo::after {
    display: none;
}

/* Remove underline effect */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge-content {
    background: var(--gradient-primary);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

/* Cards & Layouts */
.glass-card {
    background: rgba(34, 37, 58, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: #22253a;
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.flex-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-row {
        flex-direction: row;
    }
}

/* Specific Feature Blocks */
.feature-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
}

.icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

/* Big Number Card */
.stats-card {
    position: relative;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.stats-card:hover {
    transform: rotate(0);
}

.big-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Utilities */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.text-white {
    color: white;
}

.bg-overlay {
    background-color: rgba(26, 29, 46, 0.9);
}

.separator-vertical {
    width: 1px;
    height: 1rem;
    background-color: var(--text-secondary);
    opacity: 0.3;
    display: none;
}

@media (min-width: 768px) {
    .separator-vertical {
        display: block;
    }
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    /* Hide text on mobile to save space */
    .btn-portal-back span {
        display: none;
    }

    /* Fix: Remove wrapper from flex flow */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .nav-menu {
        display: none;
        position: relative;
        width: 100%;
        top: 0;
        background: rgba(26, 29, 46, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Mobile Polish */
    .circular-stat {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        max-width: 20rem;
    }

    .title-hero {
        font-size: 2.5rem;
    }

    .market-stats-value-big {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .btn-demo {
        width: 100%;
        margin-top: 1rem;
        display: inline-block;
    }
}

/* --- Refactored Inline Styles --- */

.hero-section-style {
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
}

.hero-accent-line {
    width: 8rem;
    height: 6px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin-bottom: 2rem;
}

.icon-verified {
    font-size: 14px;
}

.features-container {
    color: var(--text-secondary);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-down-icon-container {
    margin-top: 4rem;
}

.scroll-down-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.scroll-down-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.constat-left {
    flex: 3;
}

.constat-title {
    margin-bottom: 3rem;
}

.constat-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-card-container {
    flex: 2;
}

.stats-card-header {
    margin-bottom: 1rem;
}

.stats-card-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.stats-card-divider {
    width: 4rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 1rem;
}

.stats-card-text {
    font-size: 1.25rem;
    font-weight: 500;
}

.solution-left {
    flex: 3;
}

.solution-title {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.solution-highlight {
    color: var(--accent);
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-icon-box {
    width: 3rem;
    height: 3rem;
}

.solution-right {
    flex: 2;
}

.circular-stat {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(102, 126, 234, 0.3);
}

.circular-stat-header {
    margin-bottom: 0.5rem;
}

.circular-stat-symbol {
    font-size: 3rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.circular-stat-text {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 2rem;
}

.market-left {
    flex: 1;
}

.market-title {
    margin-bottom: 2.5rem;
}

.market-stats-box {
    background: var(--gradient-primary);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.market-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.market-stats-label {
    display: block;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.market-stats-value-container {
    justify-content: start;
}

.market-stats-value-big {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1;
}

.market-stats-value-small {
    font-size: 1.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.market-stats-icon {
    font-size: 3.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.market-card-bg {
    background: #22253a;
}

.market-card-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.client-case-box {
    margin-top: 2rem;
    background: rgba(34, 37, 58, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.client-case-label {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.client-case-title {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.client-case-desc {
    margin-top: 0.25rem;
}

.market-right {
    flex: 1;
}

.market-segments-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.segment-header {
    justify-content: start;
    margin-bottom: 1rem;
}

.segment-title {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.segment-list {
    font-size: 0.875rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-left {
    flex: 2;
}

.advantage-title {
    margin-bottom: 2rem;
}

.advantage-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
}

.advantage-icon {
    font-size: 2rem;
}

.advantage-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.advantage-item-desc {
    font-size: 1.1rem;
}

.advantage-right {
    flex: 1;
}

.comparison-card {
    background: #22253a;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.comparison-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item-secondary {
    background: #1a1d2e;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

.comparison-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comparison-label-secondary {
    color: #a0a0c3;
    font-weight: 500;
}

.comparison-icon-cloud {
    color: #ef4444;
}

.comparison-desc {
    font-size: 0.875rem;
    margin: 0;
}

.comparison-item-primary {
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.comparison-label-primary {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-desc-primary {
    opacity: 0.9;
    margin: 0;
}

.comparison-icon-pie {
    color: #facc15;
}

.business-icon-box {
    margin-right: 1rem;
}

.business-icon {
    font-size: 1.5rem;
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.business-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-list-item {
    display: flex;
    align-items: start;
}

.business-item-title {
    display: block;
}

.business-item-desc {
    font-size: 0.875rem;
}

.business-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.business-footer-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.business-icon-box-secondary {
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
}

.roadmap-badge-container {
    display: inline-flex;
    align-items: center;
    background: #22253a;
    border: 1px solid var(--accent);
    border-radius: 9999px;
    padding: 0.75rem 2rem;
}

.roadmap-badge-text {
    font-weight: 700;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.roadmap-card-primary {
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    padding: 1rem;
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.roadmap-version-primary {
    font-size: 1.875rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.roadmap-status-primary {
    display: block;
}

.roadmap-desc-dc {
    font-size: 0.875rem;
    opacity: 0.8;
}

.roadmap-card-secondary {
    background: #22253a;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.roadmap-version-secondary {
    font-size: 1.875rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.roadmap-desc {
    font-size: 0.875rem;
}

.mvp-box {
    background: #22253a;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 1rem;
    padding: 2rem;
}

.mvp-header {
    justify-content: start;
    margin-bottom: 1.5rem;
}

.mvp-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.mvp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.invest-header-title {
    margin-bottom: 1rem;
}

.invest-header-text {
    font-size: 1.25rem;
}

.invest-card-finance {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.invest-card-finance:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.invest-icon-box {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.invest-icon {
    font-size: 2rem;
}

.invest-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.invest-card-desc-primary {
    opacity: 0.9;
}

.invest-icon-box-secondary {
    width: 4rem;
    height: 4rem;
    background: #22253a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--accent);
}

.contact-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.contact-links-container {
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-link {
    padding: 1rem 2rem;
    text-decoration: none;
}

.contact-link-text {
    font-size: 1.25rem;
}

.contact-button {
    text-decoration: none;
    display: inline-flex;
}

.contact-button-icon {
    margin-left: 1rem;
}

.footer {
    background: #12141f;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    font-size: 0.875rem;
}

.footer-love-icon {
    font-size: 0.75rem;
    color: #ef4444;
    vertical-align: middle;
}

/* --- New Premium Section Titles --- */
.section-title-premium {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 99px;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
    .section-title-premium {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
    }
}