/* ==================== IMPORTS & ROOT ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

html {
    font-size: clamp(13px, 2vw, 16px);
    scroll-behavior: smooth;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme (default) */
    --bg-primary: #0B1426;
    --bg-secondary: #0F1D35;
    --bg-card: rgba(15, 29, 53, 0.85);
    --bg-glass: rgba(11, 20, 38, 0.6);

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --accent-orange: #F97316;
    --accent-gold: #FBB040;
    --accent-teal: #22D3EE;
    --accent-amber: #FBBF24;
    --accent-red: #EF4444;
    --accent-green: #22C55E;

    --border-color: rgba(249, 115, 22, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 8px 32px rgba(249, 115, 22, 0.25);
    --shadow-teal: 0 8px 32px rgba(34, 211, 238, 0.2);

    --grad-orange: linear-gradient(135deg, #F97316, #FBB040);
    --grad-teal: linear-gradient(135deg, #22D3EE, #0891B2);
    --grad-hero: linear-gradient(135deg, #F97316 0%, #FBB040 40%, #22D3EE 100%);
    --grad-card: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 176, 64, 0.05));

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Light theme overrides */
body.light-theme {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-card: rgba(248, 250, 252, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.7);

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --border-color: rgba(249, 115, 22, 0.3);
    --border-subtle: rgba(0, 0, 0, 0.08);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.12);
}

/* ==================== BASE ==================== */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

body.light-theme {
    background: linear-gradient(to bottom, #FFFFFF, #F8FAFC);
}

body:not(.light-theme) {
    background: linear-gradient(160deg, #0B1426 0%, #0F1D35 50%, #0A1628 100%);
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(249, 115, 22, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 70%, rgba(34, 211, 238, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 4rem);
    position: relative;
    z-index: 1;
}

/* ==================== SECTION SHARED ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--grad-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--grad-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid var(--accent-orange);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
    color: var(--accent-orange);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.6rem 0;
    background: rgba(11, 20, 38, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 24px rgba(249, 115, 22, 0.06);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--grad-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.logo-icon.small {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--text-secondary);
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo .logo-img {
    height: 52px;
}

/* Nav menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 2vw, 2.5rem);
    align-items: center;
}

.nav-menu .nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.25rem 0;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--accent-orange);
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    width: 100%;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.9rem;
}

.theme-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: rotate(20deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: var(--grad-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    background: var(--grad-orange);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    flex-shrink: 0;
}

.h-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .h-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .h-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .h-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ==================== HERO ==================== */
/* ==================== HERO SECTION (NEW TRADING-FOCUSED DESIGN) ==================== */
.hero {
    min-height: 100svh;
    padding: clamp(5rem, 12vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero canvas particle network */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.05) 0%,
            transparent 40%,
            rgba(34, 211, 238, 0.03) 100%);
    pointer-events: none;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    top: -200px;
    left: -150px;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

/* Hero layout - New two-column design END TO END */
.hero-full-width {
    width: 100%;
    padding: 0 clamp(1rem, 4vw, 4rem);
    height: 100%;
    display: flex;
    align-items: stretch;
}

.hero-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: stretch;
    width: 100%;
    height: 100%;
}

/* Left: Stack of Hero Images */
.hero-images-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    min-height: 350px;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Right: Content Column */
.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Achievement Badge - Centered */
.hero-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.3rem;
    margin-bottom: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.badge-line {
    width: 16px;
    height: 1px;
    background: var(--accent-orange);
    display: inline-block;
}

/* Title - Left aligned */
.hero-title-new {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FBB040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description - Left aligned */
.hero-desc-new {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 2rem;
}

/* Right side: Enhanced text content */
.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-line {
    width: 16px;
    height: 1px;
    background: var(--accent-orange);
    display: inline-block;
}

.hero-title-new {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title-new .text-line {
    display: block;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-desc-new {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Quick value propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 0.8rem;
}

.vp-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-item:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateX(4px);
}

.vp-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-orange);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Hero CTAs */
.hero-cta-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.8rem;
    background: var(--grad-orange);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--accent-orange);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
}

/* Trust metrics at bottom */
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.tm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tm-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.tm-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tm-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
    align-self: center;
}

/* Hero Stats Grid - Inside hero text section */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 0.5rem;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 10px;
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.stat-value span:first-child {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 900;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.stat-value span:last-child {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 800;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.stat-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Right side: Visual trading elements */
.hero-visual-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

/* Supply Chain Flow */
.supply-chain {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.chain-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
    z-index: 2;
}

.chain-node:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.node-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-orange);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
}

.node-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.chain-flow {
    position: relative;
    flex: 0.5;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.flow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.chain-flow i {
    position: absolute;
    color: var(--accent-orange);
    font-size: 1.2rem;
    background: var(--bg-primary);
    padding: 0.3rem 0.4rem;
}

/* Product Showcase Cards */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: 2rem;
}

.showcase-card {
    padding: 1.8rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}

.showcase-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.sc-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.showcase-card i {
    font-size: 2rem;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    display: block;
}

.showcase-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.showcase-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.ti-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ti-badge:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
}

.ti-badge i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* New scroll indicator */
.scroll-indicator-new {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator-new:hover {
    opacity: 1;
}

.scroll-dot {
    width: 8px;
    height: 20px;
    background: rgba(249, 115, 22, 0.4);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ==================== TICKER BAND ==================== */
.ticker-band {
    background: var(--grad-orange);
    padding: 0.7rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 35s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-right: 2.5rem;
}

.ticker-track span i {
    margin-right: 0.4rem;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ==================== ABOUT ==================== */
.about {
    padding: clamp(4rem, 10vh, 7rem) 0;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
}

.about-content p strong {
    color: var(--accent-orange);
}

.about-lead {
    font-size: 1.05rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    margin-bottom: 1.25rem !important;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.ah-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.ah-item:hover {
    background: rgba(249, 115, 22, 0.14);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(4px);
}

.ah-item i {
    font-size: 1rem;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-info-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.aic-icon {
    width: 42px;
    height: 42px;
    background: var(--grad-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.aic-body h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.aic-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.aic-body p small {
    font-size: 0.72rem;
    opacity: 0.7;
}

/* ==================== PRODUCTS ==================== */
.products {
    padding: clamp(4rem, 10vh, 7rem) 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(249, 115, 22, 0.03) 50%,
            transparent 100%);
    pointer-events: none;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.ptab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.ptab:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.ptab.active {
    background: var(--grad-orange);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.ptab i {
    font-size: 0.95rem;
}

/* Tab Panels */
.product-tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.tab-panel-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-panel-text>p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
    line-height: 1.8;
}

.product-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.product-list li:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

.product-list li i {
    color: var(--accent-orange);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Product feature cards */
.tab-panel-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-feature-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    cursor: default;
}

.product-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-feature-card i {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.product-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.product-feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-feature-card.orange {
    border-top: 3px solid var(--accent-orange);
}

.product-feature-card.orange i {
    color: var(--accent-orange);
}

.product-feature-card.orange:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.product-feature-card.gold {
    border-top: 3px solid var(--accent-gold);
}

.product-feature-card.gold i {
    color: var(--accent-gold);
}

.product-feature-card.gold:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(251, 176, 64, 0.2);
}

.product-feature-card.teal {
    border-top: 3px solid var(--accent-teal);
}

.product-feature-card.teal i {
    color: var(--accent-teal);
}

.product-feature-card.teal:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-teal);
}

.product-feature-card.amber {
    border-top: 3px solid var(--accent-amber);
}

.product-feature-card.amber i {
    color: var(--accent-amber);
}

.product-feature-card.amber:hover {
    border-color: var(--accent-amber);
}

.product-feature-card.red {
    border-top: 3px solid var(--accent-red);
}

.product-feature-card.red i {
    color: var(--accent-red);
}

.product-feature-card.red:hover {
    border-color: var(--accent-red);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: clamp(3.5rem, 8vh, 5rem) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.08) 0%,
            rgba(251, 176, 64, 0.05) 50%,
            rgba(34, 211, 238, 0.05) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: orbPulse 6s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-icon {
    width: 54px;
    height: 54px;
    background: var(--grad-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-orange);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ==================== WHY CHOOSE ==================== */
.why-us {
    padding: clamp(4rem, 10vh, 7rem) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: var(--accent-orange);
}

.why-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover .why-card-accent {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--grad-orange);
    color: #fff;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: clamp(4rem, 10vh, 6rem) 0;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.05) 0%,
            rgba(34, 211, 238, 0.03) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 clamp(1rem, 2vw, 2rem);
    position: relative;
}

.ps-connector {
    position: absolute;
    top: 52px;
    right: -1px;
    height: 2px;
    width: calc(100% - 80px);
    left: calc(50% + 40px);
    background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
    z-index: 0;
}

.ps-number {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.ps-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    color: var(--accent-orange);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.process-step:hover .ps-icon {
    background: var(--grad-orange);
    color: #fff;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==================== INDUSTRIES ==================== */
.industries {
    padding: clamp(4rem, 10vh, 7rem) 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.industry-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: default;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.industry-chip i {
    font-size: 0.95rem;
    color: var(--accent-orange);
}

.industry-chip:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

/* ==================== CLIENTS ==================== */
.clients {
    padding: clamp(4rem, 10vh, 7rem) 0;
    background: rgba(249, 115, 22, 0.02);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.clients-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.clients-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

body.light-theme .clients-image {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.clients-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

body.light-theme .clients-image:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* ==================== CONTACT ==================== */
.contact {
    padding: clamp(4rem, 10vh, 7rem) 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-info>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.cd-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cd-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cd-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cd-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cd-text span,
.cd-text a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.cd-text a:hover {
    color: var(--accent-orange);
}

.contact-quick-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cql-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.cql-btn.orange {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--accent-orange);
}

.cql-btn.orange:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}

.cql-btn.teal {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--accent-teal);
}

.cql-btn.teal:hover {
    background: var(--accent-teal);
    color: #fff;
    transform: translateY(-2px);
}

.cql-btn.green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}

.cql-btn.green:hover {
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group label {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23F97316' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 14px;
    padding-right: 2.5rem;
    cursor: pointer;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    font-size: 0.76rem;
    color: var(--accent-red);
    font-weight: 500;
    min-height: 1rem;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-success.show {
    display: flex;
}

.form-success i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ==================== EMAIL MODAL ==================== */
.email-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.email-modal.active {
    display: flex;
}

.email-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.email-modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 380px;
    min-width: 300px;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    margin: 0 auto;
}

body.light-theme .email-modal-content {
    background: #FFFFFF;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.email-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.email-modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.email-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.email-modal-close:hover {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange);
}

.email-modal-body {
    padding: 1.2rem;
}

.email-modal-body>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.email-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.email-service-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: left;
}

.email-service-btn i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.email-service-btn:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange);
}

.email-service-btn.gmail {
    color: #EA4335;
}

.email-service-btn.gmail:hover {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
    border-color: #EA4335;
}

.email-service-btn.outlook {
    color: #0078D4;
}

.email-service-btn.outlook:hover {
    background: rgba(0, 120, 212, 0.1);
    color: #0078D4;
    border-color: #0078D4;
}

.email-service-btn.rediff {
    color: #E84A27;
}

.email-service-btn.rediff:hover {
    background: rgba(232, 74, 39, 0.1);
    color: #E84A27;
    border-color: #E84A27;
}

.email-service-btn.yahoo {
    color: #7B0099;
}

.email-service-btn.yahoo:hover {
    background: rgba(123, 0, 153, 0.1);
    color: #7B0099;
    border-color: #7B0099;
}

.email-service-btn.default {
    color: var(--accent-orange);
}

.email-service-btn.default:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

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

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

/* ==================== FOOTER ==================== */
.footer {
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    padding: 3.5rem 0;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand>p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-gstin {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links-col a {
    font-size: 0.87rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}

.footer-contact-item i {
    color: var(--accent-orange);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--accent-orange);
}

/* Newsletter Section */
.footer-newsletter-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-newsletter-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.4rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

body.light-theme .newsletter-form input {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
}

.newsletter-btn {
    padding: 0.65rem 1.2rem;
    background: var(--accent-orange);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: #ea6d1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.newsletter-message {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    min-height: 1rem;
}

.newsletter-message.success {
    color: #10b981;
}

.newsletter-message.error {
    color: #ef4444;
}

.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-subtle);
}

body.light-theme .footer-bottom {
    background: rgba(0, 0, 0, 0.04);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-tagline {
    font-size: 0.8rem !important;
    color: var(--accent-orange) !important;
    font-weight: 600;
    font-style: italic;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 46px;
    height: 46px;
    background: var(--grad-orange);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

/* ==================== ANIMATE ON SCROLL ==================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ==================== ANIMATIONS ==================== */
@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

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

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

@keyframes mainCardBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(20px) translateY(-10px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-20px) translateY(-10px);
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

@media (max-width: 900px) {

    /* Navbar */
    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        /* navbar has backdrop-filter, making it the containing block for this
           fixed drawer, so an explicit viewport height is required (bottom:0
           would only resolve to the navbar's height and collapse the drawer). */
        height: 100vh;
        height: 100dvh;
        width: min(300px, 80vw);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: max(5.5rem, 92px) 1.5rem 2rem;
        gap: 0;
        z-index: 950;
        border-left: 1px solid var(--border-subtle);
        overflow-y: auto;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    }

    body.light-theme .nav-menu {
        background: #FFFFFF;
    }

    .nav-menu.active {
        display: flex;
        animation: slideInRight 0.3s ease;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        font-size: max(1rem, 15px);
        padding: max(1.1rem, 16px) 0;
        min-height: 52px;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    /* Hero */
    .hero-new-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-images-left {
        order: 2;
        gap: 1rem;
        flex: 1;
    }

    .hero-image-container {
        flex: 1;
        min-height: 250px;
        border-radius: 16px;
    }

    .hero-content-right {
        order: 1;
    }

    .hero-title-new {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-desc-new {
        font-size: 1rem;
        text-align: center;
    }

    .value-props {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .hero-cta-new {
        flex-direction: column;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 0.5rem;
        padding-top: 1.5rem;
    }

    .hero-stat-card {
        padding: 0.8rem 0.5rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .stat-value span:first-child {
        font-size: 1.5rem;
    }

    .stat-value span:last-child {
        font-size: 1.2rem;
    }

    .supply-chain {
        gap: 0.5rem;
        padding: 1.5rem;
        flex-wrap: wrap;
    }

    .chain-flow {
        flex: 0;
        width: 2px;
        height: 60px;
        flex-direction: column;
        justify-content: center;
    }

    .flow-line {
        width: 2px;
        height: 100%;
    }

    .flow-line i {
        right: 50%;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .showcase-card {
        padding: 1.5rem;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .tm-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    /* About */
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-cards {
        order: -1;
    }

    /* Products */
    .tab-panel-layout {
        grid-template-columns: 1fr;
    }

    /* Why grid */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ps-connector {
        display: none;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-achievement-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        justify-content: center;
        width: 100%;
    }

    .hero-image-container {
        flex: 1;
        min-height: 250px;
        border-radius: 16px;
    }

    .hero-image {
        border-radius: 16px;
    }

    .hero-title-new {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-desc-new {
        text-align: center;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .vp-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero-cta-new {
        gap: 0.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 0.5rem;
        padding-top: 1.2rem;
    }

    .hero-stat-card {
        padding: 0.6rem 0.4rem;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .stat-value span:first-child {
        font-size: 1.3rem;
    }

    .stat-value span:last-child {
        font-size: 1rem;
    }

    .stat-name {
        font-size: 0.7rem;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-top: 1.2rem;
    }

    .tm-number {
        font-size: 1.8rem;
    }

    .supply-chain {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }

    .chain-node {
        padding: 1rem;
        width: 100%;
    }

    .chain-flow {
        width: 100%;
        height: auto;
        flex-direction: row;
        margin: 0.5rem 0;
    }

    .flow-line {
        width: 100%;
        height: 2px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .showcase-card {
        padding: 1.2rem;
    }

    .sc-number {
        font-size: 1.5rem;
    }

    .showcase-card i {
        font-size: 1.5rem;
    }

    .showcase-card h4 {
        font-size: 0.95rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.7rem;
    }

    .ti-badge {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .tab-panel-cards {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-form input {
        font-size: 0.8rem;
        padding: 0.6rem 0.9rem;
    }

    .newsletter-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

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

    .hero-main-card {
        width: 100%;
        max-width: 320px;
        padding: 1.5rem 2rem;
    }

    .hero-showcase {
        max-width: 100%;
    }

    .product-category-card {
        width: calc(100% - 20px);
        max-width: 280px;
    }

    .card-safety {
        top: auto;
        bottom: 200px;
        left: 0;
        right: auto;
    }

    .card-packaging {
        top: auto;
        bottom: 80px;
        right: auto;
        left: 0;
    }

    .card-industrial {
        bottom: -20px;
        left: 0;
    }

    .trust-badge {
        width: calc(100% - 20px);
        max-width: 280px;
    }

    .gstin-badge {
        bottom: auto;
        top: 20px;
        left: 0;
    }

    .delivery-badge {
        top: auto;
        bottom: 280px;
        right: 0;
        left: auto;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .icon-1 {
        top: 10px;
        right: -15px;
    }

    .icon-2 {
        bottom: 150px;
        right: 0;
        left: auto;
    }

    .icon-3 {
        bottom: 20px;
        left: -15px;
    }

    .ptab {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }
}

.hv-card-tertiary {
    bottom: 10px;
    left: 0;
}

.product-tabs {
    gap: 0.4rem;
}

.ptab {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
}

.contact-form-wrap {
    padding: 1.5rem;
}

.hero-cta-row {
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom .container {
    flex-direction: column;
    text-align: center;
}

.cql-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.email-modal-content {
    width: calc(100% - 2rem);
    max-width: 360px;
}

.email-services-grid {
    grid-template-columns: 1fr;
}

.email-service-btn {
    padding: 1rem;
}

.email-service-btn i {
    font-size: 1.5rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}