
/* ═══════════════════════════════════════════════════════════
   AIRBID — style.css
   Design tokens, component overrides, responsive extras.
   Bootstrap handles layout/grid/utilities.
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    --primary:                  #002833;
    --on-primary:               #ffffff;
    --primary-container:        #173e4b;
    --on-primary-container:     #84a9b8;
    --deep-teal:                #173E4B;
    --vibrant-coral:            #F06B64;
    --emerald-accent:           #4CC39B;
    --surface:                  #f9f9f9;
    --surface-lowest:           #ffffff;
    --surface-low:              #f3f3f4;
    --surface-container:        #eeeeee;
    --on-surface:               #1a1c1c;
    --on-surface-variant:       #41484b;
    --outline:                  #71787b;
    --outline-variant:          #c1c7cb;
    --background:               #f9f9f9;

    /* Spacing */
    --section-padding:          80px;

    /* Radius */
    --radius-sm:    0.25rem;
    --radius-md:    0.5rem;
    --radius-lg:    0.75rem;
    --radius-xl:    1.25rem;
    --radius-full:  9999px;
}

/* ── BASE ── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--background);
    color: var(--on-surface);
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--vibrant-coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    will-change: transform;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 2px solid var(--vibrant-coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.55;
    transition: width 0.35s ease, height 0.35s ease, border-color 0.2s ease, opacity 0.3s ease;
    will-change: transform;
}

/* Hover state: dot grows, ring expands */
body.cursor-hover .cursor-dot {
    width: 16px;
    height: 16px;
    background: var(--emerald-accent);
}

body.cursor-hover .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--emerald-accent);
    opacity: 0.35;
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring { display: none; }
    body { cursor: auto; }
}

h1, h2, h3, h4, h5, h6, .font-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ── TYPOGRAPHY SCALE ── */
.text-display-lg {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* ── ACTIVE NAV (shared across all pages) ── */
.active-nav {
    color: var(--vibrant-coral) !important;
    background-color: rgba(240, 107, 100, 0.12);
    border-radius: 6px;
}

/* ── COLOR UTILITIES ── */
.text-deep-teal        { color: var(--deep-teal) !important; }
.text-vibrant-coral    { color: var(--vibrant-coral) !important; }
.text-emerald-accent   { color: var(--emerald-accent) !important; }
.text-outline          { color: var(--outline) !important; }
.text-on-surface-var   { color: var(--on-surface-variant) !important; }
.bg-primary-custom     { background-color: var(--primary) !important; }
.bg-deep-teal          { background-color: var(--deep-teal) !important; }
.bg-vibrant-coral      { background-color: var(--vibrant-coral) !important; }
.bg-surface-low        { background-color: var(--surface-low) !important; }

/* ── NAVBAR ── */
.navbar-custom {
    height: 84px;
    background: rgba(0, 40, 51, 0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile: expand height when menu is open */
.navbar-custom.menu-open {
    height: auto;
}

.navbar-brand-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--on-primary) !important;
    text-decoration: none;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    display: block;
}

.navbar-custom .brand-logo {
    max-height: 52px;
}

footer .brand-logo {
    max-height: 44px;
}

/* Toggler — make it visually clear */
.navbar-custom .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 0.375rem;
    padding: 6px 10px;
}
.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(240,107,100,0.4);
}

/* Mobile dropdown panel */
#mainNav {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 0 1rem;
}

/* On desktop remove the panel bg */
@media (min-width: 992px) {
    #mainNav {
        background: transparent;
        border-top: none;
        padding: 0;
    }
    .navbar-custom {
        height: 84px !important;
    }
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    transition: color 0.2s, background-color 0.2s;
    padding: 0.6rem 1rem !important;
}
.nav-link-custom:hover,
.nav-link-custom:focus {
    color: var(--vibrant-coral) !important;
    background-color: rgba(240, 107, 100, 0.12);
}

/* Mobile: Sign In + Post a Task inside collapsed menu */
.mobile-nav-actions {
    padding: 0.75rem 1rem 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signin-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.2s;
}
.signin-link:hover { color: var(--vibrant-coral); }

/* ── CATEGORIES MEGA MENU ── */
.categories-mega-menu {
    width: 100%;
    max-width: 1140px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 84px !important;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 0 !important;
}

.categories-mega-menu .dropdown-item {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    font-weight: 600;
    padding: 0.35rem 0;
    transition: color 0.2s, padding-left 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.categories-mega-menu .dropdown-item:hover,
.categories-mega-menu .dropdown-item:focus {
    color: var(--vibrant-coral);
    background: transparent;
    padding-left: 4px;
}

.category-group-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--vibrant-coral);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.categories-mega-menu::-webkit-scrollbar { width: 6px; }
.categories-mega-menu::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.categories-mega-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.categories-mega-menu::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

.categories-mega-menu .dropdown-footer {
    border-color: rgba(255,255,255,0.12) !important;
    padding-top: 1rem;
    margin-top: 1rem;
}

.categories-mega-menu .dropdown-footer .view-all-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.categories-mega-menu .dropdown-footer .view-all-link:hover {
    color: var(--vibrant-coral);
}

.categories-mega-menu .dropdown-footer .view-all-link .view-all-icon {
    color: var(--vibrant-coral);
}

@media (max-width: 991.98px) {
    .categories-mega-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        max-width: 100%;
        max-height: 60vh;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-sm);
        margin: 0.5rem 0 !important;
        padding: 1.25rem;
        background: rgba(0,0,0,0.2);
    }
    .categories-mega-menu .dropdown-item {
        font-size: 14px;
        padding: 0.3rem 0;
    }
}

/* ── BUTTONS ── */
.btn-coral {
    background-color: var(--vibrant-coral) !important;
    color: #ffffff !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-coral:hover,
.btn-coral:focus,
.btn-coral:active {
    background-color: var(--vibrant-coral) !important;
    color: #ffffff !important;
    opacity: 0.88;
    box-shadow: 0 4px 16px rgba(240, 107, 100, 0.35);
}

.btn-outline-teal {
    border: 2px solid var(--deep-teal) !important;
    color: var(--deep-teal) !important;
    background: transparent !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.btn-outline-teal:hover,
.btn-outline-teal:focus,
.btn-outline-teal:active {
    background-color: var(--deep-teal) !important;
    color: #ffffff !important;
    border-color: var(--deep-teal) !important;
}

/* ── HERO ── */
.hero-section {
    background-color: var(--surface-lowest);
    padding: 140px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 195, 155, 0.12);
    color: var(--emerald-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

/* ── TASK CARDS ── */
a.task-card,
.task-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
a.task-card:hover {
    box-shadow: 0 8px 24px rgba(23, 62, 75, 0.10);
    transform: translateY(-2px);
}
.task-card h3 {
    font-size: 17px;
    line-height: 1.4;
    transition: color 0.2s;
    overflow-wrap: break-word;
    word-break: break-word;
}
.task-card:hover h3 { color: var(--vibrant-coral); }

.task-card p {
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1;
    margin-bottom: 1rem;
}

.badge-category {
    background: var(--surface-low);
    color: var(--on-surface-variant);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: none;
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.badge-urgent {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
}

/* ── STATS ── */
.stats-section {
    background-color: var(--deep-teal);
    padding: 56px 0;
}

/* ── HOW IT WORKS ── */
.step-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.steps-connector {
    position: absolute;
    top: 50%;
    left: 16.5%;
    right: 16.5%;
    height: 2px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
        90deg,
        var(--outline-variant) 0,
        var(--outline-variant) 6px,
        transparent 6px,
        transparent 14px
    );
    z-index: 0;
}

/* ── COIN SYSTEM ── */
.coin-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    height: 100%;
}
.coin-card.coin-featured {
    background: var(--deep-teal);
    border-color: var(--deep-teal);
    box-shadow: 0 8px 24px rgba(23, 62, 75, 0.25);
}

/* ── CATEGORY CARDS ── */
.category-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(23, 62, 75, 0.08);
    box-shadow: 0 4px 20px rgba(23, 62, 75, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(23, 62, 75, 0.14);
    border-color: rgba(240, 100, 95, 0.25);
}
.cat-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f9fa 0%, #eef2f4 100%);
}
.cat-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.category-card:hover .cat-media-img { transform: scale(1.08); }
.cat-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-teal) 0%, #1f5566 100%);
    color: #ffffff;
}
.cat-media-placeholder .material-symbols-outlined { font-size: 48px; opacity: 0.9; }
.cat-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 62, 75, 0) 40%, rgba(23, 62, 75, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.category-card:hover .cat-media-overlay { opacity: 1; }
.cat-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--deep-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.25s ease;
}
.cat-arrow .material-symbols-outlined { font-size: 18px; }
.category-card:hover .cat-arrow {
    transform: translateY(0);
    opacity: 1;
}
.category-card:hover .cat-arrow { background: var(--vibrant-coral); color: #ffffff; }
.cat-body {
    padding: 1.1rem 1.25rem 1.25rem;
    text-align: left;
}
.cat-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--deep-teal);
    margin-bottom: 0.25rem;
    line-height: 1.35;
    transition: color 0.25s ease;
}
.cat-meta {
    font-size: 13px;
    color: var(--outline);
    margin-bottom: 0;
    font-weight: 500;
    transition: color 0.25s ease;
}
.category-card:hover .cat-title { color: var(--vibrant-coral); }
.category-card:hover .cat-meta { color: #6b8a94; }

/* ── GLASS CARD (Testimonials) ── */
.glass-card {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1rem;
}

/* ── FAQ ── */
.accordion-button {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
    background: transparent;
}
.accordion-button:not(.collapsed) {
    color: var(--vibrant-coral);
    background: transparent;
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
    filter: invert(27%) sepia(29%) saturate(594%) hue-rotate(152deg) brightness(92%) contrast(91%);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(52%) sepia(55%) saturate(601%) hue-rotate(319deg) brightness(98%) contrast(92%);
}

/* ── CTA ── */
.cta-wrap {
    background: var(--vibrant-coral);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    overflow: hidden;
}

.btn-cta-dark {
    background: var(--primary) !important;
    color: #fff !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.75rem;
    transition: opacity 0.2s;
}
.btn-cta-dark:hover,
.btn-cta-dark:focus,
.btn-cta-dark:active { color: #fff !important; background: var(--primary) !important; opacity: 0.88; }

.btn-cta-white {
    background: #fff !important;
    color: var(--vibrant-coral) !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.75rem;
    transition: opacity 0.2s;
}
.btn-cta-white:hover,
.btn-cta-white:focus,
.btn-cta-white:active { color: var(--vibrant-coral) !important; background: #fff !important; opacity: 0.88; }

/* ── VIEW ALL LINK ── */
.view-all-link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--deep-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.view-all-link:hover { color: var(--vibrant-coral); }

/* ── MATERIAL ICONS ── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ── HERO EXTRAS ── */
.hero-badge-icon {
    font-size: 12px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.hero-para {
    max-width: 540px;
}

/* ── SECTION PADDING UTILITY ── */
.section-pad {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* ── VIEW ALL ARROW ── */
.view-all-icon {
    font-size: 18px;
}

/* ── STATS ── */
.stats-label {
    color: rgba(255, 255, 255, 0.55);
}

/* ── HOW IT WORKS ── */
.step-col {
    z-index: 1;
}
.step-01 {
    box-shadow: 0 4px 16px rgba(0, 40, 51, 0.25) !important;
}
.step-02 {
    box-shadow: 0 4px 16px rgba(240, 107, 100, 0.35);
}
.step-03 {
    background: var(--emerald-accent);
    box-shadow: 0 4px 16px rgba(76, 195, 155, 0.35);
}
.step-title {
    font-size: 17px;
}
.step-desc {
    max-width: 260px;
}

/* ── COIN SYSTEM ── */
.coin-icon {
    font-size: 32px;
}
.coin-icon-filled {
    font-size: 32px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.coin-heading {
    font-size: 15px;
}
.coin-featured-text {
    color: rgba(255, 255, 255, 0.6);
}
.coin-divider {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.learn-more-icon {
    font-size: 20px;
}

/* ── TESTIMONIALS ── */
.quote-icon {
    font-size: 72px;
    opacity: 0.25;
    top: -8px;
    left: 16px;
    line-height: 1;
}
.testimonial-body {
    z-index: 1;
    overflow-wrap: break-word;
    word-break: break-word;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    font-size: 18px;
}
.testimonial-avatar:not(img) {
    object-fit: unset;
}

/* ── FAQ ── */
.faq-accordion {
    max-width: 720px;
}

/* ── CTA ── */
.cta-heading {
    font-size: clamp(24px, 5vw, 36px);
}
.cta-para {
    max-width: 480px;
    opacity: 0.92;
    font-size: clamp(14px, 2vw, 17px);
}

/* ── FOOTER ── */
.footer-desc {
    color: rgba(255, 255, 255, 0.5);
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transition: border-color 0.2s, background-color 0.2s;
}
.footer-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background-color: rgba(255, 255, 255, 0.08);
}
.footer-social-icon {
    font-size: 18px;
}
.footer-col-heading {
    letter-spacing: 0.08em;
}
.footer-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Large tablets / small desktops */
@media (max-width: 991.98px) {
    .text-display-lg { font-size: 44px; }
    .cta-wrap { padding: 56px 32px; }
    .steps-connector { left: 20%; right: 20%; }
}

/* Tablets */
@media (max-width: 767.98px) {
    :root { --section-padding: 60px; }
    .text-display-lg { font-size: 36px; }
    .navbar-custom { height: 74px; }
    .hero-section { padding: 90px 0; }
    .stats-section { padding: 40px 0; }
    .cta-wrap { padding: 48px 24px; }
    .steps-connector { display: none; }
    .step-box { margin: 0 auto; }
}

/* Mobile */
@media (max-width: 575.98px) {
    :root { --section-padding: 48px; }
    .text-display-lg { font-size: 32px; }
    .hero-section { padding: 72px 0; }
    .hero-badge { font-size: 11px; }
    .task-card { padding: 1.25rem; }
    .category-card { border-radius: 14px; }
    .cat-body { padding: 0.85rem 1rem 1rem; }
    .cat-title { font-size: 14px; }
    .cat-meta { font-size: 12px; }
    .cat-arrow { width: 30px; height: 30px; right: 10px; bottom: 10px; }
    .cat-arrow .material-symbols-outlined { font-size: 16px; }
    .cat-media-placeholder .material-symbols-outlined { font-size: 36px; }
    .coin-card { padding: 1rem; }
    .cta-wrap { padding: 40px 20px; border-radius: 1rem; }
    .navbar-brand-custom { font-size: 20px; }
}

/* Small phones (≤375px) */
@media (max-width: 374.98px) {
    .navbar-brand-custom { font-size: 16px; }
    .hero-section { padding: 56px 0; }
    .text-display-lg { font-size: 26px; }
    .btn-coral { font-size: 13px; padding: 10px 18px; }
    .footer-desc { font-size: 12px; }
}



