:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --accent-cyan: #00f2ff;
    --accent-gold: #ffb86c;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --glow-cyan: 0 0 20px rgba(0, 242, 255, 0.2);
    --banner-height: 40px;
}

.notice-banner {
    height: var(--banner-height);
    background: linear-gradient(90deg, #1a1a2e, #0a0a1a);
    border-bottom: 1px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.notice-banner span {
    color: var(--accent-cyan);
    margin-right: 8px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: fixed;
    top: var(--banner-height);
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-cyan), #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.btn-primary {
    background: var(--accent-cyan);
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--glow-cyan);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: var(--glass);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, #080808);
}

.video-placeholder {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.video-placeholder img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-placeholder:hover .play-btn-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-cyan);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-left: 5px;
    box-shadow: var(--glow-cyan);
    transition: transform 0.3s;
}

.video-placeholder:hover .play-icon {
    transform: scale(1.2);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--border);
}

.gallery-caption {
    padding: 24px;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-cyan);
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

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

.hero h1 span {
    background: linear-gradient(to right, var(--text-main), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.app-preview-container {
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.app-preview-container img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Features */
.features {
    padding: 100px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: block;
}

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

.feature-card p {
    color: var(--text-dim);
}

/* Standards Section */
.standards-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.standard-item {
    text-align: center;
}

.lufs-value {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 12px;
    border: 1px solid var(--accent-cyan);
}

.standard-item.featured .lufs-value {
    background: var(--accent-cyan);
    color: #000;
}

.standard-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.badge-gold {
    background: var(--accent-gold) !important;
    color: #000 !important;
    font-weight: 800;
}

/* USB Polish Section - Cinematic */
.usb-polish-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #0a0a0a, #050505);
    position: relative;
    overflow: hidden;
}

.overflow-visible { overflow: visible; }

.usb-polish-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.polish-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.polish-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.3s;
}

.polish-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.polish-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 184, 108, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Console Visual Mockup */
.usb-console-visual {
    position: relative;
}

.console-box {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 0 40px rgba(255, 184, 108, 0.05);
    position: relative;
    z-index: 2;
}

.console-header {
    background: #111;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.console-header .label {
    margin-left: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.console-body {
    padding: 30px;
}

.transfer-status {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.transfer-track {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.transfer-track.active {
    opacity: 1;
}

.track-id { font-family: monospace; color: var(--text-dim); }
.track-name { font-weight: 600; font-size: 0.9rem; flex: 1; }

.status-pill {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.status-pill.ok { background: rgba(39, 201, 63, 0.1); color: #27c93f; }
.status-pill.active { background: var(--accent-gold); color: #000; animation: blink 1s infinite; }

.progress-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar-glow {
    height: 100%;
    width: 60%;
    background: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold);
    animation: progressFlow 2s ease-in-out infinite;
}

.usb-destination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.usb-icon { font-size: 2rem; }
.dest-label { font-weight: 800; letter-spacing: 1px; font-size: 0.8rem; }

/* Animations */
@keyframes progressFlow {
    0% { width: 10%; transform: translateX(-100%); }
    50% { width: 80%; }
    100% { width: 100%; transform: translateX(200%); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Background Particle Stream */
.data-particles {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 184, 108, 0.15) 0%, transparent 70%);
    z-index: 1;
    transform: translateY(-50%);
    filter: blur(40px);
}




/* Pricing */
.pricing {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-cyan);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--glow-cyan);
    position: relative;
}

.pricing-card .badge-container {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.pricing-card .badge {
    background: var(--accent-cyan);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-original {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: line-through;
    opacity: 0.6;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 800;
}

#paypal-button-container {
    width: 100%;
    margin-top: 30px;
    min-height: 150px;
}

#purchase-success {
    text-align: center;
    animation: fadeInUp 0.5s ease forwards;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 900px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.close-video {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.close-video:hover {
    opacity: 1;
}

.video-container {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-msg {
    text-align: center;
    padding: 40px;
}

.placeholder-msg h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-cyan), #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.placeholder-msg p {
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero p, .hero-btns, .app-preview-container {
    animation: fadeInUp 0.8s ease backwards;
}

.hero p { animation-delay: 0.2s; }
.hero-btns { animation-delay: 0.4s; }
.app-preview-container { animation-delay: 0.6s; }

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse-glow 1.5s infinite;
    vertical-align: middle;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — Mobile & Tablet Optimisation
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .usb-polish-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-grid { gap: 20px; }
}

/* Performers Section */
.performers-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
    overflow: hidden;
}

.performers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.useful-for {
    margin: 32px 0;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.useful-for h4 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.useful-for ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.useful-for li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.useful-for li::before {
    content: '•';
    color: var(--accent-cyan);
    margin-right: 12px;
    font-weight: 800;
}

.performers-visual {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
}

.performers-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    filter: blur(20px);
}

.backing-track-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bt-item {
    background: rgba(255,255,255,0.03);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace; /* Tech feel */
}

.bt-status {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Responsive for Performers */
@media (max-width: 1024px) {
    .performers-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .performers-section { padding: 80px 0; }
    .performers-grid { grid-template-columns: 1fr; text-align: center; }
    .performers-content .section-title { text-align: center !important; }
    .useful-for ul { grid-template-columns: 1fr; text-align: left; }
    .performers-visual { padding: 32px; }
}

@media (max-width: 768px) {
    /* Global Adjustments */
    .container { padding: 0 20px; }
    header, section { padding: 60px 0 !important; }

    /* Navigation */
    nav { height: 70px; }
    .nav-links a:not(.btn-primary) { display: none; } /* Hide non-essential links */
    .nav-links a.btn-primary { 
        padding: 8px 16px; 
        font-size: 0.8rem; 
        margin-left: 0;
    }
    .logo-text { font-size: 1.2rem; }

    /* Hero */
    .hero { padding-top: 140px !important; }
    .hero::before { display: none; }
    .hero h1 { 
        font-size: 2.2rem; 
        letter-spacing: -1px; 
        margin-bottom: 20px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
    .btn-primary { width: 100%; max-width: 320px; text-align: center; }

    /* Feature Grid */
    .feature-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    .feature-card { padding: 30px; }

    /* Standards Section */
    .standards-section { padding: 24px; }
    .standards-grid { grid-template-columns: 1fr; gap: 24px; }
    .standard-item { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .standard-item:last-child { border-bottom: none; padding-bottom: 0; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }

    /* USB Polish */
    .usb-console-visual { 
        margin-top: 40px; 
        width: 100%;
        max-width: 100%;
        transform: scale(1); 
    }
    .console-box { width: 100%; }
    .data-particles { display: none; } /* Hide heavy animations on mobile */

    /* Pricing */
    .pricing-card { 
        padding: 40px 24px; 
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }
    .price { font-size: 3rem; }

    /* Video Section */
    .video-section { padding-bottom: 40px !important; }
    .play-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .logo-img { height: 32px; }
    .logo-text { font-size: 1.1rem; }
}



/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.glass-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group select option {
    background-color: #0a0a0a;
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-info {
        text-align: center;
    }
    .contact-method {
        justify-content: center;
        text-align: left;
    }
}


/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000;
    font-family: "Inter", sans-serif;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s;
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.1) rotate(5deg);
}

.chat-bubble img {
    width: 35px;
    height: 35px;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #27c93f;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 450px;
    height: 700px;
    max-height: 85vh;
    max-width: 90vw;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-info img {
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    border-radius: 50%;
    padding: 5px;
}

.bot-info h4 { margin: 0; font-size: 1rem; }
.bot-info p { margin: 0; font-size: 0.75rem; color: var(--text-dim); }

.close-chat {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    max-width: 90%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.bot-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.user-msg {
    align-self: flex-end;
    background: var(--accent-cyan);
    color: #000;
    font-weight: 600;
    border-bottom-right-radius: 4px;
}

.chat-faqs {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border);
}

.faq-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--accent-cyan);
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-btn:hover {
    background: rgba(0, 242, 255, 0.1);
}

.chat-input-area {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.chat-input-area input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    color: white;
}

.chat-input-area button {
    background: var(--accent-cyan);
    border: none;
    border-radius: 10px;
    width: 40px;
    cursor: pointer;
    font-weight: bold;
}

