@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --brand-navy: #0B1F3B;
    --brand-light-blue: #26A9DF;
    --brand-yellow: #FCBA12;

    /* Standard Light Mode Colors */
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --surface-color: #FFFFFF;
    --surface-color-light: #F1F5F9;

    --primary-color: var(--brand-light-blue);
    --primary-glow: rgba(38, 169, 223, 0.2);
    --secondary-color: #1A7BA4;

    --text-primary: var(--brand-navy);
    --text-secondary: #3D5370;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);

    --shadow-base: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(0, 0, 0, 0.1);
    --shadow-intense: rgba(0, 0, 0, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);

    /* Spacing & Utilities */
    --section-padding-lg: 120px 0;
    --section-padding-md: 80px 0;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    --bg-main: #061121;
    --bg-alt: var(--brand-navy);
    --surface-color: #0E2545;
    --surface-color-light: #143563;

    --primary-color: var(--brand-light-blue);
    --primary-glow: rgba(38, 169, 223, 0.4);
    --secondary-color: #40BFF1;

    --text-primary: #F8FAFC;
    --text-secondary: #9BAEC6;

    --glass-bg: rgba(14, 37, 69, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);

    --shadow-base: rgba(0, 0, 0, 0.4);
    --shadow-hover: rgba(0, 0, 0, 0.6);
    --shadow-intense: rgba(0, 0, 0, 0.8);

    --gradient-dark: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: var(--text-primary);
    background-color: var(--bg-main);
}

body {
    overflow-x: hidden;
    background-image: radial-gradient(circle at top, rgba(38, 169, 223, 0.08) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(38, 169, 223, 0.05) 0%, transparent 60%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.section-padding {
    padding: var(--section-padding-lg);
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, rgba(38, 169, 223, 0.15), rgba(38, 169, 223, 0.1));
    color: var(--secondary-color);
    border: 1px solid rgba(38, 169, 223, 0.4);
    box-shadow: 0 0 20px rgba(38, 169, 223, 0.2), inset 0 0 10px rgba(38, 169, 223, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    animation: badgeShine 3s infinite linear;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
    border-color: var(--glass-border);
}

/* Glass Card Aggressive Styling */
.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-base), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(38, 169, 223, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(38, 169, 223, 0.4);
    box-shadow: 0 30px 60px var(--shadow-hover), 0 0 40px rgba(38, 169, 223, 0.2);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card:hover::after {
    opacity: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-smooth);
}

[data-theme="dark"] .brand-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    max-height: 56px;
    /* slightly taller to account for padding */
}

.brand span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--glass-border);
}

/* Modern SaaS Hero Section */
.hero.dark-mode-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 40px;
    background: radial-gradient(circle at top right, rgba(11, 31, 59, 1) 0%, rgba(6, 17, 33, 1) 100%);
    overflow: hidden;
    color: #fff;
}

.dark-mode-hero .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(38, 169, 223, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 169, 223, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(38, 169, 223, 0.2);
    top: -100px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(4, 214, 214, 0.15);
    bottom: -100px;
    left: -200px;
}

.dark-mode-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-cyan {
    color: #00d2ff;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(38, 169, 223, 0.1);
    border: 1px solid rgba(38, 169, 223, 0.2);
    color: #00d2ff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    animation: pulsing 2s infinite;
}

@keyframes pulsing {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.hero-headline {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-subheading {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a0b2c6;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-glow {
    background: linear-gradient(135deg, #00d2ff 0%, #0088ff 100%);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
    border: none;
    color: #fff !important;
}

.btn-glow:hover {
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Trust Indicator */
.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-indicator p {
    font-size: 0.85rem;
    color: #8a9bb2;
    max-width: 380px;
    line-height: 1.4;
    margin: 0;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #061121;
    margin-left: -12px;
    background: #1a3052;
}

.avatar:first-child {
    margin-left: 0;
}

.av-1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.av-2 {
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}

.av-3 {
    background: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}

.av-4 {
    background: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
}

/* Dashboard Wrapper & Visuals */
.hero-visual {
    position: relative;
    width: 100%;
    z-index: 10;
}

.dashboard-wrapper {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(38, 169, 223, 0.2);
    /* Subtle 3D tilt */
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.main-dashboard-img {
    width: 100%;
    display: block;
    border-radius: 20px;
    max-height: 55vh;
    object-fit: cover;
}

/* Floating Elements Glassmorphism */
.floating-card {
    position: absolute;
    background: rgba(11, 31, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card .card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0b2c6;
    margin-bottom: 12px;
}

.floating-card .card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.trend.up {
    font-size: 0.85rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Specific Cards Positioning */
.active-rfq-card {
    top: -30px;
    right: -40px;
    width: 220px;
    animation-delay: 0s;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
    margin-top: 15px;
}

.mini-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, #00d2ff 0%, rgba(0, 210, 255, 0.2) 100%);
    border-radius: 4px 4px 0 0;
    animation: barPulse 1.5s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.mini-chart .bar:nth-child(1) {
    animation-delay: 0.1s;
    animation-duration: 1.2s;
}

.mini-chart .bar:nth-child(2) {
    animation-delay: 0.3s;
    animation-duration: 1.5s;
}

.mini-chart .bar:nth-child(3) {
    animation-delay: 0.5s;
    animation-duration: 1.1s;
}

.mini-chart .bar:nth-child(4) {
    animation-delay: 0.2s;
    animation-duration: 1.4s;
}

.mini-chart .bar:nth-child(5) {
    animation-delay: 0.4s;
    animation-duration: 1.3s;
}

@keyframes barPulse {
    0% {
        transform: scaleY(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scaleY(1.1);
        opacity: 1;
    }
}

.suppliers-card {
    bottom: -30px;
    left: -20px;
    width: 200px;
    padding: 1rem;
    animation-delay: 2s;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0088ff;
    box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.5);
    animation: pulsing-blue 2s infinite;
}

@keyframes pulsing-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 136, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 136, 255, 0);
    }
}

.supplier-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.supplier-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sup-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
}

.bg-blue {
    background: #0088ff;
}

.bg-purple {
    background: #7b2cbf;
}

.sup-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sup-info span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.sup-info .rating {
    font-size: 0.75rem;
    color: #ffb703;
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-card {
    bottom: 50px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 50px;
    padding: 10px 20px;
    animation-delay: 1s;
}

.map-info {
    display: flex;
    flex-direction: column;
}

.map-info span {
    font-size: 0.75rem;
    color: #a0b2c6;
}

.map-info strong {
    font-size: 0.9rem;
    color: #fff;
}

.quote-card {
    top: -5px;
    left: -20px;
    width: 170px;
    padding: 1rem;
    animation-delay: 1.5s;
}

.quote-card .card-value {
    font-size: 1.5rem;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .dark-mode-hero .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-indicator {
        justify-content: center;
    }

    .active-rfq-card,
    .suppliers-card,
    .map-card,
    .quote-card {
        display: none;
        /* Hide floating elements on mobile for pure visibility */
    }

    .hero-headline {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .hero-subheading {
        margin: 0 auto 2.5rem;
    }
}

/* Trust Banner */
.trust-banner {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(14, 21, 39, 0.3);
    overflow: hidden;
    white-space: nowrap;
}

.trust-marquee {
    display: flex;
    width: max-content;
    gap: 6rem;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    animation: marquee-scroll 25s linear infinite;
}

.trust-marquee:hover {
    opacity: 1;
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    to {
        transform: translateX(calc(-50% - 3rem));
    }
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Dashboard Showcase Module */
.dashboard-showcase {
    padding: var(--section-padding-lg);
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.dashboard-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(38, 169, 223, 0.05) 0%, transparent 60%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.dashboard-showcase-inner {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 20px 40px var(--shadow-hover);
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: -3rem;
    /* Pull up to overlap */
    position: relative;
    z-index: 2;
}

.dash-stat {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 15px 35px var(--shadow-hover), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.dash-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 169, 223, 0.3);
    box-shadow: 0 25px 50px var(--shadow-hover), 0 0 30px rgba(38, 169, 223, 0.15);
}

.dash-stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.dash-stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features {
    padding: var(--section-padding-lg);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.feature-icon {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--primary-glow), inset 0 2px 5px rgba(255, 255, 255, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover .feature-icon {
    transform: rotateY(15deg) scale(1.1);
    box-shadow: 0 15px 35px var(--primary-glow), inset 0 2px 5px rgba(255, 255, 255, 0.6);
}

/* How It Works (Steps) */
.how-it-works {
    padding: var(--section-padding-lg);
    background: var(--bg-alt);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
}

.testimonial-card i.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--glass-border);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.user-details span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Animated CTA */
.cta-section {
    padding: 10rem 0;
    position: relative;
    text-align: center;
    background: var(--bg-alt);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 100%;
    background: rgba(38, 169, 223, 0.15);
    filter: blur(150px);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-box {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    padding: 7rem 3rem;
    border-radius: 40px;
    box-shadow: 0 40px 80px var(--shadow-hover), inset 0 20px 40px rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(38, 169, 223, 0.1) 25%, transparent 50%, rgba(38, 169, 223, 0.1) 75%, transparent 100%);
    animation: rotate 15s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    background: var(--bg-alt);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   Media Queries for SEO & Responsiveness
========================================= */

@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {

    /* Navbar Adjustments */
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Layout Adjustments */
    .hero {
        min-height: auto;
        padding-top: 120px;
        text-align: center;
    }

    .hero-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        transform: none;
        animation: fadeUp 1s ease 0.6s forwards;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-image img {
        transform: none !important;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-lg: 80px 0;
        --section-padding-md: 60px 0;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .trust-flex {
        justify-content: center;
        gap: 2.5rem;
    }

    .cta-box {
        padding: 4rem 2rem;
        border-radius: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* How It Works Section */
.rfq-flow {
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.rfq-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(38, 169, 223, 0.3), transparent);
}

.flow-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    z-index: 1;
}

.flow-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(38, 169, 223, 0.1), rgba(38, 169, 223, 0.5), rgba(38, 169, 223, 0.1));
    z-index: -1;
}

.flow-step {
    background: rgba(14, 21, 39, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(38, 169, 223, 0.1);
    border-color: rgba(38, 169, 223, 0.3);
}

.flow-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--brand-light-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(38, 169, 223, 0.5);
}

.flow-step .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(38, 169, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--brand-light-blue);
    border: 1px solid rgba(38, 169, 223, 0.2);
}

.flow-step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .flow-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flow-container::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(38, 169, 223, 0.1), rgba(38, 169, 223, 0.5), rgba(38, 169, 223, 0.1));
    }
}

/* Industry Cards */
.industry-card {
    background: rgba(14, 21, 39, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(38, 169, 223, 0.15);
    border-color: rgba(38, 169, 223, 0.4);
}

/* Supplier Network & Urgent Procurements */
.supplier-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 20px;
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.supplier-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(38, 169, 223, 0.2);
    border-color: rgba(38, 169, 223, 0.5);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

/* Floating Urgent RFQ Button */
.floating-rfq-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 15px var(--shadow-base);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.floating-rfq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--shadow-hover);
    border-color: rgba(38, 169, 223, 0.3);
    color: var(--primary-color);
}

.floating-rfq-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.floating-rfq-icon i {
    font-size: 1.2rem;
    animation: ring 3s infinite ease-in-out;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background-color: #ff4757;
    border-radius: 50%;
    border: 1px solid var(--surface-color);
}

@media (max-width: 768px) {
    .floating-rfq-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .floating-rfq-text {
        display: none;
    }

    .floating-rfq-icon i {
        font-size: 1.4rem;
    }
}

/* Demo Modal Styles */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    padding: 24px 32px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.demo-modal-overlay.active .demo-modal {
    transform: translateY(0);
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.demo-modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-alt);
}

.demo-modal h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.demo-modal p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.demo-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.demo-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 169, 223, 0.15);
}

.demo-form textarea {
    resize: vertical;
    min-height: 60px;
}

.demo-form button {
    margin-top: 0.5rem;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
}

.demo-form .full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .demo-form {
        grid-template-columns: 1fr;
    }
    .demo-form .full-width {
        grid-column: span 1;
    }
}

.demo-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.demo-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.demo-success h3 {
    margin-bottom: 1rem;
}

.demo-success p {
    margin-bottom: 0;
}
