﻿:root {
    /* Primary Teal - Main brand color */
    --primary: rgba(66,123,116,0.85);
    --primary-dark: rgb(52,97,91);
    --primary-darker: rgb(42,77,73);
    --primary-light: rgb(133,189,175);
    
    /* Secondary/Accent - Complementary teal-green */
    --secondary: rgb(112,176,160);
    
    /* Accent - Warm complement for CTAs and alerts */
    --accent: rgb(230,126,34);
    
    /* Semantic colors */
    --dark: #1A1A2E;
    --light: #F8FAFC;
    --gray: #64748B;
    --success: rgb(76,175,80);
    --warning: rgb(255,152,0);
    --error: rgb(244,67,54);
    
    /* Background variants */
    --bg-light-teal: rgba(112,176,160,0.08);
    --bg-light-accent: rgba(230,126,34,0.05);
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

/* ============================================
           TYPOGRAPHY & SPACING
           ============================================ */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* ============================================
           BUTTONS
           ============================================ */

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 123, 116, 0.3);
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-primary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-light-custom:hover {
    background: #F8FAFC;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-button {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 123, 116, 0.3);
}

/* ============================================
           HEADER & NAVIGATION
           ============================================ */

.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Login Dropdown */
.login-dropdown {
    min-width: 280px;
    padding: 0.5rem 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.login-dropdown .dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.login-dropdown .dropdown-item:hover {
    background: var(--bg-light-teal);
    color: var(--primary);
}

.login-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.login-info {
    flex: 1;
}

.login-title {
    font-weight: 600;
    display: block;
    font-size: 14px;
}

.login-subtitle {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* ============================================
           FOOTER
           ============================================ */

footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

footer h4 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ============================================
           UTILITY CLASSES
           ============================================ */

.bg-light-custom {
    background: var(--light);
}

.header_logo {
    max-width: 125px;
}

/* ============================================
           HERO SECTION
           ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /*content: '';*/
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 2rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 32px;
}

.badge-text {
    font-size: 14px;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hero-feature {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-video {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    color: var(--primary);
    font-size: 32px;
}

/* ============================================
           STATS SECTION
           ============================================ */

.stats-section,
.stats-bar {
    background: white;
    padding: 40px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/*.stats,
.stats-section .row {
    display: grid;
    gap: 40px;
}
*/
.stats {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

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

.stat-box {
    text-align: center;
    padding: 2rem 1rem 1rem;
    width: 100%;
}

.stat-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
    margin-bottom: 1.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

/* ============================================
           BENEFITS SECTION
           ============================================ */

.benefits {
    padding: 100px 0;
    background: var(--light);
}

.benefits-bar {
    background: white;
    padding: 40px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.benefits-bar .benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0;
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit,
.benefit-card {
    text-align: center;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    margin: 0 auto 12px;
}

.benefit-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.benefit-label {
    color: var(--gray);
    font-size: 14px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 24px;
}

.benefit-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
           PRODUCT CARDS
           ============================================ */

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card {
    background: #F8FAFC;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-bottom: 2rem;
    height: 100%;
    cursor: pointer;
}

.product-card-link:hover .product-card {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.product-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.product-header.dark-green {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
}

.product-header.darker-green {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.product-icon {
    font-size: 56px;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-tagline {
    font-size: 16px;
    opacity: 0.95;
}

.product-body {
    padding: 2.5rem 2rem;
}

.product-description {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    min-height: 80px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--dark);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
           PAIN/SOLUTION SECTIONS
           ============================================ */

.pain-box,
.solution-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    height: 100%;
}

.pain-box {
    border-left: 4px solid var(--error);
}

.solution-box {
    border-left: 4px solid var(--success);
}

.pain-box h3,
.solution-box h3 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.pain-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.pain-list li,
.solution-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
}

.pain-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: 700;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pain-card {
    background: var(--bg-light-accent);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.pain-card p {
    color: var(--gray);
}

/* ============================================
           SOLUTION SECTION
           ============================================ */

.solution {
    padding: 100px 0;
    background: var(--light);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.solution-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.benefit-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    color: var(--dark);
    border-bottom: 1px solid #e5e7eb;
}

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

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 24px;
}

.solution-placeholder {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-align: center;
}

/* ============================================
           CLIENT LOGOS
           ============================================ */

.client-logo {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1rem;
}

/* ============================================
           PROCESS SECTION
           ============================================ */

.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 60px;
}

.process-step {
    background: var(--bg-light-teal);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Space Mono', monospace;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    font-size: 15px;
}

/* ============================================
           SCREENSHOT SECTION
           ============================================ */

.screenshot-section {
    padding: 100px 0;
    background: var(--light);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.screenshot-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.screenshot-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: var(--dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
}

.screenshot-placeholder {
    background: white;
    border-radius: 12px;
    /*padding: 40px;*/
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    /*min-height: 400px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* ============================================
           COMPLIANCE SECTION
           ============================================ */

.compliance {
    padding: 100px 0;
    background: white;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.compliance-card {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.compliance-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.compliance-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.compliance-card ul {
    list-style: none;
    color: var(--gray);
}

.compliance-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.compliance-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.compliance-bar {
    padding: 60px 0;
    background: var(--dark);
    color: white;
}

.compliance-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    text-align: center;
}

.compliance-item {
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.compliance-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
           COMPARISON SECTION
           ============================================ */

.comparison {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.comparison-table {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 60px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-row:first-child {
    background: rgba(255,255,255,0.1);
}

.comparison-cell {
    padding: 24px;
    display: flex;
    align-items: center;
}

.comparison-cell.header {
    font-weight: 700;
    font-size: 18px;
}

.check-mark {
    color: var(--success);
    font-size: 24px;
}

.cross-mark {
    color: var(--accent);
    font-size: 24px;
}

/* ============================================
           PRICING SECTION
           ============================================ */

.pricing {
    padding: 100px 0;
    background: var(--light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.pricing-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    margin-bottom: 8px;
}

.pricing-period {
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-period {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
}

.pricing-card.featured .pricing-features li {
    color: white;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ============================================
           FINAL CTA SECTION
           ============================================ */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
           COURSES SECTION
           ============================================ */

.courses {
    padding: 100px 0;
    background: white;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.course-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.course-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px;
}

.course-level {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.course-duration {
    font-size: 14px;
    opacity: 0.9;
}

.course-body {
    padding: 30px;
}

.course-description {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.course-features {
    list-style: none;
    margin-bottom: 24px;
}

.course-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--dark);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.course-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.price-period {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
           HOW IT WORKS / STEPS
           ============================================ */

.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-size: 15px;
}

/* ============================================
           CORPORATE SECTION
           ============================================ */

.corporate {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.corporate-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.corporate-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.corporate-features {
    list-style: none;
    margin-bottom: 40px;
}

.corporate-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
}

.corporate-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.corporate-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.corporate-stat {
    background: rgba(112,176,160,0.1);
    padding: 30px;
    border-radius: 8px;
}

.corporate-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Space Mono', monospace;
}

.corporate-stat-label {
    margin-top: 8px;
    opacity: 0.9;
}

/* ============================================
           TESTIMONIALS SECTION
           ============================================ */

.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
}

.author-title {
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
}

/* Full-width testimonial variant */
.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-size: 80px;
    opacity: 0.3;
    line-height: 0.5;
}

.testimonial-quote {
    font-size: 28px;
    line-height: 1.6;
    margin: 30px 0 40px;
    font-style: italic;
}

.testimonial {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

/* ============================================
           FEATURES DEEP DIVE
           ============================================ */

.features-deep {
    padding: 100px 0;
    background: white;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-showcase:last-child {
    margin-bottom: 0;
}

.feature-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

/* ============================================
           USE CASES SECTION
           ============================================ */

.use-cases {
    padding: 100px 0;
    background: var(--light);
}

.use-case-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.tab-button {
    padding: 16px 32px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--dark);
}

.tab-button:hover {
    border-color: var(--primary);
}

.tab-button.active {
    background: var(--primary);
    color: white;
}

.use-case-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.use-case-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.use-case-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.use-case-features {
    list-style: none;
}

.use-case-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--dark);
}

.use-case-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
           ROI CALCULATOR SECTION
           ============================================ */

.roi-section {
    padding: 100px 0;
    background: white;
}

.roi-calculator {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--primary);
    padding: 60px;
    border-radius: 12px;
}

.roi-result {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.roi-value {
    font-size: 64px;
    font-weight: 700;
    color: var(--success);
    font-family: 'Space Mono', monospace;
}

.roi-label {
    font-size: 18px;
    color: var(--gray);
    margin-top: 12px;
}

.roi-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.roi-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.roi-item-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.roi-item-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

/* ============================================
           AI CHAT WIDGET STYLES
           ============================================ */

/* Floating chat button */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

#chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.6);
    background: rgb(211,105,15);
}

#chat-button.active {
    background: var(--error);
}

/* Notification badge */
.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--error);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Chat widget container */
#chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

#chat-widget.open {
    display: flex;
}

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

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

/* Chat header */
.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-header-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-header-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Quick suggestions */
.chat-suggestions {
    background: var(--light);
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.chat-suggestions-title {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.chat-suggestions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-btn {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Chat messages area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message-avatar.bot {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.message-avatar.user {
    background: #E5E7EB;
    color: var(--gray);
}

.message-content {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.message-content.bot {
    background: var(--bg-light-teal);
    color: var(--dark);
    border-bottom-left-radius: 4px;
}

.message-content.user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content a {
    color: var(--primary);
    text-decoration: underline;
}

.message-content.user a {
    color: white;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* Chat input area */
.chat-input-area {
    padding: 12px;
    border-top: 1px solid #E5E7EB;
    background: white;
}

.chat-input-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.chat-send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.chat-send-btn:disabled {
    background: #E5E7EB;
    cursor: not-allowed;
    transform: scale(1);
}

.chat-powered-by {
    text-align: center;
    font-size: 11px;
    color: #9CA3AF;
    margin-top: 8px;
}

/* ============================================
           MOBILE RESPONSIVE STYLES
           ============================================ */

@media (max-width: 768px) {
    /* General adjustments */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Hero section */
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: clamp(28px, 6vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(14px, 3vw, 20px);
        margin-bottom: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .hero-feature {
        padding: 20px;
    }

    .hero-feature h3 {
        font-size: 16px;
    }

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

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Benefits bar */
    .benefits-bar .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit {
        padding: 1rem 0.5rem 0.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .benefit-value {
        font-size: 28px;
    }

    .benefit-label {
        font-size: 12px;
    }

    /* Process section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 30px 20px;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 auto 15px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    /* Screenshot section */
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .screenshot-content h3 {
        font-size: 28px;
    }

    .screenshot-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .feature-list li {
        font-size: 14px;
    }

    /* Compliance section */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .compliance-card {
        padding: 30px;
    }

    .compliance-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .compliance-card h3 {
        font-size: 20px;
    }

    /* Comparison section */
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-cell {
        padding: 16px 12px;
        justify-content: center;
    }

    .comparison-cell.header {
        font-size: 16px;
    }

    /* Pricing section */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-name {
        font-size: 22px;
    }

    .pricing-price {
        font-size: 40px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    /* Final CTA */
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .final-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 15px;
    }

    /* Chat widget */
    #chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 80px;
        height: calc(100vh - 100px);
    }

    #chat-button {
        right: 10px;
        bottom: 10px;
    }

    /* Hero app badges */
    .hero .float-end {
        float: none !important;
        display: block;
        text-align: center;
        margin: 10px auto;
    }

    .hero .float-end img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .benefits-bar .benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        padding: 1rem 0.25rem 0.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .benefit-value {
        font-size: 24px;
    }

    .benefit-label {
        font-size: 11px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-name {
        font-size: 20px;
    }
}
