/*
    Zencroo Studio — Premium Product Page Styles
    Design Language: Glassmorphism · Futuristic · High-Fidelity
*/

@font-face {
    font-family: 'Batangas';
    src: url('../assets/fonts/Batangas.woff2') format('woff2'),
         url('../assets/fonts/Batangas.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.font-batangas {
    font-family: 'Batangas', sans-serif !important;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* ─── Page Hero ────────────────────────────────────────────────────────────── */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-deep);
    padding-top: 90px;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 60% 40%, rgba(100, 255, 218, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(252, 196, 25, 0.05) 0%, transparent 50%);
}

.product-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(100, 255, 218, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.product-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 3rem 0 4rem;
}

.product-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(100, 255, 218, 0.08);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.product-hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.4);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
        box-shadow: 0 0 0 6px rgba(100, 255, 218, 0);
    }
}

.product-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.product-hero-title .accent-text {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero-title {
    letter-spacing: -1px !important;
    margin-bottom: 1.2rem !important;
}

.product-brand-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}

.product-hero-desc {
    font-size: 1.15rem !important;
    margin-bottom: 2.5rem !important;
    max-width: 520px !important;
}

.btn-hero-explore {
    background: rgba(100, 255, 218, 0.1) !important;
    border-color: rgba(100, 255, 218, 0.3) !important;
    color: var(--accent-blue) !important;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 520px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.badge-icon-check {
    color: var(--accent-blue);
}

.badge-icon-bolt {
    color: var(--accent-gold);
}

.badge-icon-shield {
    color: #a78bfa;
}

.section-desc {
    margin: 0 auto;
}

.product-hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.product-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--accent-blue), #00b8a4);
    color: var(--primary-deep) !important;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(100, 255, 218, 0.35);
}

.btn-download i {
    font-size: 1.1rem;
}

/* Download Dropdown */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 280px;
    background: var(--primary-light);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.8rem;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.download-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.download-menu.drop-up {
    top: auto;
    bottom: calc(100% + 15px);
    transform: translateY(-15px);
}

.download-menu.drop-up.active {
    transform: translateY(0);
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
}

.download-item:last-child {
    margin-bottom: 0;
}

.download-item:hover {
    background: var(--glass);
    transform: translateX(5px);
}

.download-item i {
    font-size: 1.2rem;
    color: var(--accent-blue);
    width: 24px;
    text-align: center;
}

.download-item .item-text {
    display: flex;
    flex-direction: column;
}

.download-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.download-item small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.feature-icon-yellow {
    background: rgba(252, 196, 25, 0.08) !important;
    border-color: rgba(252, 196, 25, 0.2) !important;
}

.feature-icon-green {
    background: rgba(52, 211, 153, 0.08) !important;
    border-color: rgba(52, 211, 153, 0.2) !important;
}

.tag-yellow {
    color: var(--accent-gold) !important;
    background: rgba(252, 196, 25, 0.06) !important;
    border-color: rgba(252, 196, 25, 0.15) !important;
}

.tag-green {
    color: #34d399 !important;
    background: rgba(52, 211, 153, 0.06) !important;
    border-color: rgba(52, 211, 153, 0.15) !important;
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    color: var(--text-white);
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-watch:hover {
    background: var(--glass);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* ─── Download Counter Badge ──────────────────────────────────────────────── */
.download-counter {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.download-counter .icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.download-counter .counter-data {
    display: flex;
    flex-direction: column;
}

.download-counter .counter-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.download-counter .counter-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-blue);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    transition: color 0.3s;
}

.download-counter .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 5px rgba(74, 222, 128, 0);
    }
}

/* ─── Hero Visual Mockup ──────────────────────────────────────────────────── */
.product-hero-visual {
    position: relative;
    margin-bottom: 13rem;
}

.product-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ─── PC Monitor Mockup (3D) ────────────────────── */
.monitor-wrapper {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    perspective: 2000px;
    z-index: 5;
    animation: float-hero 8s ease-in-out infinite;
    transform: rotateY(-15deg) rotateX(5deg);
}

.monitor-frame {
    background: #0a0a0a;
    border: 12px solid #1a1a1a;
    border-radius: 14px;
    padding: 2px;
    /* Super thin gap for realism */
    position: relative;
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        -10px 10px 30px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
}

.monitor-screen {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    line-height: 0;
    aspect-ratio: 16 / 10;
    outline: 1px solid rgba(255, 255, 255, 0.05);
    /* Slight edge highlight */
}

.monitor-screen img {
    width: 102%;
    /* Slight overshoot to ensure no gaps */
    height: 102%;
    margin: -1%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

/* ─── CTA Metrics ─────────────────────────────── */
.cta-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cta-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-metric-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.cta-metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-metric-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.monitor-stand {
    position: relative;
    width: 60px;
    height: 70px;
    background: linear-gradient(to right, #111, #222, #0a0a0a);
    margin: -5px auto 0;
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    transform: translateZ(-20px) rotateX(-10deg);
}

.monitor-base {
    width: 180px;
    height: 12px;
    background: linear-gradient(to bottom, #1a1a1a, #050505);
    margin: -10px auto 0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    transform: translateZ(-30px);
}

@keyframes float-hero {

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

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

/* Floating badges on mockup */
.mockup-badge {
    position: absolute;
    background: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    white-space: nowrap;
    z-index: 10;
    animation: float-badge 4s ease-in-out infinite;
}

.mockup-badge-1 {
    top: 12%;
    right: -12%;
    border-color: rgba(100, 255, 218, 0.25);
    color: var(--accent-blue);
    animation-delay: 0.5s;
}

.mockup-badge-2 {
    bottom: 15%;
    left: -12%;
    border-color: rgba(252, 196, 25, 0.25);
    color: var(--accent-gold);
    animation-delay: 1.5s;
}

@keyframes float-badge {

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

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

.mockup-badge i {
    margin-right: 0.4rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

/* ─── Section Shared ────────────────────────────────────────────────────────── */
.product-section {
    padding: 3.8rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.02) 0%, transparent 70%), var(--primary-deep);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.8rem;
}

.section-title-lg {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
}

/* ─── Features ─────────────────────────────────────────────────────────────── */
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-accent, var(--accent-blue)), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--card-accent, var(--accent-blue));
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(100, 255, 218, 0.08);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--card-accent, var(--accent-blue));
    margin-bottom: 1.3rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(100, 255, 218, 0.15);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.7rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.2rem;
}

.feature-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--card-accent, var(--accent-blue));
    background: rgba(100, 255, 218, 0.06);
    border: 1px solid rgba(100, 255, 218, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

/* ─── Advantages ───────────────────────────────────────────────────────────── */
.advantages-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.advantages-visual {
    position: relative;
}

.adv-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.adv-metric-card:hover {
    border-color: rgba(100, 255, 218, 0.3);
    background: rgba(100, 255, 218, 0.04);
}

.adv-metric-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.adv-metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.adv-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.advantages-list li:last-child {
    border-bottom: none;
}

.adv-icon {
    width: 40px;
    height: 40px;
    background: rgba(252, 196, 25, 0.1);
    border: 1px solid rgba(252, 196, 25, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.adv-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.adv-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Problems Solved ──────────────────────────────────────────────────────── */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: var(--transition);
}

.problem-item:hover {
    border-color: rgba(252, 196, 25, 0.3);
    background: rgba(252, 196, 25, 0.03);
    transform: translateY(-4px);
}

.problem-num {
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    color: var(--primary-deep);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.problem-body h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.problem-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Screenshots Showcase ─────────────────────────────────────────────────── */
.showcase-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.showcase-tab:hover,
.showcase-tab.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--primary-deep);
}

.showcase-screen {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(100, 255, 218, 0.06);
    display: none;
}

.showcase-screen.active {
    display: block;
    animation: fade-in-up 0.4s ease;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-screen .screen-bar {
    background: rgba(10, 20, 40, 0.95);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

.showcase-screen img {
    width: 100%;
    display: block;
}

/* Mini SVG Mockup Screens (Canvas-based) */
.screen-mockup {
    background: #0a1628;
    min-height: 380px;
    display: grid;
    grid-template-columns: 200px 1fr 180px;
    gap: 1px;
    background-color: rgba(100, 255, 218, 0.05);
}

.screen-sidebar {
    background: #0d1f3c;
    padding: 1.2rem;
}

.screen-main {
    background: #0a1628;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screen-panel {
    background: #0d1f3c;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.screen-panel-title {
    font-size: 0.7rem;
    color: rgba(100, 255, 218, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Wave Graph SVG */
.wave-graph {
    width: 100%;
    height: 100px;
}

/* Gauge */
.gauge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.mini-gauge {
    width: 80px;
    height: 80px;
    position: relative;
}

/* LED Indicators */
.led-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.led-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.led-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.led-dot.green {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.led-dot.red {
    background: #f87171;
    box-shadow: 0 0 6px #f87171;
}

.led-dot.yellow {
    background: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold);
}

.led-dot.blue {
    background: var(--accent-blue);
    box-shadow: 0 0 6px var(--accent-blue);
}

/* Terminal */
.terminal-lines {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    line-height: 1.7;
}

.terminal-line {
    display: flex;
    gap: 0.5rem;
}

.t-prompt {
    color: var(--accent-blue);
    font-weight: 700;
}

.t-cmd {
    color: var(--text-white);
}

.t-output {
    color: #4ade80;
}

.t-comment {
    color: var(--text-muted);
}

/* ─── Feedback / Reviews ───────────────────────────────────────────────────── */
.feedback-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feedback-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.feedback-form-wrap h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feedback-form-wrap .form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.rating-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--glass-border);
    transition: var(--transition);
    line-height: 1;
    padding: 0;
}

.star-btn:hover,
.star-btn.active {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.feedback-form .form-group {
    margin-bottom: 1.2rem;
}

.feedback-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: var(--transition);
    resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(100, 255, 218, 0.04);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.08);
}

.feedback-form textarea {
    min-height: 110px;
}

.btn-submit-feedback {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, var(--accent-blue), #00b8a4);
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-submit-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.feedback-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #4ade80;
}

.feedback-success .check-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feedback-success h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feedback-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reviews Side */
.reviews-side h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.reviews-side .reviews-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.rating-avg-box {
    background: rgba(252, 196, 25, 0.05);
    border: 1px solid rgba(252, 196, 25, 0.15);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.avg-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.avg-details .stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.avg-details .review-count {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.review-list::-webkit-scrollbar {
    width: 4px;
}

.review-list::-webkit-scrollbar-track {
    background: var(--glass);
    border-radius: 4px;
}

.review-list::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.3rem;
    animation: slide-in 0.4s ease;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-white);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Final Action (CTA + TOS Combined) ─────────────────────────────────── */
.product-final-action {
    padding: 3.5rem 0 3rem;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 70%), var(--primary-deep);
}

.product-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 70%), var(--primary-deep);
}

.action-card-elite {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 1px;
    position: relative;
    /* overflow: hidden; Removed to prevent dropdown clipping */
    backdrop-filter: blur(30px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1100px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.action-card-elite:hover {
    transform: translateY(-5px);
}

.action-main,
.action-legal {
    padding: 3.5rem;
}

.action-main {
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.action-legal {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.welcome-hero-branding {
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.welcome-hero-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    /* filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.4)); */
}

.welcome-hero-text {
    display: flex;
    flex-direction: column;
}

.welcome-hero-branding h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
}

.text-blue {
    background: linear-gradient(to bottom right, #00d4ff, #4f46e5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.motto {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.action-card-elite h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.action-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.legal-content {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content strong {
    color: var(--accent-gold);
}

.cta-footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-footer-badges i {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .action-card-elite {
        grid-template-columns: 1fr;
    }

    .action-main {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {

    .action-main,
    .action-legal {
        padding: 2.5rem 1.5rem;
    }

    .action-card-elite h2 {
        font-size: 1.8rem;
    }

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

    .cta-buttons button,
    .cta-buttons a {
        width: 100%;
    }
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .screen-mockup {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .product-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0 3rem;
        text-align: center;
    }

    .product-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .welcome-hero-branding {
        justify-content: center;
        margin-bottom: 1.5rem !important;
    }

    .product-hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .product-hero-desc {
        margin: 0 auto 2rem !important;
    }

    .product-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .product-hero-btns .btn-watch,
    .product-hero-btns .download-dropdown,
    .product-hero-btns .btn-download {
        width: 100% !important;
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .download-menu {
        width: 100% !important;
        left: 0 !important;
    }

    .product-hero-visual {
        order: -1;
        margin-bottom: 0rem;
    }

    .mockup-badge-1,
    .mockup-badge-2 {
        display: none;
    }

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

    .feedback-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

/* ─── Technical Specifications ────────────────────────────────────────────── */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.spec-item:hover {
    border-color: var(--accent-blue);
    background: rgba(100, 255, 218, 0.04);
    transform: translateY(-5px);
}

.spec-item i {
    font-size: 1.8rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.spec-content h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.spec-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}



/* ─── Advantage Grid ──────────────────────────────────────────────────────── */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    padding: 2.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    transition: var(--transition);
}

.advantage-item:hover {
    border-color: var(--accent-gold);
    background: rgba(252, 196, 25, 0.04);
    transform: scale(1.02);
}

.advantage-item .adv-icon {
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

.advantage-item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

/* ─── Audience Section (Aura Card Redesign) ───────────────────────────── */
.audience-elite {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.aura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 1rem;
    margin-top: 5rem;
    perspective: 2000px;
}

.aura-card {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    cursor: default;
}

.aura-tilt-inner {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 3rem 1.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: transform 0.1s ease-out, border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.aura-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            hsla(var(--hue, 200), 100%, 70%, 0.15),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.aura-card:hover .aura-glow {
    opacity: 1;
}

.aura-card:hover .aura-tilt-inner {
    border-color: hsla(var(--hue, 200), 100%, 70%, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-category {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: hsla(var(--hue, 200), 100%, 70%, 0.8);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.aura-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-icon-wrapper i {
    font-size: 2.2rem;
    color: hsla(var(--hue, 200), 100%, 75%, 1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-aura {
    position: absolute;
    width: 100%;
    height: 100%;
    background: hsla(var(--hue, 200), 100%, 70%, 0.15);
    border-radius: 20px;
    filter: blur(15px);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.aura-card:hover .aura-icon-wrapper i {
    transform: translateZ(30px) scale(1.1);
}

.aura-card:hover .icon-aura {
    transform: scale(1.4);
    opacity: 0.8;
}

.aura-text {
    transform-style: preserve-3d;
}

.aura-text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    transform: translateZ(20px);
}

.aura-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    transform: translateZ(10px);
}

@media (max-width: 768px) {
    .aura-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aura-tilt-inner {
        padding: 2.5rem 2rem;
    }
}

.why-pro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.why-pro-intro {
    position: sticky;
    top: 120px;
}

.pro-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 100px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pro-tagline i {
    font-size: 1rem;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {

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

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

.pro-reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pro-reason-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pro-reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.pro-reason-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(100, 255, 218, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pro-reason-card:hover::after {
    opacity: 1;
}

.reason-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reason-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 2px;
}

.reason-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.pro-reason-card:hover .reason-icon {
    background: var(--accent-blue);
    color: var(--primary-deep);
    transform: rotate(10deg);
}

.pro-reason-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.pro-reason-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pro-footer-callout {
    margin-top: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.pro-footer-callout p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    font-style: italic;
    letter-spacing: 0.5px;
}

.pulse-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    position: relative;
    max-width: 200px;
}

.pulse-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-blue);
    animation: move-pulse 3s infinite linear;
}

@keyframes move-pulse {
    0% {
        left: -20px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 1100px) {
    .why-pro-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .why-pro-wrapper {
        grid-template-columns: 1fr;
    }

    .why-pro-intro {
        position: static;
        text-align: center;
        margin-bottom: 4rem;
    }
}

@media (max-width: 600px) {
    .pro-reasons-grid {
        grid-template-columns: 1fr;
    }
}

.tos-header-refined {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.tos-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(100, 255, 218, 0.02));
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 2.2rem;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.1);
}

.tos-title-group h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.tos-title-group p {
    font-size: 0.85rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.tos-content-block {
    position: relative;
    z-index: 1;
}

.tos-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.tos-legal-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: justify;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.tos-legal-text strong {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .tos-box-premium {
        padding: 3.5rem 2.5rem;
    }

    .tos-header-refined {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }

    .tos-title-group h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tos-legal-text {
        padding: 2rem 1.5rem;
        font-size: 0.95rem;
        text-align: left;
    }
}

/* ─── How It Works (Elite) ─────────────────────────────────────────── */
.hiw-elite {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.hiw-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hiw-icon-wrap {
    width: 100px;
    height: 100px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: transform 0.4s ease;
}

.hiw-icon-wrap i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--accent-blue);
    color: var(--primary-deep);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-deep);
}

.hiw-step h4 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.hiw-step p {
    color: var(--text-muted);
    line-height: 1.7;
}

.hiw-step:hover .hiw-icon-wrap {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-blue);
}

/* ─── FAQ Section (Accordion Style) ───────────────────────────────── */
.faq-elite {
    padding-bottom: 8rem;
}

.faq-grid {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
}

.faq-question i {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-item:hover {
    border-color: rgba(100, 255, 218, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

@media (max-width: 768px) {
    .faq-elite {
        padding-bottom: 1rem;

    }

    .audience-elite {
        padding: 4rem 0;

    }

    .welcome-hero-branding h1 {
        font-size: 2rem;
        font-weight: 900;
    }

    .action-sub {
        margin-bottom: 0.5rem;
    }


}