/* ============================================================
   MY TEDARİK — PREMIUM UI 2026
   Enhancement layer — loaded after style.css
   Do not edit style.css base layout — only visual upgrades here
   ============================================================ */

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #2f486d 0%, #d2c7b8 40%, #d2c7b8 70%, #2f486d 100%);
    background-size: 300%;
    z-index: 10000;
    transition: width 80ms linear;
    animation: progress-shimmer 3s linear infinite;
    box-shadow: 0 0 12px rgba(47,72,109,0.6);
}

@keyframes progress-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ── HERO ANIMATED MESH GRID ── */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47,72,109,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,72,109,0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 2;
    pointer-events: none;
    animation: mesh-drift 24s linear infinite;
}

@keyframes mesh-drift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 64px 64px, 64px 64px; }
}

/* Hero ambient orb */
.hero-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(47,72,109,0.07) 0%, transparent 60%);
    top: -25%; right: -12%;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-25px, 18px) scale(1.04); }
    70%       { transform: translate(12px, -10px) scale(0.97); }
}

/* Ensure hero content + controls sit above overlays */
.hero-overlay, .hero-bg { z-index: 0; }
.hero-content           { z-index: 5 !important; }
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination      { z-index: 6 !important; }

/* Hero title depth */
.hero-title {
    text-shadow: 0 2px 40px rgba(0,0,0,0.45), 0 0 80px rgba(0,0,0,0.2);
}

/* ============================================================
   HERO MODERN 2026 — editorial full-screen redesign
   ============================================================ */

/* Content sola yaslı, daha editorial */
.hero-content {
    max-width: 1280px !important;
    padding: 0 48px !important;
    padding-top: var(--header-h) !important;
    align-items: flex-start;
}
.hero-content .container {
    max-width: 860px;
    margin: 0;
}

/* Overlay'i yumuşat — görsel daha net, sadece sol/alt kısımda okunabilirlik için koyulaşır */
.hero-section .hero-overlay {
    background: linear-gradient(
        100deg,
        rgba(4,10,24,0.88) 0%,
        rgba(8,16,36,0.70) 32%,
        rgba(12,22,48,0.40) 58%,
        rgba(4,10,24,0.20) 100%
    ) !important;
}

/* Alt vignette — scroll indicator ve sayfalama için yumuşak gradient */
.hero-section::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 38%;
    background: linear-gradient(180deg, transparent 0%, rgba(4,10,24,0.55) 75%, rgba(4,10,24,0.85) 100%);
    z-index: 3;
    pointer-events: none;
    /* orb'u alt vignette'e çevirdik, bg reset: */
    width: auto;
    top: auto;
    border-radius: 0;
    animation: none;
    background-image: linear-gradient(180deg, transparent 0%, rgba(4,10,24,0.55) 75%, rgba(4,10,24,0.85) 100%);
}

/* Köşe accent çizgisi — modern dokunuş */
.hero-section .hero-content .container::before {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(47,72,109,0.2) 100%);
    border-radius: 2px;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(47,72,109,0.5);
    animation: accent-pulse 3s ease-in-out infinite;
}

@keyframes accent-pulse {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50%      { opacity: 1;   transform: scaleX(1.15); }
}

/* Modern glass CTA butonları */
.btn-hero-primary {
    padding: 16px 34px !important;
    font-size: 15px !important;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(47,72,109,0.28), inset 0 1px 0 rgba(255,255,255,0.2);
    border-radius: 12px !important;
}
.btn-hero-secondary {
    padding: 16px 34px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(14px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.55) !important;
    transform: translateY(-2px);
}

/* Hero badge daha premium */
.hero-badge {
    background: linear-gradient(135deg, rgba(47,72,109,0.20) 0%, rgba(47,72,109,0.08) 100%) !important;
    border: 1px solid rgba(47,72,109,0.40) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    padding: 8px 18px !important;
}

/* Scroll-down göstergesi */
.hero-section .hero-scroll-indicator,
.hero-section::after {
    /* mesh-grid zaten ::after içinde — scroll indicator için ayrı div kullanacağız
       ancak bu class yoksa JS olmadan da görünsün diye pseudo ekleniyor */
}
.hero-section {
    /* scroll hint — sağ altta yumuşak mouse icon, CSS-only */
}
.hero-section .swiper::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 22px;
    height: 36px;
    margin-left: -11px;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 14px;
    z-index: 7;
    pointer-events: none;
}
.hero-section .swiper::before {
    content: '';
    position: absolute;
    bottom: 46px;
    left: 50%;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    z-index: 8;
    pointer-events: none;
    animation: scroll-dot 1.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

@keyframes scroll-dot {
    0%   { transform: translateY(0);    opacity: 1; }
    70%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Swiper nav butonlarını hero kenarına daha şık yerleştir */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    background: rgba(10,18,36,0.35) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    width: 52px !important;
    height: 52px !important;
}
.hero-section .swiper-button-next { right: 32px !important; }
.hero-section .swiper-button-prev { left: 32px !important; }

/* Pagination'ı sol alta editorial stil */
.hero-section .swiper-pagination {
    bottom: 34px !important;
    text-align: left !important;
    padding-left: 48px;
    box-sizing: border-box;
    width: auto !important;
    right: auto !important;
    left: 0 !important;
    max-width: 1280px;
    margin: 0 auto;
}

/* Mobile optimizasyon */
@media (max-width: 768px) {
    .hero-content { padding: 0 20px !important; }
    .hero-section .swiper-button-next,
    .hero-section .swiper-button-prev { display: none !important; }
    .hero-section .swiper::after,
    .hero-section .swiper::before { display: none; }
    .hero-section .swiper-pagination {
        padding-left: 20px;
        text-align: center !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    .hero-section .hero-content .container::before { margin-bottom: 18px; }
}
/* === /HERO MODERN === */

/* ── SECTION HEADER REFINEMENTS ── */
.section-badge {
    background: linear-gradient(135deg, rgba(47,72,109,0.12) 0%, rgba(47,72,109,0.05) 100%);
    border: 1px solid rgba(47,72,109,0.28);
    box-shadow: 0 0 20px rgba(47,72,109,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
    color: #223148;
}

.section-divider {
    width: 56px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, rgba(47,72,109,0.2) 100%);
    margin-top: 18px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -2px; left: 12px;
    width: 20px; height: 7px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0.55;
    animation: divider-pulse 2.5s ease-in-out infinite;
}

@keyframes divider-pulse {
    0%, 100% { opacity: 0.25; transform: scaleX(1); }
    50%       { opacity: 0.8; transform: scaleX(1.25); }
}

/* ── SERVICES SECTION — DARK GLASS CARDS ── */
.services-section {
    background: linear-gradient(180deg, #edf0f9 0%, #e8ecf5 100%);
    position: relative;
}

/* Dark navy glass card */
.service-card {
    background:
        radial-gradient(ellipse at 75% 0%, rgba(47,72,109,0.08) 0%, transparent 55%),
        linear-gradient(145deg, #0b1730 0%, #14203e 55%, #1a2b52 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Top shimmer sweep on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -110%;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(47,72,109,0.85) 50%, transparent 100%);
    transition: left 0.55s ease;
    z-index: 3;
}

.service-card:hover::before { left: 110%; }

/* Gold bottom accent bar */
.service-card::after {
    background: linear-gradient(90deg, #2f486d 0%, #d2c7b8 50%, #2f486d 100%) !important;
    height: 2px !important;
}

.service-card h3 {
    color: rgba(255,255,255,0.95) !important;
}

.service-card p {
    color: rgba(255,255,255,0.52) !important;
}

.service-card:hover {
    border-color: rgba(47,72,109,0.2) !important;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.45),
        0 0 0 1px rgba(47,72,109,0.14),
        inset 0 1px 0 rgba(255,255,255,0.06) !important;
    transform: translateY(-8px) !important;
}

/* Gold icon on dark card */
.service-icon {
    background: rgba(47,72,109,0.10) !important;
    border: 1px solid rgba(47,72,109,0.22) !important;
    box-shadow: 0 4px 20px rgba(47,72,109,0.14) !important;
    color: #d4a93e !important;
}

.service-card:hover .service-icon {
    background: rgba(47,72,109,0.18) !important;
    box-shadow: 0 6px 28px rgba(47,72,109,0.30) !important;
    transform: scale(1.1) rotate(-3deg) !important;
}

/* ── STATS SECTION — GRADIENT NUMBERS ── */
.stats-section {
    background: linear-gradient(135deg, #05091a 0%, #0a1326 35%, #16244b 65%, #0a1326 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient center glow */
.stats-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 320px;
    background: radial-gradient(ellipse, rgba(47,72,109,0.07) 0%, transparent 60%);
    pointer-events: none;
    animation: stats-glow-pulse 5s ease-in-out infinite;
    z-index: 0;
}

/* Floating particles (faux) */
.stats-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(22,36,75,0.8) 0%, transparent 70%);
    bottom: -40%; left: -8%;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes stats-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}

.stats-grid { position: relative; z-index: 2; }

.stat-item { transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-5px); }

/* Gold-to-white gradient number */
.stat-number {
    background: linear-gradient(150deg, #ffffff 20%, #d2c7b8 60%, #2f486d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(47,72,109,0.35));
}

.stat-label {
    color: rgba(255,255,255,0.45) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.stat-item:not(:last-child)::after {
    background: linear-gradient(180deg, transparent 0%, rgba(47,72,109,0.22) 50%, transparent 100%) !important;
}

/* ── WHY SECTION — PREMIUM ── */
.why-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Watermark decorative text */
.why-section::before {
    content: 'WHY US';
    position: absolute;
    right: -2%;
    top: 8%;
    font-size: clamp(72px, 13vw, 180px);
    font-weight: 900;
    color: rgba(22,36,75,0.028);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.04em;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.why-grid { position: relative; z-index: 1; }

/* Feature cards — left accent bar */
.why-feature {
    background: var(--white) !important;
    border: 1px solid rgba(22,36,75,0.07) !important;
    border-left: 3px solid var(--primary) !important;
    box-shadow: 0 2px 14px rgba(22,36,75,0.05) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1) !important;
    padding-left: 18px !important;
}

.why-feature:hover {
    border-left-color: var(--accent) !important;
    box-shadow: 0 8px 32px rgba(22,36,75,0.10) !important;
    transform: translateX(8px) !important;
}

.why-feature-icon {
    transition: all 0.3s ease !important;
}

.why-feature:hover .why-feature-icon {
    background: linear-gradient(135deg, var(--accent), #b8902a) !important;
    box-shadow: 0 6px 20px rgba(47,72,109,0.35) !important;
    transform: scale(1.08) !important;
}

/* Floating badge animation */
.why-badge-float {
    background: linear-gradient(135deg, #ffffff 0%, #fffcf0 100%) !important;
    border: 1px solid rgba(47,72,109,0.2) !important;
    box-shadow:
        0 12px 40px rgba(22,36,75,0.16),
        0 0 0 1px rgba(47,72,109,0.10) !important;
    animation: badge-levitate 3.5s ease-in-out infinite;
}

@keyframes badge-levitate {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* Image wrap — premium depth */
.why-image-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(47,72,109,0.3) 0%, transparent 40%, rgba(22,36,75,0.2) 100%);
    z-index: -1;
}

/* ── CTA SECTION — ANIMATED GRADIENT ── */
.cta-section {
    background: linear-gradient(-45deg, #030a18, #0a1424, #14203e, #0a1424);
    background-size: 400% 400%;
    animation: cta-gradient-shift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes cta-gradient-shift {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* Grid dot pattern */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47,72,109,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,72,109,0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

.cta-content { position: relative; z-index: 2 !important; }

/* ── SHIMMER BUTTONS — PRIMARY ── */
.btn-cta-primary,
.btn-hero-primary,
.btn-header-cta {
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before,
.btn-hero-primary::before,
.btn-header-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -80%;
    width: 55%; height: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    z-index: 1;
    pointer-events: none;
}

.btn-cta-primary:hover::before,
.btn-hero-primary:hover::before,
.btn-header-cta:hover::before {
    left: 160%;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, #040c1e 0%, #0c1628 40%, #16244b 80%, #1e3260 100%);
    position: relative;
    overflow: hidden;
}

/* Grid overlay on inner page heroes */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47,72,109,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,72,109,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.4); }

/* ── FOOTER — PREMIUM ── */
.site-footer {
    background: linear-gradient(180deg, #030a18 0%, #050d20 100%);
    position: relative;
}

/* Gold shimmer border-top */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(47,72,109,0.5) 20%,
        rgba(47,72,109,0.9) 50%,
        rgba(47,72,109,0.5) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Footer column title underlines */
.footer-col h4 {
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 26px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Footer link hover */
.footer-col ul li a {
    transition: color 0.2s ease, padding-left 0.2s ease !important;
}

.footer-col ul li a:hover {
    color: var(--accent) !important;
    padding-left: 6px !important;
}

/* ── SCROLL TO TOP — PREMIUM ── */
.scroll-top-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #0c1628 100%) !important;
    border: 1.5px solid rgba(47,72,109,0.3) !important;
    box-shadow: 0 4px 20px rgba(22,36,75,0.35) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

.scroll-top-btn:hover {
    background: var(--accent) !important;
    color: var(--dark) !important;
    border-color: var(--accent-light) !important;
    transform: translateY(-5px) scale(1.06) !important;
    box-shadow: 0 10px 30px rgba(47,72,109,0.40) !important;
}

/* ── SERVICES PAGE CARDS ── */
.service-page-card {
    border: 1px solid rgba(22,36,75,0.08);
    box-shadow: 0 2px 16px rgba(22,36,75,0.06);
    transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) !important;
    overflow: hidden;
}

.service-page-card:hover {
    box-shadow: 0 20px 52px rgba(22,36,75,0.14) !important;
    transform: translateY(-7px) !important;
    border-color: rgba(47,72,109,0.18) !important;
}

.service-page-image {
    background: linear-gradient(135deg, #080f22 0%, #16244b 60%, #1e3260 100%) !important;
}

.service-page-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,72,109,0.08) 0%, transparent 55%);
    pointer-events: none;
}

/* ── BLOG CARDS ── */
.blog-card {
    border: 1px solid rgba(22,36,75,0.07) !important;
    transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) !important;
}

.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 22px 56px rgba(22,36,75,0.14) !important;
    border-color: rgba(47,72,109,0.15) !important;
}

/* ── CONTACT PAGE ── */
.contact-info-box {
    background: linear-gradient(145deg, #0b1730 0%, #16244b 60%, #0e1c38 100%) !important;
    box-shadow: 0 12px 48px rgba(22,36,75,0.30) !important;
}

.contact-form-box {
    box-shadow: 0 4px 36px rgba(22,36,75,0.08), 0 0 0 1px rgba(22,36,75,0.05) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(47,72,109,0.10) !important;
}

/* ── ABOUT PAGE VALUES ── */
.value-item {
    border-left: 4px solid var(--accent) !important;
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%) !important;
    box-shadow: 0 2px 12px rgba(22,36,75,0.05);
    transition: all 0.25s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 22px rgba(22,36,75,0.10);
}

/* ── BREADCRUMB ── */
.breadcrumb a { color: var(--accent) !important; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
    background: linear-gradient(130deg, #050c1e 0%, #0c1628 40%, #16244b 80%, #0c1628 100%);
}

/* ── HEADER SCROLLED STATE — more premium ── */
.site-header.scrolled {
    background: rgba(8, 14, 30, 0.94) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    box-shadow: 0 1px 0 rgba(47,72,109,0.12), 0 8px 36px rgba(0,0,0,0.28) !important;
}

/* ── SWIPER BULLETS — thicker active ── */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.40) !important;
    width: 7px !important; height: 7px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 32px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(47,72,109,0.5) !important;
}

/* ── MOBILE TWEAKS ── */
@media (max-width: 768px) {
    /* Preserve dark cards on mobile */
    .service-card {
        background:
            radial-gradient(ellipse at 75% 0%, rgba(47,72,109,0.07) 0%, transparent 50%),
            linear-gradient(145deg, #0b1730 0%, #14203e 100%);
    }

    /* Reduce heavy animations */
    .why-section::before { display: none; }

    .hero-section::after {
        background-size: 40px 40px;
        opacity: 0.6;
    }

    .hero-section::before {
        width: 350px; height: 350px;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    /* Simplify stats on very small screens */
    .stats-section::after { display: none; }
}
