@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #00FF41;
    /* Cyber Green */
    --primary-dim: #00cc33;
    --secondary: #0d1117;
    /* Dark Navy Github/Linear style */
    --surface: #161b22;
    /* Slightly lighter navy */
    --background: #0d1117;
    /* Deep Dark Background */
    --accent: #00FF41;
    /* Unify accent with primary for consistency */
    --text-color: #F0F6FC;
    /* Off-white for dark mode */
    --text-muted: #8b949e;
    --success: #238636;
    --alert: #D29922;
    --danger: #F85149;
    --border-radius: 6px;
    /* Sharper, software feel */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 480px;
    background-color: var(--secondary);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow-x: hidden;

}

.id-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
    background-color: rgb(27, 26, 26);
    color: white;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
}

/* HEADER */
.main-header {
    background-color: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

/* ANIMATIONS */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-animation {
    animation: slideUpFade 0.5s ease forwards;
}

/* SECTIONS COMMON */
section {
    padding: 2rem 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: none;
    /* Controlled by JS */
}

section.active-section {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* HERO */
#hero-section {
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--secondary) 100%);
    padding-top: 2rem;
}

.hero-content {
    background: var(--surface);
    color: var(--text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0px;
    padding-bottom: 3rem;
}

.radar-animation {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.radar-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.radar-icon1 {
    color: var(--primary);
    width: 48px;
    height: 48px;
}

h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* BUTTONS */
.btn {
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: black;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
}

.full-width {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
}

/* QUIZ STYLES */
.progress-container {
    width: 100%;
    background-color: var(--surface);
    height: 4px;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--primary);
}

h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: normal;
    text-transform: none;
    font-weight: 600;
    margin-bottom: 2rem;
}

.question-block h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.support-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    display: block;
    font-style: italic;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.option-card:hover,
.option-card:active {
    border-color: var(--primary);
    background-color: rgba(0, 255, 65, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.option-card i {
    color: var(--text-muted);
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.option-card:hover i {
    color: var(--primary);
}

.option-btn {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.option-btn:hover,
.option-btn:active {
    border-color: var(--primary);
    background-color: rgba(0, 255, 65, 0.05);
    padding-left: 1.5rem;
    color: var(--primary);
}

.modern-select {
    width: 100%;
    padding: 1.25rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    background: var(--surface);
    color: var(--text-color);
    cursor: pointer;
    outline: none;
}

.modern-select:focus {
    border-color: var(--primary);
}

/* ALERTS */
.alert-box {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

/* LOADING SCREEN */
#loading-screen {
    text-align: center;
    padding-top: 4rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #E0E0E0;
    border-top: 5px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-bar-container {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.3s ease;
}

.loading-steps {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.loading-steps li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    /* Fixed undefined var */
    /* display: flex;  <-- REMOVED to fix text breaking */
    /* align-items: center; <-- REMOVED */
    /* gap: 8px; <-- REMOVED */
    display: block;
    /* Ensure block layout for list item */
}

.loading-steps li.active {
    color: var(--primary);
    font-weight: 600;
}

.loading-steps li.done {
    color: var(--success);
    text-decoration: line-through;
}


/* SALES PAGE */
.result-header {
    background-color: var(--alert);
    color: black;
    text-align: center;
    padding: 2rem 1.5rem;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin: -2rem -1.5rem 2rem -1.5rem;
    /* Break out of padding */
}

.result-header h1 {
    color: black;
    margin-bottom: 4px;
}

.result-header p {
    color: black;
    margin-bottom: 12px;
}

.success-icon {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-icon i {
    width: 48px;
    height: 48px;
}

.highlight-green {
    color: #4CAF50;
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.result-body {
    padding-bottom: 2rem;
}

.result-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.comparison-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header {
    background-color: #f8f9fa;
    font-weight: 700;
    font-size: 0.9rem;
}

.table-row.footer {
    background-color: #f0fff4;
    font-weight: 700;
}

.col.strike {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 0.9rem;
}

.col.highlight {
    color: var(--success);
    font-weight: 700;
}

.col.big-save {
    color: var(--success);
    font-size: 1.2rem;
    background: #dff0d8;
    padding: 2px 6px;
    border-radius: 4px;
}

.explanation-box {
    background-color: #e8f0fe;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.explanation-box h3 {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

/* Money Recovered Statement Card (Tech Invoice) */
.statement-card {
    background: #27272b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    border-top: 4px solid var(--primary);
    /* Accent Top */
}

.statement-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.statement-header i {
    width: 18px;
    height: 18px;
}

.statement-body {
    padding: 1rem;
}

.statement-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.st-label {
    color: #cecece;
}

.st-value {
    font-weight: 600;
}

.st-value.strikethrough {
    color: #ff1d1d;
}

.highlight-yellow {
    color: #FFD60A;
}

.neon-green {
    color: #00FF41;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
}

.statement-divider {
    height: 1px;
    background-image: linear-gradient(to right, #48484a 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 1.5rem 0;
    opacity: 0.6;
}

.partner-logos-container {
    display: inline-flex;
    gap: 4px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0);
    padding: 2px 5px;
    border-radius: 6px;
    opacity: 0.55;
    width: 100%;
    margin-bottom: 23px;
    justify-content: space-around;
    align-items: center;
}

.partner-logo {
    height: 21px;
    filter: brightness(0) invert(1) grayscale(1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.vb-logo-small {
    height: 36px;
    margin-left: 10px;
    vertical-align: middle;
    /* No grayscale for VoeBarato to pop */
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.25));
    border-radius: 6px;
}

.total-row {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.total-row .st-label {
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.total-row .st-value {
    font-size: 1.6rem;
    font-weight: 700;
}

.statement-footer {
    background: rgba(0, 255, 65, 0.05);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.statement-footer p {
    margin-bottom: 0;
    line-height: 1.4;
}


.cta-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    background: white;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius);
}

/* PREMIUM OFFER CARD (GLASSMORPHISM) */
.premium-offer-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.5);
    /* Neon Border */
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    overflow: hidden;
}

/* Subtle glow animation for the border */
.premium-offer-card {
    animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
        border-color: rgba(0, 255, 65, 0.3);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 255, 65, 0.2);
        border-color: rgba(0, 255, 65, 0.8);
    }
}

.price-header {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Neon Green */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.price-main span {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.economy-badge {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.scarcity-counter {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.guarantee-audit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: left;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.guarantee-item i {
    min-width: 16px;
    color: var(--primary);
    margin-top: 2px;
}

/* PULSE BUTTON OVERRIDE for this section */
.btn-neon-pulse {
    background: var(--primary);
    color: #000;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    transition: transform 0.2s;
}

.btn-neon-pulse:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.btn-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.price-info {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.testimonials {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--accent);
}

.t-text {
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
}

.t-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.main-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #999;
}

/* UTILITIES */
.rubberBand {
    animation-name: rubberBand;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

/* DYNAMIC ALERTS */
.tech-info-banner {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    padding: 10px;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--alert);
}

.tech-item i {
    width: 16px;
    height: 16px;
}

.os-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    text-align: left;
}

.os-alert strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.ios-warning {
    background: rgba(255, 59, 48, 0.15);
    /* Red tint */
    border: 1px solid #FF3B30;
    color: #ff6b6b;
}

.ios-warning i {
    color: #FF3B30;
}

.android-info {
    background: rgba(0, 255, 65, 0.1);
    /* Green tint */
    border: 1px solid var(--alert);
    color: var(--alert);
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
    display: inline;
    /* Force inline to prevent breaking */
}

/* INDIGNATION BOX */
.indignation-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

/* MECHANISM ICONS */
.mechanism-item {
    display: flex;
    gap: 15px;
    margin-bottom: 2.1rem;
    align-items: flex-start;
}

.btn-no {
    background-color: #FF3B30;
    color: white;
}

.mech-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mechanism-item strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.mechanism-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =========================================
   CYBER SECURITY DASHBOARD & TRACKING LOG
   Theme: Terminal Hacker / Dark Mode
   ========================================= */

/* Shared Panel Styles */
.cyber-panel {
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

/* Subtle Grid Background Effect */
.cyber-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* 1. TRACKING LOG PANEL (ENHANCED) */
.tracking-log-panel {
    background: #0a0a0a;
    border: 1px solid var(--primary);
    /* Cyber Green */
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.15);
}

.log-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 10px;
}

.log-title i {
    color: var(--primary);
    animation: pulse 2s infinite;
}

.log-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.log-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.log-label {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    /* Clean font for labels */
}

.log-value {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
}

.log-value i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Special States */
.log-value.warning-blink {
    color: #feeb0e;
}

.log-value.warning-blink i {
    color: #feeb0e;
}


.risk-status {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    /* Neon Red */
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 10px rgba(255, 59, 48, 0.05);
}

/* 2. SECURITY DASHBOARD (NEW) */
.security-dashboard {
    /* Uses .cyber-panel base */
    border-color: #FF3B30;
    /* Red Border for Threat Theme */
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.15);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FF3B30;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.radar-icon {
    animation: pulse-red 1.5s infinite;
}

.threat-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.threat-count {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #FF3B30;
    text-shadow: 0 0 20px rgba(255, 59, 48, 0.4);
    font-family: 'Courier New', monospace;
}

.threat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.threat-subtext {
    font-size: 0.8rem;
    color: #feeb0e;
    /* Warning Yellow */
    margin-top: 5px;
    font-family: 'Courier New', monospace;
}

/* TERMINAL WINDOW */
.terminal-window {
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    height: 180px;
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #0f0;
    /* Default terminal green, but we'll override */
    margin-bottom: 1rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 1);
}

.terminal-header-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
}

.term-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
}

.terminal-content {
    margin-top: 20px;
    /* Space for header */
    height: 100%;
    overflow-y: hidden;
    /* We will animate scrolling */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Keep text at bottom */
}

.log-line {
    margin-bottom: 4px;
    white-space: nowrap;
    opacity: 0.9;
}

.log-line.alert {
    color: #FF3B30;
}

.log-line.info {
    color: #2D9CDB;
}

.log-line.warn {
    color: #feeb0e;
}

/* Scanline Effect */
.terminal-window::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.critical-alert-bar {
    background: #FF3B30;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* INFLATION TABLE */
.inflation-table-container {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.inflation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.inflation-table th {
    text-align: left;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.inflation-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.inflation-table td.red-text {
    color: #FF3B30;
    text-align: center;
}

.inflation-table td.green-text {
    color: var(--success);
    text-align: center;
    font-weight: 700;
}

.inflation-table .total-row td {
    border-bottom: none;
    padding-top: 15px;
}

/* BADGES */
.scarcity-badge {
    background: rgba(255, 252, 48, 0.1);
    color: var(--alert);
    font-size: 0.8rem;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 252, 48, 0.3);
}

.logo-book {
    filter: grayscale(100%);
    background-color: white;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 6px;
}

.logo-decolar {
    filter: grayscale(100%);
    background-color: white;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 6px;
}

.logo-voebarato {
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 10px;
}

.scarcity-badge i {
    width: 14px;
    height: 14px;
}

.guarantee-box {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.8rem;
    color: #bbb;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 8px;
}

.guarantee-box i {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.verified-badge {
    color: var(--success);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .container {
        border-right: 1px solid #eeeeee1e;
        border-left: 1px solid #eeeeee1e;
    }
}

/* SOCIAL VALIDATION SECTION */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 rgba(0, 255, 65, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

.map-tag {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.tag-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    border: 2px solid #fff;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

.tag-tooltip {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: white;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show tooltip always or on hover? User wants it visible "Tags de Economia". 
If I make them always visible, it might clutter mobile. 
Propably better to animate them in or keep them visible.
The request implies they are visible labels: "Destaque 4 pontos no mapa com 'Tags de Economia' flutuantes".
I'll make them visible by default or animate them in. */
.tag-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.tag-tooltip strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Identity Bar - Modern & Discrete */
.identity-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);

}

.id-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;

}

.id-item i {
    width: 14px;
    height: 14px;
    color: var(--primary);

}

.id-separator {
    color: rgba(255, 255, 255, 0.2);

}

@media (max-width: 600px) {
    .identity-bar {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        width: 100%;
        border-radius: 12px;

    }

    .id-separator {
        display: none;

    }


}

/* Neon Price Counter */
#price-app {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    color: #00FF41 !important;

}

.green-text {
    color: #00FF41 !important;
    font-weight: 700;

}

.red-text {
    color: #FF3B30 !important;

}

.strikethrough-price {
    text-decoration: line-through;
    color: #8E8E93;

}

/* Identity Bar - Vertical Stack with Connectors */
.identity-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    background: transparent;
    padding: 0;
    border: none;
    width: 100%;

}

.id-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    width: fit-content;

}

.id-item i {
    width: 16px;
    height: 16px;
    color: var(--primary);

}

.id-separator-vertical {
    width: 1px;
    height: 12px;
    background: var(--primary);
    opacity: 0.5;
    margin: 2px 0;

}

/* Result Header Refinement */
.result-header {
    background: radial-gradient(circle at center, rgba(62, 62, 66, 0.4) 0%, rgba(28, 28, 30, 0) 70%);
    padding: 2.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}

.result-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

}

/* Money Recovered Statement Card (Tech Invoice) */
.statement-card {
    background: #1C1C1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    border-top: 4px solid var(--primary);
    /* Accent Top */
}

.statement-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.statement-header i {
    width: 18px;
    height: 18px;

}

.statement-body {
    padding: 1.5rem;

}

.statement-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;

}

.st-label {
    color: #cecece;

}

.st-value {
    font-weight: 600;

}

.st-value.strikethrough {
    text-decoration: line-through;
    color: #636366;

}

.highlight-yellow {
    color: #FFD60A;

}

.neon-green {
    color: #00FF41;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);

}

.statement-divider {
    height: 1px;
    background-image: linear-gradient(to right, #48484a 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 1.5rem 0;
    opacity: 0.6;

}

.total-row {
    margin-bottom: 0;
    font-size: 1.2rem;

}

.total-row .st-label {
    font-weight: 700;
    color: white;

}

.total-row .st-value {
    font-size: 1.6rem;
    font-weight: 700;

}

.statement-footer {
    background: rgba(0, 255, 65, 0.05);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);

}

.statement-footer p {
    margin-bottom: 0;
    line-height: 1.4;

}

/* Logo Integration in Statement Card */
.partner-logos-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    vertical-align: middle;

}

.partner-logo {
    height: 18px;
    filter: grayscale(100%);
    opacity: 0.7;
    background: white;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;

}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;

}

.vb-logo-small {
    height: 22px;
    margin-left: 10px;
    vertical-align: middle;
    /* No grayscale for VoeBarato to pop */
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.5));

}

/* Ensure labels align correctly with images */
.statement-row .st-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Wrap on small screens */
    gap: 5px;

}

/* Responsive adjustments */
@media (max-width: 400px) {
    .partner-logos-container {
        margin-left: 0;
        margin-top: 4px;
        width: 100%;

    }

    .vb-logo-small {
        margin-left: 0;
        margin-top: 4px;
        display: block;

    }


}



/* SECURITY DIAGNOSTIC SECTION */
.security-diagnostic-section {
    /* Light Gray / White-ish */
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    color: #1a1a1a;
}

.sd-header {
    background: #fffb0034;
    /* Vibrant Orange */
    color: #ece91b;
    border: 1px solid #ece91b;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.sd-header i {
    width: 24px;
    height: 24px;
}

.sd-content {
    padding: 1.5rem;
}

.sd-status-row,
.sd-diagnosis-row {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.sd-status-done {
    font-weight: 700;
    color: #34C759;
    /* Success Green */
}

.sd-highlight-red {
    font-weight: 700;
    color: #FF3B30;
    /* Red */
    background: rgba(255, 58, 48, 0.253);
    padding: 2px 6px;
    border-radius: 4px;
}

.sd-divider {
    height: 1px;
    background: #e5e5ea5e;
    margin: 1.5rem 0;
}

.sd-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner {
    color: black;
}

.sd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e5ea;
}

.sd-icon {
    width: 40px;
    height: 40px;
    background: #f2f2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    flex-shrink: 0;
}

.sd-info {
    display: flex;
    flex-direction: column;
}

.sd-label {
    font-size: 0.75rem;
    color: #8e8e93;
    text-transform: uppercase;
    font-weight: 600;
}

.sd-value {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.sd-risks-list {
    list-style: none;
    margin-bottom: 2rem;
    background-color: rgb(231, 176, 176);
    padding: 1rem;
    border-radius: 8px;
}

.sd-risks-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    align-items: flex-start;
    color: #9c0c0c;
}

.sd-risk-icon {
    min-width: 20px;
    width: 20px;
    color: #b30c0c;
    margin-top: 2px;
}

.sd-action-btn {
    background: var(--primary);
    /* Tech Blue */
    color: rgb(34, 32, 32);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 255, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.8rem;
    margin-bottom: 1.6rem;
}

.sd-action-btn:hover {
    background: #00cc44;
    transform: translateY(-2px);
}

/* TERMINAL STYLES */
.terminal-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #333;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header-bar {
    background: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #333;
}

.term-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-content {
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    font-size: 0.85rem;
    color: #d4d4d4;
    text-align: left;
}

.log-line {
    margin-bottom: 4px;
    line-height: 1.4;
    word-wrap: break-word;
}

.log-line.info {
    color: #d4d4d4;
}

.log-line.alert {
    color: #FF3B30;
    font-weight: bold;
}

.log-line.warn {
    color: #FFD60A;
}

.log-line.success {
    color: #34C759;
    font-weight: bold;
}

/* Custom Scrollbar for Terminal */
.terminal-content::-webkit-scrollbar {
    width: 8px;
}

.terminal-content::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.terminal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.terminal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* REVIEWS SECTION */
.reviews-section {
    margin-top: 3rem;
    text-align: left;
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-title h3 {
    margin-bottom: 0.2rem;
    font-size: 1.3rem;
    color: var(--text-color);
}

.reviews-summary-card {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    align-items: center;
}

.rating-big {
    text-align: center;
    min-width: 100px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.rating-stars-static {
    color: #fbbf24;
    font-size: 0.9rem;
    margin: 5px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.rating-stars-static i {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rating-bars {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bar-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 3px;
}

/* WRITE REVIEW */
.write-review-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.star-input {
    display: flex;
    gap: 5px;
    margin: 10px 0;
    cursor: pointer;
}

.star-input i {
    width: 28px;
    height: 28px;
    color: #444;
    transition: color 0.2s;
}

.star-input i.active,
.star-input i:hover {
    color: #fbbf24;
    fill: #fbbf24;
}

.review-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: white;
    margin-bottom: 1rem;
    resize: none;
    font-family: inherit;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* REVIEW LIST */
.user-review-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.review-user-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.verified-badge-small {
    color: var(--primary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #fbbf24;
    display: flex;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.review-stars i {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
    text-align: left;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .reviews-summary-card {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .rating-big {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* ELITE CTA REDESIGN */
.cta-section {
    position: relative;
    padding: 1rem 0rem;
    margin-top: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.cta-elite-card {
    background: #020d17;
    /* Dark Navy */
    background-image: radial-gradient(circle at 50% 0%, rgba(36, 185, 16, 0.1) 0%, rgba(2, 6, 23, 0) 60%);
    border-radius: 24px;
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Pulsing Emerald Glow Ring */
.cta-elite-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    /* ultra-thin */
    background: linear-gradient(to bottom, rgba(30, 185, 16, 0.8), rgba(16, 185, 129, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: pulse-border 3s infinite alternate;
}

@keyframes pulse-border {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.1) inset;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.3) inset;
    }
}

/* Social Proof - Top */
.social-proof-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.facepile-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facepile-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -12px;
    /* Overlap */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.facepile-avatar:first-child {
    margin-left: 0;
}

.social-text-block {
    text-align: center;
}

.social-validation-text {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    margin-bottom: 4px;
}

.social-rating-line {
    font-size: 0.85rem;
    color: #10B981;
    /* Emerald Green */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.social-rating-line i {
    width: 14px;
    height: 14px;
    fill: #10B981;
}

/* Dynamic Island Alert */
.dynamic-island-alert {
    background: rgba(251, 146, 60, 0.15);
    /* Soft Orange bg */
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: #fdba74;
    /* Soft Orange text */
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-family: 'Inter', monospace;
    /* Tech feel */
    letter-spacing: -0.2px;
}

/* Price & Action Block */
.elite-offer-block {
    margin-bottom: 2.5rem;
}

.price-row-elite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.old-price-elite {
    font-size: 1.1rem;
    color: #64748b;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price-elite {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgb(75, 255, 51);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.btn-elite-action {
    background: #61e624;
    /* Emerald */
    color: #020617;
    /* Dark Navy Text */
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(16, 185, 16, 0.4);
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 1rem;
}

.btn-elite-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(30, 185, 16, 0.6);
    background: #05960c;
}

.secure-payment-text {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Institutional Footer */
.institutional-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.inst-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.inst-badge:hover {
    opacity: 1;
}

.inst-badge img,
.inst-badge i {
    width: 18px;
    height: 18px;
    filter: invert(1) brightness(2);
    /* Make white */
}

.inst-badge span {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

@media (max-width: 400px) {
    .cta-elite-card {
        padding: 2rem 1.2rem;
    }

    .new-price-elite {
        font-size: 3rem;
    }

    .institutional-footer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}

/* SECURITY DIAGNOSTIC REDESIGN */
.security-diagnostic-section {
    background: transparent;
    padding: 0;
    margin-bottom: 3rem;
    border: none;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
}

.sec-app-card {
    background: #0f2a11;
    /* Dark Slate */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. Status Dashboard Header */
.status-dashboard-header {
    background: #000000;
    /* Matte Black */
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid #333;
}

.status-dashboard-header span {
    color: #ef4444;
    /* Critical Red */
    font-family: 'Oswald', 'Inter', sans-serif;
    /* Condensed feel */
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.radar-icon {
    width: 24px;
    height: 24px;
    color: #ef4444;
    position: relative;
    animation: radar-pulse 2s infinite;
}

@keyframes radar-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* 2. Glass Cards Grid */
.sec-grid-container {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    background: radial-gradient(circle at top, #3b1e1e 0%, #1a0501 100%);
}

.id-glass-card {
    background: rgba(23, 22, 2, 0.8);
    /* Dark Navy 80% */
    border: 1px solid rgba(185, 182, 16, 0.3);
    /* Emerald transluscent */
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.id-glass-card:hover {
    transform: translateY(-5px);
    border-color: #b91010;
}

.id-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(185, 182, 16, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9b610;
    /* Neon Emerald */
    flex-shrink: 0;
}

.id-info {
    display: flex;
    flex-direction: column;
}

.id-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.id-value {
    font-size: 1rem;
    color: white;
    font-weight: 700;
}

/* 3. System Logs Panel */
.system-logs-wrapper {
    padding: 0 2rem 2rem 2rem;
    background: #1a0501;
}

.system-log-panel {
    background: #3b1e1e70;
    /* Dark Grey */
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.096);
}

.log-title {
    color: #ec2828;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.log-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.log-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.log-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.log-icon {
    color: #ef4444;
    /* Red Bright */
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.log-text {
    font-size: 0.9rem;
    color: #94a3b8;
    /* Light Grey Elegant */
    line-height: 1.5;
}

.log-text strong {
    color: white;
    font-weight: 600;
}

/* 4. Power Up Button */
.power-up-container {
    padding: 0 2rem 2.5rem 2rem;
    background: #1a0501;
}

.btn-power-up {
    width: 100%;
    background: linear-gradient(135deg, #24d61e 0%, #087204 100%);
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    color: rgb(7, 5, 32);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Outer Glow Pulse */
.btn-power-up {
    animation: outer-glow-pulse 3s infinite;
}

@keyframes outer-glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 24, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 38, 0);
    }
}

.btn-power-up:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-power-up:active {
    transform: translateY(1px);
}

@media (max-width: 600px) {
    .sec-grid-container {
        grid-template-columns: 1fr;
    }

    .status-dashboard-header span {
        font-size: 0.95rem;
    }
}

/* NEW COMPONENTS (Sales Page Redesign 2026) */

.summary-card {
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(48, 54, 61, 0.7);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.summary-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.summary-divider {
    color: var(--text-muted);
    opacity: 0.3;
}

.budget-recovery-container {
    width: 100%;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-recovery-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    animation: fillRecovery 2s ease-out forwards 0.5s;
}

.recovery-text {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes fillRecovery {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Updated Button Styles */
.btn {
    border-radius: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: #0d1117;
    font-weight: 800;
    box-shadow: 0 4px 0 #00992b;
    transition: all 0.1s;
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-elite-action {
    border-radius: 4px !important;
}

/* UNIFIED BUDGET SECTION STYLES */
.new-budget-section {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.route-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route-header h4 {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.route-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.route-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.route-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.audit-panel {
    padding: 1.5rem;
    background: #0d1117;
}

.audit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.audit-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 70%;
}

.audit-label {
    font-weight: 500;
    color: #e6edf3;
}

.audit-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.price-strike {
    color: #7d8590;
    text-decoration: line-through;
    font-size: 1rem;
}

.price-discount {
    color: var(--primary);
    font-weight: 500;
}

.audit-label-total {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-final-audit {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.audit-footer {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cta-audit-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    background: var(--primary);
    color: #0d1117;
    font-weight: 800;
    margin-bottom: 1rem;
    border: none;
    transition: transform 0.2s;
}

.cta-audit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.security-microcopy {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* CONVERSION SECTION V2 - ELITE SOFTWARE DESIGN */
.conversion-section-v2 {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 0.5rem;
}

/* 1. Technical Header */
.route-confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.header-title-v2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.sync-status {
    font-size: 0.85rem;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.9;
}

.pulsing-dot-small {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

/* 2. Route Summary Card (Minimalist) */
.route-summary-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.rs-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rs-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.rs-separator {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
}

@media (max-width: 480px) {
    .route-summary-v2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .rs-separator {
        display: none;
    }
}

/* 3. Smart Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Scenario Cards */
.scenario-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Fine border */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sc-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sc-badge-red {
    background: rgba(248, 81, 73, 0.1);
    color: var(--danger);
    border: 1px solid rgba(248, 81, 73, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-badge-green {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scenario-b {
    border: 1px solid rgba(0, 255, 65, 0.3);
    /* Accent border */
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.05);
}

.sc-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sc-destinations {
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-destinations i {
    width: 18px;
    color: var(--text-muted);
}

.sc-context {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem;
    border-radius: 6px;
}

.sc-price-block {
    margin-top: auto;
    /* Push to bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    text-align: right;
}

.sc-price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.sc-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.strike-red {
    color: var(--danger);
    text-decoration: line-through;
    opacity: 0.8;
}

.neon-green {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

/* 4. Mechanism Explanation */
.mechanism-explanation {
    margin-bottom: 2.5rem;
}

.mech-content {
    background: rgba(13, 17, 23, 0.7);
    /* See-through dark */
    border-left: 3px solid var(--primary);
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
    text-align: justify;
}

.mech-content h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.mech-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.mech-content strong {
    color: white;
}

/* 5. Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.diff-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
}

.diff-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.02);
}

.diff-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.diff-icon i {
    width: 20px;
    height: 20px;
}

.diff-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.diff-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}




.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.btn-secondary-outline:hover {
    background-color: var(--primary);
    color: black;
}

/* PREMIUM FEATURES SECTION */
.premium-features-section {
    margin-top: 2rem;
    padding: 2rem 0;
    padding-bottom: 0rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pf-header {
    margin-bottom: 0rem;
    position: relative;
    padding: 0 1rem;
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.pf-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.801);
}

.pf-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.pf-bonus-tag {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.pf-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #d3af375e;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.pf-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pf-card-alert {
    border-color: rgba(248, 81, 73, 0.3);
    background: linear-gradient(145deg, rgba(248, 81, 73, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.pf-card-alert:hover {
    border-color: #F85149;
    box-shadow: 0 10px 40px rgba(248, 81, 73, 0.15);
}

.pf-card-alert .pf-icon-box {
    color: #F85149;
    background: rgba(248, 81, 73, 0.1);
    border-color: rgba(248, 81, 73, 0.2);
}

.pf-icon-box {
    width: 48px;
    height: 48px;
    background: #d3af371f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #D3AF37;
    border: 1px solid #d3af375e;
    transition: all 0.3s ease;
}

.pf-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pf-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pf-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

/* HERO FEATURE CARD */
.hero-feature-wrapper {
    padding: 0 0.5rem 2rem 0.5rem;
}

.hero-feature-card {
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.08) 0%, rgba(22, 27, 34, 0.95) 100%);
    border: 1px solid #00ff4086;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
    margin-bottom: 1rem;
}

.hfc-icon-area {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.hfc-icon-area i {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.hfc-radar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: radar-ping 2s infinite;
}

@keyframes radar-ping {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hfc-content {
    flex: 1;
    text-align: left;
}

.hfc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.hfc-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.hfc-badge {
    background: var(--primary);
    color: black;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.hfc-content p {
    color: #c9d1d9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hfc-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hfc-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.hfc-list li i {
    width: 16px;
    color: var(--primary);
}

/* BONUS DIVIDER */
.bonus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0rem 0 2rem 0;
    position: relative;
}

.bonus-divider::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D3AF37, transparent);
}

.bonus-divider span {
    background: var(--background);
    padding: 0 1rem;
    color: #D3AF37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* MOBILE RESPONSIVE HERO */
@media (max-width: 600px) {
    .hero-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .hfc-content {
        text-align: left;
        align-items: start;
        justify-content: start;
        display: flex;
        flex-direction: column;
    }

    .hfc-header {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hfc-list {
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

/* BONUS BADGES */
.bonus-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(211, 175, 55, 0.15);
    /* #D3AF37 matching icon box */
    color: #D3AF37;
    border: 1px solid rgba(211, 175, 55, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(211, 175, 55, 0.1);
    z-index: 10;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* APP GALLERY SECTION */
.app-gallery-section {
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-gallery-section h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 2rem;
    /* Bottom padding for scrollbar/shadow */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

.gallery-track:active,
.gallery-track.active {
    cursor: grabbing;
    scroll-snap-type: none;
    /* Disable snap while dragging */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-slide {
    flex: 0 0 85%;
    /* Shows part of next slide */
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: simple desktop adjustments */
@media (min-width: 768px) {
    .gallery-slide {
        flex: 0 0 300px;
    }

    .gallery-track {
        justify-content: center;
    }
}