/* ================================================================
   svsite.css — SourceVeda Design System
   Brand: Saffron #E8650A · Gold #C9961A · Deep #160800 · Cream #F7F2EA
   Sections:
     1. Global Base
     2. Animations & Keyframes
     3. Brand Gradient Helpers
     4. Header / Nav
     5. Section Shells & Backgrounds
     6. Dot Pattern & Glow Decorators
     7. Badges & Pills
     8. Typography Helpers
     9. Buttons & CTAs
    10. Hero Section
    11. Hero Stats Bar
    12. How It Works Steps
    13. Cards
    14. Icon Badges
    15. Why India – Dark Panel
    16. Why Reasons (right column)
    17. Feature Cards (Why SourceVeda)
    18. Compare Table
    19. Buyer Inquiry – Process Steps & Ticker
    20. Export Stats – Hero Banner & Stat Cards
    21. Rankings Strip
    22. Blog Cards
    23. Supplier Section
    24. Grid Responsive Overrides
   ================================================================ */


/* ── 1. GLOBAL BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}
body { font-feature-settings: "kern" 1, "liga" 1; }

/* Ensure white text always shows on dark backgrounds */
.text-white     { color: #ffffff !important; }
.text-white\/90 { color: rgba(255,255,255,0.9) !important; }
.text-white\/70 { color: rgba(255,255,255,0.7) !important; }
.text-white\/50 { color: rgba(255,255,255,0.5) !important; }


/* ── 2. ANIMATIONS & KEYFRAMES ──────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
.animate-fadeInUp { animation: fadeInUp 0.65s ease forwards; }


/* ── 3. BRAND GRADIENT HELPERS ──────────────────────────────── */
.bg-saffron-gradient {
    background: linear-gradient(135deg, #E8650A 0%, #C9961A 100%);
}
.bg-deep-gradient {
    background: linear-gradient(150deg, #160800 0%, #2D1400 55%, #3D2000 100%);
}
.text-gradient,
.sv-gradient-text {
    color: #E8650A; /* fallback */
    background: linear-gradient(135deg, #E8650A 0%, #C9961A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── 4. HEADER / NAV ────────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #E8650A, #C9961A);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.header-scrolled { box-shadow: 0 2px 20px rgba(22, 8, 0, 0.10); }


/* ── 5. SECTION SHELLS & BACKGROUNDS ───────────────────────── */
.sv-section-white { padding: 72px 0; background: #ffffff; }
.sv-section-cream { padding: 72px 0; background: #F7F2EA; }
.sv-section-warm  {
    padding: 72px 0;
    background: linear-gradient(160deg, #FDF8F2 0%, #ffffff 50%, #FBF5E8 100%);
    position: relative; overflow: hidden;
}
.sv-section-dark  {
    padding: 72px 0;
    background: linear-gradient(150deg, #160800 0%, #2D1400 55%, #3D2000 100%);
    position: relative; overflow: hidden;
}


/* ── 6. DOT PATTERN & GLOW DECORATORS ──────────────────────── */
.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8650A' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sv-dot-overlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    opacity: 0.035;
    background-image: radial-gradient(circle, #E8650A 1px, transparent 1px);
    background-size: 28px 28px;
}
.sv-glow-saffron {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: #E8650A; filter: blur(80px); opacity: 0.06;
}
.sv-glow-gold {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: #C9961A; filter: blur(70px); opacity: 0.06;
}


/* ── 7. BADGES & PILLS ──────────────────────────────────────── */
.sv-badge {
    display: inline-block;
    width: fit-content; align-self: flex-start;
    background: linear-gradient(135deg, #FDF3EC, #FAE2CC);
    border: 1px solid #F0C8A0;
    color: #E8650A;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 999px;
    margin-bottom: 14px;
}
.sv-badge-dark {
    display: inline-block;
    background: rgba(232,101,10,0.15);
    border: 1px solid rgba(232,101,10,0.3);
    color: #E8650A;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 999px;
    margin-bottom: 14px;
}
.sv-step-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    margin-bottom: 8px;
}
.sv-trade-tag {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    font-size: 9.5px; font-weight: 500;
    padding: 3px 9px; border-radius: 999px;
}


/* ── 8. TYPOGRAPHY HELPERS ──────────────────────────────────── */
.sv-heading {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700; color: #160800;
    line-height: 1.2; margin-bottom: 12px;
}
.sv-heading-white {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700; color: #ffffff;
    line-height: 1.2; margin-bottom: 12px;
}
.sv-subtext       { color: #6b7280; font-size: 0.9375rem; line-height: 1.7; }
.sv-subtext-muted { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.7; }
.sv-section-header     { text-align: center; margin-bottom: 48px; }
.sv-section-header-lg  { text-align: center; margin-bottom: 56px; }


/* ── 9. BUTTONS & CTAs ──────────────────────────────────────── */
.sv-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #E8650A, #C9961A);
    color: #ffffff; font-weight: 700; font-size: 0.9375rem;
    border-radius: 12px; text-decoration: none;
    box-shadow: 0 8px 24px rgba(232,101,10,0.35);
    transition: all 0.2s; white-space: nowrap;
    border: none; cursor: pointer;
}
.sv-btn-primary:hover {
    box-shadow: 0 12px 32px rgba(232,101,10,0.45);
    transform: translateY(-1px); color: #ffffff;
}
.sv-btn-outline-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 32px;
    background: transparent; color: #ffffff;
    font-weight: 700; font-size: 0.9375rem;
    border-radius: 12px; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: all 0.2s; white-space: nowrap;
}
.sv-btn-outline-white:hover {
    border-color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06); color: #ffffff;
}
.sv-btn-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #E8650A; font-weight: 600; font-size: 0.875rem;
    text-decoration: none;
    border: 1.5px solid rgba(232,101,10,0.13);
    padding: 10px 24px; border-radius: 999px;
    background: #FDF3EC; transition: all 0.2s;
}
.sv-btn-link:hover { background: #FAE2CC; border-color: rgba(232,101,10,0.3); }
.sv-btn-cta-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #E8650A, #C9961A);
    color: #ffffff; font-weight: 700; font-size: 1rem;
    border-radius: 14px; text-decoration: none;
    box-shadow: 0 8px 28px rgba(232,101,10,0.3);
    transition: all 0.2s; border: none; cursor: pointer;
}
.sv-btn-cta-lg:hover {
    box-shadow: 0 14px 36px rgba(232,101,10,0.4);
    transform: translateY(-1px); color: #ffffff;
}
.sv-cta-group   { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }
.sv-cta-center  { text-align: center; margin-top: 44px; }
.sv-cta-note    { color: #9ca3af; font-size: 0.8125rem; margin-top: 12px; }


/* ── 10. HERO SECTION ───────────────────────────────────────── */
.sv-live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px; padding: 6px 18px;
    font-size: 12px; color: #EDE5D8;
    font-weight: 500; letter-spacing: 0.02em;
}
.sv-live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; display: inline-block;
    animation: pulse 2s infinite; flex-shrink: 0;
}
.sv-trust-strip {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 8px 18px; margin-bottom: 36px;
}


/* ── 11. HERO STATS BAR ─────────────────────────────────────── */
.sv-stats-bar { border-top: 1px solid rgba(255,255,255,0.08); }
.sv-stat-item { display: flex; align-items: center; gap: 14px; padding: 18px 28px; }
.sv-stat-icon-wrap {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(232,101,10,0.18);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}


/* ── 12. HOW IT WORKS STEPS ─────────────────────────────────── */
.sv-step-item  { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sv-step-title { font-size: 0.9375rem; color: #160800; font-weight: 600; margin-bottom: 6px; line-height: 1.35; }
.sv-step-desc  { font-size: 0.8125rem; color: #6b7280; line-height: 1.6; max-width: 200px; }
.step-connector::after {
    content: '';
    position: absolute; top: 2rem;
    left: calc(50% + 2.5rem);
    width: calc(100% - 5rem); height: 2px;
    background: linear-gradient(90deg, #E8650A, #C9961A);
    opacity: 0.25;
}


/* ── 13. CARDS ──────────────────────────────────────────────── */
.card-hover { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22, 8, 0, 0.12); }
.sv-card {
    background: #ffffff;
    border-radius: 18px; padding: 24px;
    border: 1.5px solid #EDE5D8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.sv-card-cream {
    background: #FEFAF5;
    border-radius: 16px; padding: 18px 22px;
    border: 1.5px solid #EDE5D8;
    position: relative; overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.sv-card-dark {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 24px;
    transition: border-color 0.25s, background 0.25s;
}


/* ── 14. ICON BADGES ────────────────────────────────────────── */
.sv-icon-sm {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-icon-md {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-icon-lg {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-icon-circle {
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative;
}


/* ── 15. WHY INDIA – DARK PANEL ─────────────────────────────── */
.sv-dark-panel {
    background: linear-gradient(150deg, #160800 0%, #2D1400 55%, #3D2000 100%);
    border-radius: 24px; padding: 36px 32px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.sv-stat-box-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 14px 10px; text-align: center;
}
.sv-stat-row-dark {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px; padding: 8px 12px;
}
.sv-2030-highlight {
    background: linear-gradient(135deg, rgba(232,101,10,0.15), rgba(201,150,26,0.1));
    border: 1px solid rgba(232,101,10,0.25);
    border-radius: 10px; padding: 10px 14px;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.sv-trade-tags { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 12px; }


/* ── 16. WHY REASONS (right column) ────────────────────────── */
.sv-reason-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px; border-radius: 14px;
    border: 1.5px solid transparent;
    transition: all 0.2s; background: #ffffff;
}


/* ── 17. FEATURE CARDS (Why SourceVeda) ─────────────────────── */
.sv-feature-card {
    background: #ffffff;
    border-radius: 18px; padding: 24px;
    border: 1.5px solid #EDE5D8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.sv-feature-watermark {
    position: absolute; right: -4px; bottom: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900; opacity: 0.05;
    line-height: 1; pointer-events: none;
}


/* ── 18. COMPARE TABLE ──────────────────────────────────────── */
.sv-compare-wrap {
    margin-top: 48px; background: #ffffff;
    border: 1.5px solid #EDE5D8; border-radius: 20px;
    overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.sv-compare-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.sv-compare-header-cell {
    padding: 14px 24px; background: #FEFAF5;
    border-bottom: 1.5px solid #EDE5D8;
}
.sv-compare-header-sv {
    padding: 14px 16px; text-align: center;
    border-left: 1.5px solid #EDE5D8; border-bottom: 1.5px solid #EDE5D8;
    background: linear-gradient(135deg, #FDF3EC, #FAE2CC);
}
.sv-compare-header-solo {
    padding: 14px 16px; text-align: center;
    border-left: 1.5px solid #EDE5D8; border-bottom: 1.5px solid #EDE5D8;
    background: #FAFAFA;
}
.sv-compare-row         { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid #F3EDE4; }
.sv-compare-cell-feature { padding: 12px 24px; background: #FEFAF5; }
.sv-compare-cell-sv   {
    padding: 12px 16px; text-align: center;
    border-left: 1px solid #F3EDE4;
    background: linear-gradient(135deg, #FDF9F5, #FDF3EC);
}
.sv-compare-cell-solo {
    padding: 12px 16px; text-align: center;
    border-left: 1px solid #F3EDE4; background: #FAFAFA;
}


/* ── 19. BUYER INQUIRY – PROCESS STEPS & TICKER ─────────────── */
.sv-process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.sv-process-step  {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 10px 0; position: relative; z-index: 1;
}
.sv-process-num {
    width: 38px; height: 38px; border-radius: 50%;
    color: #fff; font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-process-connector {
    position: absolute; left: 19px; top: 20px; bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #E8650A, #C9961A, #E8650A);
    opacity: 0.2;
}
.sv-matches-ticker {
    background: #F7F2EA; border: 1px solid #EDE5D8;
    border-radius: 14px; padding: 14px 16px; margin-bottom: 24px;
}
.sv-matches-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0; animation: pulse 2s infinite;
}
.sv-trust-stat-box {
    text-align: center; padding: 12px 8px;
    background: #F7F2EA; border-radius: 12px; border: 1px solid #EDE5D8;
}


/* ── 20. EXPORT STATS – HERO BANNER & STAT CARDS ────────────── */
.sv-hero-stat-banner {
    background: linear-gradient(135deg, #160800 0%, #2D1400 60%, #3D2000 100%);
    border-radius: 22px; padding: 32px 36px; margin-bottom: 16px;
    position: relative; overflow: hidden;
    display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.sv-mini-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 12px 16px;
    text-align: center; min-width: 90px;
}
.sv-stat-h-card {
    background: #FEFAF5; border-radius: 16px; padding: 18px 22px;
    border: 1.5px solid #EDE5D8;
    display: flex; align-items: center; gap: 20px;
    position: relative; overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.sv-stat-h-divider { width: 1px; height: 40px; background: #EDE5D8; flex-shrink: 0; }
.sv-stat-h-watermark {
    position: absolute; right: 10px; bottom: -8px;
    font-size: 3.5rem; opacity: 0.06;
    pointer-events: none; line-height: 1;
}


/* ── 21. RANKINGS STRIP ─────────────────────────────────────── */
.sv-rankings-strip {
    background: linear-gradient(135deg, #FDF3EC, #FBF5E2);
    border-radius: 18px; border: 1.5px solid #EDE5D8; padding: 22px 26px;
}
.sv-ranking-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px; border: 1px solid rgba(201,150,26,0.15);
}


/* ── 22. BLOG CARDS ─────────────────────────────────────────── */
.blog-img-wrap { overflow: hidden; }
.blog-img-wrap img { transition: transform 0.4s ease; }
.blog-img-wrap:hover img { transform: scale(1.05); }


/* ── 23. SUPPLIER SECTION ───────────────────────────────────── */
.sv-supplier-form-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 32px;
}


/* ── 24. GRID RESPONSIVE OVERRIDES ─────────────────────────── */

/* Hero stats bar: 2-col on mobile, 4-col on md+ */
@media (min-width: 768px) {
    .md\:grid-cols-4-fix { grid-template-columns: repeat(4, 1fr) !important; }
    .md\:grid-cols-4-fix > div { border-top: none !important; }
}

/* Why India: 1-col mobile, 2-col desktop */
@media (min-width: 1024px) {
    .why-india-grid  { grid-template-columns: 1fr 1fr !important; gap: 48px !important; align-items: start !important; }
    .why-india-left  { order: 1 !important; }
    .why-india-right { order: 2 !important; }
}

/* Feature cards: 1 → 2 → 3 cols */
@media (min-width: 640px)  { .sv-features-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { .sv-features-grid { grid-template-columns: repeat(3, 1fr) !important; } }

/* Horizontal stat cards: 1 → 2 cols on tablet, back to 1 on desktop (full-width) */
@media (min-width: 768px)  { .sv-stats-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { .sv-stats-grid { grid-template-columns: repeat(1, 1fr) !important; } }

/* Rankings grid: 2 → 3 cols */
@media (min-width: 768px)  { .rankings-grid { grid-template-columns: repeat(3, 1fr) !important; } }

/* Mobile adjustments */
@media (max-width: 767px) {
    .sv-hero-stat-banner { padding: 24px 20px; }
    .sv-dark-panel       { padding: 28px 20px; }
    .sv-stat-item + .sv-stat-item { border-top: 1px solid rgba(255,255,255,0.07); border-left: none; }
}


/* ═══════════════════════════════════════════════════════════════
   25. SV2 — DIANAPPS LIGHT THEME
   Used by: home2, about, how-it-works
   Brand: #1E3A8A (blue) · #2C52BE (mid blue) · #FF822B (orange)
         #060821 (near black) · #EEF2FF (blue-tinted bg)
   ═══════════════════════════════════════════════════════════════ */

/* Page wrapper */
.sv2-page { font-family: 'Roboto', sans-serif; color: #333333; }

/* ── Icon lg (used by about + how-it-works) ──────────────── */
.sv2-icon-lg {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Badge / pill ─────────────────────────────────────────── */
.sv2-badge {
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    color: #1E3A8A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 44px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

/* Badge colour variants */
.sv2-badge-orange {
    background: #FFF0E6;
    border: 1px solid #FED7AA;
    color: #C2410C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 44px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    margin-bottom: 14px;
}
.sv2-badge-green {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 44px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    margin-bottom: 14px;
}

/* ── Gradient text helper ─────────────────────────────────── */
.sv2-gradient-text {
    background: linear-gradient(135deg, #2C52BE, #FF822B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2C52BE;
}

/* ── Buttons ──────────────────────────────────────────────── */
.sv2-btn-primary {
    background: #1E3A8A;
    color: white;
    border-radius: 44px;
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
}
.sv2-btn-primary:hover {
    background: linear-gradient(135deg, #2C52BE, #FF822B);
    color: white;
    text-decoration: none;
}
.sv2-btn-outline {
    border: 2px solid #1E3A8A;
    color: #1E3A8A;
    border-radius: 44px;
    padding: 12px 28px;
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.sv2-btn-outline:hover {
    background: #EEF2FF;
    color: #1E3A8A;
    text-decoration: none;
}
.sv2-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1E3A8A;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: gap 0.2s;
}
.sv2-btn-link:hover { gap: 10px; color: #2C52BE; text-decoration: none; }

/* Outline white variant (used on dark backgrounds) */
.sv2-btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 44px;
    padding: 12px 28px;
    background: rgba(255,255,255,0.08);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.sv2-btn-outline-white:hover { background: rgba(255,255,255,0.18); color: white; text-decoration: none; }

/* ── Section header ───────────────────────────────────────── */
.sv2-section-header { text-align: center; margin-bottom: 40px; }
.sv2-section-header h2 {
    font-family: 'Inter', sans-serif;
    color: #060821;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.sv2-section-header p { color: #333333; font-size: 1rem; line-height: 1.7; }

/* ── Cards ────────────────────────────────────────────────── */
.sv2-card {
    background: white;
    box-shadow: 0px 14px 50px rgba(30,58,138,0.07);
    border-radius: 24px;
    border: 1px solid #E8E8E8;
}

/* ── Step item ────────────────────────────────────────────── */
.sv2-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
}
.sv2-step-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.sv2-step-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 44px;
    margin-bottom: 8px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.sv2-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #060821;
    font-size: 0.9375rem;
    margin-bottom: 6px;
    margin-top: 0;
}
.sv2-step-desc { color: #333333; font-size: 0.8125rem; line-height: 1.65; margin: 0; }

/* ── Reason item ──────────────────────────────────────────── */
.sv2-reason-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    cursor: default;
}

/* ── Icon containers ──────────────────────────────────────── */
.sv2-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sv2-icon-md {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Feature card ─────────────────────────────────────────── */
.sv2-feature-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(30,58,138,0.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sv2-feature-card:hover { transform: translateY(-2px); }
.sv2-feature-watermark {
    position: absolute;
    top: -10px;
    right: -5px;
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* ── Compare table ────────────────────────────────────────── */
.sv2-compare-wrap {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 32px;
}
.sv2-compare-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.sv2-compare-header-cell { padding: 14px 16px; }
.sv2-compare-header-sv { background: #EEF2FF; padding: 14px 16px; text-align: center; }
.sv2-compare-header-solo { padding: 14px 16px; text-align: center; background: #FAFAFA; }
.sv2-compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid #F0F0F0; }
.sv2-compare-row:hover { background: #F8FAFF; }
.sv2-compare-cell-feature { padding: 11px 16px; }
.sv2-compare-cell-sv { background: #EEF2FF33; padding: 11px 16px; text-align: center; }
.sv2-compare-cell-solo { padding: 11px 16px; text-align: center; }

/* ── Process steps ────────────────────────────────────────── */
.sv2-process-steps { display: flex; flex-direction: column; gap: 16px; position: relative; }
.sv2-process-connector {
    position: absolute;
    left: 17px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #2C52BE55, #FF822B55);
}
.sv2-process-step { display: flex; align-items: flex-start; gap: 14px; }
.sv2-process-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

/* ── Matches ticker ───────────────────────────────────────── */
.sv2-matches-ticker {
    background: #F8FAFF;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}
.sv2-matches-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: sv2pulse 2s infinite;
    flex-shrink: 0;
    display: inline-block;
}
@keyframes sv2pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Trust stat box ───────────────────────────────────────── */
.sv2-trust-stat-box {
    background: white;
    border: 1px solid #BFDBFE;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}

/* ── Stat h-card ──────────────────────────────────────────── */
.sv2-stat-h-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.sv2-stat-h-divider { width: 1px; height: 36px; background: #E8E8E8; flex-shrink: 0; }
.sv2-stat-h-watermark {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.04;
    pointer-events: none;
}

/* ── Rankings strip ───────────────────────────────────────── */
.sv2-rankings-strip {
    background: linear-gradient(90deg, #EEF2FF, #FFF0E6);
    border: 1px solid #BFDBFE;
    border-radius: 20px;
    padding: 24px 28px;
}
.sv2-ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 10px 14px;
}

/* ── Blog card ────────────────────────────────────────────── */
.sv2-blog-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(30,58,138,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sv2-blog-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.12); transform: translateY(-2px); }
.sv2-blog-card:hover .sv2-blog-title { color: #1E3A8A; }
.sv2-blog-title { transition: color 0.2s; }

/* ── Hero stats bar ───────────────────────────────────────── */
.sv2-stats-bar {
    background: #F8FAFF;
    border-top: 1px solid #E8E8E8;
    padding: 20px 0;
    margin-top: 32px;
}
.sv2-hero-stat-item { padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.sv2-hero-stat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── India panel ──────────────────────────────────────────── */
.sv2-india-panel {
    background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.sv2-stat-box-light {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 16px;
}
.sv2-stat-row-light {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sv2-2030-highlight {
    background: linear-gradient(135deg, #FFF0E6, #FFEDD5);
    border: 1px solid #FED7AA;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.sv2-trade-tag {
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    color: #1E3A8A;
    border-radius: 44px;
    padding: 4px 12px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
}

/* ── Mini stat card ───────────────────────────────────────── */
.sv2-mini-stat-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 90px;
    text-align: center;
}

/* ── Responsive grid helpers ──────────────────────────────── */
@media (min-width: 768px) {
    .sv2-grid-4  { grid-template-columns: repeat(4, 1fr) !important; }
    .sv2-grid-3  { grid-template-columns: repeat(3, 1fr) !important; }
    .sv2-grid-2  { grid-template-columns: repeat(2, 1fr) !important; }
    .sv2-why-india-grid   { grid-template-columns: 1fr 1fr !important; }
    .sv2-features-grid    { grid-template-columns: repeat(3, 1fr) !important; }
    .sv2-stats-grid       { grid-template-columns: 1fr !important; }
    .sv2-hero-stat-grid   { grid-template-columns: repeat(4, 1fr) !important; }
    .sv2-rankings-grid    { grid-template-columns: repeat(3, 1fr) !important; }
    .sv2-hero-stat-item   { border-right: 1px solid #E8E8E8; }
    .sv2-hero-stat-item:last-child { border-right: none; }
}
@media (max-width: 767px) {
    .sv2-hero-stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .sv2-hero-stat-item:nth-child(1),
    .sv2-hero-stat-item:nth-child(2) { border-bottom: 1px solid #E8E8E8; }
    .sv2-hero-stat-item:nth-child(odd) { border-right: 1px solid #E8E8E8; }
}


/* ═══════════════════════════════════════════════════════════════
   26. SV2 FORM COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

.sv2-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #060821;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.sv2-form-input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: white;
    color: #060821;
    font-size: 0.875rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.sv2-form-input:focus {
    border-color: #2C52BE;
    box-shadow: 0 0 0 3px rgba(44,82,190,0.1);
}
.sv2-form-select {
    width: 100%;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: white;
    color: #060821;
    font-size: 0.875rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.sv2-form-select:focus {
    border-color: #2C52BE;
    box-shadow: 0 0 0 3px rgba(44,82,190,0.1);
}
.sv2-form-textarea {
    resize: none;
}
.sv2-form-submit {
    display: flex;
    width: 100%;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════
   27. SV2 FINAL CTA BUTTONS (used on dark gradient sections)
   ═══════════════════════════════════════════════════════════════ */

.sv2-cta-btn-white {
    background: white;
    color: #1E3A8A;
    border-radius: 44px;
    padding: 16px 40px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.sv2-cta-btn-white:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    transform: translateY(-1px);
    color: #1E3A8A;
    text-decoration: none;
}
.sv2-cta-btn-outline-white {
    border: 2px solid white;
    color: white;
    border-radius: 44px;
    padding: 14px 36px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: transparent;
}
.sv2-cta-btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    color: white;
    text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════════
   28. SV2 ABOUT PAGE — Page-specific components
   ═══════════════════════════════════════════════════════════════ */

/* Timeline */
.sv2-timeline-step { display: flex; align-items: flex-start; gap: 20px; position: relative; }
.sv2-timeline-num {
    width: 44px; height: 44px; border-radius: 50%; color: white;
    font-size: 13px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 1; font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(30,58,138,0.25);
}
.sv2-timeline-line {
    position: absolute; left: 22px; top: 44px; width: 2px;
    background: linear-gradient(to bottom, #2C52BE44, #FF822B44);
}

/* Differentiator row (about page) */
.sv2-diff-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px;
    background: white; border: 1px solid #E8E8E8; border-radius: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sv2-diff-item:hover { border-color: #BFDBFE; box-shadow: 0 6px 24px rgba(30,58,138,0.08); }

/* Vision / Mission panels */
.sv2-mission-panel {
    background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE; border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden;
}
.sv2-vision-panel {
    background: linear-gradient(135deg, #060821 0%, #1E3A8A 100%);
    border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}

/* Story quote block */
.sv2-story-quote {
    border-left: 4px solid #2C52BE; padding: 16px 20px;
    background: #EEF2FF; border-radius: 0 14px 14px 0; margin: 24px 0;
}

/* Future feature cards */
.sv2-future-card {
    background: white; border: 1px solid #E8E8E8; border-radius: 20px;
    padding: 24px; box-shadow: 0 4px 20px rgba(30,58,138,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
}
.sv2-future-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(30,58,138,0.11); }
.sv2-future-card-shine {
    position: absolute; top: -30px; right: -30px; width: 120px; height: 120px;
    border-radius: 50%; background: radial-gradient(circle, rgba(44,82,190,0.07), transparent);
    pointer-events: none;
}

/* About responsive grid */
@media (min-width: 768px) {
    .sv2-vm-grid { grid-template-columns: 1fr 1fr !important; }
}


/* ═══════════════════════════════════════════════════════════════
   29. SV2 HOW IT WORKS PAGE — Page-specific components
   ═══════════════════════════════════════════════════════════════ */

/* Extra-large icon */
.sv2-icon-xl {
    width: 72px; height: 72px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Process step cards */
.sv2-step-card {
    background: white; border: 1px solid #E8E8E8; border-radius: 20px;
    padding: 24px; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,58,138,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.sv2-step-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,58,138,0.10); }
.sv2-step-number {
    position: absolute; top: -8px; right: 16px;
    font-family: 'Inter', sans-serif; font-size: 4.5rem; font-weight: 800;
    opacity: 0.05; color: #1E3A8A; line-height: 1;
    pointer-events: none; user-select: none;
}
.sv2-step-num-badge {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
    color: white; flex-shrink: 0;
}

/* Arrow connector between flow steps */
.sv2-arrow-connector {
    display: flex; align-items: center; justify-content: center;
    color: #BFDBFE; flex-shrink: 0;
}

/* Supplier step rows */
.sv2-supplier-step {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px;
    background: white; border: 1px solid #E8E8E8; border-radius: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sv2-supplier-step:hover { border-color: #BBF7D0; box-shadow: 0 4px 16px rgba(21,128,61,0.08); }

/* FAQ accordion */
.sv2-faq-item {
    background: white; border: 1px solid #E8E8E8; border-radius: 16px;
    overflow: hidden; transition: border-color 0.2s;
}
.sv2-faq-item.open { border-color: #BFDBFE; }
.sv2-faq-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; background: none; border: none; cursor: pointer;
    text-align: left; gap: 12px;
}
.sv2-faq-icon {
    width: 28px; height: 28px; border-radius: 8px; background: #EEF2FF;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, transform 0.25s;
}
.sv2-faq-item.open .sv2-faq-icon { background: #1E3A8A; transform: rotate(45deg); }
.sv2-faq-item.open .sv2-faq-icon svg { stroke: white; }
.sv2-faq-body { display: none; padding: 0 20px 18px; }
.sv2-faq-item.open .sv2-faq-body { display: block; }

/* Diff comparison table rows */
.sv2-diff-row {
    display: grid; grid-template-columns: 1fr 48px 1fr;
    align-items: center; padding: 12px 0; border-bottom: 1px solid #F0F0F0;
}
.sv2-diff-row:last-child { border-bottom: none; }

/* Horizontal scroll for comparison table */
.sv2-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sv2-table-inner  { min-width: 560px; }

/* How It Works responsive */
@media (min-width: 768px) {
    .sv2-col-2        { grid-template-columns: 1fr 1fr !important; }
    .sv2-steps-flow   { flex-direction: row !important; flex-wrap: nowrap !important; align-items: center !important; }
    .sv2-steps-flow .sv2-arrow-connector { display: flex !important; }
    .sv2-section-pad  { padding-top: 72px !important; padding-bottom: 72px !important; }
    .sv2-btn-full-mobile { width: auto !important; justify-content: flex-start !important; }
}
@media (max-width: 767px) {
    .sv2-steps-flow   { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
    .sv2-steps-flow .sv2-arrow-connector { display: none !important; }
    .sv2-step-card    { padding: 18px 16px; }
    .sv2-step-card > div { flex-wrap: wrap; }
    .sv2-supplier-step { padding: 14px; gap: 10px; }
    .sv2-faq-trigger  { padding: 14px; }
    .sv2-faq-body     { padding: 0 14px 14px; }
    .sv2-sla-banner   { flex-direction: column !important; align-items: flex-start !important; }
    .sv2-sla-btn      { width: 100% !important; justify-content: center !important; flex-shrink: 1 !important; }
    .sv2-btn-full-mobile { width: 100% !important; justify-content: center !important; }
    .sv2-benefit-panel { padding: 24px 18px !important; }
    .sv2-docs-grid    { grid-template-columns: 1fr !important; }
    .sv2-hero-pills   { gap: 8px !important; }
    .sv2-hero-pills > div { flex: 1 1 calc(50% - 8px); min-width: 140px; }
    .sv2-feature-card { padding: 20px 16px; }
    .sv2-hero-section { padding-top: 44px !important; }
}


/* ================================================================
   30. SV2 FOR BUYERS PAGE — /for-buyers
   ================================================================ */

/* ── Hero Section ─────────────────────────────────────────────── */
.svb-hero {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.svb-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(30,58,138,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.svb-hero-inner {
    text-align: center;
}
.svb-hero-h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #060821;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.svb-hero-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 620px;
}
.svb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.svb-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.svb-trust-check {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1E3A8A;
}
/* Mobile hero padding */
@media (max-width: 639px) {
    .svb-hero { padding-bottom: 0; }
}

/* ── Hero Stats Bar ───────────────────────────────────────────── */
.svb-hero-stats {
    background: white;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    padding: 20px 0;
}
.svb-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.svb-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.svb-hero-stat-item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.svb-hero-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1;
    display: block;
}
.svb-hero-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    display: block;
}

/* ── Trust Signals Bar ────────────────────────────────────────── */
.svb-trust-bar {
    background: #F8FAFF;
    border-bottom: 1px solid #E8E8E8;
    padding: 24px 0;
}
.svb-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.svb-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #060821;
}
.svb-trust-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: white;
    border: 1px solid #E8E8E8;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* ── Section Backgrounds ──────────────────────────────────────── */
.svb-section-muted {
    background: #F8FAFF;
    padding: 72px 0;
}
.svb-section-white {
    background: white;
    padding: 72px 0;
}

/* ── Process Steps ────────────────────────────────────────────── */
.svb-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.svb-step-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,58,138,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.svb-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(30,58,138,0.10);
}
.svb-step-watermark {
    position: absolute; top: -8px; right: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem; font-weight: 800;
    color: #1E3A8A; opacity: 0.04;
    line-height: 1;
    pointer-events: none; user-select: none;
}
.svb-step-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: #1E3A8A; color: white;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.svb-step-icon {
    font-size: 1.75rem;
    margin-bottom: 14px;
    display: block;
}
.svb-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: #060821;
    margin: 0 0 8px;
}
.svb-step-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Product Categories ───────────────────────────────────────── */
.svb-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.svb-cat-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.svb-cat-card:hover {
    border-color: #BFDBFE;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30,58,138,0.08);
}
.svb-cat-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: #EEF2FF;
    font-size: 1.75rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.svb-cat-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem; font-weight: 700;
    color: #060821;
    margin: 0 0 6px;
}
.svb-cat-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

/* ── Inquiry Form Section ─────────────────────────────────────── */
.svb-form-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2C52BE 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.svb-form-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.svb-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
}
.svb-form-copy { color: white; }
.svb-form-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.svb-form-h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    margin: 0 0 14px;
    line-height: 1.25;
}
.svb-form-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 28px;
}
.svb-promises { display: flex; flex-direction: column; gap: 12px; }
.svb-promise-row { display: flex; align-items: center; gap: 12px; }
.svb-promise-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: white;
}
.svb-promise-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}
.svb-form-card { padding: 32px !important; }
.svb-form-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; font-weight: 700;
    color: #060821;
    margin: 0 0 24px;
}
.svb-form-fields { display: flex; flex-direction: column; gap: 16px; }
.svb-form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.svb-required { color: #FF822B; }
.svb-form-submit { width: 100%; justify-content: center; }
.svb-form-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

/* ── Why Buyers Section ───────────────────────────────────────── */
.svb-reason-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}
.svb-reason-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.svb-reason-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 6px 28px rgba(30,58,138,0.08);
}
.svb-reason-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.svb-reason-icon-blue   { background: #EEF2FF; }
.svb-reason-icon-orange { background: #FFF0E6; }
.svb-reason-icon-green  { background: #F0FDF4; }
.svb-reason-emoji { font-size: 1.5rem; }
.svb-reason-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem; font-weight: 700;
    color: #060821;
    margin: 0 0 10px;
}
.svb-reason-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── Final CTA Banner ─────────────────────────────────────────── */
.svb-cta-banner {
    background: linear-gradient(135deg, #FF822B 0%, #E06B18 100%);
    padding: 80px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.svb-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.svb-cta-h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    position: relative;
}
.svb-cta-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px;
    position: relative;
}

/* ── Responsive: desktop (640px+) ────────────────────────────── */
@media (min-width: 640px) {
    .svb-hero-stats-grid  { grid-template-columns: repeat(4, 1fr); }
    .svb-trust-grid       { grid-template-columns: repeat(4, 1fr); }
    .svb-steps-grid       { grid-template-columns: repeat(4, 1fr); }
    .svb-cat-grid         { grid-template-columns: repeat(3, 1fr); }
    .svb-reason-grid      { grid-template-columns: repeat(3, 1fr); }
    .svb-form-row-2       { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .svb-form-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 64px; }
}

/* ── Responsive: mobile (max 639px) ──────────────────────────── */
@media (max-width: 639px) {
    .svb-hero             { padding: 48px 0 52px; }
    .svb-section-muted,
    .svb-section-white    { padding: 48px 0; }
    .svb-form-section     { padding: 48px 0; }
    .svb-cta-banner       { padding: 52px 0; }
    .svb-form-card        { padding: 24px 18px !important; }
    .svb-steps-grid       { gap: 14px; }
    .svb-cat-grid         { gap: 12px; }
    .svb-reason-grid      { gap: 16px; }
}


/* ================================================================
   31. SUBMIT SOURCING REQUEST PAGE — /submit-inquiry
   ================================================================ */

/* ── Page wrapper ─────────────────────────────────────────────── */
.svs-page {
    background: #F8FAFF;
    padding: 56px 0 80px;
    min-height: 70vh;
}

/* ── Two-column layout ────────────────────────────────────────── */
.svs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
/* Mobile: form column appears first */
.svs-form-col { order: -1; }

/* Desktop: 60/40 grid, restore order, sticky form */
@media (min-width: 768px) {
    .svs-layout   { grid-template-columns: 3fr 2fr; gap: 56px; }
    .svs-form-col { order: 0; }
    .svs-form-sticky { position: sticky; top: 108px; }
}

/* ── Content column ───────────────────────────────────────────── */
.svs-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #060821;
    line-height: 1.2;
    margin: 16px 0 14px;
    letter-spacing: -0.01em;
}
.svs-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333333;
    line-height: 1.75;
    margin: 0 0 32px;
}

/* ── Trust bullets ────────────────────────────────────────────── */
.svs-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.svs-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    color: #333333;
    line-height: 1.4;
}
.svs-trust-dot {
    width: 30px; height: 30px; border-radius: 50%;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #1E3A8A;
}

/* ── What Happens Next ────────────────────────────────────────── */
.svs-next-block {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 24px 24px 16px;
    margin-bottom: 24px;
}
.svs-next-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 18px;
}
.svs-steps-list {
    display: flex;
    flex-direction: column;
}
.svs-step-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #F4F4F8;
}
.svs-step-row:last-child { border-bottom: none; padding-bottom: 8px; }
.svs-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: #1E3A8A; color: white;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.svs-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; font-weight: 600;
    color: #060821;
    margin: 0 0 2px;
}
.svs-step-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ── 24-hr note ───────────────────────────────────────────────── */
.svs-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 13px 16px;
}
.svs-note-icon { font-size: 1.1rem; flex-shrink: 0; }
.svs-note-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #1E3A8A;
    font-weight: 500;
    margin: 0;
}

/* ── Form card ────────────────────────────────────────────────── */
.svs-form-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(30,58,138,0.08);
}
.svs-form-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1875rem; font-weight: 700;
    color: #060821;
    margin: 0 0 4px;
}
.svs-form-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 24px;
}
.svs-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.svs-form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.svs-section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 2px;
}
.svs-divider-line {
    flex: 1; height: 1px;
    background: #F0F0F0;
}
.svs-divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem; font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.svs-upload-label {
    display: block;
    cursor: pointer;
}
.svs-upload-area {
    border: 2px dashed #E0E0E0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}
.svs-upload-label:hover .svs-upload-area {
    border-color: #BFDBFE;
    background: #F8FAFF;
}
.svs-upload-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    color: #1E3A8A;
}
.svs-upload-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}
.svs-upload-hint {
    font-family: 'Roboto', sans-serif;
    font-size: 0.6875rem;
    color: #9ca3af;
    margin: 4px 0 0;
}
.svs-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9375rem;
}
.svs-form-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}
.svs-form-trust-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #9ca3af;
}
.svs-required { color: #FF822B; }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.svs-breadcrumb-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem; font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}
.svs-breadcrumb-link:hover { color: #1E3A8A; }
.svs-breadcrumb-sep { color: #d1d5db; flex-shrink: 0; }
.svs-breadcrumb-current {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem; font-weight: 600;
    color: #1E3A8A;
}

/* ── Success flash message ────────────────────────────────────── */
.svs-success-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #15803d;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ── Responsive: mobile ───────────────────────────────────────── */
@media (max-width: 767px) {
    .svs-page        { padding: 32px 0 60px; }
    .svs-form-card   { padding: 24px 18px; }
    .svs-form-2col   { grid-template-columns: 1fr; }
    .svs-next-block  { padding: 20px 18px 12px; }
}


/* ================================================================
   32. BECOME A SUPPLIER PAGE — /register-supplier
   ================================================================ */

/* ── Who Can Join grid ────────────────────────────────────────── */
.svsp-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}
.svsp-who-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.svsp-who-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 16px rgba(30,58,138,0.07);
}
.svsp-who-icon {
    font-size: 1.625rem;
    display: block;
    margin-bottom: 8px;
}
.svsp-who-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #060821;
    margin: 0;
}
.svsp-who-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #6b7280;
    margin: 3px 0 0;
}

/* ── Manufacturer-only notice ─────────────────────────────────── */
.svsp-mfr-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 32px;
}
.svsp-mfr-note-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.svsp-mfr-note-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #92400e;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* ── Trust block ──────────────────────────────────────────────── */
.svsp-trust-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.svsp-trust-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 14px 16px;
    transition: border-color 0.2s;
}
.svsp-trust-card:hover { border-color: #BFDBFE; }
.svsp-trust-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #1E3A8A;
}
.svsp-trust-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    color: #060821;
    margin: 0 0 3px;
}
.svsp-trust-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive: mobile ───────────────────────────────────────── */
@media (max-width: 767px) {
    .svsp-who-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .svsp-who-card { padding: 14px 8px; }
    .svsp-who-label { font-size: 0.75rem; }
}


/* ================================================================
   33. CONTACT PAGE — /contact
   ================================================================ */

/* ── Contact info cards ───────────────────────────────────────── */
.svc-info-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.svc-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.svc-info-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 16px rgba(30,58,138,0.07);
}
.svc-info-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #1E3A8A;
}
.svc-info-icon-orange { background: #FFF0E6; color: #FF822B; }
.svc-info-icon-green  { background: #F0FDF4; color: #16a34a; }
.svc-info-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.6875rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 3px;
}
.svc-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #060821;
    margin: 0;
}
.svc-info-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1E3A8A;
    margin: 0;
    text-decoration: none;
}
.svc-info-link:hover { color: #FF822B; }

/* ── When to contact grid ─────────────────────────────────────── */
.svc-when-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}
.svc-when-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}
.svc-when-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 16px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-when-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 12px rgba(30,58,138,0.06);
}
.svc-when-icon {
    font-size: 1.375rem;
    display: block;
    margin-bottom: 8px;
}
.svc-when-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #060821;
    margin: 0 0 4px;
}
.svc-when-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    .svc-when-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .svc-when-card { padding: 14px 12px; }
}


/* ================================================================
   34. WHY SOURCE FROM INDIA — /why-source-from-india
   ================================================================ */

/* ── Hero — light theme matching home page ────────────────────── */
.svw-hero {
    background: #ffffff;
    padding: 64px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.svw-hero-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(30,58,138,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.svw-hero-blob-1 {
    position: absolute; top: -60px; right: -60px;
    width: 480px; height: 480px; border-radius: 50%;
    background: rgba(44,82,190,0.06); filter: blur(100px);
    pointer-events: none;
}
.svw-hero-blob-2 {
    position: absolute; bottom: -40px; left: -40px;
    width: 360px; height: 360px; border-radius: 50%;
    background: rgba(255,130,43,0.05); filter: blur(90px);
    pointer-events: none;
}
.svw-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #060821;
    line-height: 1.15;
    margin: 0 auto 18px;
    max-width: 780px;
}
.svw-hero-title-accent { color: #FF822B; }
.svw-hero-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    color: #333333;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.svw-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 680px;
    margin: 0 auto;
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.svw-hero-stat {
    padding: 22px 16px;
    border-right: 1px solid #BFDBFE;
}
.svw-hero-stat:last-child { border-right: none; }
.svw-hero-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #FF822B;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}
.svw-hero-stat-lbl {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #4b5563;
}

/* ── Generic section wrappers ─────────────────────────────────── */
.svw-section       { padding: 72px 0; background: white; }
.svw-section-alt   { padding: 72px 0; background: #F8FAFF; }
.svw-section-warm  { padding: 72px 0; background: #FFF7ED; }

/* ── Section labels / headings ────────────────────────────────── */
.svw-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #2C52BE;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}
.svw-eyebrow-warm { color: #C05621; }
.svw-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    font-weight: 800;
    color: #060821;
    line-height: 1.2;
    margin: 0 0 14px;
}
.svw-title-accent { color: #FF822B; }
.svw-lead {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 44px;
    max-width: 620px;
}
.svw-lead-center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.svw-header-center { text-align: center; }

/* ── Intro stat panels ────────────────────────────────────────── */
.svw-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px;
}
.svw-intro-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 26px 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.svw-intro-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 6px 24px rgba(30,58,138,0.08);
}
.svw-intro-num {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1E3A8A;
    display: block;
    margin-bottom: 5px;
}
.svw-intro-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #060821;
    margin: 0 0 4px;
}
.svw-intro-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ── Advantages grid ──────────────────────────────────────────── */
.svw-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.svw-adv-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svw-adv-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 8px 32px rgba(30,58,138,0.09);
    transform: translateY(-3px);
}
.svw-adv-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.375rem;
}
.svw-adv-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #060821;
    margin: 0 0 8px;
}
.svw-adv-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.65;
}

/* ── Manufacturing hubs — tab filter system ───────────────────── */
.svw-hub-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 28px;
    margin-top: 12px;
}
.svw-hub-tabs-wrap::-webkit-scrollbar { display: none; }
.svw-hub-tabs {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    padding-bottom: 2px;
}
.svw-hub-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1.5px solid #E8E8E8;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.svw-hub-tab:hover {
    border-color: #BFDBFE;
    color: #1E3A8A;
    background: #EEF2FF;
}
.svw-hub-tab.active {
    background: #1E3A8A;
    border-color: #1E3A8A;
    color: white;
}
.svw-hub-tab-icon { font-size: 0.9375rem; }

/* ── Hub panels ───────────────────────────────────────────────── */
.svw-hub-panel { display: none; }
.svw-hub-panel.active { display: block; }
.svw-hub-panel-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0 0 20px;
    line-height: 1.65;
    max-width: 680px;
}
.svw-hub-city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.svw-hub-city-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 18px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.svw-hub-city-card:hover {
    border-color: #FF822B;
    box-shadow: 0 4px 16px rgba(255,130,43,0.1);
}
.svw-hub-city-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}
.svw-hub-city-pin {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #FF822B;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
}
.svw-hub-city-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #060821;
    margin: 0;
}
.svw-hub-city-state {
    font-family: 'Roboto', sans-serif;
    font-size: 0.6875rem;
    color: #9ca3af;
    font-weight: 500;
    margin: 0 0 10px;
}
.svw-hub-city-products {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.svw-hub-city-tag {
    display: inline-block;
    background: #EEF2FF;
    color: #2C52BE;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 50px;
}

/* ── Challenge cards ──────────────────────────────────────────── */
.svw-challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 44px;
}
.svw-challenge-card {
    background: white;
    border: 1px solid #FED7AA;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.svw-challenge-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #FFF0E6;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}
.svw-challenge-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 5px;
}
.svw-challenge-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

/* ── How SourceVeda helps ─────────────────────────────────────── */
.svw-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 44px;
}
.svw-help-card {
    background: white;
    border: 1px solid #BFDBFE;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.svw-help-card:hover {
    box-shadow: 0 6px 24px rgba(30,58,138,0.09);
}
.svw-help-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #1E3A8A;
}
.svw-help-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #060821;
    margin: 0 0 5px;
}
.svw-help-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* ── CTA band — light blue theme matching home page ───────────── */
.svw-cta {
    background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
    border-top: 1px solid #BFDBFE;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.svw-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #060821;
    margin: 0 0 14px;
    line-height: 1.2;
}
.svw-cta-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    margin: 0 auto 36px;
    max-width: 480px;
    line-height: 1.7;
}
.svw-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── FAQ accordion ────────────────────────────────────────────── */
.svw-faq-list {
    max-width: 760px;
    margin: 44px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.svw-faq-item {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.svw-faq-item.open { border-color: #BFDBFE; }
.svw-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}
.svw-faq-q {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #060821;
    margin: 0;
}
.svw-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: #1E3A8A;
}
.svw-faq-item.open .svw-faq-chevron { transform: rotate(180deg); }
.svw-faq-a {
    display: none;
    padding: 14px 22px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #F0F4FF;
}
.svw-faq-item.open .svw-faq-a { display: block; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .svw-adv-grid         { grid-template-columns: 1fr 1fr; }
    .svw-hub-city-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .svw-section, .svw-section-alt, .svw-section-warm { padding: 52px 0; }
    .svw-hero             { padding: 48px 0 0; }
    .svw-hero-stats       { grid-template-columns: repeat(3, 1fr); }
    .svw-hero-stat-val    { font-size: 1.375rem; }
    .svw-intro-grid       { grid-template-columns: 1fr; gap: 10px; }
    .svw-adv-grid         { grid-template-columns: 1fr 1fr; gap: 10px; }
    .svw-hub-city-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
    .svw-challenge-grid   { grid-template-columns: 1fr; }
    .svw-help-grid        { grid-template-columns: 1fr; }
    .svw-cta-btns         { flex-direction: column; align-items: center; }
}
@media (max-width: 479px) {
    .svw-hub-city-grid    { grid-template-columns: 1fr 1fr; }
    .svw-adv-grid         { grid-template-columns: 1fr; }
}

/* ── Section 35: Custom Flag Country Dropdown ─────────────────────────────── */
.sv2-flag-select            { position: relative; }
.sv2-flag-trigger           { display: flex; align-items: center; gap: 8px; width: 100%; padding: 10px 14px; background: #fff; border: 1.5px solid #BFDBFE; border-radius: 10px; cursor: pointer; font-size: 0.9rem; color: #060821; transition: border-color .2s, box-shadow .2s; user-select: none; }
.sv2-flag-trigger:hover     { border-color: #1E3A8A; }
.sv2-flag-trigger.open      { border-color: #1E3A8A; box-shadow: 0 0 0 3px rgba(30,58,138,.1); }
.sv2-flag-trigger.invalid   { border-color: #ef4444; }
.sv2-flag-trigger-label     { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv2-flag-trigger-placeholder { color: #9ca3af; }
.sv2-flag-trigger-arrow     { margin-left: auto; color: #6b7280; transition: transform .2s; flex-shrink: 0; }
.sv2-flag-trigger.open .sv2-flag-trigger-arrow { transform: rotate(180deg); }
.sv2-flag-dropdown          { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1.5px solid #BFDBFE; border-radius: 10px; box-shadow: 0 8px 24px rgba(30,58,138,.12); z-index: 200; max-height: 240px; overflow-y: auto; display: none; }
.sv2-flag-dropdown.open     { display: block; }
.sv2-flag-option            { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; font-size: 0.9rem; color: #060821; transition: background .15s; }
.sv2-flag-option:hover      { background: #EEF2FF; }
.sv2-flag-option.selected   { background: #EEF2FF; font-weight: 600; color: #1E3A8A; }
.sv2-flag-option:first-child { border-radius: 8px 8px 0 0; }
.sv2-flag-option:last-child  { border-radius: 0 0 8px 8px; }
.sv2-flag-icon              { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.sv2-flag-icon-globe        { width: 22px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* ── Section 36: Buyer Form — AJAX feedback messages ─────────────────────── */
.sv2-form-feedback              { display:none; border-radius:12px; padding:14px 16px; font-size:0.875rem; font-weight:500; line-height:1.5; margin-bottom:4px; opacity:1; transition:opacity .5s ease; }
.sv2-form-feedback.sv2-fade-out { opacity:0; }
.sv2-form-feedback.success      { display:flex; align-items:center; gap:12px; background:linear-gradient(135deg,#f0fdf4,#dcfce7); border:1.5px solid #86efac; color:#166534; box-shadow:0 2px 12px rgba(34,197,94,.12); }
.sv2-form-feedback.error        { display:flex; align-items:center; gap:12px; background:linear-gradient(135deg,#fef2f2,#fee2e2); border:1.5px solid #fca5a5; color:#991b1b; box-shadow:0 2px 12px rgba(239,68,68,.12); }
.sv2-form-feedback svg          { flex-shrink:0; }
.sv2-form-feedback span         { flex:1; }
@keyframes sv2feedIn            { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.sv2-form-feedback.success,
.sv2-form-feedback.error        { animation:sv2feedIn .3s ease; }
.sv2-submit-spinner             { display:none; width:16px; height:16px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation:sv2spin .7s linear infinite; flex-shrink:0; }
@keyframes sv2spin               { to { transform:rotate(360deg); } }

/* ── Section 37: Numeric Captcha ─────────────────────────────────────────── */
.sv2-captcha-wrap       { display:flex; align-items:center; gap:12px; }
.sv2-captcha-question   { display:inline-flex; align-items:center; justify-content:center; min-width:110px; padding:10px 16px; background:linear-gradient(135deg,#EEF2FF,#DBEAFE); border:1.5px solid #BFDBFE; border-radius:10px; font-family:'Inter',sans-serif; font-size:1rem; font-weight:700; color:#1E3A8A; letter-spacing:0.04em; flex-shrink:0; user-select:none; }
.sv2-captcha-input      { flex:1; min-width:0; }
.sv2-captcha-refresh    { width:34px; height:34px; border:1.5px solid #BFDBFE; border-radius:8px; background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; color:#6b7280; flex-shrink:0; transition:border-color .2s,color .2s; padding:0; }
.sv2-captcha-refresh:hover { border-color:#1E3A8A; color:#1E3A8A; }


/* ── Section 38: GDPR Cookie Consent Banner ──────────────────────────────── */
#sv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #160800 0%, #1e0c00 100%);
    border-top: 2px solid #E8650A;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    animation: svCookieSlideUp 0.35s ease-out;
}
@keyframes svCookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
.sv-cookie-text {
    flex: 1;
    min-width: 260px;
    color: #d0c4b8;
    font-size: 0.85rem;
    line-height: 1.6;
}
.sv-cookie-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.sv-cookie-text a {
    color: #E8650A;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sv-cookie-text a:hover { color: #ff7a1f; }
.sv-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.sv-cookie-btn {
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.sv-cookie-btn-accept {
    background: #E8650A;
    color: #fff;
    border-color: #E8650A;
}
.sv-cookie-btn-accept:hover {
    background: #ff7a1f;
    border-color: #ff7a1f;
}
.sv-cookie-btn-essential {
    background: transparent;
    color: #d0c4b8;
    border-color: rgba(208,196,184,0.35);
}
.sv-cookie-btn-essential:hover {
    border-color: #d0c4b8;
    color: #fff;
}
.sv-cookie-banner-hidden {
    display: none !important;
}
@media (max-width: 600px) {
    #sv-cookie-banner { flex-direction: column; align-items: flex-start; }
    .sv-cookie-actions { width: 100%; }
    .sv-cookie-btn { flex: 1; text-align: center; }
}

