/* Pawgo SEO site styles. Versioned via /static/pawgo.css?v=N — bump the
   query string in api/seo.py when this file changes so CDNs revalidate. */

:root {
    --burgundy: #6C162F;
    --burgundy-light: #8A1D3E;
    --burgundy-dark: #52101F;
    --sweet-grey: #FCFBFB;
    --text: #1a1a1a;
    --text-muted: #6B7280;
    --border: #E8E5E3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text);
    background: var(--sweet-grey);
    line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.nav-logo {
    height: 20px;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'Bakbak One', cursive;
    font-size: 0.85rem;
}
.nav-links a { color: var(--text-muted); display: flex; align-items: center; }
.nav-links a:hover { color: var(--burgundy); text-decoration: none; }
.nav-cta {
    background: var(--burgundy);
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--burgundy-light); }
.lang-switch {
    font-family: 'Bakbak One', cursive;
    font-size: 0.8rem;
    color: var(--text-muted) !important;
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}
.lang-switch:hover { color: var(--burgundy) !important; border-color: var(--burgundy); text-decoration: none; }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 12px 24px;
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-cta {
        margin: 8px 16px;
        text-align: center;
        display: block;
        border-radius: 10px;
    }
    .lang-switch {
        margin: 4px 16px 8px;
        text-align: center;
        display: block;
    }
    .nav-search {
        padding: 8px 16px;
        width: 100%;
    }
    .nav-search input {
        width: 100% !important;
    }
    .search-results {
        min-width: 100% !important;
    }
}

/* Badges (quick-glance summary on detail pages) */
.badge {
    display: inline-block;
    font-family: 'Bakbak One', cursive;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.badge-yes { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.badge-no { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.badge-na { background: #f9fafb; color: #9ca3af; border: 1px solid #e5e7eb; }
.badge-neutral { background: #f0f4ff; color: #4f46e5; border: 1px solid #c7d2fe; }

/* Filter bar */
.filter-bar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-group label {
    font-family: 'Bakbak One', cursive;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.filter-pills {
    display: flex;
    gap: 4px;
}
.pill {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    padding: 5px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}
.pill:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pill.active {
    background: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
}
.filter-search {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    outline: none;
    width: 200px;
    transition: border-color 0.2s;
}
.filter-search:focus { border-color: var(--burgundy); }
.filter-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.entity-tags {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .filter-row { flex-direction: column; gap: 12px; }
    .filter-search { width: 100%; }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    color: white;
    padding: 80px 0 70px;
    text-align: center;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero-cta {
    display: inline-block;
    font-family: 'Bakbak One', cursive;
    font-size: 1.1rem;
    background: white;
    color: var(--burgundy) !important;
    padding: 14px 40px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
    text-decoration: none;
}
.hero-sub {
    margin-top: 14px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Section */
.section { padding: 60px 0; }
.section-alt { background: white; }
.section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.section .subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Feature grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}
.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature-card h3 {
    font-family: 'Bakbak One', cursive;
    font-size: 1rem;
    margin-bottom: 8px;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Persona grid (landing page) */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.persona-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.persona-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    text-decoration: none;
}
.persona-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
}
.persona-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.persona-info strong {
    font-family: 'Bakbak One', cursive;
    font-size: 1rem;
}
.persona-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.persona-pill {
    background: rgba(108,22,47,0.08);
    color: var(--burgundy, #6C162F);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Bakbak One', cursive;
    font-size: 0.68rem;
}
.persona-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.35;
}

/* Entity grid (airlines/countries) */
.entity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.entity-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}
.entity-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transform: translateY(-1px);
    text-decoration: none;
}
.entity-score {
    font-family: 'Bakbak One', cursive;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 8px;
    flex-shrink: 0;
}
.score-high { background: #D1FAE5; color: #065F46; }
.score-mid { background: #FEF3C7; color: #92400E; }
.score-low { background: #FEE2E2; color: #991B1B; }
.entity-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* Stats bar */
.stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Bakbak One', cursive;
    font-size: 2rem;
    color: var(--burgundy);
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.answer-block { background: #faf8f6; border-left: 4px solid var(--burgundy); padding: 16px 20px; margin-bottom: 24px; font-size: 1.05rem; line-height: 1.7; border-radius: 4px; }
.answer-block a { color: var(--burgundy); font-weight: 600; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare-table th { background: var(--burgundy); color: white; padding: 12px 16px; text-align: left; font-family: 'Bakbak One', cursive; font-weight: 400; }
.compare-table td { padding: 10px 16px; border-bottom: 1px solid #f0eded; }
.compare-table tr:hover { background: #faf8f6; }
.compare-table a { color: var(--burgundy); font-weight: 600; text-decoration: none; }
.compare-table a:hover { text-decoration: underline; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-q::after { content: "+"; font-family: 'Bakbak One', cursive; font-size: 1.4rem; color: var(--burgundy); transition: transform 0.2s; line-height: 1; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
    display: none;
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Detail page */
.detail-hero {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: white;
    padding: 50px 0 40px;
}
.detail-hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 8px; }
/* Decorative emoji prefix on guide H1s — hidden from screen readers so the H1
   reads cleanly without the emoji codepoints. */
.detail-hero h1 .hero-emoji { display: inline-block; margin-right: 0.5rem; font-size: 0.95em; }
.detail-hero .breadcrumb { font-size: 0.85rem; opacity: 0.6; margin-bottom: 12px; }
.detail-hero .breadcrumb a { color: white; opacity: 0.8; }
.detail-hero .updated { font-size: 0.85rem; opacity: 0.5; }

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    padding: 40px 0;
}
.detail-main { }
.detail-sidebar { }
.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}
.info-card h2 {
    font-family: 'Bakbak One', cursive;
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: left;
}
.section-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f0ee;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 0.95rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); }
.info-value { font-weight: 600; }
.info-value.yes { color: #059669; }
.info-value.no { color: #DC2626; }
.info-value.na { color: #9CA3AF; }

.sidebar-cta {
    background: var(--burgundy);
    color: white;
    text-align: center;
    border-radius: 14px;
    padding: 28px;
}
.sidebar-cta h3 {
    font-family: 'Bakbak One', cursive;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.sidebar-cta p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
}
.sidebar-cta a {
    display: inline-block;
    background: white;
    color: var(--burgundy) !important;
    font-family: 'Bakbak One', cursive;
    padding: 10px 24px;
    border-radius: 10px;
}

/* Article / Blog post styling */
.article-body {
    background: white;
    border-radius: 14px;
    padding: 40px 48px;
    border: 1px solid var(--border);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}
.article-body .article-intro {
    font-size: 1.2rem;
    line-height: 2;
    color: #374151;
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
    margin-bottom: 36px;
}
.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--burgundy-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid #f3f0ee;
}
.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.article-body p {
    margin-bottom: 16px;
}
.article-body ul, .article-body ol {
    margin: 16px 0 20px 20px;
    padding-left: 8px;
}
.article-body li {
    margin-bottom: 10px;
    padding-left: 4px;
}
.article-body li strong {
    color: var(--burgundy-dark);
}
.article-body a {
    color: var(--burgundy);
    text-decoration: underline;
    text-decoration-color: rgba(108, 22, 47, 0.3);
    text-underline-offset: 3px;
}
.article-body a:hover {
    text-decoration-color: var(--burgundy);
}
.article-toc {
    background: #faf8f7;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 36px;
}
.article-toc h3 {
    font-family: 'Bakbak One', cursive;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.article-toc ol {
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
}
.article-toc li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.article-toc a {
    color: var(--text);
    text-decoration: none;
}
.article-toc a:hover {
    color: var(--burgundy);
}
@media (max-width: 768px) {
    .article-body {
        padding: 24px 20px;
        font-size: 1rem;
    }
    .article-body h2 { font-size: 1.35rem; }

    /* Hero responsive */
    .detail-hero h1 { font-size: 1.6rem; line-height: 1.3; }
    .detail-hero .breadcrumb { font-size: 0.75rem; }

    /* Persona avatars in guides hero — wrap + smaller */
    .detail-hero [style*="display:flex"][style*="gap:24px"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .detail-hero [style*="margin-left:auto"] {
        margin-left: 0 !important;
        margin-top: 8px;
    }

    /* Persona card responsive */
    [style*="persona"] img[width="120"] {
        width: 80px !important;
        height: 80px !important;
    }

    /* Detail grid: sidebar below main on mobile */
    .detail-grid {
        grid-template-columns: 1fr !important;
    }
    .detail-sidebar {
        order: 2;
    }

    /* Meet Your Guides cards */
    [style*="display:flex"][style*="gap:24px"][style*="background:var(--bg-card)"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    [style*="display:flex"][style*="gap:24px"][style*="background:var(--bg-card)"] img[width="200"] {
        width: 150px !important;
        height: 150px !important;
    }

    /* Persona grid: 2 columns on tablet */
    .persona-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Entity grid: single column on small screens */
    .entity-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer responsive */
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .detail-hero h1 { font-size: 1.3rem; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .section { padding: 32px 0; }

    /* Persona card: stack vertically on very small screens */
    [style*="persona"] {
        flex-direction: column !important;
        text-align: center;
    }

    /* Persona grid: single column on phone */
    .persona-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .persona-card img {
        height: 200px !important;
    }
}

/* Footer */
footer {
    background: var(--burgundy-dark);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    font-size: 0.85rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: white; }

/* Search bar in nav */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-search input {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    padding: 6px 12px 6px 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    outline: none;
    width: 160px;
    transition: width 0.3s, border-color 0.3s;
    background: var(--sweet-grey);
}
.nav-search input:focus {
    width: 220px;
    border-color: var(--burgundy);
}
.nav-search svg {
    position: absolute;
    left: 10px;
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}
.search-results {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 200;
    min-width: 280px;
}
.search-results a {
    display: block;
    padding: 10px 14px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--sweet-grey); text-decoration: none; }
.search-results .sr-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Email capture in footer */
.footer-signup {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}
.footer-signup p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.footer-signup form {
    display: flex;
    justify-content: center;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto;
}
.footer-signup input {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    flex: 1;
    outline: none;
}
.footer-signup input::placeholder { color: rgba(255,255,255,0.5); }
.footer-signup input:focus { border-color: rgba(255,255,255,0.6); }
.footer-signup button {
    font-family: 'Bakbak One', cursive;
    font-size: 0.85rem;
    padding: 10px 24px;
    background: white;
    color: var(--burgundy-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.footer-signup button:hover { background: rgba(255,255,255,0.9); }
.footer-signup .signup-ok {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .features { grid-template-columns: 1fr; }
    .stats { flex-direction: column; gap: 20px; }
    .detail-grid { grid-template-columns: 1fr; }
    /* nav handled by 900px breakpoint above */
    .entity-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .nav-search input { width: 120px; }
    .nav-search input:focus { width: 160px; }
    .footer-signup form { flex-direction: column; }
}

/* Developers page — used only on /developers and /fr/developers, but it's
   cheap to keep in the global stylesheet so the cached file covers everything. */
.dev-code { background: #1e1e2e; color: #cdd6f4; padding: 16px; border-radius: 8px; overflow-x: auto; font-family: monospace; font-size: 0.9rem; line-height: 1.6; margin: 12px 0; }
.dev-section { margin-bottom: 48px; }
.endpoint-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.endpoint-table th { text-align: left; padding: 10px 16px; background: var(--burgundy); color: white; }
.endpoint-table td { padding: 10px 16px; border-bottom: 1px solid #f0eded; }
.endpoint-table code { background: #f5f3f1; padding: 2px 6px; border-radius: 3px; font-size: 0.85rem; }
.dev-badge { display: inline-block; font-family: 'Bakbak One', cursive; font-size: 0.72rem; padding: 3px 10px; border-radius: 12px; letter-spacing: 0.3px; }
.dev-badge-free { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.dev-badge-reg  { background: #f0f4ff; color: #4f46e5; border: 1px solid #c7d2fe; }
.dev-cta-box { background: var(--burgundy); color: white; border-radius: 14px; padding: 32px; text-align: center; margin-top: 24px; }
.dev-cta-box h3 { font-family: 'Bakbak One', cursive; font-size: 1.2rem; margin-bottom: 10px; }
.dev-cta-box p  { opacity: 0.85; margin-bottom: 18px; font-size: 1rem; }
.dev-cta-btn { display: inline-block; background: white; color: var(--burgundy) !important; font-family: 'Bakbak One', cursive; padding: 12px 30px; border-radius: 10px; font-size: 0.95rem; }
.dev-cta-btn:hover { opacity: 0.92; text-decoration: none; }
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 16px 0; }
.tool-chip { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; font-family: monospace; font-size: 0.85rem; color: var(--burgundy-dark); }
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 16px 0; }
.tier-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.tier-card h4 { font-family: 'Bakbak One', cursive; font-size: 0.95rem; margin-bottom: 12px; }
.tier-card ul { margin: 0; padding-left: 18px; font-size: 0.95rem; color: var(--text-muted); }
.tier-card li { margin-bottom: 6px; }
@media (max-width: 640px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
}
