/* ============================================================
   CSS VARIABLES — Light Red, Light Blue & White
   ============================================================ */
:root {
    --bg-primary: #fdf6f5;
    --bg-secondary: #f8eeed;
    --bg-card: #ffffff;
    --bg-card-hover: #fdf6f5;
    --bg-hero: #fdf6f5;
    --bg-footer: #fdf6f5;

    --text-primary: #2c1815;
    --text-secondary: #5a3d38;
    --text-muted: #8a6b65;

    --light-red: #f8d7da;
    --light-red-hover: #f1c0c5;
    --light-blue: #d4edf5;
    --light-blue-hover: #b8dde8;
    --smooth-white: #ffffff;

    --gold: #e8a87c;
    --gold-dark: #d4895e;
    --gold-light: #f5d4b8;
    --gold-gradient: linear-gradient(135deg, #f5d4b8, #e8a87c);

    --blue: #6bb5d9;
    --blue-dark: #4a9bc2;

    --border-color: rgba(44, 24, 21, 0.06);
    --border-gold: rgba(232, 168, 124, 0.25);

    --shadow-sm: 0 2px 8px rgba(44, 24, 21, 0.04);
    --shadow-md: 0 8px 32px rgba(44, 24, 21, 0.06);
    --shadow-lg: 0 20px 60px rgba(44, 24, 21, 0.08);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --section-padding: 100px 0;

    --nav-bg: rgba(253, 246, 245, 0.78);
    --nav-bg-scrolled: rgba(253, 246, 245, 0.92);
    --nav-border: rgba(44, 24, 21, 0.04);
}

[data-theme="dark"] {
    --bg-primary: #1a0e0c;
    --bg-secondary: #2c1815;
    --bg-card: #3d2420;
    --bg-card-hover: #4d302b;
    --bg-hero: #1a0e0c;
    --bg-footer: #1a0e0c;

    --text-primary: #fdf6f5;
    --text-secondary: #e8d4d0;
    --text-muted: #b89a94;

    --light-red: #5a3d38;
    --light-red-hover: #6d4d47;
    --light-blue: #3d5a63;
    --light-blue-hover: #4d6d78;
    --smooth-white: #2c1815;

    --gold: #e8a87c;
    --gold-dark: #d4895e;
    --gold-light: #f5d4b8;
    --gold-gradient: linear-gradient(135deg, #f5d4b8, #e8a87c);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(232, 168, 124, 0.2);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);

    --nav-bg: rgba(26, 14, 12, 0.78);
    --nav-bg-scrolled: rgba(26, 14, 12, 0.92);
    --nav-border: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(232, 168, 124, 0.12);
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid rgba(232, 168, 124, 0.15);
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.section-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition) ease;
    font-family: inherit;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #2c1815;
    box-shadow: 0 4px 20px rgba(232, 168, 124, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(232, 168, 124, 0.3);
}

.btn-secondary {
    background: var(--light-blue);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: var(--light-blue-hover);
    transform: translateY(-3px);
}

.btn-indiamart {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
}
.btn-indiamart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
}

.btn-justdial {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
}
.btn-justdial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.3);
}

.btn-google {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
}
.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(44, 24, 21, 0.06);
    border-radius: var(--radius);
    transition: all var(--transition) ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   FLOATING NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 999;
    background: var(--nav-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--nav-border);
    border-radius: 60px;
    padding: 0 28px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
    top: 12px;
    width: 96%;
    background: var(--nav-bg-scrolled);
    border-radius: 40px;
    box-shadow: var(--shadow-md);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    height: 100%;
}

/* Logo — text with image placeholder */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    height: 100%;
}
.nav-logo .logo-img {
    display: none;
    height: 44px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}
.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav-logo .logo-text .brand {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}
.nav-logo .logo-text .brand span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo .logo-text .tag {
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 20px;
}
.nav-links>li {
    position: relative;
}
.nav-links>li>a {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 40px;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
}
.nav-links>li>a:hover {
    color: var(--text-primary);
    background: rgba(44, 24, 21, 0.04);
}
.nav-links>li>a.active {
    color: var(--gold-dark);
    background: rgba(232, 168, 124, 0.08);
}
.nav-links>li>a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 4px;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.dropdown-menu a:hover {
    background: rgba(44, 24, 21, 0.02);
    color: var(--text-primary);
    border-color: var(--border-gold);
}
.dropdown-menu a i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 168, 124, 0.06);
    border-radius: 10px;
    color: var(--gold-dark);
    font-size: 1rem;
}
.dropdown-menu a .d-text {
    display: flex;
    flex-direction: column;
}
.dropdown-menu a .d-text strong {
    font-weight: 600;
    color: var(--text-primary);
}
.dropdown-menu a .d-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-actions .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-actions .nav-cta .btn {
    padding: 8px 16px;
    font-size: 0.7rem;
    border-radius: 8px;
    font-weight: 600;
}

.theme-toggle {
    background: rgba(44, 24, 21, 0.04);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: rgba(44, 24, 21, 0.08);
    color: var(--text-primary);
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: transparent;
    padding: 100px 24px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu-card {
    background: var(--bg-card 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px 32px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu-overlay.open .mobile-menu-card {
    transform: scale(1) translateY(0);
}
.mobile-menu-card .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mobile-menu-card .mobile-nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    padding: 10px 20px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
}
.mobile-menu-card .mobile-nav-links a:hover,
.mobile-menu-card .mobile-nav-links a.active {
    color: var(--gold-dark);
    background: rgba(232, 168, 124, 0.06);
}
.mobile-menu-card .mobile-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 16px 0 18px;
}
.mobile-menu-card .mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.mobile-menu-card .mobile-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
}
.mobile-menu-card .mobile-footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 20px;
    letter-spacing: 0.04em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 160px 0 100px;
    background: var(--bg-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(232, 168, 124, 0.06), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(107, 181, 217, 0.04), transparent 50%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.hero-content h1 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.hero-stats .stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.hero-stats .stat h3 .gold {
    color: var(--gold-dark);
}
.hero-stats .stat p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual .hero-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(44, 24, 21, 0.06);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-md);
}
.hero-visual .hero-card .icon-wrap {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero-visual .hero-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.hero-visual .hero-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--bg-secondary);
    padding: 44px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item i {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
    opacity: 0.8;
}
.trust-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
    padding: var(--section-padding);
    background: var(--bg-primary);
}
.products-header {
    text-align: center;
    margin-bottom: 56px;
}
.products-header .section-desc {
    margin: 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    border: 1px solid var(--border-color);
    transition: all var(--transition) ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(232, 168, 124, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition) ease;
}
.product-card:hover::before {
    opacity: 1;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}
.product-card .icon-wrap {
    font-size: 2.6rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(232, 168, 124, 0.06);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(232, 168, 124, 0.06);
    transition: all var(--transition) ease;
}
.product-card:hover .icon-wrap {
    background: rgba(232, 168, 124, 0.12);
    transform: scale(1.05);
}
.product-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.product-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.product-card .product-link {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}
.product-card .product-link:hover {
    gap: 12px;
}
.product-card .badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: #2c1815;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 100px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.features-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition) ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.features-grid li:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}
.features-grid li i {
    color: var(--gold-dark);
    font-size: 1rem;
    width: 20px;
}

/* ============================================================
   SPECIFICATIONS GRID
   ============================================================ */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.spec-card {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition) ease;
}
.spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}
.spec-card h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.spec-card .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.spec-card .value small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================================
   APPLICATIONS GRID
   ============================================================ */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.apps-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition) ease;
}
.apps-grid li:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}
.apps-grid li i {
    color: var(--gold-dark);
    font-size: 0.8rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.why-item {
    background: var(--bg-card);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition) ease;
    text-align: center;
}
.why-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}
.why-item .icon-wrap {
    font-size: 2rem;
    color: var(--gold-dark);
    background: rgba(232, 168, 124, 0.06);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 16px;
    border: 1px solid rgba(232, 168, 124, 0.06);
    transition: all var(--transition) ease;
}
.why-item:hover .icon-wrap {
    background: rgba(232, 168, 124, 0.12);
    transform: scale(1.05);
}
.why-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   B2B INTEGRATION
   ============================================================ */
.b2b-integration {
    padding: var(--section-padding);
    background: var(--bg-primary);
}
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 40px auto 0;
}
.b2b-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition) ease;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.b2b-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition) ease;
}
.b2b-card.google::before {
    background: radial-gradient(circle at 30% 20%, rgba(66, 133, 244, 0.06), transparent 70%);
}
.b2b-card.indiamart::before {
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.06), transparent 70%);
}
.b2b-card.justdial::before {
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.06), transparent 70%);
}
.b2b-card:hover::before {
    opacity: 1;
}
.b2b-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.b2b-card .icon-big {
    font-size: 3rem;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.b2b-card.google .icon-big {
    color: #4285f4;
}
.b2b-card.indiamart .icon-big {
    color: #f97316;
}
.b2b-card.justdial .icon-big {
    color: #0ea5e9;
}
.b2b-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}
.b2b-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 6px 0 16px;
    position: relative;
    z-index: 1;
}
.b2b-card .btn {
    font-size: 0.75rem;
    padding: 10px 24px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
.b2b-card .badge-trust {
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 10px;
    border: 1px solid rgba(34, 197, 94, 0.08);
    position: relative;
    z-index: 1;
}
.b2b-card.google .btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
}
.b2b-card.google .btn:hover {
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
}
.b2b-card.indiamart .btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}
.b2b-card.indiamart .btn:hover {
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}
.b2b-card.justdial .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
}
.b2b-card.justdial .btn:hover {
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}
.b2b-card .stars-row {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}
.b2b-card .stars-row i {
    color: var(--gold);
    margin: 0 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition) ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}
.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .client .initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 168, 124, 0.06);
    border: 1px solid rgba(232, 168, 124, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.85rem;
}
.testimonial-card .client .name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}
.testimonial-card .client .company {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--bg-hero);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.cta-banner .cta-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.cta-banner .cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT FORM (Contact Page)
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 48px;
}
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}
.contact-form-wrapper h4 .highlight {
    color: var(--gold-dark);
}
.contact-form-wrapper .sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.form-group label i {
    color: var(--gold-dark);
    width: 18px;
    opacity: 0.7;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all 0.25s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(232, 168, 124, 0.10);
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 8px;
}
.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Info Cards */
.info-card {
    background: var(--bg-card);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition) ease;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
.info-card:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.info-card .icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(232, 168, 124, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(232, 168, 124, 0.06);
}
.info-card .info-text h5 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.info-card .info-text p,
.info-card .info-text a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.info-card .info-text a:hover {
    color: var(--gold-dark);
}

/* Directors Section */
.about-directors {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.director-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 40px auto 0;
}
.director-card {
    background: var(--bg-card);
    padding: 32px 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition) ease;
}
.director-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}
.director-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--gold-dark);
    overflow: hidden;
}
.director-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.director-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.director-card .role {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
}
.director-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}

/* ============================================================
   TOAST (for form feedback only)
   ============================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 16px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.toast.success i {
    color: #22c55e;
}
.toast.error i {
    color: #ef4444;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-footer);
    color: var(--text-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.footer-brand .nav-logo {
    margin-bottom: 12px;
    height: auto;
}
.footer-brand .nav-logo .logo-text .brand {
    color: var(--text-primary);
}
.footer-brand .nav-logo .logo-text .brand span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand .nav-logo .logo-text .tag {
    color: var(--text-muted);
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
    color: var(--text-muted);
}
.footer h5 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.footer ul li a:hover {
    color: var(--gold-dark);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(44, 24, 21, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: rgba(232, 168, 124, 0.1);
    color: var(--gold-dark);
    border-color: var(--border-gold);
    transform: translateY(-3px);
}
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: var(--gold-dark);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablets & small laptops --- */
@media (max-width: 1024px) {
    .navbar {
        top: 16px;
        padding: 0 20px;
        height: 66px;
        border-radius: 40px;
    }
    .navbar.scrolled {
        top: 8px;
    }
    .nav-links {
        gap: 2px;
    }
    .nav-links>li>a {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    .nav-actions .nav-cta .btn {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    .nav-logo .logo-text .brand {
        font-size: 1rem;
    }
    .nav-logo .logo-img {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual .hero-card {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .director-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: 94%;
        padding: 0 16px;
        height: 60px;
        border-radius: 40px;
    }
    .navbar.scrolled {
        top: 8px;
        width: 96%;
    }

    .nav-links {
        display: none;
    }
    .nav-actions .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu-overlay {
        display: flex;
    }

    .nav-logo .logo-text .brand {
        font-size: 0.9rem;
    }
    .nav-logo .logo-text .tag {
        font-size: 0.4rem;
    }

    .hero {
        padding: 140px 0 70px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stats .stat h3 {
        font-size: 1.6rem;
    }
    .hero-visual .hero-card {
        padding: 28px 24px;
    }

    .section-title {
        font-size: 2rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .product-card {
        padding: 20px 16px;
    }
    .product-card .icon-wrap {
        font-size: 2rem;
        padding: 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .trust-item i {
        font-size: 1.4rem;
    }
    .trust-item h4 {
        font-size: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
    .apps-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .b2b-card {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .cta-banner .cta-content h2 {
        font-size: 2rem;
    }
    .cta-banner .cta-content p {
        font-size: 1rem;
    }

    .mobile-menu-card {
        padding: 32px 24px 28px;
        max-width: 380px;
        background: transparent;
    }
    .mobile-menu-card .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
    .mobile-menu-card .mobile-ctas .btn {
        padding: 12px;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .director-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .info-card {
        padding: 18px 20px;
    }
    .contact-form-wrapper {
        padding: 24px 18px;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .navbar {
        height: 54px;
        top: 8px;
        padding: 0 12px;
    }
    .nav-logo .logo-text .brand {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .b2b-card .icon-big {
        font-size: 2.6rem;
    }
    .b2b-card h4 {
        font-size: 1.1rem;
    }

    .mobile-menu-card {
        padding: 24px 20px 24px;
        max-width: 340px;
        border-radius: 24px;
    }
    .mobile-menu-card .mobile-nav-links a {
        font-size: 1rem;
        padding: 8px 12px;
    }
}

/* ============================================================
   DARK THEME OVERRIDES
   ============================================================ */
[data-theme="dark"] .navbar {
    background: var(--nav-bg);
    border-color: var(--nav-border);
}
[data-theme="dark"] .navbar.scrolled {
    background: var(--nav-bg-scrolled);
}
[data-theme="dark"] .nav-links>li>a {
    color: var(--text-secondary);
}
[data-theme="dark"] .nav-links>li>a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .nav-links>li>a.active {
    color: var(--gold);
    background: rgba(232, 168, 124, 0.08);
}
[data-theme="dark"] .nav-dropdown .dropdown-menu {
    background: var(--bg-card);
    border-color: var(--border-color);
}
[data-theme="dark"] .dropdown-menu a {
    color: var(--text-secondary);
}
[data-theme="dark"] .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}
[data-theme="dark"] .dropdown-menu a .d-text strong {
    color: var(--text-primary);
}
[data-theme="dark"] .dropdown-menu a .d-text small {
    color: var(--text-muted);
}
[data-theme="dark"] .hero {
    background: var(--bg-hero);
}
[data-theme="dark"] .hero-content h1 {
    color: var(--text-primary);
}
[data-theme="dark"] .hero-content p {
    color: var(--text-secondary);
}
[data-theme="dark"] .hero-stats .stat h3 {
    color: var(--text-primary);
}
[data-theme="dark"] .hero-stats .stat p {
    color: var(--text-muted);
}
[data-theme="dark"] .hero-visual .hero-card {
    background: rgba(255, 255, 255, 0.02);
}
[data-theme="dark"] .hero-visual .hero-card h4 {
    color: var(--text-primary);
}
[data-theme="dark"] .hero-visual .hero-card p {
    color: var(--text-muted);
}
[data-theme="dark"] .btn-secondary {
    background: var(--light-blue);
    color: var(--text-primary);
}
[data-theme="dark"] .btn-secondary:hover {
    background: var(--light-blue-hover);
}
[data-theme="dark"] .theme-toggle {
    color: var(--text-secondary);
    border-color: var(--border-color);
}
[data-theme="dark"] .theme-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .hamburger span {
    background: var(--text-primary);
}
[data-theme="dark"] .mobile-menu-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}
[data-theme="dark"] .mobile-menu-card .mobile-nav-links a {
    color: var(--text-secondary);
}
[data-theme="dark"] .mobile-menu-card .mobile-nav-links a:hover,
[data-theme="dark"] .mobile-menu-card .mobile-nav-links a.active {
    color: var(--gold);
    background: rgba(232, 168, 124, 0.06);
}
[data-theme="dark"] .mobile-menu-card .mobile-footer-text {
    color: var(--text-muted);
}
[data-theme="dark"] .footer {
    background: var(--bg-footer);
}
[data-theme="dark"] .footer h5 {
    color: var(--text-primary);
}
[data-theme="dark"] .footer-brand .nav-logo .logo-text .brand {
    color: var(--text-primary);
}
[data-theme="dark"] .footer-brand p {
    color: var(--text-muted);
}
[data-theme="dark"] .footer ul li a {
    color: var(--text-muted);
}
[data-theme="dark"] .footer ul li a:hover {
    color: var(--gold);
}
[data-theme="dark"] .footer-social a {
    color: var(--text-muted);
    border-color: var(--border-color);
}
[data-theme="dark"] .footer-social a:hover {
    color: var(--gold);
    border-color: var(--border-gold);
}
[data-theme="dark"] .footer-bottom {
    color: var(--text-muted);
}
[data-theme="dark"] .footer-bottom a {
    color: var(--text-muted);
}
[data-theme="dark"] .footer-bottom a:hover {
    color: var(--gold);
}
[data-theme="dark"] .cta-banner {
    background: var(--bg-hero);
}
[data-theme="dark"] .cta-banner .cta-content h2 {
    color: var(--text-primary);
}
[data-theme="dark"] .cta-banner .cta-content p {
    color: var(--text-secondary);
}
[data-theme="dark"] .contact-form-wrapper {
    background: var(--bg-card);
}
[data-theme="dark"] .info-card {
    background: var(--bg-card);
}
[data-theme="dark"] .director-card {
    background: var(--bg-card);
}
[data-theme="dark"] .spec-card {
    background: var(--bg-card);
}
[data-theme="dark"] .features-grid li {
    background: var(--bg-card);
}
[data-theme="dark"] .apps-grid li {
    background: var(--bg-card);
}
[data-theme="dark"] .why-item {
    background: var(--bg-card);
}
[data-theme="dark"] .why-item:hover {
    background: var(--bg-card-hover);
}
[data-theme="dark"] .b2b-card {
    background: var(--bg-card);
}
[data-theme="dark"] .toast {
    background: var(--bg-card);
    border-color: var(--border-color);
}