/* ==========================================================================
   CSS Variables & Theme
   ========================================================================== */
:root {
    /* Colors - Deep Dark Mode Theme */
    --bg-base: #0a0a0c;
    --bg-surface: #121217;
    --bg-surface-elevated: #1a1a23;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;

    --border-subtle: #27272a;
    --border-focus: #3f3f46;

    /* Brand Gradients */
    --brand-primary: #8b5cf6;
    /* Violet */
    --brand-secondary: #ec4899;
    /* Pink */
    --brand-tertiary: #3b82f6;
    /* Blue */

    --gradient-brand: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    --gradient-accent: linear-gradient(135deg, var(--brand-tertiary), var(--brand-primary));

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-max-width: 1200px;
    --nav-height: 80px;
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.23);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--border-focus);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: transform var(--transition-base), background var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(10, 10, 12, 0) 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-icon {
    color: var(--brand-secondary);
    margin-right: 0.25rem;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: rotateY(0deg) rotateX(0deg);
}

.floating-badge {
    position: absolute;
    background: rgba(20, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* ==========================================================================
   Sections Basic
   ========================================================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.philosophy {
    background-color: var(--bg-surface);
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-highlight {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.highlight-icon {
    font-size: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    color: transparent;
}

.highlight-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-image {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* ==========================================================================
   Device Compatibility Section
   ========================================================================== */
.device-section {
    background-color: var(--bg-base);
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.device-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 12, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.device-content {
    max-width: 500px;
}

.device-visual {
    position: relative;
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.desktop-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-surface-elevated);
    overflow: hidden;
    aspect-ratio: 2250 / 2168;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.device-visual:hover .desktop-wrapper {
    transform: perspective(1000px) rotateY(-5deg) rotateX(0deg);
}

.desktop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-wrapper {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 32%;
    border-radius: 24px;
    border: 6px solid #1a1a23;
    background: #000;
    overflow: hidden;
    aspect-ratio: 1179 / 2396;
    z-index: 3;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.82);
    transform: perspective(1000px) rotateY(10deg) translateZ(50px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.device-visual:hover .mobile-wrapper {
    transform: perspective(1000px) rotateY(5deg) translateZ(70px);
}

.mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(10, 10, 12, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.1);
}

.overflow-visible {
    overflow: visible !important;
}


/* ==========================================================================
   Features Alternating Grid Section
   ========================================================================== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-row-content {
    grid-column: 2;
    grid-row: 1;
}

.feature-row.reverse .feature-row-images {
    grid-column: 1;
    grid-row: 1;
}

.feature-label {
    display: inline-block;
    color: var(--brand-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.feature-row-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.feature-list li strong {
    color: white;
}

.feature-row-images {
    position: relative;
}

.image-overlap {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* ==========================================================================
   Disclaimers Section
   ========================================================================== */
.disclaimers {
    background-color: var(--bg-surface-elevated);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0;
    overflow: hidden;
}

.disclaimers-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(10, 10, 12, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.disclaimer-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
}

/* Subtle inner glow on cards */
.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.disclaimer-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.disclaimer-card:hover::before {
    opacity: 1;
}

.disclaimer-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

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

.disclaimer-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.disclaimer-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.disclaimer-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: var(--bg-surface-elevated);
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-base);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-tertiary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-group h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-group a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-group a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 992px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(20px);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {

    .hero-container,
    .philosophy-grid,
    .device-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .device-content {
        margin: 0 auto;
        transform: none !important;
    }

    .device-visual {
        margin-top: 2rem;
    }

    .mobile-wrapper {
        width: 30%;
        right: 10%;
        bottom: -5%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge-1 {
        left: 0;
        top: 10%;
    }

    .badge-2 {
        right: 0;
        bottom: 10%;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .feature-row.reverse .feature-row-content {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-row.reverse .feature-row-images {
        grid-column: 1;
        grid-row: 2;
    }

    .feature-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu logic would go here */
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .feature-row-content h3 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .badge-1, .badge-2 {
        display: none; /* Hide floating badges on smaller mobile screens to save space and prevent overflow */
    }
}
/* ==========================================================================
   FAQ Section - Bold Redesign
   ========================================================================== */
.faq-section {
    background-color: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(10, 10, 12, 0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item.active {
    border-color: var(--brand-primary);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2.5rem 2.5rem 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    text-align: left;
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question h4 {
    color: var(--brand-primary);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-answer {
    padding: 0 2.5rem 2.5rem;
}

.faq-answer-inner {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1.15rem;
    }

    .faq-icon-wrapper {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }
}

