:root {
    --color-dark: #0B1829;
    --color-dark-deeper: #060E1B;
    --color-amber: #F5A623;
    --color-amber-hover: #E09610;
    --color-amber-muted-light: rgba(245, 166, 35, 0.15);
    --color-amber-muted: rgba(245, 166, 35, 0.35);
    --color-blue: #3B82F6;
    --color-green: #10B981;
    --color-light-bg: #F8F9FB;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-sans);
    color: #334155;
    /* slate-700 */
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.text-amber {
    color: var(--color-amber) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.text-green {
    color: var(--color-green) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-slate-400 {
    color: #94a3b8 !important;
}

.text-slate-500 {
    color: #64748b !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.text-slate-700 {
    color: #334155 !important;
}

.bg-amber {
    background-color: var(--color-amber) !important;
}

.bg-amber-muted-light {
    background-color: var(--color-amber-muted-light) !important;
}

.bg-light-bg {
    background-color: var(--color-light-bg) !important;
}

.bg-dark-bg {
    background-color: var(--color-dark) !important;
}

.border-amber {
    border-color: var(--color-amber) !important;
}

.border-amber-muted {
    border-color: var(--color-amber-muted) !important;
}

.h-68 {
    height: 68px;
}

.w-4-5 {
    width: 1.125rem;
}

.h-4-5 {
    height: 1.125rem;
}

.small-xs {
    font-size: 0.75rem;
}

/* 12px */
.small-xxs {
    font-size: 0.625rem;
}

/* 10px */
.ls-wide {
    letter-spacing: 0.12em;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white-8 {
    background-color: rgba(255, 255, 255, 0.08);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Buttons & Links */
.btn-amber {
    background: var(--color-amber);
    color: white;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn-amber:hover {
    background: var(--color-amber-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 166, 35, 0.3);
}

.shadow-amber {
    box-shadow: 0 0 24px rgba(245, 166, 35, 0.4);
}

.nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0;
}

.nav-btn:hover {
    color: white;
}

.brand-text {
    color: white;
    transition: color 0.3s ease;
}

.mobile-icon {
    stroke: white;
    transition: stroke 0.3s ease;
}

#main-nav {
    background-color: #0B1829;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    #main-nav .container-xl {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .pt-hero {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
        margin-bottom: 0.5rem !important;
        line-height: 1.1;
    }

    .amber-line-h {
        width: 60px;
        margin-bottom: 1.5rem !important;
    }

    .kpi-card {
        padding: 0.75rem 0.4rem !important;
    }

    .kpi-card p.fs-4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .kpi-card p.small-xxs {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
    }
}

header.scrolled {
    background-color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: none;
}

header.scrolled .brand-text {
    color: #0f172a !important;
}

header.scrolled .nav-btn {
    color: #475569 !important;
}

header.scrolled .nav-btn:hover {
    color: #0f172a !important;
}

header.scrolled .mobile-icon {
    stroke: #334155 !important;
}

/* Components */
.logo-box {
    width: 32px;
    height: 32px;
    background-color: var(--color-amber);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 16px;
    height: 16px;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--color-dark);
}

.hero-overlay {
    background: linear-gradient(to right, rgba(11, 24, 41, 0.95), rgba(11, 24, 41, 0.8), rgba(11, 24, 41, 0.6));
}

.amber-bar-top {
    height: 4px;
    background-color: var(--color-amber);
}

.pt-hero {
    padding-top: 7rem;
}

.hero-title {
    font-size: clamp(2.85rem, 5vw, 3.4rem);
    letter-spacing: -0.02em;
}

.amber-line-h {
    width: 80px;
    height: 3px;
    border-radius: 9999px;
    background-color: var(--color-amber);
    transform-origin: left;
}

.amber-line-h-sm {
    width: 56px;
    height: 3px;
    border-radius: 9999px;
    background-color: var(--color-amber);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.group-hover:hover .arrow-icon {
    transform: translateX(4px);
}

.product-mockup {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.reveal-mockup:hover .product-mockup {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}

.icon-box-green {
    width: 36px;
    height: 36px;
    background: #e2fbe8;
    color: #3ea34b;
}

.icon-box-amber {
    width: 36px;
    height: 36px;
}

.top-card {
    top: -20px;
    right: -32px;
}

.bottom-card {
    bottom: -16px;
    left: -32px;
}

/* Trust Bar */
.trust-logo {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
}

.trust-logo:hover {
    color: #94a3b8;
}

/* Sections Base */
.section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 992px) {
    .section-py {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-label.light {
    color: #b45309;
    /* amber-700 */
    background-color: #fffbeb;
    /* amber-50 */
    border: 1px solid #fde68a;
    /* amber-200 */
}

.section-label.dark {
    color: #fbbf24;
    /* amber-400 */
    background-color: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 2.6rem);
    line-height: 1.2;
}

/* Problem Cards */
.problem-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: #fde68a !important;
    transform: translateY(-6px);
}

.problem-card-top-line {
    height: 4px;
    background-color: var(--color-amber);
}

.problem-icon-box {
    width: 44px;
    height: 44px;
    background-color: #fffbeb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover .problem-icon-box {
    background-color: #fef3c7;
    transform: scale(1.1) rotate(5deg);
}

/* Features Component */
.feature-btn {
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.feature-btn.active {
    border-color: var(--color-amber) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-btn:not(.active):hover {
    border-color: #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* How It Works */
.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

/* Table */
.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Contact */
.contact-bg-pattern {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
}

.form-input {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.4);
}

/* Hide initial states for GSAP */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-mockup {
    opacity: 0;
    will-change: transform, opacity;
}

/* Missing Utilities & Award-Winning Hover Animations */
.transition-all {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.transition-colors {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.transition-transform {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hover-bg-light:hover {
    background-color: rgba(241, 245, 249, 0.8) !important;
}

.hover-bg-white-8:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-4px);
}

.hover-shadow:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px);
}

.hover-white:hover {
    color: white !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

.top-card {
    animation-delay: 0s;
}

.bottom-card {
    animation-delay: 3s;
}

.kpi-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.trust-logo {
    transition: all 0.3s ease !important;
}

.trust-logo:hover {
    transform: scale(1.05) translateY(-2px);
    color: #cbd5e1;
}