/* ============================================
   SoopyAddons — Styles
   Theme: Purple/Indigo on deep dark
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-0: #050507;
    --bg-1: #0a0a10;
    --bg-2: #111118;
    --bg-3: #19192a;
    --bg-card: #0d0d16;
    --bg-card-hover: #14141f;

    --text-1: #f0f0f5;
    --text-2: #9d9db5;
    --text-3: #5c5c78;

    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #7c3aed;
    --indigo: #6366f1;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --emerald: #10b981;
    --amber: #f59e0b;
    --rose: #f43f5e;

    --gradient: linear-gradient(135deg, #8b5cf6, #6366f1, #3b82f6);
    --gradient-text: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa);
    --gradient-glow: linear-gradient(135deg, #8b5cf6, #3b82f6);

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --radius: 12px;
    --radius-lg: 20px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'Fira Code', monospace;

    --nav-h: 68px;
}

html { scroll-behavior: smooth; }

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

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

::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-1);
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Logo Mark (animated rings, no image)
   ============================================ */
.logo-mark {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark-sm {
    width: 34px;
    height: 34px;
}

.logo-s {
    font-size: 1.2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.logo-mark-sm .logo-s {
    font-size: 1rem;
}

.logo-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    border-top-color: var(--purple);
    border-right-color: var(--purple);
    animation: spin 3s linear infinite;
}

.ring-2 {
    inset: 3px;
    border-bottom-color: var(--indigo);
    border-left-color: var(--indigo);
    animation: spin 2s linear infinite reverse;
    opacity: 0.6;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    z-index: 1001;
}

.logo-text {
    color: var(--text-2);
}

.logo-highlight {
    color: var(--text-1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--text-1);
    background: rgba(255,255,255,0.04);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary {
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    color: var(--text-1);
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.03);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    top: -10%; left: 20%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
    bottom: 10%; right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    top: 40%; left: 60%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 40px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-light);
    margin-bottom: 32px;
    font-family: var(--mono);
}

.badge-pulse {
    width: 8px; height: 8px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.metric { text-align: center; }

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 110px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    font-family: var(--mono);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card[data-accent="purple"]::before { background: var(--purple); }
.feature-card[data-accent="blue"]::before { background: var(--blue); }
.feature-card[data-accent="emerald"]::before { background: var(--emerald); }
.feature-card[data-accent="amber"]::before { background: var(--amber); }
.feature-card[data-accent="rose"]::before { background: var(--rose); }
.feature-card[data-accent="cyan"]::before { background: var(--cyan); }

/* Hover glow that follows cursor */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
        rgba(139, 92, 246, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 18px;
}

.feature-card[data-accent="purple"] .feature-icon { background: rgba(139,92,246,0.1); color: var(--purple); }
.feature-card[data-accent="blue"] .feature-icon { background: rgba(59,130,246,0.1); color: var(--blue); }
.feature-card[data-accent="emerald"] .feature-icon { background: rgba(16,185,129,0.1); color: var(--emerald); }
.feature-card[data-accent="amber"] .feature-icon { background: rgba(245,158,11,0.1); color: var(--amber); }
.feature-card[data-accent="rose"] .feature-icon { background: rgba(244,63,94,0.1); color: var(--rose); }
.feature-card[data-accent="cyan"] .feature-icon { background: rgba(34,211,238,0.1); color: var(--cyan); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ============================================
   Showcase
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.showcase-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.showcase-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.showcase-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.showcase-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-card p {
    color: var(--text-2);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ============================================
   Install Steps
   ============================================ */
.steps {
    max-width: 680px;
    margin: 0 auto 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 52px;
    bottom: 52px;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--indigo), var(--blue));
    opacity: 0.25;
}

.step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.step-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    border: 2px solid var(--purple);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--purple-light);
    font-family: var(--mono);
    position: relative;
    z-index: 1;
}

.step-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-body p {
    color: var(--text-2);
    font-size: 0.93rem;
    line-height: 1.65;
}

.step-body code {
    font-family: var(--mono);
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875em;
}

/* ============================================
   Download CTA
   ============================================ */
.download-cta {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
}

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

.download-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.download-info p {
    color: var(--text-2);
    font-size: 0.93rem;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.rate-msg {
    text-align: center;
    font-size: 0.85rem;
    color: var(--rose);
}

.rate-msg:empty {
    display: none;
}

/* ============================================
   Community
   ============================================ */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comm-card {
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.comm-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(250px circle at var(--mx, 50%) var(--my, 50%),
        rgba(139, 92, 246, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.comm-card:hover::after { opacity: 1; }

.comm-card[data-platform="discord"] { border-top-color: #5865F2; }
.comm-card[data-platform="github"] { border-top-color: var(--text-2); }
.comm-card[data-platform="wiki"] { border-top-color: var(--purple); }

.comm-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.comm-card[data-platform="discord"]:hover { border-top-color: #5865F2; box-shadow: 0 8px 32px rgba(88,101,242,0.1); }
.comm-card[data-platform="github"]:hover { border-top-color: var(--text-2); box-shadow: 0 8px 32px rgba(255,255,255,0.03); }
.comm-card[data-platform="wiki"]:hover { border-top-color: var(--purple); box-shadow: 0 8px 32px rgba(139,92,246,0.1); }

.comm-card svg {
    margin-bottom: 18px;
}

.comm-card[data-platform="discord"] svg { color: #5865F2; }
.comm-card[data-platform="github"] svg { color: var(--text-1); }
.comm-card[data-platform="wiki"] svg { color: var(--purple-light); }

.comm-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.comm-card p {
    color: var(--text-2);
    font-size: 0.93rem;
    margin-bottom: 16px;
    flex: 1;
}

.comm-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--purple-light);
    font-family: var(--mono);
    transition: color 0.2s;
}

.comm-card:hover .comm-link { color: var(--text-1); }

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 28px;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .nav-logo {
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-3);
    font-size: 0.88rem;
}

.footer-cols {
    display: flex;
    gap: 56px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-1);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-3);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* ============================================
   Download Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-2);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 4px;
}

.modal-close:hover {
    color: var(--text-1);
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
    margin-bottom: 14px;
}

.modal h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal > p {
    color: var(--text-2);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-btn {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    padding: 10px 16px;
}

.modal-btn-version {
    font-size: 1.1rem;
    font-weight: 800;
}

.modal-btn-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Animations
   ============================================ */
.reveal {
    opacity: 0;
    translate: 0 20px;
    transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), translate 0.6s cubic-bezier(0.23,1,0.32,1);
}

.reveal.visible {
    opacity: 1;
    translate: 0 0;
}

.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--bg-1);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.3s;
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; padding: 12px 16px; }
    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .nav-actions .btn { display: none; }

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

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .download-card .btn { width: 100%; justify-content: center; }

    .hero-metrics { gap: 20px; }
    .metric-value { font-size: 1.5rem; }

    .section { padding: 80px 0; }

    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-cols { gap: 40px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .hero-metrics { flex-direction: column; gap: 14px; }
    .metric-sep { width: 36px; height: 1px; }
}
