:root {
    --bg-color: #050505;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-primary: #8a2be2; /* Deep Neon Purple */
    --accent-secondary: #00e5ff; /* Cyan */
    --card-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: 15px;
    --glow-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(0, 229, 255, 0.05), transparent 40%);
    background-attachment: fixed;
}

/* Background animated stars */
.stars {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background: url('bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: width 0.3s, height 0.3s;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 12, 0.8);
    padding: 15px 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-shadow: 0 0 10px var(--accent-primary);
}

.logo i {
    color: var(--accent-secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(39, 201, 63, 0.08);
    border: 1px solid rgba(39, 201, 63, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
    color: #27c93f;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}

.nav-links a:hover {
    color: var(--accent-secondary);
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.0); }
    50% { box-shadow: 0 0 10px 2px rgba(39, 201, 63, 0.2); }
}

@keyframes border-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn.small { padding: 8px 18px; font-size: 0.9rem; }

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-primary), #6000c0);
    color: #fff;
    box-shadow: var(--glow-shadow);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(5px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-secondary);
}

/* ============================================================
   EXECUTOR SHOWCASE SECTION (first section — mirrors external layout)
   ============================================================ */

.executor-showcase-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8% 80px;
    gap: 70px;
    position: relative;
    background: radial-gradient(circle at top left, rgba(138, 43, 226, 0.08), transparent 50%),
                radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.04), transparent 50%);
}

/* Left: content */
.exec-content {
    flex: 1;
    max-width: 540px;
}

.exec-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.exec-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exec-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.65;
}

.exec-features {
    margin-bottom: 35px;
}

.exec-features li {
    font-size: 1.05rem;
}

.exec-btn-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Left: image */
.exec-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    animation: float 6s ease-in-out infinite;
    opacity: 1;
    transform: none;
    position: relative;
}

/* Ambient glow bloom behind executor image */
.exec-image-wrapper::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(138, 43, 226, 0.18) 0%, rgba(0, 229, 255, 0.06) 50%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    filter: blur(25px);
}

.exec-img-frame {
    position: relative;
    display: inline-block;
}

.exec-img-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 300% 300%;
    animation: border-shimmer 4s ease infinite;
    z-index: -1;
    opacity: 0.42;
    filter: blur(2px);
}

.exec-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(138,43,226,0.15), rgba(0,229,255,0.07));
    filter: blur(40px);
    opacity: 0.18;
    z-index: -2;
    transform: scale(1.05);
}

.executor-showcase {
    width: 100%;
    max-width: 600px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 28px rgba(138, 43, 226, 0.22);
    border: none;
    display: block;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.executor-showcase:hover {
    box-shadow: 0 25px 65px rgba(0,0,0,0.8), 0 0 45px rgba(138, 43, 226, 0.32);
    transform: scale(1.01);
}

@media (max-width: 900px) {
    .executor-showcase-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 50px;
    }
    .exec-content { max-width: 100%; }
    .exec-image-wrapper { width: 100%; justify-content: center; }
    .exec-btn-row { justify-content: center; }
    .exec-title { font-size: 3rem; }
    .exec-header { justify-content: center; }
}

/* Features Section */
.features {
    padding: 100px 8%;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(138, 43, 226, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Community Section Fixes */
.community {
    padding: 100px 8%;
    background: rgba(5, 5, 10, 0.6);
    position: relative;
    overflow: hidden;
}

.rating-dashboard {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    gap: 80px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
}

@media (max-width: 900px) {
    .rating-dashboard {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
        margin: 20px auto;
    }
}

.rating-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    padding-right: 40px;
}

@media (max-width: 900px) {
    .rating-summary {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 40px;
    }
}

.avg-score {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: #fff;
    font-family: inherit;
}

.rating-label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 50, 50, 0.1);
    color: #ff4d4d;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 50, 50, 0.2);
}

.live-indicator .dot {
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: live-blink 1.5s infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.stars-visual {
    display: flex;
    gap: 8px;
    font-size: 1.6rem;
    color: #ffcc00; /* Rich Gold */
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.stars-visual i {
    animation: star-pulse 2s infinite ease-in-out;
}

.stars-visual i:nth-child(2) { animation-delay: 0.2s; }
.stars-visual i:nth-child(3) { animation-delay: 0.4s; }
.stars-visual i:nth-child(4) { animation-delay: 0.6s; }
.stars-visual i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.review-count {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.rating-bars {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-row span {
    width: 65px;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.progress-bg {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #00b67a;
    border-radius: 10px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Fix */
.modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Ensure high priority */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none; /* Controlled by display: none in DOM or show class */
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #111;
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 28px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.3);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #444;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover { color: #fff; }

/* ============================================================
   REVIEW MODAL STYLES
   ============================================================ */

.review-modal-content {
    max-width: 560px !important;
    text-align: left !important;
    padding: 40px 44px 36px !important;
}

.review-modal-content h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Text review */
.review-text-wrap {
    margin-bottom: 20px;
}

.review-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.review-label-required {
    color: var(--accent-primary);
    margin-left: 3px;
}

.review-label-optional {
    color: #555;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.82rem;
}

.review-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    line-height: 1.6;
    padding: 14px 16px;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.review-textarea::placeholder {
    color: #444;
}

.review-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.15);
}

.review-char-count {
    text-align: right;
    font-size: 0.78rem;
    color: #444;
    margin-top: 6px;
}

/* Stars section (secondary / compact) */
.stars-section {
    margin-bottom: 28px;
}

.stars-rating-input {
    font-size: 1.9rem;
    margin: 10px 0 6px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.stars-rating-input i {
    cursor: pointer;
    color: #2a2a2a;
    transition: color 0.2s, transform 0.2s;
}

.stars-rating-input i.hover {
    color: var(--accent-secondary);
    transform: scale(1.15);
}

.stars-rating-input i.active {
    color: #ffcc00;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.modal-rating-hint {
    font-size: 0.82rem;
    color: #555;
    margin-top: 4px;
}

.submit-review-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    margin-top: 4px;
}

/* ============================================================
   REVIEWS FEED
   ============================================================ */

.reviews-feed {
    max-width: 1000px;
    margin: 0 auto 10px;
    padding: 0 4px;
}

.reviews-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--glass-border);
}

.reviews-feed-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.reviews-feed-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 3px 12px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}

.reviews-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 50px 20px;
    color: #333;
    grid-column: 1 / -1;
    text-align: center;
}

.reviews-empty i {
    font-size: 2.5rem;
    color: #222;
}

.reviews-empty p {
    font-size: 0.95rem;
    color: #444;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s, transform 0.3s;
    animation: reviewFadeIn 0.4s ease both;
}

.review-card:hover {
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-card-stars {
    display: flex;
    gap: 4px;
    font-size: 0.85rem;
    color: #ffcc00;
}

.review-card-date {
    font-size: 0.75rem;
    color: #444;
}

.review-card-text {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    word-break: break-word;
}

@media (max-width: 720px) {
    .reviews-list { grid-template-columns: 1fr; }
    .review-modal-content { padding: 30px 24px 28px !important; }
    .stars-rating-input { font-size: 1.7rem; gap: 8px; }
}

/* CTA */
.cta {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.glass-box {
    background: linear-gradient(145deg, rgba(30,30,35,0.8), rgba(15,15,20,0.9));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.glass-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.glass-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-btn.massive {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 12px;
}

.sub-text {
    margin-top: 20px !important;
    font-size: 0.8rem !important;
    opacity: 0.5;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 8%;
    background: rgba(5,5,5,0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p { color: var(--text-muted); font-size: 0.9rem; }

.socials { display: flex; gap: 20px; }
.socials a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.3s; }
.socials a:hover { color: var(--accent-primary); }

/* Utility Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { margin: auto; }
    .btn-group { justify-content: center; }
    .stats-row { justify-content: center; }
    .hero-image-wrapper { width: 100%; justify-content: center; margin-top: 40px; }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}

/* ============================================================
   EXTERNAL SHOWCASE SECTION (mirrors hero layout)
   ============================================================ */

.external-showcase {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 70px;
    position: relative;
    background: linear-gradient(180deg, rgba(0,229,255,0.02) 0%, transparent 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Images on the LEFT side */
.ext-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1.5s;
    position: relative;
}

/* Ambient glow bloom behind the external images */
.ext-image-wrapper::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.12) 0%, rgba(138, 43, 226, 0.08) 50%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

.ext-images-stack {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.ext-img-main,
.ext-img-secondary {
    position: relative;
    background: transparent;
    overflow: visible;
}

/* No fabricated border — let the neon baked into the photos speak for itself */
.ext-img-main::before,
.ext-img-secondary::before {
    display: none;
}

.ext-img-main img,
.ext-img-secondary img {
    width: 100%;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter:
        drop-shadow(0 0 16px rgba(138, 43, 226, 0.5))
        drop-shadow(0 0 32px rgba(0, 229, 255, 0.3));
}

.ext-img-main img:hover,
.ext-img-secondary img:hover {
    transform: scale(1.04) translateY(-8px);
    filter:
        drop-shadow(0 0 24px rgba(0, 229, 255, 0.65))
        drop-shadow(0 0 48px rgba(138, 43, 226, 0.5));
}

/* Content on the RIGHT side */
.ext-content {
    flex: 1;
    max-width: 560px;
}

.ext-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.ext-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    background: linear-gradient(to right, #fff, var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ext-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.65;
}

.ext-features {
    margin-bottom: 35px;
    font-size: 1rem;
}

.ext-features li {
    font-size: 1.05rem;
}

.ext-btn-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Cyan variant button */
.btn-cyan {
    background: linear-gradient(135deg, #007ecd, #00b8e6) !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    color: #fff !important;
}

.btn-cyan:hover {
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.55) !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .external-showcase {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        gap: 50px;
    }
    .ext-content { max-width: 100%; }
    .ext-image-wrapper { width: 100%; justify-content: center; }
    .ext-images-stack { max-width: 100%; }
    .ext-btn-row { justify-content: center; }
    .ext-title { font-size: 2.8rem; }
    .ext-header { justify-content: center; }
}

/* ============================================================
   SHARED COMPONENT STYLES (used across sections)
   ============================================================ */

.product-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(138, 43, 226, 0.12);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.product-icon-wrap.icon-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.2);
    color: var(--accent-secondary);
}

.product-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-executor {
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.35);
    color: #bf7aff;
}

.badge-external {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--accent-secondary);
}

.product-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.product-features-list li i {
    color: #27c93f;
    font-size: 0.85rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(39, 201, 63, 0.4));
}

/* ============================================================
   DOWNLOAD HUB (main CTA at bottom)
   ============================================================ */

.cta {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.dl-hub {
    background: linear-gradient(145deg, rgba(30,30,35,0.85), rgba(12,12,18,0.95));
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 60px;
    max-width: 960px;
    width: 100%;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 40px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(20px);
}

.dl-hub-header {
    text-align: center;
    margin-bottom: 50px;
}

.dl-hub-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.dl-hub-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dl-hub-cards {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
}

.dl-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dl-card-top {
    height: 3px;
    width: 100%;
}

.accent-executor-bar {
    background: linear-gradient(90deg, var(--accent-primary), #9b4fe8, var(--accent-primary));
    background-size: 200% 100%;
    animation: accent-slide 4s linear infinite;
}

.accent-external-bar {
    background: linear-gradient(90deg, var(--accent-secondary), #007ecd, var(--accent-secondary));
    background-size: 200% 100%;
    animation: accent-slide 4s linear infinite;
}

@keyframes accent-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.dl-card-body {
    padding: 35px 30px 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.dl-card-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.dl-product-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-top: 6px;
}

.dl-features {
    flex: 1;
    margin-bottom: 28px;
}

.dl-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 20px;
}

.dl-hub-divider {
    width: 1px;
    background: var(--glass-border);
    align-self: stretch;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .dl-hub { padding: 35px 20px; }
    .dl-hub-cards { flex-direction: column; }
    .dl-hub-divider { width: 100%; height: 1px; }
    .dl-hub-header h2 { font-size: 2rem; }
}

/* ============================================================
   TOS LINK STYLES
   ============================================================ */

.tos-link {
    color: var(--accent-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    transition: color 0.2s, border-color 0.2s;
}

.tos-link:hover {
    color: #fff;
    border-color: #fff;
}

.footer-tos {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(160, 160, 160, 0.3);
    letter-spacing: 0.5px;
}

.footer-tos:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

/* Footer right grouping */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* ============================================================
   TOS MODAL
   ============================================================ */

.tos-modal-content {
    max-width: 820px !important;
    width: 92% !important;
    max-height: 88vh !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    border-radius: 24px !important;
}

.tos-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 36px 22px;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.tos-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tos-effective {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tos-modal-body {
    overflow-y: auto;
    padding: 28px 36px;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 43, 226, 0.4) rgba(255,255,255,0.04);
}

.tos-modal-body::-webkit-scrollbar {
    width: 6px;
}
.tos-modal-body::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}
.tos-modal-body::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.4);
    border-radius: 10px;
}

.tos-warning {
    background: rgba(255, 180, 0, 0.06);
    border: 1px solid rgba(255, 180, 0, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffcc44;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tos-warning i {
    flex-shrink: 0;
    margin-top: 2px;
}

.tos-intro {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.tos-section {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0 4px;
    margin-bottom: 6px;
}

.tos-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.tos-section h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin: 14px 0 8px;
}

.tos-section p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.tos-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 10px 0 14px 4px;
}

.tos-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.tos-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.tos-no-refund {
    background: rgba(138, 43, 226, 0.04);
    border-radius: 10px;
    padding: 16px 16px 4px !important;
    border: 1px solid rgba(138, 43, 226, 0.15) !important;
    margin-bottom: 6px;
}

.tos-final {
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 18px 20px;
    color: #e0d0ff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin-top: 20px;
    text-align: center;
}

.tos-modal-footer {
    padding: 18px 36px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* ============================================================
   FAQ CHATBOT WIDGET
   ============================================================ */

#vade-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none; /* Let clicks pass through when closed */
}

#chat-toggle-btn, #vade-chat-widget.open #chat-panel {
    pointer-events: all; /* Restore clicks for interactive parts */
}

#chat-toggle-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-primary), #5a00b0);
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.5), 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    position: relative;
    animation: chat-pulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

#chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(138, 43, 226, 0.15), 0 12px 30px rgba(0,0,0,0.6);
    animation: none;
}

@keyframes chat-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4), 0 8px 25px rgba(0,0,0,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(138, 43, 226, 0), 0 8px 25px rgba(0,0,0,0.5); }
}

.chat-notif-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27c93f;
    border: 2px solid #050505;
    animation: live-blink 1.5s infinite;
}

.chat-icon-open, .chat-icon-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: opacity 0.25s, transform 0.3s;
}

.chat-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.7);
}

#vade-chat-widget.open #chat-toggle-btn .chat-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.7);
}

#vade-chat-widget.open #chat-toggle-btn .chat-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

#chat-panel {
    width: 360px;
    height: 500px;
    background: rgba(12, 12, 18, 0.96);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 40px rgba(138, 43, 226, 0.15);
    backdrop-filter: blur(20px);
    transform: scale(0.85) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}

#vade-chat-widget.open #chat-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(90,0,176,0.15));
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    flex-shrink: 0;
}

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

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #5a00b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 14px rgba(138, 43, 226, 0.5);
    flex-shrink: 0;
}

.chat-header-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
}

.chat-header-status {
    font-size: 0.72rem;
    color: #27c93f;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.chat-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27c93f;
    animation: live-blink 1.5s infinite;
    display: inline-block;
    flex-shrink: 0;
}

.chat-close-x {
    background: none;
    border: none;
    color: #555;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
}

.chat-close-x:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 43, 226, 0.3) rgba(255,255,255,0.03);
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(138, 43, 226, 0.3); border-radius: 10px; }

.chat-msg {
    display: flex;
    animation: chatMsgIn 0.3s ease both;
}

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

.chat-msg.bot  { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }

.chat-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.55;
    word-break: break-word;
}

.chat-msg.bot .chat-bubble {
    background: rgba(138, 43, 226, 0.12);
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
    background: linear-gradient(135deg, var(--accent-primary), #5a00b0);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.chat-typing .chat-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
}

.chat-typing .chat-bubble span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.7);
    animation: typingDot 1.2s infinite ease-in-out;
    display: inline-block;
}

.chat-typing .chat-bubble span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing .chat-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30%            { transform: translateY(-5px); opacity: 1; }
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.chat-chip {
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #bf7aff;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.chat-chip:hover {
    background: rgba(138, 43, 226, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.chat-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    background: rgba(255,255,255,0.02);
}

.chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    padding: 10px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input::placeholder { color: #444; }

.chat-input:focus {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-primary), #5a00b0);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(138, 43, 226, 0.4);
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

@media (max-width: 480px) {
    #chat-panel { width: calc(100vw - 32px); }
    #vade-chat-widget { right: 16px; bottom: 16px; }
}
