/* === CSS Custom Properties === */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d1117;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6b7280;
    --accent-start: #4f46e5;
    --accent-end: #7c3aed;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --green: #10b981;
    --red: #ef4444;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1200px;
    --section-padding-mobile: 48px 0;
    --section-padding-desktop: 80px 0;
    --radius: 12px;
    --radius-sm: 8px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Typography === */
h1, h2, h3 {
    color: var(--text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px var(--accent-glow), 0 0 60px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-card-hover);
}

.btn-secondary:hover {
    border-color: var(--accent-start);
    color: var(--text-primary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.btn-scanner {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-scanner:hover {
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* === HERO === */
#hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
}

.hero-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 16px 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.badge {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === PROBLEM === */
#problem {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--red);
}

.problem-card--solution {
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.05);
}

.problem-card--solution h3 {
    color: var(--green);
}

/* === SOLUTION === */
#solution {
    padding: var(--section-padding-mobile);
}

.solution-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s ease;
}

.solution-card:hover {
    border-color: var(--border-card-hover);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    margin-bottom: 12px;
}

/* === VPN COMPARISON CARDS === */
#vpn-comparison {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.comparison-cards {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-card--us {
    border-color: var(--accent-start);
    box-shadow: 0 0 24px rgba(79, 70, 229, 0.15);
}

.comparison-card__header {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-card);
}

.comparison-card__header--us {
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.comparison-card__logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.comparison-card__header h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.comparison-card__header--us h3 {
    margin-bottom: 0;
}

.comparison-card__examples {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comparison-card__price {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: auto;
}

.comparison-card__features {
    list-style: none;
    padding: 16px 24px;
}

.comparison-card__features li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.5;
}

.feature-yes::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.feature-no::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.feature-neutral::before {
    content: "\25CF";
    position: absolute;
    left: 2px;
    color: #f59e0b;
    font-size: 0.7em;
}

.comparison-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* === PROXY COMPARISON === */
#proxy-comparison {
    padding: var(--section-padding-mobile);
}

.proxy-compare-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.proxy-compare-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.proxy-compare-item h3 {
    margin-bottom: 16px;
}

.proxy-compare-item--bad h3 {
    color: var(--red);
}

.proxy-compare-item--good h3 {
    color: var(--green);
}

.proxy-compare-item--good {
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.04);
}

.proxy-compare-item ul {
    list-style: none;
    padding: 0;
}

.proxy-compare-item ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    font-size: 0.9rem;
}

.proxy-compare-item--bad ul li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.proxy-compare-item--good ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* === WHY US === */
#why-us {
    padding: var(--section-padding-mobile);
}

.features-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

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

.feature-card:hover {
    border-color: var(--border-card-hover);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card a {
    color: var(--accent-start);
    text-decoration: underline;
}

/* === HOW TO START === */
#how-to-start {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.steps {
    display: grid;
    gap: 24px;
    margin: 32px auto 24px;
    max-width: 600px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.step h3 {
    padding-top: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.steps-note {
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.steps-cta {
    text-align: center;
}

/* === LIVE DEMO SECTION === */
#live-demo {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.demo-wrapper {
    max-width: 420px;
    margin: 32px auto 0;
}

.demo-cta-wrap {
    text-align: center;
    margin-top: 20px;
}

/* === DEMO CHAT WIDGET === */

.demo-chat {
    background: #0e1621;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    margin: 0 auto;
}

.demo-chat__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #17212b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-chat__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.demo-chat__name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-chat__status {
    font-size: 0.75rem;
    color: #4f9fe7;
}

.demo-chat__messages {
    padding: 16px;
    min-height: 340px;
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-msg {
    max-width: 85%;
    animation: msgFadeIn 0.3s ease;
}

.demo-msg__bubble {
    background: #2b5278;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
}

.demo-msg__bubble b {
    font-weight: 600;
}

.demo-msg__bubble code {
    display: block;
    margin-top: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    word-break: break-all;
    font-family: monospace;
}

.demo-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    animation: msgFadeIn 0.3s ease;
}

.demo-buttons--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.demo-btn {
    background: transparent;
    border: 1px solid #4f9fe7;
    color: #4f9fe7;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
}

.demo-btn:hover {
    background: #4f9fe7;
    color: #fff;
}

.demo-btn--back {
    border-color: #555;
    color: #888;
    font-size: 0.75rem;
}

.demo-btn--back:hover {
    background: #555;
    color: #fff;
}

.demo-chat__avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.demo-btn--final {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 10px 14px;
}

.demo-btn--final:hover {
    box-shadow: 0 4px 16px var(--accent-glow);
}

.demo-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: #2b5278;
    border-radius: 12px 12px 12px 4px;
    width: fit-content;
}

.demo-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: typingBounce 1.2s infinite;
}

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

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

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

/* === SCANNER === */
#scanner {
    padding: var(--section-padding-mobile);
}

.scanner-banner {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
}

.scanner-banner h2 {
    color: var(--green);
    margin-bottom: 16px;
}

.scanner-banner p {
    max-width: 600px;
    margin: 0 auto 24px;
}

.scanner-banner a:not(.btn) {
    color: var(--green);
    text-decoration: underline;
}

/* === PRICING === */
#pricing {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    position: relative;
}

.pricing-card--trial {
    border-color: var(--green);
}

.pricing-card--popular {
    border-color: var(--accent-start);
    background: rgba(79, 70, 229, 0.05);
}

.pricing-card--family {
    border-color: var(--accent-end);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.pricing-badge--free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.pricing-badge--popular {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.pricing-badge--family {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.pricing-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.pricing-card .pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pricing-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
}

.pricing-plan-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-plan-price {
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-plan-per-month {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-plan-discount {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
}

.referral-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.referral-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.referral-content h3 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.referral-highlight {
    color: #818cf8;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.referral-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-footer {
    text-align: center;
    margin-top: 24px;
}

.pricing-footer p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pricing-guarantee {
    color: var(--green);
    font-weight: 500;
}

/* === REVIEWS === */
#reviews {
    padding: var(--section-padding-mobile);
}

.reviews-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.reviews-stats span {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    gap: 16px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.review-text {
    font-style: italic;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.review-text::before {
    content: "\00AB";
    color: var(--accent-start);
    font-size: 1.2em;
}

.review-text::after {
    content: "\00BB";
    color: var(--accent-start);
    font-size: 1.2em;
}

.review-author {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-author::before {
    content: "— ";
    color: var(--text-muted);
}

/* === FAQ === */
#faq {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 32px auto 0;
}

.faq-item {
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-item summary:hover {
    background: var(--bg-card);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item a {
    color: var(--accent-start);
    text-decoration: underline;
}

/* === FINAL CTA === */
#final-cta {
    padding: var(--section-padding-mobile);
    text-align: center;
    background: radial-gradient(ellipse at 50% 100%, rgba(79, 70, 229, 0.12) 0%, transparent 60%);
}

#final-cta h2 {
    margin-bottom: 16px;
}

#final-cta .section-subtitle {
    margin-bottom: 32px;
}

/* === FOOTER === */
#footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-card);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-start);
}

.footer-year {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-legal {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

    .problem-card--solution {
        grid-column: 1 / -1;
    }

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-cards {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .proxy-compare-grid {
        grid-template-columns: 1fr 1fr;
    }

    #hero,
    #problem,
    #solution,
    #vpn-comparison,
    #proxy-comparison,
    #why-us,
    #how-to-start,
    #live-demo,
    #scanner,
    #pricing,
    #reviews,
    #faq,
    #final-cta {
        padding: var(--section-padding-desktop);
    }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.25rem;
    }

    .container {
        padding: 0 40px;
    }

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

    .hero-stats {
        gap: 60px;
    }

    .stat-value {
        font-size: 2rem;
    }
}
