/* ============================================
   ATVELA — Main Stylesheet
   Bold/Colorful Innovator Design System
   ============================================ */

:root {
    --bg:        #07071a;
    --bg-card:   #0d0d2b;
    --bg-card2:  #10103a;
    --cyan:      #00e5ff;
    --magenta:   #ff2d78;
    --purple:    #9d4edd;
    --green:     #00e676;
    --amber:     #ffb300;
    --red:       #ff1744;
    --text:      #e8e8ff;
    --text-muted:#b8b8e8;
    --border:    rgba(255,255,255,0.08);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius:    16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.hidden { display: none !important; }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 0 24px rgba(0,229,255,0.25);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,229,255,0.4);
    filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,229,255,0.06);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
    background: rgba(7,7,26,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.logo-a { color: var(--cyan); }
.logo-tvela { color: var(--text); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 0 16px rgba(0,229,255,0.2);
    transition: var(--transition);
}
.nav-links .nav-cta:hover {
    box-shadow: 0 0 28px rgba(0,229,255,0.4);
    filter: brightness(1.1);
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
    will-change: transform;
}
.glow-cyan {
    width: 600px; height: 600px;
    background: var(--cyan);
    top: -100px; left: -100px;
    animation: floatGlow 8s ease-in-out infinite;
}
.glow-magenta {
    width: 500px; height: 500px;
    background: var(--magenta);
    bottom: -100px; right: -100px;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    background: rgba(0,229,255,0.06);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 120px;
    text-align: center;
    line-height: 1.3;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   AUDIT SECTION
   ============================================ */
#audit {
    padding: 7rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}

.audit-widget {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 0 80px rgba(0,229,255,0.06);
}

.audit-input-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.audit-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    transition: border-color var(--transition);
    outline: none;
}
.audit-input:focus { border-color: var(--cyan); }
.audit-input::placeholder { color: var(--text-muted); }

.audit-btn { white-space: nowrap; }

.audit-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Loading */
.audit-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.audit-spinner {
    width: 44px; height: 44px;
    border: 3px solid rgba(0,229,255,0.15);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Error */
.audit-error {
    background: rgba(255,23,68,0.08);
    border: 1px solid rgba(255,23,68,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    color: #ff6d9d;
    font-size: 0.9rem;
    margin: 1rem 0;
}

/* Results */
.audit-results { text-align: left; }

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.results-url {
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--text-muted);
    word-break: break-all;
}
.results-badge {
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: var(--font-head);
}
.badge-good  { background: rgba(0,230,118,0.15); color: var(--green); }
.badge-ok    { background: rgba(255,179,0,0.15); color: var(--amber); }
.badge-poor  { background: rgba(255,23,68,0.15); color: #ff6d9d; }

/* Score Rings */
.score-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.score-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}
.score-card:hover { border-color: rgba(0,229,255,0.3); }

.score-ring {
    width: 80px; height: 80px;
    transform: rotate(-90deg);
}
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.ring-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s cubic-bezier(0.4,0,0.2,1), stroke 0.3s;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

/* Core Web Vitals */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.metric-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.metric-label { font-size: 0.8rem; color: var(--text-muted); }
.metric-val {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

/* Lead capture */
.audit-lead {
    background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(157,78,221,0.06));
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
}
.audit-lead-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.audit-lead-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.lead-form {
    display: flex;
    gap: 0.6rem;
    max-width: 440px;
    margin: 0 auto 0.75rem;
}
.lead-email {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.lead-email:focus { border-color: var(--cyan); }
.lead-email::placeholder { color: var(--text-muted); }
.lead-disclaimer { font-size: 0.7rem; color: var(--text-muted); opacity: 0.7; }

.lead-success {
    text-align: center;
    padding: 2rem;
    background: rgba(0,230,118,0.06);
    border: 1px solid rgba(0,230,118,0.2);
    border-radius: var(--radius);
    margin-top: 1rem;
}
.success-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    color: #000;
    font-weight: 900;
}
.lead-success h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.lead-success p { font-size: 0.88rem; color: var(--text-muted); }
.lead-success a { color: var(--cyan); text-decoration: underline; }

/* ============================================
   SERVICES
   ============================================ */
#services {
    padding: 7rem 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 1rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    border-color: rgba(0,229,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.service-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--glow, var(--cyan));
    box-shadow: 0 0 20px rgba(0,0,0,0);
    transition: box-shadow var(--transition);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon {
    box-shadow: 0 0 20px color-mix(in srgb, var(--glow, var(--cyan)) 30%, transparent);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.service-list li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
}
.service-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

/* ============================================
   PROCESS
   ============================================ */
#process {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
    text-align: center;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    margin-top: 1.6rem;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ============================================
   WHY ATVELA
   ============================================ */
#why {
    padding: 7rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.why-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.why-para {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.why-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.pillar-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pillar-icon.cyan    { background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.2); }
.pillar-icon.magenta { background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.2); }
.pillar-icon.purple  { background: rgba(157,78,221,0.1); border: 1px solid rgba(157,78,221,0.2); }

.pillar h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */
#cta {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(157,78,221,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.cta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}
.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    line-height: 1.5;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    justify-content: center;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   SCREEN-READER ONLY UTILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
    .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--cyan), var(--purple)); }
    .process-step { padding: 0 1rem; }
    .score-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(7,7,26,0.98);
        backdrop-filter: blur(16px);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .audit-input-row { flex-direction: column; }
    .lead-form { flex-direction: column; }
    .metrics-grid { grid-template-columns: 1fr; }

    .hero-stats { gap: 1.5rem; }
    .stat-divider { display: none; }
}

@media (max-width: 420px) {
    .score-grid { grid-template-columns: repeat(2, 1fr); }
    .audit-widget { padding: 1.5rem 1rem; }
}
