:root {
    --bg-color: #050510;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-primary: #8b5cf6;
    --accent-secondary: #3b82f6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ripple-start: 200px;
    --ripple-end: 1200px;
}

[data-theme="cyberpunk"] {
    --bg-color: #0b0213;
    --accent-primary: #ec4899;
    --accent-secondary: #facc15;
    --glass-bg: rgba(236, 72, 153, 0.05);
    --glass-border: rgba(236, 72, 153, 0.2);
}

[data-theme="liquid"] {
    --bg-color: #021c1e;
    --accent-primary: #14b8a6;
    --accent-secondary: #0ea5e9;
    --glass-bg: rgba(20, 184, 166, 0.05);
    --glass-border: rgba(20, 184, 166, 0.2);
}

[data-theme="sketch"] {
    --bg-color: #1a150f;
    --accent-primary: #f59e0b;
    --accent-secondary: #ef4444;
    --glass-bg: rgba(245, 158, 11, 0.05);
    --glass-border: rgba(245, 158, 11, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: normal;
    transition: background-color 0.5s ease;
}

.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    transition: background 0.5s ease;
}

[data-theme="cyberpunk"] .interactive-bg {
    background: radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(250, 204, 21, 0.1) 0%, transparent 50%);
}

[data-theme="liquid"] .interactive-bg {
    background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}

[data-theme="sketch"] .interactive-bg {
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 16, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo i {
    color: var(--accent-primary);
    font-size: 28px;
    transition: var(--transition);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-text {
    font-weight: 500;
    color: var(--text-primary);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

[data-theme="cyberpunk"] .btn-primary {
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

[data-theme="cyberpunk"] .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

[data-theme="liquid"] .btn-primary {
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

[data-theme="liquid"] .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
}

[data-theme="sketch"] .btn-primary {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

[data-theme="sketch"] .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

main {
    padding: 40px 80px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Hero Visual (Ripple & Image) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.ripple-container {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 20px 50px rgba(139, 92, 246, 0.3));
    animation: floatImage 3s ease-in-out infinite;
    position: relative;
}

[data-theme="cyberpunk"] .hero-img {
    filter: drop-shadow(0 20px 50px rgba(236, 72, 153, 0.3));
}

[data-theme="liquid"] .hero-img {
    filter: drop-shadow(0 20px 50px rgba(20, 184, 166, 0.3));
}

[data-theme="sketch"] .hero-img {
    filter: drop-shadow(0 20px 50px rgba(245, 158, 11, 0.3));
}

.glow-spots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.glow-spot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(2px) drop-shadow(0 0 15px var(--accent-primary));
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
}

.ripple {
    position: absolute;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: rippleEffect 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.ripple-1 {
    animation-delay: 0s;
}

.ripple-2 {
    animation-delay: 0.5s;
}

.ripple-3 {
    animation-delay: 1s;
}

.ripple-4 {
    animation-delay: 1.5s;
}

.ripple-5 {
    animation-delay: 2s;
}

@keyframes rippleEffect {
    0% {
        width: var(--ripple-start);
        height: var(--ripple-start);
        opacity: 0.8;
    }

    100% {
        width: var(--ripple-end);
        height: var(--ripple-end);
        opacity: 0;
    }
}

@keyframes floatImage {

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

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

/* Features */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

/* Themes Section */
.themes-section {
    padding: 100px 0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.theme-content {
    flex: 1;
}

.theme-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.theme-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.theme-controls {
    display: flex;
    gap: 16px;
}

.theme-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: var(--btn-color);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.theme-btn.active {
    border-color: #fff;
    transform: scale(1.1);
}

.theme-preview {
    flex: 1;
    margin-top: 40px;
    padding: 0;
    overflow: hidden;
}

.preview-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

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

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.preview-body {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.mock-player {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    width: 300px;
    text-align: center;
}

.mock-album {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.mock-info {
    margin-bottom: 24px;
}

.mock-title {
    height: 16px;
    background: #fff;
    border-radius: 8px;
    width: 60%;
    margin: 0 auto 8px;
    opacity: 0.9;
}

.mock-subtitle {
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    width: 40%;
    margin: 0 auto;
}

.mock-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--text-primary);
    font-size: 20px;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--text-primary);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* CTA */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
}

[data-theme="cyberpunk"] .cta-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(250, 204, 21, 0.1));
}

[data-theme="liquid"] .cta-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
}

[data-theme="sketch"] .cta-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Stats Overview Section */
.stats-overview {
    padding: 100px 80px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #ec4899;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.stats-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 64px;
    line-height: 1.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    padding: 40px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.stat-icon.music {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon.map {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-icon.users {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.stat-icon.reports {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 80px 24px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13vw;
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    opacity: 0.04;
    pointer-events: none;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.socials a:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--accent-primary);
}

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

/* Contact / Request form page */
.contact-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.contact-hero .section-header {
    margin-bottom: 0;
}

.contact-hero .badge {
    margin-bottom: 16px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-section {
    padding: 40px 0 80px;
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper {
    padding: 48px;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 8px;
}

.contact-form .btn-primary .btn-loading {
    display: none;
}

.contact-form.submitting .btn-primary .btn-text {
    display: none;
}

.contact-form.submitting .btn-primary .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form.submitting .btn-primary {
    pointer-events: none;
    opacity: 0.9;
}

.form-status {
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}

.form-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.form-note code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.form-note a {
    color: var(--accent-primary);
}

.form-note a:hover {
    text-decoration: underline;
}

.form-note i {
    margin-right: 6px;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .form-wrapper {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    padding-bottom: 20px;
    overflow: hidden;
}

.testimonials-header {
    padding: 0 80px;
    margin-bottom: 64px;
    text-align: left;
}

.marquee-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 24px;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 24px;
    min-width: 100%;
}

.scroll-left .marquee-content {
    animation: marquee-left 55s linear infinite;
}

.scroll-right .marquee-content {
    animation: marquee-right 65s linear infinite;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.testimonial-card {
    width: 380px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.quote-icon {
    font-size: 24px;
    color: var(--accent-primary);
    opacity: 0.5;
}

.quote-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.user-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Why Terravox Detail Section */
.features-detail-section {
    padding: 100px 80px;
    background: radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.05), transparent 60%);
}

.features-grid-detail {
    position: relative;
    height: 600px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    overflow: visible;
}

.feature-card-detail {
    position: absolute;
    width: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.6) translateZ(-400px);
    z-index: 1;
}

.feature-card-detail.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 10;
}

.feature-card-detail.active:hover {
    transform: translateX(0) scale(1.03) translateZ(30px) translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.25);
}

.feature-card-detail.prev {
    opacity: 0.7;
    pointer-events: auto;
    transform: translateX(-120%) scale(0.8) translateZ(-180px) rotateY(20deg);
    z-index: 5;
}

.feature-card-detail.next {
    opacity: 0.7;
    pointer-events: auto;
    transform: translateX(120%) scale(0.8) translateZ(-180px) rotateY(-20deg);
    z-index: 5;
}

.feature-card-detail.far-prev {
    opacity: 0.3;
    pointer-events: none;
    transform: translateX(-230%) scale(0.6) translateZ(-350px) rotateY(35deg);
    z-index: 2;
}

.feature-card-detail.far-next {
    opacity: 0.3;
    pointer-events: none;
    transform: translateX(230%) scale(0.6) translateZ(-350px) rotateY(-35deg);
    z-index: 2;
}

.feature-card-detail.hidden {
    opacity: 0;
    transform: translateX(0) scale(0.4) translateZ(-600px);
}

.feature-card-detail:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon-wrapper.chat {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.feature-icon-wrapper.track {
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
}

.feature-icon-wrapper.book {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.feature-card-detail h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.phone-mockups {
    position: relative;
    height: 280px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
}

.phone-frame.small {
    width: 140px;
    height: 260px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1;
    border: none;
}

/* Add a pseudo-element for the bezel to overlay the image subtly */
.phone-frame.small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid rgba(255, 255, 255, 0.05);
    /* Subtle inner edge */
    border-radius: 20px;
    pointer-events: none;
}

.phone-frame.small.overlap {
    position: absolute;
    left: 100px;
    bottom: 20px;
    z-index: 2;
    transform: rotate(5deg);
}

.phone-frame.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-placeholder {
    height: 280px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
}

.coming-soon-placeholder .status-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 8px;
}

.coming-soon-placeholder .status-sub {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
    max-width: 200px;
    line-height: 1.4;
}

.coming-soon-placeholder i {
    font-size: 40px;
    opacity: 0.5;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

/* Responsive for Why Section */
@media (max-width: 1200px) {
    .features-detail-section {
        padding: 80px 40px;
    }

    .features-grid-detail {
        height: 550px;
    }

    .feature-card-detail.prev {
        transform: translateX(-100%) scale(0.75) translateZ(-150px) rotateY(15deg);
    }

    .feature-card-detail.next {
        transform: translateX(100%) scale(0.75) translateZ(-150px) rotateY(-15deg);
    }

    .feature-card-detail.far-prev {
        transform: translateX(-190%) scale(0.6) translateZ(-300px) rotateY(25deg);
    }

    .feature-card-detail.far-next {
        transform: translateX(190%) scale(0.6) translateZ(-300px) rotateY(-25deg);
    }
}

@media (max-width: 768px) {
    .features-grid-detail {
        height: 500px;
        perspective: 800px;
    }

    .feature-card-detail {
        width: 280px;
        padding: 24px;
    }

    .feature-card-detail.prev {
        transform: translateX(-60%) scale(0.7) translateZ(-100px) rotateY(10deg);
        opacity: 0.4;
    }

    .feature-card-detail.next {
        transform: translateX(60%) scale(0.7) translateZ(-100px) rotateY(-10deg);
        opacity: 0.4;
    }

    .feature-card-detail.far-prev,
    .feature-card-detail.far-next {
        opacity: 0;
        visibility: hidden;
    }

    .phone-mockups,
    .coming-soon-placeholder {
        height: 220px;
    }

    .footer-bg-text {
        font-size: 20vw;
        letter-spacing: 8px;
        top: 40%;
    }

    /* Mobile Ripple Adjustments */
    :root {
        --ripple-start: 80px;
        --ripple-end: 320px;
    }

    .ripple-container {
        width: 280px;
        height: 280px;
    }

    .hero-img {
        max-width: 240px;
    }
}

/* Existing Responsive */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    main {
        padding: 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 60px;
    }

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

    .hero-visual {
        margin-top: 60px;
    }

    .themes-section {
        flex-direction: column;
        text-align: center;
    }

    .theme-controls {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    footer {
        padding: 40px 40px 24px;
    }

    .testimonials-header {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {

    header nav,
    .header-actions {
        display: none;
    }

    /* Add hamburger for mobile in real implementation */
    .hero h1 {
        font-size: 48px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .globe-container {
        transform: scale(0.7);
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .stats-title {
        font-size: 40px;
    }

    .stats-overview {
        padding: 60px 20px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        width: 300px;
        padding: 24px;
    }
}