:root {
    --primary: #0f61a8;
    --primary-light: #5b9fd9;
    --primary-dark: #073d7a;
    --secondary: #00b4a6;
    --accent: #f57c00;
    --success: #059669;
    --danger: #dc2626;
    --warning: #f59e0b;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease-out;
    --font: "Manrope", sans-serif;
    --mono: "JetBrains Mono", monospace;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] {
    --bg: #f8f9fc;
    --bg2: #ffffff;
    --bg3: #f3f4f7;
    --surface: #ffffff;
    --surface2: #f8f9fc;
    --border: rgba(0, 0, 0, 0.08);
    --border2: rgba(0, 0, 0, 0.12);
    --text: #0f1419;
    --text2: #4a5568;
    --text3: #8b92a8;
}

[data-theme="dark"] {
    --bg: #090a0f;
    --bg2: #111219;
    --bg3: #191b26;
    --surface: #12131c;
    --surface2: #191b28;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(124, 58, 237, 0.28);
    --text: #f3f4f6;
    --text2: #cbd5e1;
    --text3: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-size: 70%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);

}

a {
    text-decoration: none;
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(15 18 25 / 78%);
    backdrop-filter: blur(12px);
    /* border-bottom: 1px solid var(--border); */
    transition: background var(--transition);
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.8);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

[dir="rtl"] .nav-links {
    gap: 32px;
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-nav-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
    transform: translateY(-2px);
}

.btn-nav-primary {
    background: linear-gradient(135deg, #0f61a8 0%, #7c3aed 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    padding: 8px 22px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(15, 97, 168, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
    color: #ffffff !important;
}

@media (max-width: 992px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    nav {
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 10px 20px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â HERO ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.hero {
    padding: 120px 50px 80px;
    /* max-width: 1400px; */
    margin: 0 auto;
    position: relative;
}

[data-theme="dark"] .hero {
    background-image: linear-gradient(to bottom right in oklab,
            color-mix(in oklab, lab(5 0.12 -5) 10%, transparent) 0%,
            color-mix(in oklab, lab(5 0.12 -5) 5%, transparent) 50%,
            lab(5 0.12 -5) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: linear-gradient(90deg,
            #7e22ce91 8%,
            #625aafae 31%,
            #7badbbbc 76%,
            #54d2d0ca 89%);
    opacity: 0.15;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

[data-theme="light"] .hero::before {
    opacity: 0.08;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-text p {
    font-size: 18px;
    color: var(--text2);
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

[data-theme="dark"] .hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.btn-hero {
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    margin-bottom: 5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 97, 168, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(15, 97, 168, 0.05);
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

.nav-theme-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(18, 19, 28, 0.75);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 30px;
    padding: 3px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.nav-theme-pill:hover {
    border-color: rgba(56, 189, 248, 0.5);
}

.nav-theme-pill button {
    padding: 5px 12px;
    font-size: 13px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-theme-pill button:hover {
    color: #f1f5f9;
}

.nav-theme-pill button.active {
    background: linear-gradient(135deg, #0f61a8 0%, #7c3aed 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
    font-weight: 700;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Hamburger (mobile) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
    .nav-hamburger {
        display: flex;
    }

    #navLinks.mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
        gap: 0;
        z-index: 99;
    }

    #navLinks.mobile a {
        display: block;
        padding: 10px 24px;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: radial-gradient(circle at 30% 50%,
            rgba(91, 159, 217, 0.15) 0%,
            transparent 50%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 80px;
    }

    .hero-image {
        height: 300px;
        display: none;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â SECTION ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
section {
    padding: 80px 32px;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation-delay: 0.2s;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text3);
    margin-bottom: 40px;
    font-size: 14px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â UTILITIES CARDS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.utilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.utility-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.utility-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(15, 97, 168, 0.15);
}

.utility-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.utility-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.utility-card p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.6;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â FEATURES ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-item:hover {
    background: var(--surface2);
    border-color: var(--border2);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg,
            rgba(15, 97, 168, 0.2),
            rgba(0, 180, 166, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.feature-text p {
    font-size: 12px;
    color: var(--text3);
    line-height: 1.5;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â STATS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--mono);
}

.stat-label {
    font-size: 12px;
    color: var(--text3);
    font-weight: 600;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â STEPS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.step-card p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.6;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â SHOWCASE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 4.5rem;
}

.showcase-image {
    height: 400px;
    background: var(--surface2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 1;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s ease-out;
}

[data-theme="dark"] .showcase-image {
    background: rgba(36, 43, 61, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(85 154 213 / 38%);
    background-image: linear-gradient(to bottom right in oklab,
            color-mix(in oklab, #3d87c6 10%, transparent) 0%,
            color-mix(in oklab, rgb(75 146 206) 5%, transparent) 50%,
            lab(21 -2.18 -28.2 / 0.27) 100%);
}

.showcase-image::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle,
            var(--primary) 0%,
            rgba(0, 0, 0, 0) 70%);
    opacity: 0.15;
    filter: blur(40px);
    z-index: -1;
}

.showcase-image img {
    transition: transform 0.5s ease-out;
}

.showcase:hover .showcase-image {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .showcase:hover .showcase-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.showcase-content p {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 32px;
    line-height: 1.8;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.showcase-content {
    position: relative;
}

.showcase-content:after {
    position: absolute;
    background: rgb(126, 34, 206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
    z-index: 2;
    height: 126px;
    width: 210px;
    top: 0;
    /* left: 0; */
    right: 120px;
    content: "";
    display: block;
    box-sizing: border-box;
    /* margin: 0 auto; */
}

.showcase-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.showcase-feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 12px rgba(15, 97, 168, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

.showcase-feature p {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 992px) {
    .showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-image {
        height: 300px;
    }

    .showcase-content h2 {
        font-size: 30px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â USECASES ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
}

.usecase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.usecase-item:hover {
    background: var(--surface2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.usecase-icon {
    font-size: 32px;
}

.usecase-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    text-align: center;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â CTA SECTION ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.cta-section {
    background: linear-gradient(135deg,
            rgba(15, 97, 168, 0.1),
            rgba(0, 180, 166, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.cta-section p {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â FAQ ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.faq-item:hover .faq-header {
    background: var(--surface2);
}

.faq-toggle {
    font-size: 14px;
    transition: transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    padding: 0 20px;
}

.faq-item.open .faq-content {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-text {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.6;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â CONTACT ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-input {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg3);
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 97, 168, 0.06);
}

.contact-info {
    background: linear-gradient(135deg,
            rgba(15, 97, 168, 0.1),
            rgba(0, 180, 166, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(15, 97, 168, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 18px;
}

.contact-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 12px;
    color: var(--text3);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 97, 168, 0.15);
    border: 1px solid rgba(15, 97, 168, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â FOOTER ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 32px 32px;
    background: var(--bg);
    color: var(--text3);
    font-size: 13px;
    text-align: left;
}

[dir="rtl"] .site-footer {
    text-align: right;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer-brand p {
    line-height: 1.6;
}

.site-footer-title {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.site-footer-link {
    display: block;
    color: var(--text2);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.site-footer-link:hover {
    color: var(--primary);
}

.site-footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (max-width: 992px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 20px 20px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-bottom {
        margin-top: 40px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â CONTROLS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */
.controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
}

.control-pill {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.control-pill button {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    background: none;
    color: var(--text3);
    cursor: pointer;
    transition: all var(--transition);
}

.control-pill button.active {
    background: var(--primary);
    color: white;
}

@media (max-width: 640px) {
    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 35px;
    }

    .showcase-image {
        height: 250px;
    }

    .contact-grid {
        gap: 24px;
    }
}

/* ==========================================================================
   OBSIDIAN GLASSMORPHIC HOME PAGE RE-DESIGN
   ========================================================================== */

/* Section Layout & Headers */
.section-container {
    padding: 90px 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.28);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 16px;
    color: var(--text2);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan {
    color: #38bdf8 !important;
}

/* Buttons */
.btn-glow-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f61a8 0%, #7c3aed 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(15, 97, 168, 0.35);
}

.btn-glow-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(124, 58, 237, 0.45);
    color: #ffffff;
}

.btn-glass-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 32px 90px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(6, 182, 212, 0.12) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(18, 19, 28, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.35);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(16px);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}

.hero-title {
    font-size: 58px;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text3);
    display: flex;
    align-items: center;
}

.hero-visual-card {
    position: relative;
    border-radius: 24px;
    padding: 24px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.visual-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), rgba(124, 58, 237, 0.15));
    filter: blur(20px);
    z-index: -1;
}

.hero-floating-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

/* Utilities Grid */
.utilities-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.utility-glass-card {
    position: relative;
    background: rgba(18, 19, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.utility-glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(56, 189, 248, 0.15);
}

.utility-glass-card:hover .card-glow-bg {
    opacity: 1;
}

.utility-3d-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.utility-glass-card:hover .utility-3d-img {
    transform: scale(1.08) translateY(-4px);
}

.utility-body h3 {
    font-size: 20px;
    font-weight: 750;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
}

.utility-body p {
    font-size: 14px;
    color: var(--text3);
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-action-link {
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-decoration: none;
    transition: all 0.25s ease;
}

.card-action-link:hover {
    color: #818cf8;
}

/* Feature Cards Grid */
.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-glass-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(18, 19, 28, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.feature-glass-box:hover {
    background: rgba(18, 19, 28, 0.8);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon-glow {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 97, 168, 0.25), rgba(124, 58, 237, 0.25));
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(15, 97, 168, 0.2);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.55;
    margin: 0;
}

/* Stats Glass Container */
.stats-glass-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 36px 40px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    gap: 24px;
}

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrap {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 38px;
    font-weight: 850;
    font-family: var(--mono);
    color: #38bdf8;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* Steps Grid */
.steps-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-glass-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: all 0.35s ease;
    text-align: center;
}

.step-glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.step-badge-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    font-weight: 900;
    font-family: var(--mono);
    color: rgba(255, 255, 255, 0.1);
}

.step-img-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.step-glass-card h3 {
    font-size: 18px;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 12px;
}

.step-glass-card p {
    font-size: 14px;
    color: var(--text3);
    line-height: 1.6;
    margin: 0;
}

/* Showcase Rows */
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.showcase-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.showcase-reverse>* {
    direction: ltr;
}

.showcase-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(15, 97, 168, 0.15);
    border: 1px solid rgba(15, 97, 168, 0.3);
    color: #38bdf8;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-text-col h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.showcase-text-col p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 28px;
}

.showcase-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f61a8, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
}

.showcase-glass-frame {
    position: relative;
    border-radius: 24px;
    padding: 28px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.showcase-glow-radial {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.showcase-3d-img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.showcase-glass-frame:hover .showcase-3d-img {
    transform: scale(1.05);
}

/* Use Cases */
.usecases-pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.usecase-glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    border-radius: 16px;
    background: rgba(18, 19, 28, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.usecase-glass-card:hover {
    background: rgba(18, 19, 28, 0.85);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(56, 189, 248, 0.15);
}

.usecase-icon-box {
    font-size: 32px;
    color: #38bdf8;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.usecase-glass-card:hover .usecase-icon-box {
    transform: scale(1.15);
    color: #c084fc;
}

.usecase-title {
    font-size: 14px;
    font-weight: 750;
    color: var(--text);
}

/* CTA Banner */
.cta-glass-banner {
    position: relative;
    border-radius: 24px;
    padding: 64px 40px;
    background: linear-gradient(135deg, rgba(15, 97, 168, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.cta-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 17px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* FAQ Accordion */
.faq-glass-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card-item {
    border-radius: 16px;
    background: rgba(18, 19, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-card-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(18, 19, 28, 0.75);
}

.faq-card-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.faq-icon-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-card-item.open .faq-icon-pill {
    transform: rotate(180deg);
    background: #0f61a8;
    color: #ffffff;
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-card-item.open .faq-card-body {
    max-height: 250px;
}

.faq-inner-text {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text3);
    line-height: 1.65;
}

/* Contact Grid */
.contact-glass-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-glass-form {
    padding: 36px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-glass-info {
    padding: 36px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-glow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 97, 168, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 15px;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 13px;
    color: var(--text3);
    margin: 0;
}

.social-glass-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-glass-link:hover {
    background: #0f61a8;
    color: #ffffff;
    transform: translateY(-2px);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f61a8, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {

    .hero-grid,
    .showcase-row,
    .contact-glass-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 42px;
    }

    .stat-divider {
        display: none;
    }

    .stats-glass-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 28px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-section {
        padding: 80px 20px 60px;
    }

    .section-container {
        padding: 60px 20px;
    }
}

/* ==========================================================================
   DEDICATED STANDALONE CONTACT PAGE STYLES
   ========================================================================== */
.contact-page-wrapper {
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
}

.contact-bg-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 97, 168, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.contact-bg-glow-2 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.contact-sla-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(18, 19, 28, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #e2e8f0;
    font-size: 13px;
    backdrop-filter: blur(12px);
}

.contact-standalone-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    background: rgba(18, 19, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.form-header-bar h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.form-header-bar p {
    font-size: 14px;
    color: var(--text3);
    margin-bottom: 24px;
}

/* Topic Selector Chips */
.topic-selector-container {
    margin-bottom: 24px;
}

.topic-selector-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #38bdf8;
    margin-bottom: 12px;
}

.topic-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-chip {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.topic-chip:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.topic-chip.active {
    background: linear-gradient(135deg, rgba(15, 97, 168, 0.8), rgba(124, 58, 237, 0.8));
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 97, 168, 0.35);
}

/* Inputs & Form Fields */
.input-icon-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: #38bdf8;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.textarea-icon {
    top: 18px;
}

.modern-glass-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: 12px;
    background: rgba(18, 19, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.modern-glass-input:focus {
    outline: none;
    background: rgba(18, 19, 28, 0.9);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.modern-glass-input:focus+.input-icon,
.input-wrapper:focus-within .input-icon {
    color: #c084fc;
}

.modern-glass-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Sidebar Cards */
.contact-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-glass-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.sidebar-glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 97, 168, 0.3), rgba(6, 182, 212, 0.3));
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 20px;
}

.sidebar-card-icon.alt-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(192, 132, 252, 0.3));
    border-color: rgba(192, 132, 252, 0.3);
    color: #c084fc;
}

.sidebar-card-icon.alt-cyan {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(15, 97, 168, 0.3));
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

.sidebar-card-body h4 {
    font-size: 16px;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 6px;
}

.sidebar-card-body p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.5;
    margin-bottom: 12px;
}

.contact-link-pill {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link-pill:hover {
    color: #c084fc;
}

.sidebar-social-box {
    padding: 24px;
    border-radius: 20px;
    background: rgba(18, 19, 28, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(16px);
}

.sidebar-social-box h5 {
    font-size: 14px;
    font-weight: 750;
    color: var(--text);
    margin: 0;
}

@media (max-width: 992px) {
    .contact-standalone-grid {
        grid-template-columns: 1fr;
    }
}

/* Static Page Content Styles */
.static-page-content-body h2 {
    font-size: 24px;
    font-weight: 800;
    color: #38bdf8;
    margin-top: 30px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    padding-bottom: 8px;
}

.static-page-content-body h3 {
    font-size: 19px;
    font-weight: 750;
    color: #f1f5f9;
    margin-top: 24px;
    margin-bottom: 12px;
}

.static-page-content-body p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.static-page-content-body ul,
.static-page-content-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #cbd5e1;
}

.static-page-content-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.static-page-content-body strong {
    color: #f8fafc;
}

/* ==========================================================================
   COMPREHENSIVE LIGHT MODE OVERRIDES
   ========================================================================== */
[data-theme="light"] {
    --bg: #f8fafc;
    --bg2: #ffffff;
    --bg3: #f1f5f9;
    --surface: #ffffff;
    --surface2: #f1f5f9;
    --border: rgba(0, 0, 0, 0.08);
    --text: #0f172a;
    --text2: #334155;
    --text3: #64748b;
}

/* Header & Nav in Light Mode */
[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-links a {
    color: #334155;
}

[data-theme="light"] .nav-links a:hover {
    color: #0f61a8;
}

[data-theme="light"] .btn-nav-outline {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.18);
    color: #0f172a !important;
}

[data-theme="light"] .btn-nav-outline:hover {
    background: rgba(15, 97, 168, 0.08);
    border-color: #0f61a8;
    color: #0f61a8 !important;
}

[data-theme="light"] .nav-theme-pill {
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .nav-theme-pill button {
    color: #64748b;
}

[data-theme="light"] .nav-theme-pill button:hover {
    color: #0f172a;
}

/* Glass Cards & Containers in Light Mode */
[data-theme="light"] .utility-glass-card,
[data-theme="light"] .step-glass-card,
[data-theme="light"] .showcase-glass-frame,
[data-theme="light"] .feature-glass-box,
[data-theme="light"] .usecase-glass-card,
[data-theme="light"] .sidebar-glass-card,
[data-theme="light"] .contact-glass-form,
[data-theme="light"] .contact-glass-info,
[data-theme="light"] .sidebar-social-box,
[data-theme="light"] .hero-visual-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(15, 97, 168, 0.15) !important;
    box-shadow: 0 10px 30px rgba(15, 97, 168, 0.07) !important;
}

[data-theme="light"] .stats-glass-container {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(15, 97, 168, 0.15) !important;
    box-shadow: 0 15px 40px rgba(15, 97, 168, 0.08) !important;
}

[data-theme="light"] .cta-glass-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08) !important;
}

[data-theme="light"] .utility-glass-card:hover,
[data-theme="light"] .step-glass-card:hover,
[data-theme="light"] .usecase-glass-card:hover,
[data-theme="light"] .feature-glass-box:hover,
[data-theme="light"] .sidebar-glass-card:hover {
    border-color: rgba(15, 97, 168, 0.35) !important;
    box-shadow: 0 18px 40px rgba(15, 97, 168, 0.14) !important;
}

/* Headings & Typography in Light Mode */
[data-theme="light"] .hero-title,
[data-theme="light"] .utility-body h3,
[data-theme="light"] .step-glass-card h3,
[data-theme="light"] .showcase-title,
[data-theme="light"] .feature-glass-box h3,
[data-theme="light"] .usecase-title,
[data-theme="light"] .section-heading,
[data-theme="light"] .sidebar-card-body h4,
[data-theme="light"] .sidebar-social-box h5,
[data-theme="light"] .contact-form-title,
[data-theme="light"] .info-text h4,
[data-theme="light"] .cta-content h2,
[data-theme="light"] .static-page-content-body h2,
[data-theme="light"] .static-page-content-body h3,
[data-theme="light"] .static-page-content-body strong {
    color: #0f172a !important;
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .utility-body p,
[data-theme="light"] .step-glass-card p,
[data-theme="light"] .showcase-desc,
[data-theme="light"] .feature-glass-box p,
[data-theme="light"] .section-lead,
[data-theme="light"] .sidebar-card-body p,
[data-theme="light"] .info-text p,
[data-theme="light"] .cta-content p,
[data-theme="light"] .static-page-content-body p,
[data-theme="light"] .trust-item {
    color: #475569 !important;
}

[data-theme="light"] .section-tag {
    color: #0f61a8;
}

[data-theme="light"] .hero-badge,
[data-theme="light"] .contact-sla-badge {
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid rgba(15, 97, 168, 0.25);
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .step-badge-number {
    color: rgba(15, 97, 168, 0.15);
}

/* FAQ Accordion in Light Mode */
[data-theme="light"] .faq-card-item {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(15, 97, 168, 0.15) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .faq-question-text {
    color: #0f172a !important;
}

[data-theme="light"] .faq-inner-text {
    color: #475569 !important;
}

[data-theme="light"] .faq-icon-pill {
    background: rgba(15, 97, 168, 0.1);
    color: #0f61a8;
}

[data-theme="light"] .faq-card-item.open {
    border-color: rgba(15, 97, 168, 0.4) !important;
    box-shadow: 0 10px 25px rgba(15, 97, 168, 0.12) !important;
}

/* Buttons & Elements in Light Mode */
[data-theme="light"] .btn-glass-secondary {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: #1e293b;
}

[data-theme="light"] .btn-glass-secondary:hover {
    background: rgba(15, 23, 42, 0.1);
    color: #0f61a8;
}

[data-theme="light"] .usecase-icon-box {
    background: rgba(15, 97, 168, 0.1);
    color: #0f61a8;
}

/* Form Inputs in Light Mode */
[data-theme="light"] .modern-glass-input,
[data-theme="light"] .modern-glass-textarea {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    color: #0f172a !important;
}

[data-theme="light"] .modern-glass-input:focus,
[data-theme="light"] .modern-glass-textarea:focus {
    border-color: #0f61a8 !important;
    box-shadow: 0 0 0 4px rgba(15, 97, 168, 0.15) !important;
}

[data-theme="light"] .form-label-glow {
    color: #1e293b;
}

[data-theme="light"] .input-icon {
    color: #64748b;
}

/* Footer in Light Mode */
[data-theme="light"] .site-footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .site-footer-brand p,
[data-theme="light"] .site-footer-link {
    color: #64748b !important;
}

[data-theme="light"] .site-footer-link:hover {
    color: #0f61a8 !important;
}

[data-theme="light"] .site-footer-title {
    color: #0f172a !important;
}

[data-theme="light"] .site-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: #94a3b8 !important;
}

[data-theme="light"] .static-page-content-body ul,
[data-theme="light"] .static-page-content-body ol,
[data-theme="light"] .static-page-content-body li {
    color: #334155 !important;
}

[data-theme="light"] .static-page-content-body strong {
    color: #0f172a !important;
}