/* ============================
  Lab74AI - Advanced Voice Platform
  Theme: Dark Premium (ElevenLabs Inspired)
=============================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    /* Colors */
    --bg-color: #000000;
    --bg-secondary: #111111;
    --footer-bg: #050505;

    --text-primary: #ffffff;
    --text-white: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #888888;

    --accent-color: #ff4d4d;
    --accent-glow: rgba(255, 77, 77, 0.5);
    --accent-glow-weak: rgba(255, 77, 77, 0.2);
    --accent-gradient: linear-gradient(135deg, #ff4d4d 0%, #ff00d7 100%);

    /* Glass / Translucency */
    --glass-bg-low: rgba(255, 255, 255, 0.03);
    --glass-bg-med: rgba(255, 255, 255, 0.05);
    --glass-bg-high: rgba(255, 255, 255, 0.1);

    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-faint: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(255, 255, 255, 0.2);

    /* Card Backgrounds */
    --card-bg-translucent: rgba(18, 18, 24, 0.6);
    --card-bg-solid: rgba(18, 18, 24, 0.8);
    --card-hover-bg: rgba(255, 255, 255, 0.04);
    --neon-border-cyan: #ee4848;
    --neon-border-blue: #876e97;
    --neon-border-violet: #7f6c93;
    --neon-border-glow: rgba(34, 211, 238, 0.45);
    --neon-card-bg: rgba(14, 18, 34, 0.88);
    --neon-card-bg-hover: rgba(19, 24, 42, 0.92);
}

[data-theme="light"] {
    /* Colors */
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --footer-bg: #f1f5f9;

    --text-primary: #0f172a;
    --text-white: #0f172a;
    /* Inverts to dark for light mode */
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Adjust accent for light background visibility if needed */
    --accent-color: #ef4444;

    /* Invert Glass / Translucency to be dark-tinted or just borders */
    --glass-bg-low: rgb(255, 255, 255);
    --glass-bg-med: rgb(255, 255, 255);
    --glass-bg-high: rgba(0, 0, 0, 0.1);

    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-border-faint: rgba(0, 0, 0, 0.05);
    --glass-border-strong: rgba(0, 0, 0, 0.2);

    /* Card Backgrounds */
    --card-bg-translucent: rgba(255, 255, 255, 0.8);
    --card-bg-solid: #ffffff;
    --card-hover-bg: rgba(0, 0, 0, 0.03);

    --neon-border-cyan: #ee4848;
    --neon-border-blue: #876e97;
    --neon-border-violet: #7f6c93;
    --neon-border-glow: rgba(235, 126, 37, 0.28);
    --neon-card-bg: rgba(255, 255, 255, 0.98);
    --neon-card-bg-hover: rgba(248, 250, 255, 1);

    /* Navbar specific override for light mode if needed */
    /* We might need to ensure the navbar sticky bg is white */
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===========================
   Global Styles
=========================== */

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-white);
    font-weight: 700;
    margin-top: 0;
}

.text-theme {
    color: var(--text-primary);
}


/* Global Grid Spacing */
section .row>[class*='col-'],
.section .row>[class*='col-'],
.feature-section .row>[class*='col-'] {
    margin-bottom: 24px;
}

/* Section Spacing Helpers */
.section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section.pt-50 {
    padding-top: 80px !important;
}

.section.pb-100 {
    padding-bottom: 150px !important;
}

/* ===========================
   Preloader
=========================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-svg {
    width: 80px;
    height: 80px;
    animation: rotate 2s linear infinite;
}

.loader-circle {
    fill: none;
    stroke: url(#loaderGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* ===========================
   Navbar
=========================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
}

.sticky {
    position: fixed;
    background: var(--card-bg-solid);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
    padding: 10px 0;
    top: 0;
    animation: fadeInDown 0.5s;
    width: 100%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.lab74-logo {
    font-size: 24px;
    margin: 0;
    letter-spacing: -0.5px;
}

.lab74-logo .ai-suffix {
    color: var(--accent-color);
}

.navbar-nav .nav-item a {
    color: var(--text-secondary) !important;
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 14px;

}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: var(--text-white) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 10px;
    border: none;
    background: transparent;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -8px;
}

/* Buttons */
.main-btn {
    display: inline-block;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--glass-border);
}

.main-btn:hover {
    background: var(--accent-gradient);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.header-btn .main-btn {
    background: var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.header-btn .main-btn:hover {
    background: var(--text-white);
    color: var(--bg-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 20px;
}

.nav-login-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-primary);
}

#theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    padding: 0 6px !important;
    border-radius: 999px;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    background: var(--glass-bg-med);
    color: var(--text-white);
}

.theme-toggle-label {
    display: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

/* ===========================
   Hero Section
=========================== */
.hero-section {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
}

.hero-section-padding {
    padding-top: 220px !important;
    padding-bottom: 50px !important;
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow-weak) 0%, rgba(0, 210, 255, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.neon-circle-container {
    position: absolute;
    top: 47%;
    left: 53%;
    transform: translate(-50%, -50%);
    height: 600px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.8;
}

.neon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow:
        0 0 10px var(--accent-color),
        inset 0 0 10px var(--accent-color),
        0 0 20px #00d2ff,
        inset 0 0 20px #00d2ff,
        0 0 40px var(--accent-glow),
        inset 0 0 40px rgba(0, 210, 255, 0.5);
    animation: pulseGlow 4s infinite alternate;
}

[data-theme="light"] .neon-circle {
    box-shadow:
        0 0 10px rgba(239, 68, 68, 0.3),
        inset 0 0 10px rgba(239, 68, 68, 0.3),
        0 0 20px rgba(0, 210, 255, 0.2),
        inset 0 0 20px rgba(0, 210, 255, 0.2),
        0 0 40px rgba(239, 68, 68, 0.1),
        inset 0 0 40px rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 0, 0, 0.05);
    opacity: 0.7;
}

.neon-circle::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 0.5;
}

[data-theme="light"] .neon-circle::after {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.hero-pill {
    display: inline-block;
    /* background: rgba(255, 77, 77, 0.1); */
    background: rgb(255 255 255 / 10%);

    /* color: #ff9999;
    border: 1px solid rgba(255, 77, 77, 0.3); */
    color: #ff7070;
    border: 1px solid #ff7070;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-color), #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-btn {
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-btn:hover {
    color: var(--accent-color);
}

/* Hero Demo Card */
.hero-demo-card {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-demo-card .demo-header {
    padding: 16px;
    background: var(--glass-bg-low);
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.hero-demo-card .demo-body {
    padding: 24px;
}

.voice-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg-med);
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.voice-selector:hover {
    border-color: var(--glass-border);
    background: var(--glass-border-faint);
}

.avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B6B, #556270);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.voice-info {
    display: flex;
    flex-direction: column;
}

.voice-info .name {
    font-weight: 600;
    font-size: 14px;
}

.voice-info .desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.text-input {
    background: transparent;
    color: var(--text-white);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 80px;
    font-family: inherit;
    border: none;
    outline: none;
    width: 100%;
}

.audio-wave-visual {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.audio-wave-visual .bar {
    flex: 1;
    background: #333;
    height: 20%;
    border-radius: 2px;
    transition: all 0.2s;
}

.audio-wave-visual .bar:nth-child(even) {
    height: 40%;
}

.audio-wave-visual .bar:nth-child(3n) {
    height: 60%;
}

.audio-wave-visual .bar:nth-child(4n) {
    height: 30%;
}

.play-btn {
    width: 100%;
    background: var(--text-);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.play-btn:hover {
    background: #f0f0f0;
}

/* ===========================
   Features Section
=========================== */
.feature-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.single-feature {
    /* background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint); */
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    /* transition: all 0.3s ease; */
    height: 100%;
}


.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.14);
    color: var(--neon-border-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.single-feature:hover .feature-icon {
    background: linear-gradient(145deg, var(--neon-border-cyan), var(--neon-border-blue));
    color: #fff;
    transform: scale(1.08);
}

.single-feature h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-feature p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===========================
   Stats Section
=========================== */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
    ;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
}

.stat-desc {
    /* color: #efefef; */
    color: #212121;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   CTA Section
=========================== */
.cta-section {
    /* background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%); */
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
    border-top: 1px solid var(--glass-bg-med);
    border-bottom: 1px solid var(--glass-bg-med);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    /* background: linear-gradient(to right, #fff, #ffffff); */
    background: linear-gradient(to right, var(--text-white), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 19px;
    /* color: var(--text-secondary); */
    color: #efefef;
    max-width: 500px;
}

/* ===========================
   Process / How it Works
=========================== */
.how-it-works-section .row,
.use-cases-section .row,
.section .row {
    --bs-gutter-x: 50px;
}

.how-it-works-section {
    background: var(--bg-color);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--glass-bg-high) 0%, rgba(0, 0, 0, 0) 100%);
}

.single-process {
    /* background: linear-gradient(145deg, var(--glass-bg-med) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-bg-med); */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    height: 100%;
    /* position: relative;
    overflow: hidden; */
}

.single-process:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, var(--glass-border-faint) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.process-icon {
    width: 80px;
    height: 80px;
    /* background: rgba(255, 77, 77, 0.1); */
    background: rgba(59, 130, 246, 0.14);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 32px;
    /* color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow-weak); */
    color: var(--neon-border-cyan);
    box-shadow: 0 0 20px var(--neon-border-glow);
}

.process-icon .number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    /* background: var(--accent-gradient); */
    background: linear-gradient(145deg, var(--neon-border-cyan), var(--neon-border-blue));
    color: white;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.single-process h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.single-process p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ===========================
   Use Cases Section
=========================== */
.use-cases-section {
    position: relative;
    padding-bottom: 120px;
    padding-top: 50px;
}

.use-case-card {
    /* background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint); */
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 50px;
    /* transition: all 0.3s ease; */
    height: 100%;
}

/* .use-case-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-8px);
    border-color: var(--accent-color);
} */

.use-case-card .icon {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--neon-border-cyan);
    background: rgba(59, 130, 246, 0.14);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.use-case-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   Neon Animated Cards (Frontend only)
=========================== */
.single-feature,
.single-process,
.use-case-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid transparent;
    background: var(--neon-card-bg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.single-feature::before,
.single-process::before,
.use-case-card::before {
    content: "";
    position: absolute;
    inset: -55%;
    background: conic-gradient(from 0deg,
            transparent 0deg 110deg,
            var(--neon-border-cyan) 150deg,
            var(--neon-border-blue) 215deg,
            var(--neon-border-violet) 265deg,
            transparent 320deg 360deg);
    animation-name: neonSpin;
    animation-duration: var(--spin-duration, 5s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--spin-direction, normal);
    animation-delay: var(--spin-delay, 0s);
    z-index: -2;
    opacity: 0.92;
}

.single-feature::after,
.single-process::after,
.use-case-card::after {
    content: "";
    position: absolute;
    inset: 1.3px;
    border-radius: inherit;
    background: var(--neon-card-bg);
    z-index: -1;
    transition: background 0.35s ease;
}

.single-feature:hover,
.single-process:hover,
.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 34px var(--neon-border-glow);
}

.single-feature:hover::after,
.single-process:hover::after,
.use-case-card:hover::after {
    background: var(--neon-card-bg-hover);
}

/* Vary border rotation per card so loops look different */
.feature-section .row>[class*='col-']:nth-child(3n+1) .single-feature,
.section.pb-100 .row>[class*='col-']:nth-child(3n+1) .single-feature,
.how-it-works-section .row>[class*='col-']:nth-child(3n+1) .single-process,
.use-cases-section .row>[class*='col-']:nth-child(3n+1) .use-case-card {
    --spin-duration: 4.9s;
    --spin-delay: -0.7s;
    --spin-direction: normal;
}

.feature-section .row>[class*='col-']:nth-child(3n+2) .single-feature,
.section.pb-100 .row>[class*='col-']:nth-child(3n+2) .single-feature,
.how-it-works-section .row>[class*='col-']:nth-child(3n+2) .single-process,
.use-cases-section .row>[class*='col-']:nth-child(3n+2) .use-case-card {
    --spin-duration: 6.1s;
    --spin-delay: -2.2s;
    --spin-direction: reverse;
}

.feature-section .row>[class*='col-']:nth-child(3n) .single-feature,
.section.pb-100 .row>[class*='col-']:nth-child(3n) .single-feature,
.how-it-works-section .row>[class*='col-']:nth-child(3n) .single-process,
.use-cases-section .row>[class*='col-']:nth-child(3n) .use-case-card {
    --spin-duration: 5.4s;
    --spin-delay: -1.4s;
    --spin-direction: normal;
}

@keyframes neonSpin {
    to {
        transform: rotate(1turn);
    }
}

@media (prefers-reduced-motion: reduce) {

    .single-feature::before,
    .single-process::before,
    .use-case-card::before {
        animation: none;
    }
}

/* ===========================
   Blog & Content Pages
=========================== */
.single-blog {
    background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    height: 100%;
}

.single-blog:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.single-blog h3 a {
    color: var(--text-white);
    transition: 0.3s;
}

.single-blog h3 a:hover {
    color: var(--accent-color);
}

.single-blog p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more-btn {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.read-more-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Content Page Typography */
.content-wrapper {
    margin-bottom: 50px;
    padding: 60px !important;
}

.content-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.content-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-page ul,
.content-page ol {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-page li {
    margin-bottom: 8px;
}

.content-page strong {
    color: var(--text-white);
}

/* ===========================
   FAQ Accordion
=========================== */
.accordion-button {
    background-color: var(--glass-bg-med);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ===========================
   Pagination
=========================== */
.pagination {
    margin-top: 0;
    gap: 5px;
    margin-bottom: 0;
}

.d-none.d-md-flex.align-items-center.justify-content-between {
    width: 100%;
    background: var(--glass-bg-low);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border-faint);
}

.text-muted {
    color: var(--text-secondary) !important;
    margin-bottom: 0;
}

.page-item .page-link {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    margin-left: 4px;
}

.page-item .page-link:hover {
    background-color: var(--glass-bg-high);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--accent-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
    z-index: 3;
}

.page-item.disabled .page-link {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.2);
    border-color: var(--glass-bg-med);
}

.page-link:focus {
    color: var(--text-white);
    background-color: var(--glass-bg-high);
    box-shadow: none;
}

/* ===========================
   Footer
=========================== */
.footer {
    padding-top: 80px;
    padding-bottom: 40px;
    background: var(--bg-color);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    border-top: 0.5px solid #9c767c;
}

.footer-widget {
    margin-bottom: 24px;

}

.footer-widget h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.footer-widget .links li {
    margin-bottom: 7px;
}

.footer-widget .links a,
.footer-widget ul.links li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget .links a:hover,
.footer-widget ul.links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-widget .desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 20px 0;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-white);
    font-size: 18px;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
}

.lab74-logo-footer {
    font-size: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    color: #fff;
}

.scroll-top:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

/* ===========================
   Shared Utilities & Components
=========================== */

/* Unified Glass Panel Styles */
.glass-card-box,
.pricing-card-standard,
.blog-card-style,
.glass-panel-box,
.content-wrapper {
    background: var(--glass-bg-low);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Specific paddings or overrides can remain if they differ */
.glass-card-box,
.pricing-card-standard {
    padding: 40px;
}

.glass-panel-box {
    padding: 1rem;
    /* default padding */
    border-radius: 8px;
    /* Override radius for small panels */
    background: var(--glass-bg-med);
}

/* Pricing Featured */
.pricing-card-featured {
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    height: 100%;
    background: rgba(255, 77, 77, 0.05);
    /* Slight tint of accent */
}

/* Auth Cards */
.auth-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.auth-card {
    background: var(--card-bg-solid);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px 20px;
    }
}

/* 🛡️ Turnstile Responsive Fix */
.cf-turnstile {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 350px) {
    .cf-turnstile {
        transform: scale(0.88);
        transform-origin: center;
        margin-left: -5%;
        margin-right: -5%;
    }
}

.auth-input,
.form-control-custom {
    background: var(--glass-bg-med);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    height: 50px;
}

.auth-input::placeholder,
.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.auth-input:focus,
.form-control-custom:focus {
    background: var(--glass-bg-high);
    border-color: var(--accent-color);
    box-shadow: none;
    color: var(--text-white);
}

.bg-dark-option {
    background: var(--bg-secondary);
}

/* Contact Support Box */
.contact-support-box {
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    background: rgba(255, 77, 77, 0.05);
}

/* Buttons & Links */
.btn-outline-custom {
    border: 1px solid var(--glass-border-strong);
}

.link-accent-underline {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Utility Helpers */
.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.text-accent-color {
    color: var(--accent-color);
}

.text-custom-green {
    color: #4CAF50;
}

.blog-detail-image {
    max-height: 400px;
}

.blog-image-style {
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.list-unstyled-custom {
    list-style: none;
}

.list-disc-secondary {
    list-style: disc;
    color: var(--text-secondary);
}

.badge-gradient {
    background: var(--accent-gradient) !important;
}

.table-glass {
    border-color: var(--glass-border);
}

.affiliate-card-box {
    background: var(--glass-bg-med);
    border-radius: 8px;
}

.opacity-50 {
    opacity: 0.5;
}

.h-60px {
    height: 60px;
}

.btn-google-custom {
    background: #333;
    border: none;
    height: 50px;
}

.navbar-area {
    border-bottom: 0.5px solid #9c767c;
}

#theme-toggle {
    outline: none !important;
    box-shadow: none !important;
}

/* Adaptive Outline Button */
.btn-theme-outline {
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-theme-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}



.how-it-works-section {
    position: relative;
    background: var(--bg-color, #000000);
}

.step-flow-row {
    position: relative;
    --step-connector-color: var(--glass-border, rgba(255, 255, 255, 0.15));
    --step-glow: var(--accent-glow-weak, rgba(255, 77, 77, 0.2));
}

/* Desktop connector line (between steps) */
@media (min-width: 992px) {
    .step-flow-row::before {
        content: '';
        position: absolute;
        top: 68px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--step-connector-color), var(--accent-color, #ff4d4d), var(--step-connector-color), transparent);
        z-index: 0;
        border-radius: 4px;
        opacity: 0.6;
    }
}

.step-creative {
    position: relative;
    text-align: center;
    padding: 28px 20px 32px 20px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: transparent;
    /* no card background */
    border-radius: 32px;
    z-index: 2;
}

.step-creative:hover {
    transform: translateY(-6px);
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.step-number {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    background: var(--accent-gradient, linear-gradient(135deg, #ff4d4d, #ff00d7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    display: inline-block;
    opacity: 0.9;
}

.step-icon {
    width: 88px;
    height: 88px;
    background: var(--glass-bg-med, rgba(255, 255, 255, 0.05));
    border-radius: 48% 52% 44% 56% / 60% 38% 62% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--accent-color, #ff4d4d);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border-faint, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
}

.step-creative:hover .step-icon {
    border-radius: 32% 68% 44% 56% / 48% 38% 62% 52%;
    background: var(--glass-bg-high, rgba(255, 255, 255, 0.1));
    color: var(--text-white, #ffffff);
    box-shadow: 0 0 18px var(--step-glow);
    border-color: var(--accent-color, #ff4d4d);
}

.step-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 20px 0 12px 0;
    background: linear-gradient(135deg, var(--text-white, #ffffff), var(--text-secondary, #a1a1aa));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.step-content p {
    color: var(--text-secondary, #a1a1aa);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* responsive adjustments */
@media (max-width: 767px) {
    .step-creative {
        margin-bottom: 32px;
        padding: 16px 12px;
    }

    .step-icon {
        width: 76px;
        height: 76px;
        font-size: 34px;
    }

    .step-content h4 {
        font-size: 1.4rem;
    }
}

/* light mode specific adjustments using existing theme variables */
[data-theme="light"] .step-icon {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .step-creative:hover .step-icon {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--accent-color, #ef4444);
}

[data-theme="light"] .step-flow-row::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), var(--accent-color, #ef4444), rgba(0, 0, 0, 0.12), transparent);
}

[data-theme="light"] .step-content p {
    color: var(--text-secondary, #475569);
}




/* Premium Hero Section - Creative & Professional */
.premium-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 140px;
    overflow: hidden;
    background: var(--bg-color, #000000);
}

/* Animated gradient orbs */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    /* width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-color, #ff4d4d) 0%, transparent 70%);
            top: 47px;
            left: -150px;
            animation: floatOrb 12s infinite alternate ease-in-out; */
}

.orb-2 {
    width: 400px;
    height: 400px;
    /* background: radial-gradient(circle, #00d2ff 0%, transparent 70%); */
    background: radial-gradient(circle, var(--accent-color, #ff4d4d) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: floatOrb 15s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    width: 350px;
    height: 350px;
    /* background: radial-gradient(circle, #a855f7 0%, transparent 70%); */
    background: radial-gradient(circle, var(--accent-glow-weak, #fc7249) 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation: floatOrb 18s infinite alternate;
    opacity: 0.3;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 40px) scale(1.2);
    }
}

.premium-hero-content {
    position: relative;
    z-index: 2;
}

.hero-pill-wrapper {
    margin-bottom: 24px;
}

.premium-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg-low, rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #a1a1aa);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.premium-hero-content h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
    font-weight: 700;
}

.gradient-animate {
    background: linear-gradient(135deg, var(--accent-color, #ff4d4d), #ffb347, #ff4d4d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.premium-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary, #a1a1aa);
    max-width: 90%;
    margin-bottom: 40px;
}

.hero-buttons-wrapper {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.premium-btn-primary {
    background: linear-gradient(95deg, var(--accent-color, #ff4d4d), #ff7b4a);
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.25);
}

.premium-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.4);
    background: linear-gradient(95deg, #ff3b3b, #ff6a3a);
}

.premium-text-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border-bottom: 1px dashed currentColor;
}

/* Voice Visualizer Panel - No standard card, organic shape */
.voice-visualizer-panel {
    background: var(--glass-bg-med, rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
    border-radius: 48px 48px 48px 32px;
    /* border: 1px solid var(--glass-border, rgba(255,255,255,0.12)); */
    padding: 24px;
    transition: all 0.4s;
    /* box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3); */
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.voice-visualizer-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow-weak, rgba(255, 77, 77, 0.1)) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.visualizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.live-badge {
    background: rgba(16, 185, 129, 0.15);
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.voice-model-badge {
    font-size: 12px;
    background: var(--glass-bg-high, rgba(255, 255, 255, 0.08));
    padding: 5px 12px;
    border-radius: 30px;
    color: var(--text-secondary);
}

.waveform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 70px;
    margin-bottom: 30px;
}

.wave-bar {
    width: 6px;
    background: linear-gradient(180deg, var(--accent-color), #ffb347);
    border-radius: 4px;
    height: calc(20% + 10px);
    animation: waveAnim 1.2s infinite ease alternate;
}

.wave-bar:nth-child(1) {
    animation-delay: 0s;
    height: 30px;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 45px;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 60px;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 50px;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 35px;
}

.wave-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 65px;
}

.wave-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 40px;
}

.wave-bar:nth-child(8) {
    animation-delay: 0.7s;
    height: 55px;
}

.wave-bar:nth-child(9) {
    animation-delay: 0.8s;
    height: 28px;
}

.wave-bar:nth-child(10) {
    animation-delay: 0.9s;
    height: 48px;
}

.wave-bar:nth-child(11) {
    animation-delay: 1s;
    height: 38px;
}

.wave-bar:nth-child(12) {
    animation-delay: 1.1s;
    height: 52px;
}

.wave-bar:nth-child(13) {
    animation-delay: 1.2s;
    height: 44px;
}

.wave-bar:nth-child(14) {
    animation-delay: 1.3s;
    height: 32px;
}

.wave-bar:nth-child(15) {
    animation-delay: 1.4s;
    height: 58px;
}

@keyframes waveAnim {
    0% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

.voice-text-preview {
    background: var(--card-bg-translucent, rgba(0, 0, 0, 0.3));
    padding: 18px 20px;
    border-radius: 28px;
    margin-bottom: 28px;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
}

.voice-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.voice-selector-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg-low);
    padding: 8px 16px;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid transparent;
}

.voice-selector-mini:hover {
    border-color: var(--accent-color);
}

.avatar-mini {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, var(--accent-color), #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.voice-info-mini {
    display: flex;
    flex-direction: column;
}

.voice-name {
    font-weight: 600;
    font-size: 13px;
}

.voice-style {
    font-size: 10px;
    color: var(--text-secondary);
}

.generate-btn-premium {
    background: var(--accent-gradient);
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    transition: all 0.2s;
    cursor: pointer;
}

.generate-btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 18px rgba(255, 77, 77, 0.3);
}

.visualizer-footer {
    margin-top: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

/* Light mode adjustments */
[data-theme="light"] .voice-visualizer-panel {
    /* background: rgba(255,255,255,0.7); */
    backdrop-filter: blur(12px);
    /* border-color: rgba(0,0,0,0.1); */
    /* box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1); */
}

[data-theme="light"] .voice-text-preview {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .premium-hero-content h1 {
    color: #0f172a;
}

@media (max-width: 991px) {
    .premium-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .premium-hero-content h1 {
        font-size: 48px;
    }

    .voice-visualizer-panel {
        margin-top: 40px;
    }
}


[data-theme="dark"] .stat-desc {
    color: #fab1b1;
}