/* ========================================
   NetBoost — Dark Minimal Theme
   net-boost.ru
   ======================================== */

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

:root {
    --accent: #7C5CFC;
    --accent-light: #A78BFA;
    --accent-glow: rgba(124, 92, 252, 0.25);
    --accent-glow-strong: rgba(124, 92, 252, 0.45);
    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-card: #15151F;
    --bg-card-hover: #1A1A26;
    --text-primary: #E5E5E5;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

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

/* --- Section --- */
.section {
    padding: 100px 0;
}

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

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section__header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition);
}

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

.nav__logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__logo span {
    color: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav__links a:hover {
    color: #fff;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: var(--accent);
    padding: 10px 22px;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--accent-light);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-light);
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero__badge i {
    font-size: 16px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero short (about, faq) */
.hero--short {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
}

.hero--short h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero--short .hero__text {
    margin-bottom: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow-strong);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
}

.btn--sm {
    font-size: 14px;
    padding: 10px 24px;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 92, 252, 0), transparent);
    transition: all var(--transition);
}

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

.card:hover::before {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--accent-light);
}

.card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: 24px;
}

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

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Stats --- */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats__item {
    position: relative;
}

.stats__number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.stats__label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Cases --- */
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

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

.case-card__header {
    padding: 28px 28px 0;
}

.case-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-light);
    background: rgba(124, 92, 252, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.case-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.case-card__subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.case-card__body {
    padding: 0 28px 28px;
}

.case-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.case-card__metric {
    text-align: center;
}

.case-card__metric-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-light);
    display: block;
    margin-bottom: 4px;
}

.case-card__metric-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__inner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta__inner p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.cta__contact i {
    color: var(--accent-light);
    font-size: 18px;
}

.cta__contact a {
    color: var(--text-primary);
}

.cta__contact a:hover {
    color: var(--accent-light);
}

/* --- Footer --- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer__logo span {
    color: var(--accent);
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__col ul li a:hover {
    color: var(--accent-light);
}

.footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 16px;
    transition: all var(--transition);
}

.footer__socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* --- About page --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
    font-weight: 800;
}

.team-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why Us */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
}

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

.why-card__number {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.why-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.why-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Process */
.process {
    display: flex;
    gap: 0;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    z-index: 0;
}

.process__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.process__dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-light);
    box-shadow: 0 0 24px var(--accent-glow);
}

.process__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.process__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Bonus cards */
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
}

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

.bonus-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 10px;
    color: var(--accent-light);
    font-size: 20px;
}

.bonus-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bonus-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- FAQ --- */
.faq-category {
    margin-bottom: 48px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h3 i {
    color: var(--accent-light);
    font-size: 20px;
}

details {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: all var(--transition);
}

details:hover {
    border-color: var(--border-hover);
}

details[open] {
    border-color: rgba(124, 92, 252, 0.25);
}

summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 14px;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

details[open] summary::after {
    transform: rotate(180deg);
    color: var(--accent-light);
}

details .faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Mobile Menu Overlay --- */
.nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav__overlay.active {
    display: flex;
}

.nav__overlay a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition);
}

.nav__overlay a:hover {
    color: var(--accent-light);
}

/* --- Responsive --- */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .section__header h2 {
        font-size: 32px;
    }

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

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

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

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

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .process::before {
        display: none;
    }

    .process__step {
        flex: 0 0 calc(33.333% - 24px);
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero--short h1 {
        font-size: 32px;
    }

    .hero__text {
        font-size: 17px;
    }

    .section {
        padding: 64px 0;
    }

    .section__header h2 {
        font-size: 28px;
    }

    .section__header {
        margin-bottom: 40px;
    }

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

    .grid--2,
    .grid--3,
    .grid--4,
    .grid--2x3 {
        grid-template-columns: 1fr;
    }

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .stats__number {
        font-size: 36px;
    }

    .case-card__metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta__inner h2 {
        font-size: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .process__step {
        flex: 0 0 calc(50% - 16px);
    }

    .hero__buttons {
        flex-direction: column;
    }

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

/* Small mobile: 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero--short h1 {
        font-size: 26px;
    }

    .hero__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section__header h2 {
        font-size: 24px;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .stats__number {
        font-size: 32px;
    }

    .card {
        padding: 24px;
    }

    .cta__contacts {
        flex-direction: column;
        gap: 16px;
    }

    .process__step {
        flex: 0 0 100%;
    }
}

/* --- Utility --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
