/* ============================================================
   FREETEXTFORGE — DESIGN SYSTEM v3
   Dark theme only · Purple accent · Scroll animations
   Properly formatted for reliable browser rendering
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6d28d9;
    --purple-900: #5b21b6;
    --bg: #0a0a12;
    --bg-secondary: #0e0e1a;
    --bg-card: #111120;
    --bg-card-hover: #16162a;
    --border: rgba(124, 58, 237, 0.1);
    --border-hover: rgba(168, 85, 247, 0.3);
    --text-primary: #f0f0f8;
    --text-secondary: #9a9ab8;
    --text-muted: rgba(154, 154, 184, 0.5);
    --navbar-bg: rgba(10, 10, 18, 0.88);
    --footer-bg: #07070d;
    --glow: 0 0 24px rgba(168, 85, 247, 0.12);
    --input-bg: #0c0c18;
    --code-bg: #0b0b16;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--purple-400);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #d8b4fe;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
    height: 64px;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    overflow: visible;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo img,
.navbar-logo .site-logo {
    height: 42px;
    width: auto;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.navbar-logo .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
}

.navbar-logo .logo-text .thin {
    font-weight: 200;
    color: var(--text-secondary);
}

.navbar-logo .logo-text .bold {
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.navbar-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--purple-400);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-cta:hover {
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--purple-400);
    background: transparent;
    border: 1px solid var(--border-hover);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.06);
    border-color: var(--purple-500);
}

/* ── Hero ── */
.hero {
    padding: 180px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at 50% -20%, rgba(124, 58, 237, 0.1) 0%, transparent 55%);
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.12);
    color: #d8b4fe;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-500);
    box-shadow: 0 0 8px var(--purple-500);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Hero tool chips — MUST be horizontal flex */
.hero-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 720px;
    margin: 0 auto;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
    white-space: nowrap;
    letter-spacing: normal;
    word-spacing: normal;
    font-family: 'DM Sans', sans-serif;
}

.chip span {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 13px;
    line-height: 1;
}

.chip:hover {
    border-color: var(--border-hover);
    color: var(--purple-400);
}

/* ── Section ── */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* ── Tools Grid — 4 columns ── */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    color: inherit;
}

.tool-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.tool-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.tool-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 14px;
    line-height: 1.6;
}

.tool-card-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-400);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.tool-card:hover .tool-card-link {
    gap: 8px;
}

/* ── How It Works — 3 columns ── */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hiw-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.hiw-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hiw-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Counters — 4-column main, 6-column tool stats ── */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.counter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.tool-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.tool-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

.tool-stat-card .counter-number {
    font-size: 20px;
}

.tool-stat-card .counter-label {
    font-size: 10px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 14px;
    transition: all 0.3s;
}

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

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Reviews Slider — 60s cycle ── */
.reviews-section {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

.review-name { font-weight: 600; font-size: 13px; }
.review-role { font-size: 11px; color: var(--text-muted); }

.review-stars {
    color: #facc15;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Blog Cards — Fully clickable ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.blog-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--purple-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* ── FAQ ── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--purple-400);
}

.faq-arrow {
    transition: transform 0.3s;
    font-size: 11px;
    color: var(--text-muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 12.5px;
    color: var(--text-secondary);
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--purple-400);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ── Breadcrumbs — consistent left-aligned, clears navbar ── */
.breadcrumbs {
    padding-top: 80px;
    padding-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--purple-400);
}

.breadcrumbs span {
    margin: 0 6px;
}

/* ── Ad Slot ── */
.ad-slot {
    background: var(--bg-secondary);
    border: 1px dashed rgba(124, 58, 237, 0.15);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    margin: 20px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── SEO Text ── */
.seo-text {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.seo-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.seo-text a {
    color: var(--purple-400);
    text-decoration: underline;
}

/* ── Page Header + Content (static pages) ── */
.page-header {
    padding: 0 0 28px;
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.page-content {
    max-width: 780px;
    padding-bottom: 80px;
}

.page-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 10px;
}

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

.page-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.page-content li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 4px;
}

/* ── Contact Form ── */
.contact-form {
    max-width: 560px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ── Blog List Page ── */
.blog-list-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s;
}

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

/* ── Article Page ── */
.article-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.article-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 36px 0 14px;
}

.article-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 10px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body a {
    color: var(--purple-400);
    text-decoration: underline;
}

.article-body code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--purple-400);
}

.article-body pre {
    background: var(--code-bg);
    padding: 16px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 16px 0;
}

.article-body blockquote {
    border-left: 3px solid var(--purple-500);
    padding-left: 16px;
    color: var(--text-muted);
    margin: 20px 0;
    font-style: italic;
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-body li {
    margin-bottom: 6px;
}

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

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

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .mobile-toggle {
        display: block !important;
    }

    .navbar-cta {
        display: none !important;
    }

    .navbar-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navbar-bg);
        backdrop-filter: blur(24px);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        gap: 14px;
    }

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

    .hiw-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .review-card {
        min-width: 270px;
        max-width: 270px;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-chips {
        gap: 6px;
    }

    .navbar-cta {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ── Navbar Heart Button ──────────────────────────────── */
.navbar-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.navbar-heart:hover {
    transform: scale(1.15);
}

/* ── Floating Support Button ─────────────────────────── */
.donate-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35), 0 0 0 1px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

.donate-float:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(168, 85, 247, 0.45), 0 0 0 1px rgba(168, 85, 247, 0.2);
}

.donate-float svg {
    flex-shrink: 0;
}

/* Floating button always shows text */
@media (max-width: 600px) {
    .donate-float {
        padding: 10px 16px;
        font-size: 13px;
        bottom: 20px;
        right: 16px;
    }
}
