

/* Background Grids & Glows */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 15%, rgba(215, 169, 147, 0.15) 0%, var(--bg-color) 60%);
}

.grid-overlay {
    position: absolute;
    width: 200vw;
    height: 200vh;
    left: -50vw;
    top: -50vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-20px);
    opacity: 0.3;
}

.glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.glow-teal {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-light), transparent 70%);
}

.glow-blue {
    bottom: -10%;
    right: -20%;
    background: radial-gradient(circle, var(--brand-orange), transparent 70%);
}

/* Base Styles */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Components */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-stack);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(224, 97, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(224, 97, 38, 0.5);
    background-color: #f26f33;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--bg-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(89, 89, 89, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text { color: var(--text-primary); }
.logo-dot { color: var(--brand-orange); }

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brand-orange);
}

.nav-cta {
    border: 2px solid var(--accent-light);
    color: var(--accent-light) !important;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light);
    color: var(--bg-color) !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(215, 169, 147, 0.15);
    color: var(--accent-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(215, 169, 147, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

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

/* Chart Mockup (Visual) */
.chart-mockup {
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--accent-light);
    background: var(--card-bg);
}

.mockup-header {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.1);
}

.mockup-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.mockup-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 150px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.bar {
    flex: 1;
    background: rgba(215, 169, 147, 0.3);
    border-radius: 4px 4px 0 0;
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bar.highlight {
    background: var(--brand-orange);
    box-shadow: 0 0 20px rgba(224, 97, 38, 0.3);
}

.chart-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.text-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    width: 100%;
}

.line.short {
    width: 60%;
}

/* Solutions */
.solutions {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.section-desc {
    font-size: 1.15rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.solution-card {
    padding: 3rem;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    background: var(--card-bg);
    border-radius: 24px;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(224, 97, 38, 0.3);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-size: 2rem;
    color: var(--accent-light);
}

.color-teal { color: var(--brand-orange); }
.color-blue { color: var(--accent-light); }

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

/* Process */
.process {
    padding: 4rem 0 6rem;
    background: rgba(0, 0, 0, 0.1);
}

.process-text {
    max-width: 800px;
    margin: 0 auto;
}

.steps-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--glass-border);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.step-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    z-index: 1;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

/* CTA */
.cta-section {
    padding: 5rem 0;
    margin-bottom: 5rem;
}

.cta-container {
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-orange) 0%, rgba(224, 97, 38, 0.7) 100%);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    z-index: 0;
}

.cta-container h2,
.cta-container p,
.cta-container a {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    opacity: 0.9;
}

.cta-container .btn-primary {
    background-color: white;
    color: var(--brand-orange);
}

.cta-container .btn-primary:hover {
    background-color: #f8f8f8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: bold;
    color: var(--text-primary);
}

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

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

.delay-1 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none;
    }
    .cta-container {
        padding: 3rem 1.5rem;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .step-item {
        gap: 1rem;
    }
}
