/* ============================================================
   SEO Fact — Premium Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties (Dark Theme — Default) ---------- */
:root {
    --color-bg: #0a0e1a;
    --color-bg-alt: #101629;
    --color-surface: rgba(22, 30, 52, 0.85);
    --color-surface-hover: rgba(30, 42, 72, 0.9);
    --color-glass: rgba(255, 255, 255, 0.04);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-glow: rgba(99, 102, 241, 0.25);
    --color-accent: #22d3ee;
    --color-accent-glow: rgba(34, 211, 238, 0.2);
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-text: #e2e8f0;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-heading: #f1f5f9;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a1040 40%, #0f172a 100%);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
    --gradient-card: linear-gradient(145deg, rgba(22, 30, 52, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-primary-glow);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-width: 1200px;
    --max-width-content: 800px;
}

/* ---------- Light Theme ---------- */
[data-theme="light"] {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fa;
    --color-surface: rgba(255, 255, 255, 0.95);
    --color-surface-hover: rgba(243, 244, 246, 0.98);
    --color-glass: rgba(99, 102, 241, 0.04);
    --color-glass-border: rgba(0, 0, 0, 0.06);
    --color-primary: #4f46e5;
    --color-primary-light: #6366f1;
    --color-primary-glow: rgba(79, 70, 229, 0.12);
    --color-accent: #0891b2;
    --color-accent-glow: rgba(8, 145, 178, 0.1);
    --color-text: #1e293b;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-heading: #0f172a;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-border-hover: rgba(79, 70, 229, 0.3);
    --gradient-hero: linear-gradient(160deg, #ffffff 0%, #eef2ff 35%, #e0e7ff 60%, #f5f7fa 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.08);
}

/* Light theme — Navigation */
[data-theme="light"] .nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .nav-links a {
    color: #475569;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
    color: #4f46e5;
}

[data-theme="light"] .logo {
    color: #1e293b;
}

/* Light theme — Hero */
[data-theme="light"] .hero::before {
    background: radial-gradient(ellipse at 30% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .hero-stat .number {
    color: #1e293b;
}

[data-theme="light"] .hero-badge {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.15);
    color: #4f46e5;
}

[data-theme="light"] .btn-secondary {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .btn-secondary:hover {
    background: #f5f7fa;
    border-color: #4f46e5;
    color: #4f46e5;
}

/* Light theme — Cards */
[data-theme="light"] .card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .card:hover {
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .card-icon {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.12);
}

/* Light theme — Steps */
[data-theme="light"] .step-card::before {
    opacity: 0.9;
}

/* Light theme — Testimonials */
[data-theme="light"] .testimonial-card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .testimonial-avatar {
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

/* Light theme — Pricing */
[data-theme="light"] .pricing-card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .pricing-card.featured {
    border-color: #4f46e5;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

/* Light theme — Blog Thumbnails */
[data-theme="light"] .post-card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .post-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Light theme — Key Takeaways & TOC */
[data-theme="light"] .key-takeaways {
    background: linear-gradient(145deg, #eef2ff, #f5f7fa);
    border-color: rgba(79, 70, 229, 0.15);
}

[data-theme="light"] .toc {
    background: linear-gradient(145deg, #f9fafb, #f5f7fa);
}

/* Light theme — Footer */
[data-theme="light"] .footer {
    background: #f1f5f9;
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer-col a {
    color: #475569;
}

[data-theme="light"] .footer-col a:hover {
    color: #4f46e5;
}

/* Light theme — FAQ */
[data-theme="light"] .faq-item {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .faq-question {
    color: #1e293b;
}

/* Light theme — Cookie Banner */
[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.97);
    border-top-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

/* Light theme — Article */
[data-theme="light"] .article-body th {
    background: #4f46e5;
    color: #fff;
}

[data-theme="light"] .callout {
    background: rgba(79, 70, 229, 0.05);
    border-left-color: #4f46e5;
}

[data-theme="light"] .article-image {
    box-shadow: var(--shadow-sm);
}

/* Light theme — Author Bio */
[data-theme="light"] .author-bio {
    box-shadow: var(--shadow-sm);
}

/* Light theme — Share Bar */
[data-theme="light"] .share-bar {
    box-shadow: var(--shadow-sm);
}

/* Light theme — Contact */
[data-theme="light"] .contact-card {
    box-shadow: var(--shadow-sm);
}

/* Light theme — Mobile Nav */
[data-theme="light"] .nav-links {
    background: #ffffff;
    border-left-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-toggle span {
    background: #1e293b;
}

/* ---------- Theme Toggle — Pill Slider ---------- */
.theme-toggle {
    position: relative;
    width: 64px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Sliding indicator pill */
.theme-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

[data-theme="light"] .theme-toggle::before {
    transform: translateX(32px);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
    line-height: 1;
}

/* Dark mode: sun is left (active), moon is right */
.theme-toggle .icon-sun {
    opacity: 1;
}

.theme-toggle .icon-moon {
    opacity: 0.5;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle:hover {
    border-color: rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .theme-toggle::before {
    background: #4f46e5;
    box-shadow: 0 1px 6px rgba(79, 70, 229, 0.35);
}

[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 0.4;
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 1;
    filter: brightness(10);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-smooth);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: var(--color-glass);
}

.nav-links a.nav-cta {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.nav-links a.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.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);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 1.5rem 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, var(--color-primary-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, var(--color-accent-glow) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-primary-glow);
    color: #fff;
}

.btn-secondary {
    background: var(--color-glass);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
    padding: 100px 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-sm {
    padding: 60px 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header .overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.section-dark {
    background: var(--color-bg-alt);
    margin: 0;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-dark>* {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Cards ---------- */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ---------- Grid Layouts ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ---------- Features Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ---------- Steps / How it Works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step-counter;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-card::before {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--color-heading);
    font-size: 0.95rem;
}

.testimonial-info .role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question .icon {
    font-size: 1.25rem;
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Blog Post Cards ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-hover);
}

.post-card-thumbnail {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.post-card-thumbnail.thumb-1 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.post-card-thumbnail.thumb-2 {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.post-card-thumbnail.thumb-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.post-card-thumbnail.thumb-4 {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.post-card-thumbnail.thumb-5 {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.post-card-thumbnail.thumb-6 {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.post-card-thumbnail.thumb-7 {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}

.post-card-body {
    padding: 1.75rem;
}

.post-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.post-card-body h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
    color: var(--color-heading);
}

.post-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.post-card-body h3 a:hover {
    color: var(--color-primary-light);
}

.post-card-body>p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.post-card .read-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary-light);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition-fast);
}

.post-card .read-more:hover {
    gap: 0.6rem;
    color: var(--color-accent);
}

/* ---------- Article / Blog Post Page ---------- */
.article-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 100px 1.5rem 60px;
}

.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.article-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.article-body h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-primary);
    color: var(--color-heading);
}

.article-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.article-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.article-body strong {
    color: var(--color-primary-light);
    font-weight: 600;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-body th {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
}

.article-body td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.article-body tr:hover td {
    background: var(--color-glass);
}

/* Highlight/callout box */
.callout {
    background: rgba(99, 102, 241, 0.08);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.callout h4 {
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.callout p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

/* Key Takeaways Box */
.key-takeaways {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
}

.key-takeaways h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.key-takeaways ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.key-takeaways li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-secondary);
}

.key-takeaways li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Table of Contents */
.toc {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.toc h4 {
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-size: 1rem;
}

.toc ol {
    margin: 0;
    padding-left: 1.25rem;
}

.toc li {
    margin-bottom: 0.4rem;
}

.toc a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.toc a:hover {
    color: var(--color-primary-light);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.author-info .author-role {
    font-size: 0.85rem;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Social Sharing Bar */
.share-bar {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.share-bar h4 {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-family);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.copy-link {
    background: var(--color-glass);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.share-btn.copy-link:hover {
    background: var(--color-surface-hover);
    color: var(--color-text);
}

/* Article Inline Images */
.article-image {
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--gradient-card);
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-style: italic;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-link {
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.related-link:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.related-link strong {
    display: block;
    color: var(--color-heading);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.related-link p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ---------- Contact Form ---------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ---------- Contact Grid ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--color-primary-light);
}

/* ---------- Legal Pages ---------- */
.legal-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 100px 1.5rem 60px;
}

.legal-container h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.legal-container .last-updated {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-primary);
    color: var(--color-heading);
}

.legal-container h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-container p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1rem;
}

.legal-container li {
    color: var(--color-text-secondary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 60px 1.5rem 30px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.4rem;
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ---------- Cookie Consent ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(16, 22, 41, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    flex: 1;
}

.cookie-inner p a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
    text-align: center;
    padding: 80px 1.5rem;
    background: var(--color-bg-alt);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--color-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    padding: 120px 1.5rem 50px;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, var(--color-primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    z-index: 2;
}

.page-header p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-primary-light);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ---------- Values / About Grid  ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-card .label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.team-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-heading);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.4rem 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--color-bg-alt);
        padding: 80px 2rem 2rem;
        border-left: 1px solid var(--color-border);
        transition: right var(--transition-smooth);
        gap: 0.25rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 120px 1.5rem 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .grid-2,
    .grid-3,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section {
        padding: 60px 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ---------- Utility Classes ---------- */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}