/* ================= EPIC WEB DESK - LUXURY CYBERPUNK BLACK THEME ================= */
:root {
    --bg-main: #000000;
    --bg-card: rgba(3, 10, 20, 0.75);
    --cyan-accent: #00d4ff;
    --cyan-glow: rgba(0, 212, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(0, 212, 255, 0.18);
}

body, html { 
    margin: 0; padding: 0; 
    width: 100%; height: 100%;
    background-color: var(--bg-main);
    color: var(--text-main); 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--cyan-accent); border-radius: 4px; }

/* Canvas Backgrounds */
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
#pixel-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9998; pointer-events: none; }

.page-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999; opacity: 0; pointer-events: none;
    transition: opacity 0.8s ease;
}

.content-wrapper { position: relative; z-index: 10; background: transparent; }

/* Headings */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem); 
    text-align: center; margin-bottom: 10px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
}

.section-subtitle {
    text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 1rem; letter-spacing: 1px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--cyan-glow);
}

/* ================= APPLE-STYLE FULL-WIDTH FLUID NAVBAR ================= */
.apple-nav-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.apple-nav-container {
    width: 100%;
    max-width: 100% !important;
    height: 100%;
    padding: 0 clamp(10px, 2vw, 30px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.apple-nav-logo {
    display: inline-flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
}

.apple-nav-logo .custom-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.apple-nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    height: 100%;
    margin: 0 clamp(10px, 2vw, 25px);
    padding: 0;
    list-style: none;
}

.apple-nav-links a {
    font-size: clamp(10.5px, 0.9vw, 12.5px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0 4px;
    line-height: 48px;
    white-space: nowrap;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.apple-nav-links a:hover {
    color: var(--cyan-accent);
    text-shadow: 0 0 8px var(--cyan-accent);
}

.apple-mobile-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 10002;
    flex-shrink: 0;
}

.apple-mobile-btn span {
    display: block;
    width: 18px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* ================= HERO SECTION ================= */
.hero {
    height: calc(100vh - 48px);
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(60px, 9vh, 100px);
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    font-weight: 800;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 span {
    color: var(--cyan-accent);
    display: block;
    font-size: clamp(2.8rem, 9vw, 5.2rem);
    margin-top: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 40%, #0077ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite, glowPulse 3s ease-in-out infinite alternate;
}

.hero p {
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    letter-spacing: 4px;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--text-muted);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.cta-btn {
    margin-top: 32px;
    padding: 16px 42px;
    background: linear-gradient(135deg, #00d4ff 0%, #0088ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 20;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards, buttonPulse 2.5s infinite;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: lightSweep 4s ease-in-out infinite;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.9), 0 0 60px rgba(0, 212, 255, 0.4);
}

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

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

@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 28px rgba(0, 212, 255, 0.8)); }
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 32px rgba(0, 212, 255, 0.85), 0 0 55px rgba(0, 212, 255, 0.45); }
    100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2); }
}

@keyframes lightSweep {
    0% { left: -70%; }
    30% { left: 160%; }
    100% { left: 160%; }
}

/* ================= SEAMLESS INFINITE MARQUEE ================= */
.marquee {
    background: var(--cyan-accent);
    color: #000000;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    user-select: none;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 28s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    gap: 32px;
    padding-right: 32px;
}

.marquee-group span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
}

.marquee-sep {
    color: rgba(0, 0, 0, 0.4);
    font-size: 1.1rem !important;
}

@keyframes infiniteScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 100px 8%; position: relative; z-index: 2; }
.dark-bg { background: rgba(0, 5, 12, 0.88); backdrop-filter: blur(10px); }

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.logo-grid img {
    max-width: 130px;
    max-height: 65px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-grid img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--cyan-accent));
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item { padding: 40px 20px; }
.stat-item h3 { font-size: 3.5rem; color: var(--cyan-accent); margin: 0; text-shadow: 0 0 15px var(--cyan-glow); }
.stat-item p { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-top: 10px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card { padding: 35px 25px; text-align: left; cursor: pointer; }
.service-card h3 { color: var(--cyan-accent); font-size: 1.3rem; margin: 0 0 15px 0; text-transform: uppercase; letter-spacing: 1px; }
.service-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.process-item { padding: 30px; text-align: center; }
.process-count {
    width: 55px; height: 55px; border-radius: 50%;
    border: 2px solid var(--cyan-accent); color: var(--cyan-accent);
    font-size: 1.4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; box-shadow: 0 0 15px var(--cyan-glow);
}
.process-item h3 { text-transform: uppercase; font-size: 1.1rem; margin-bottom: 10px; }
.process-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Tech Stack */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 30px; justify-items: center; }
.tech-box { width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px; }
.tech-box img { max-width: 45px; max-height: 45px; margin-bottom: 10px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); }
.tech-box span { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); }

/* Details */
.detail-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: left; }
.detail-box { padding: 35px; border-left: 4px solid var(--cyan-accent); }
.detail-box h3 { color: var(--cyan-accent); margin: 0 0 15px 0; font-size: 1.5rem; text-transform: uppercase; }
.detail-box p { line-height: 1.7; color: var(--text-muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { padding: 30px; border-radius: 20px; text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; border: 3px solid var(--cyan-accent); overflow: hidden; box-shadow: 0 0 15px var(--cyan-glow); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { margin: 10px 0 5px; font-size: 1.2rem; }

/* Contact Form */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-text h2 { font-size: 3rem; text-transform: uppercase; letter-spacing: 2px; line-height: 1.2; margin-bottom: 20px; }
.contact-text h2 span { color: var(--cyan-accent); text-shadow: 0 0 15px var(--cyan-accent); }
.contact-text p { color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }

.contact-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 15px; background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.25); border-radius: 10px;
    color: #fff; font-family: inherit; font-size: 0.9rem; box-sizing: border-box; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--cyan-accent);
    box-shadow: 0 0 15px var(--cyan-glow); background: rgba(0, 212, 255, 0.05);
}
.form-group select option { background: #080808; color: #fff; }

.submit-btn {
    width: 100%; padding: 15px; background: transparent; border: 2px solid var(--cyan-accent);
    color: var(--cyan-accent); text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
    border-radius: 10px; cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { background: var(--cyan-accent); color: #000; box-shadow: 0 0 20px var(--cyan-accent); }

/* Footer */
.epic-footer {
    background: #000000 !important;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    position: relative; z-index: 20; color: #fff; padding-top: 60px;
    box-shadow: 0 -30px 50px rgba(0, 0, 0, 1);
}
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 8% 40px 8%;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px;
}
.footer-logo { font-size: 1.4rem; font-weight: 700; color: var(--cyan-accent); letter-spacing: 2px; text-shadow: 0 0 10px var(--cyan-glow); margin-bottom: 15px; }
.footer-desc { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 20px; }

.footer-heading { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0; margin-bottom: 20px; position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 25px; height: 2px; background: var(--cyan-accent); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: 0.3s; }
.footer-links a:hover { color: var(--cyan-accent); padding-left: 5px; }

.newsletter-text { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; line-height: 1.4; }
.footer-newsletter { display: flex; margin-bottom: 6px; }
.footer-newsletter input { width: 100%; padding: 10px 14px; background: #0d0d0d; border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 8px 0 0 8px; color: #fff; font-size: 0.85rem; outline: none; }
.footer-newsletter button { background: var(--cyan-accent); border: none; padding: 0 15px; border-radius: 0 8px 8px 0; cursor: pointer; color: #000; display: flex; align-items: center; justify-content: center; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 8%;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); background: #000;
}

/* Footer Logo & Brand Text Flex Wrapper */
.footer-logo-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-brand:hover {
    transform: translateY(-2px);
}

.custom-footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px var(--cyan-glow));
    transition: filter 0.3s ease;
}

.footer-logo-brand:hover .custom-footer-logo {
    filter: drop-shadow(0 0 16px var(--cyan-accent));
}

.footer-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--cyan-glow);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-logo-brand:hover .footer-brand-text {
    color: var(--cyan-accent);
    text-shadow: 0 0 18px var(--cyan-accent);
}

.legal-links a { color: var(--text-muted); text-decoration: none; }
.legal-links a:hover { color: var(--cyan-accent); }

/* Popup Modal */
.popup-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 4, 9, 0.92); backdrop-filter: blur(18px);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999; opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.popup-modal-overlay.active { opacity: 1; visibility: visible; }
.popup-modal-content {
    width: 90%; max-width: 500px; padding: 40px 35px; position: relative;
    background: rgba(3, 10, 20, 0.98) !important; border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--cyan-glow);
    border-radius: 20px;
}
.terminal-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px;
    background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px; font-size: 0.72rem; letter-spacing: 1.5px;
    color: var(--cyan-accent); text-transform: uppercase; margin-bottom: 20px;
}
.close-popup-btn {
    position: absolute; top: 20px; right: 22px; background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1); width: 34px; height: 34px; border-radius: 50%;
    color: rgba(255,255,255,0.7); font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.close-popup-btn:hover { background: var(--cyan-accent); color: #000; }
.success-screen { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 10px; }
.success-screen.active { display: flex; }

/* ================= OPTION 2: AVATAR PILL TRIGGER & CHAT WIDGET ================= */
.epic-chat-widget { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 99999; 
}

/* Avatar Pill Trigger Button */
.chat-avatar-pill-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(3, 10, 22, 0.95);
    border: 1.5px solid var(--cyan-accent);
    padding: 6px 18px 6px 6px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 25px var(--cyan-glow), 0 10px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    user-select: none;
}

.chat-avatar-pill-trigger:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px var(--cyan-accent), 0 12px 35px rgba(0, 0, 0, 0.9);
}

.trigger-avatar-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    position: relative;
}

.trigger-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--cyan-accent);
    display: block;
}

.online-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #27c93f;
    border: .05px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 8px #27c93f;
    animation: pulseGreenBadge 1.8s infinite ease-in-out;
}

@keyframes pulseGreenBadge {
    0% { transform: scale(0.9); box-shadow: 0 0 4px #27c93f; }
    50% { transform: scale(1.2); box-shadow: 0 0 15px #27c93f, 0 0 25px rgba(39, 201, 63, 0.8); }
    100% { transform: scale(0.9); box-shadow: 0 0 4px #27c93f; }
}

.trigger-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trigger-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trigger-main {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Chat Window Box */
.chat-window {
    position: fixed; 
    bottom: 95px; 
    right: 20px; 
    width: 380px; 
    max-width: calc(100vw - 40px);
    height: 520px; 
    max-height: calc(100vh - 120px);
    background: rgba(3, 10, 22, 0.98); 
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 30px var(--cyan-glow);
    backdrop-filter: blur(15px); 
    display: none; 
    flex-direction: column; 
    overflow: hidden;
}
.chat-window.active { display: flex; }

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

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

.chat-avatar-header,
.chat-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    max-height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--cyan-accent);
    box-shadow: 0 0 10px var(--cyan-glow);
    flex-shrink: 0;
    background: #000;
}

.chat-avatar-header img,
.chat-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.chat-title { font-size: 0.95rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.chat-status { font-size: 0.7rem; color: #27c93f; }
.chat-close-btn { background: none; border: none; color: #aaa; font-size: 1.4rem; cursor: pointer; }
.chat-close-btn:hover { color: var(--cyan-accent); }

.chat-body { 
    flex: 1; 
    padding: 18px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    font-size: 0.88rem; 
}
.chat-msg { max-width: 85%; padding: 12px 16px; border-radius: 12px; line-height: 1.5; word-wrap: break-word; }
.chat-msg.bot { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 212, 255, 0.25); color: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.chat-msg.user { background: var(--cyan-accent); color: #000; font-weight: 600; align-self: flex-end; border-bottom-right-radius: 2px; }

.chat-footer { padding: 12px; background: rgba(0,0,0,0.7); border-top: 1px solid rgba(0, 212, 255, 0.25); display: flex; gap: 8px; }
.chat-input { flex: 1; padding: 12px 14px; background: #080808; border: 1px solid rgba(0, 212, 255, 0.35); border-radius: 10px; color: #fff; font-size: 0.88rem; outline: none; }
.chat-input:focus { border-color: var(--cyan-accent); box-shadow: 0 0 12px var(--cyan-glow); }
.chat-send-btn { background: var(--cyan-accent); border: none; padding: 0 18px; border-radius: 10px; cursor: pointer; color: #000; font-weight: bold; }

/* Responsive Drawer (Scroll Fix Enabled) */
@media (max-width: 860px) {
    .apple-mobile-btn { display: flex; }
    .apple-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 30px 50px 30px;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.35s ease;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .apple-nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .apple-nav-links a {
        font-size: 17px;
        font-weight: 500;
        padding: 14px 0;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        color: rgba(255, 255, 255, 0.9);
        display: block;
    }
    .contact-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .chat-window { bottom: 90px; right: 10px; width: calc(100vw - 20px); height: 460px; }
}

/* ================= ABOUT US PAGE STYLES ================= */
.about-plexus-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.narrative-section {
    max-width: 960px;
    margin: 0 auto 50px auto;
    padding: 40px;
    line-height: 1.85;
    font-size: 1.05rem;
    color: var(--text-muted, #94a3b8);
}

.narrative-section h2 {
    font-size: 1.8rem;
    color: var(--cyan-accent, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.narrative-section h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--cyan-accent, #00d4ff);
}

.narrative-section p {
    margin-bottom: 24px;
    text-align: justify;
}

.narrative-section p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #ffffff;
    font-weight: 600;
}

/* ================= UX/UI DESIGN PAGE STYLES ================= */
.ux-orb-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Tool Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
}

/* Bright & Vibrant Tool Badges */
.tool-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 15px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-badge:hover {
    transform: translateY(-6px);
    border-color: #00d4ff;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.tool-badge img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) brightness(1.15) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tool-badge:hover img {
    transform: scale(1.12);
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.6)) brightness(1.25);
}

.tool-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #f8fafc;
    text-transform: uppercase;
}

/* Feature Showcase Grid */
.ux-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1150px;
    margin: 40px auto;
}

.ux-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(13, 19, 31, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.ux-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 16px 35px rgba(0, 212, 255, 0.18);
}

.ux-card-media {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #080c14;
}

.ux-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ux-card:hover .ux-card-media img {
    transform: scale(1.06);
}

.ux-card-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ux-card-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #ffffff;
}

.ux-card-content p {
    font-size: 0.92rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Design Process Timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1150px;
    margin: 40px auto;
}

.process-box {
    padding: 30px 24px;
    border-radius: 14px;
    background: rgba(13, 19, 31, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.12);
    position: relative;
}

.process-step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan-accent, #00d4ff);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 12px;
}

.process-box h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
}

.process-box p {
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
    margin: 0;
}

/* ================= WEB DEVELOPMENT PAGE STYLES ================= */
.webdev-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Tech Stack Detailed Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 40px auto;
}

.tech-card {
    background: rgba(13, 19, 31, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    backdrop-filter: blur(14px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan-accent, #00d4ff);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.22);
    background: rgba(13, 19, 31, 0.88);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tech-card-header img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) brightness(1.15);
}

.tech-card-header h4 {
    margin: 0;
    font-size: 1.15rem;
    color: #ffffff;
}

.tech-card-header span {
    font-size: 0.75rem;
    color: var(--cyan-accent, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.tech-card p {
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
    margin: 0;
}

/* Engineering Mockup Showcases */
.webdev-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto;
}

.webdev-card {
    background: rgba(13, 19, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.webdev-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 18px 40px rgba(0, 212, 255, 0.2);
}

.webdev-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #080c14;
}

.webdev-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.webdev-card:hover .webdev-media img {
    transform: scale(1.06);
}

.webdev-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.webdev-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan-accent, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.webdev-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.35rem;
    color: #ffffff;
}

.webdev-content p {
    font-size: 0.92rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.65;
    margin-bottom: 16px;
}

.webdev-specs {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.webdev-specs li {
    font-size: 0.78rem;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}



/* ================= LEAD CAPTURE SECTION STYLES ================= */
.lead-capture-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 40px 35px;
    border-radius: 20px;
    background: rgba(13, 19, 31, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.lead-form-full {
    grid-column: 1 / -1;
}

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

.lead-input-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan-accent, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.lead-input-group input,
.lead-input-group select,
.lead-input-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(5, 7, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lead-input-group input:focus,
.lead-input-group select:focus,
.lead-input-group textarea:focus {
    border-color: var(--cyan-accent, #00d4ff);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
    background: rgba(5, 7, 10, 0.95);
}

.lead-submit-btn {
    grid-column: 1 / -1;
    padding: 16px 28px;
    background: #00d4ff;
    color: #05070a;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.lead-submit-btn:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.lead-status-msg {
    grid-column: 1 / -1;
    font-size: 0.88rem;
    text-align: center;
    margin-top: 10px;
    min-height: 20px;
}

@media (max-width: 768px) {
    .lead-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= CLOUD ARCHITECTURE PAGE STYLES ================= */
.cloud-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Multi-Select Chips for Cloud Services */
.cloud-services-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.cloud-chip {
    cursor: pointer;
    user-select: none;
}

.cloud-chip input[type="checkbox"] {
    display: none;
}

.cloud-chip span {
    display: inline-block;
    padding: 9px 16px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-muted, #94a3b8);
    background: rgba(5, 7, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.cloud-chip input[type="checkbox"]:checked + span {
    background: rgba(0, 212, 255, 0.18);
    color: #00d4ff;
    border-color: #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.cloud-chip:hover span {
    border-color: rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

/* Mid-Page Highlight Wrapper */
.mid-form-section {
    position: relative;
    z-index: 2;
    margin: -40px auto 60px auto;
}

/* ================= CLOUD HERO SLIDER (FIXED VISIBILITY) ================= */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 100px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.08) 0%, rgba(5, 7, 10, 0) 70%);
}

.hero-slider-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-slide.active {
    display: block !important;
    opacity: 1 !important;
}

.hero-slide h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 15px 0;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide h1 span {
    color: var(--cyan-accent, #00d4ff);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-slide p {
    font-size: 1.1rem;
    color: var(--text-muted, #94a3b8);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.slider-arrow {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: #00d4ff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.slider-arrow:hover {
    background: #00d4ff;
    color: #05070a;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
    width: 26px;
    border-radius: 6px;
}

/* ================= CLOUD EXTENDED SECTIONS ================= */
/* Pipeline Steps */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
}

.pipeline-card {
    padding: 30px 24px;
    border-radius: 16px;
    background: rgba(13, 19, 31, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pipeline-card:hover {
    transform: translateY(-6px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.pipeline-phase {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan-accent, #00d4ff);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pipeline-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
}

.pipeline-card p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    overflow-x: auto;
}

.cloud-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(13, 19, 31, 0.65);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cloud-table th, .cloud-table td {
    padding: 18px 22px;
    text-align: left;
    font-size: 0.92rem;
}

.cloud-table th {
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.25);
}

.cloud-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted, #94a3b8);
}

.cloud-table tr:hover td {
    background: rgba(0, 212, 255, 0.04);
}

.cloud-table .highlight-col {
    color: #00d4ff;
    font-weight: 600;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(13, 19, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.4);
}

.faq-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.3rem;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 24px 22px 24px;
    color: var(--text-muted, #94a3b8);
    font-size: 0.92rem;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* ================= MARKETING PRICING & CHECKOUT MODAL STYLES ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    width: 95%;
    margin: 40px auto;
}

.pricing-card {
    background: rgba(13, 19, 31, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(14px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.pricing-card.featured {
    border-color: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
    background: rgba(13, 19, 31, 0.9);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #00d4ff;
    color: #05070a;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted, #94a3b8);
    min-height: 48px;
    margin-bottom: 16px;
    line-height: 1.45;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    font-size: 0.84rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.plan-features li::before {
    content: "✓";
    color: #00d4ff;
    font-weight: 800;
    flex-shrink: 0;
}

.plan-buy-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.pricing-card.featured .plan-buy-btn,
.plan-buy-btn:hover {
    background: #00d4ff;
    color: #05070a;
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.4);
}

/* Plan Checkout Modal */
.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.plan-modal-overlay.active {
    display: flex;
}

.plan-modal-box {
    background: #0d131f;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 18px;
    max-width: 520px;
    width: 100%;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.2);
    animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.plan-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted, #94a3b8);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.plan-modal-close:hover {
    color: #00d4ff;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}