/* =====================================================
   CouponHub - Custom Styles
   Brand system aligned with aikithub.com
   ===================================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #eef2ff;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --info: #06b6d4;
    --dark: #0f172a;
    --body-bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --text-muted: #64748b;
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(99, 102, 241, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(99, 102, 241, 0.15);
    --font-head: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

    /* Repoint Bootstrap's own color variable so its opacity-aware
       utilities (bg-opacity-10, text-opacity, border-opacity, etc.)
       keep working instead of being overridden with a solid color. */
    --bs-primary: #6366f1;
    --bs-primary-rgb: 99, 102, 241;
}

/* Base */
body {
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background-color: var(--body-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
}

a { transition: color 0.2s ease, opacity 0.2s ease; }

/* Bootstrap primary → brand indigo */
.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 99, 102, 241;
}
.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 99, 102, 241;
}
.link-primary { color: var(--primary) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ── Announcement Bar ─────────────────────────────────── */
.announcement-bar {
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    color: #fff;
    font-size: 0.85rem;
    position: relative;
    z-index: 1061;
}
.announcement-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
}
.ann-entry {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
    flex: 1 1 0;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}
.ann-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}
.ann-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 0 0 rgba(250, 204, 21, 0.6);
    animation: ann-pulse 1.8s infinite;
}
@keyframes ann-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.55); }
    70%  { box-shadow: 0 0 0 6px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}
.announcement-bar-text {
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ann-short { display: none; }
.announcement-bar-cta {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}
.ann-entry:hover .announcement-bar-cta {
    background: #fff;
    color: #0d9488;
}
.ann-arrow {
    display: none;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
    opacity: 0.9;
}
@media (max-width: 767px) {
    .ann-full { display: none; }
    .ann-short { display: inline; }
    .announcement-bar-inner { gap: 0.4rem; padding: 0.45rem 0.6rem; }
    .announcement-bar-text { font-size: 0.78rem; text-decoration: none; }

    /* No separate button on mobile — instead the whole entry becomes a
       pill/chip with a fixed trailing arrow, so it visually reads as a
       tappable ad instead of plain text. */
    .announcement-bar-cta { display: none; }
    .ann-arrow { display: block; }
    .ann-entry {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 100px;
        padding: 0.35rem 0.6rem;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
        transition: var(--transition);
    }
    .ann-entry:active { background: rgba(255, 255, 255, 0.3); }
    .ann-divider { display: none; }
}
@media (max-width: 575px) {
    .announcement-bar-inner { gap: 0.35rem; padding: 0.4rem 0.5rem; }
    .ann-entry { gap: 0.35rem; padding: 0.32rem 0.55rem; }
    .announcement-bar-text { font-size: 0.72rem; }
}
@media (max-width: 420px) {
    .ann-dot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .ann-dot { animation: none; }
}

/* ── Sponsor Bar ──────────────────────────────────────── */
.sponsor-bar {
    background: linear-gradient(90deg,
        #0d1030 0%,
        #161055 35%,
        #3b1fa0 70%,
        #5b21b6 100%
    );
    border-bottom: 1px solid rgba(255,255,255,.08);
    height: 50px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1031;
    overflow: hidden;
}

.sb-sparkles-left {
    display: flex;
    align-items: center;
    padding: 0 6px 0 16px;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

.sb-label {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 7px;
    padding: 0 20px;
    flex-shrink: 0;
    white-space: nowrap;
    border-left: 1px solid rgba(255,255,255,.14);
    border-right: 1px solid rgba(255,255,255,.14);
}
.sb-label-icon { font-size: 0.9rem; line-height: 1; }
.sb-label-text {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
}

.sb-track-wrap {
    flex: 1;
    align-self: stretch;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.sb-track {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: max-content;
    animation: sb-scroll 38s linear infinite;
}
.sb-track:hover { animation-play-state: paused; }

.sb-item.sb-clone { display: flex; }

.sb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-right: 1px solid rgba(255,255,255,.14);
    text-decoration: none;
    transition: background .18s;
    flex-shrink: 0;
    cursor: pointer;
}
.sb-item:hover { background: rgba(255,255,255,.06); }

.sb-logo {
    max-height: 22px;
    max-width: 104px;
    filter: brightness(0) invert(1) opacity(.82);
    transition: filter .18s;
    object-fit: contain;
    display: block;
}
.sb-item:hover .sb-logo { filter: brightness(0) invert(1) opacity(1); }

.sb-svg-logo {
    display: flex;
    align-items: center;
    opacity: .82;
    transition: opacity .18s;
    max-width: 140px;
}
.sb-svg-logo svg { height: 22px; width: auto; max-width: 140px; }
.sb-item:hover .sb-svg-logo { opacity: 1; }

.sb-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,.72);
    white-space: nowrap;
    transition: color .18s;
    letter-spacing: .01em;
}
.sb-item:hover .sb-name { color: #fff; }

.sb-right {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
}
.sb-sparkles-right {
    display: flex;
    align-items: center;
    padding: 0 4px 0 8px;
    pointer-events: none;
    user-select: none;
}

.sb-cta-wrap {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 18px;
    border-left: 1px solid rgba(255,255,255,.14);
}
.sb-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #e9d5ff;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 16px;
    border-radius: 20px;
    position: relative;
    background: rgba(109,40,217,.2);
    transition: background .18s, color .18s;
    letter-spacing: .03em;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(167,139,250,.3);
}
.sb-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(130deg, #a78bfa 0%, #60a5fa 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}
.sb-cta:hover { background: rgba(109,40,217,.38); color: #fff; }
.sb-cta-star { font-size: 0.65rem; line-height: 1; }

@media (max-width: 1023px) {
    .sb-item { padding: 0 12px; }
    .sb-label { padding: 0 12px; }
    .sb-cta-wrap { padding: 0 12px; }
    .sb-sparkles-right { display: none; }
}

@media (max-width: 767px) {
    .sb-track-wrap {
        mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    }

    .sb-sparkles-left { padding: 0 4px 0 10px; }
    .sb-sparkles-right { display: none; }

    .sb-label { padding: 0 10px; gap: 0; }
    .sb-label-text { display: none; }
    .sb-label-icon { font-size: 1rem; }

    .sb-item { padding: 0 10px; }
    .sb-logo { max-height: 17px; max-width: 80px; }
    .sb-svg-logo { max-width: 100px; }
    .sb-svg-logo svg { height: 17px; }
    .sb-name { font-size: 0.7rem; }

    .sb-cta-wrap { padding: 0 12px; }
    .sb-cta .cta-text { display: none; }
    .sb-cta {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
        position: relative;
        z-index: 2;
    }
    .sb-cta::before { border-radius: 50%; }
    .sb-cta-star { font-size: 1rem; line-height: 1; opacity: 1; }
}

@media (max-width: 479px) {
    .sponsor-bar { height: 46px; }
    .sb-sparkles-left { padding: 0 2px 0 8px; }
    .sb-item { padding: 0 12px; }
    .sb-svg-logo svg { height: 15px; }
    .sb-logo { max-height: 15px; }
}

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

@media (prefers-reduced-motion: reduce) {
    .sb-track { animation: none !important; }
    .sb-item.sb-clone { display: none !important; }
}

/* Navbar */
.navbar { min-height: 60px; }
.navbar-brand { letter-spacing: -0.5px; }
.site-navbar {
    background: linear-gradient(135deg, #131e37 0%, #1a1747 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.6rem 0;
}
.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 8px;
    padding: 0.4rem 0.85rem !important;
    transition: var(--transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a1747 100%) !important;
}
/* Bootstrap's .text-muted (#6c757d) is designed for light backgrounds and is
   nearly invisible on this dark footer — override it to a light, readable tone. */
.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}
.footer-widget a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
.footer-widget a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-widget ul { padding-left: 0; margin-bottom: 0; }
.footer-widget img { max-width: 100%; }

/* Keep logo + compact search + hamburger on one line on mobile.
   At lg+ the toggler/compact search are hidden, so this row shrinks
   back to just the brand instead of forcing full width. */
.navbar-top-row {
    width: 100%;
    min-width: 0;
}
@media (min-width: 992px) {
    .navbar-top-row {
        width: auto;
        flex: 0 0 auto;
    }
}

/* Nav store search */
.nav-search-wrap {
    position: relative;
    max-width: 420px;
    width: 100%;
}
.nav-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}
.nav-search {
    background: #fff;
    border: 2px solid transparent;
    color: var(--dark);
    padding: 0.65rem 1.1rem 0.65rem 2.6rem;
    border-radius: 100px;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}
.nav-search::placeholder { color: var(--text-muted); font-weight: 400; }
.nav-search:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
}
.nav-search-wrap:focus-within .nav-search-icon {
    color: var(--primary-dark);
}
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 1080;
    max-height: 360px;
    overflow-y: auto;
}
.search-dropdown.show { display: block; }

/* Compact search box shown directly in the mobile top bar */
.nav-search-wrap-compact {
    max-width: none;
    min-width: 0;
}
.nav-search-wrap-compact .nav-search {
    padding: 0.4rem 0.85rem 0.4rem 2.1rem;
    font-size: 0.82rem;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.nav-search-wrap-compact .nav-search::placeholder { color: rgba(255, 255, 255, 0.55); }
.nav-search-wrap-compact .nav-search:focus {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
}
.nav-search-wrap-compact .nav-search-icon {
    left: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.nav-search-wrap-compact:focus-within .nav-search-icon {
    color: var(--primary);
}
.nav-search-wrap-compact .search-dropdown {
    left: -0.5rem;
    right: -0.5rem;
}
.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}
.search-item:last-child { border-bottom: none; }
.search-item:hover,
.search-item.active {
    background: var(--primary-light);
}
.search-item-logo {
    width: 30px; height: 30px; min-width: 30px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
}
.search-item-logo-fallback {
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}
@media (max-width: 991px) {
    .nav-search-wrap { max-width: 100%; }
}

/* Store Header */
.store-header { border-bottom: 2px solid #e9ecef; }

/* Coupon Card */
.coupon-card {
    border-radius: 12px !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.coupon-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px);
}

.coupon-card.border-primary {
    border-width: 2px !important;
}

/* Discount Badge */
.discount-badge {
    min-width: 85px;
    border-radius: 10px !important;
}

/* Coupon code + copy button */
.coupon-code-group {
    border: 2px dashed var(--primary);
    border-radius: 8px;
    overflow: hidden;
    background: var(--primary-light);
}

.coupon-code-text {
    padding: 0 1rem;
    color: var(--primary-dark);
    background: transparent;
    white-space: nowrap;
}

.copy-btn {
    min-width: 100px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Code Display */
code {
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Feedback Section */
.feedback-section {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.progress { border-radius: 100px; }
.progress-bar { transition: width 0.5s ease; }

/* History table */
#historyCard { border-radius: 12px; overflow: hidden; }
.history-scroll {
    max-height: 420px;
    overflow-y: auto;
}
.history-scroll thead.sticky-top th {
    z-index: 1;
}
#historyTableBody tr.history-highlight {
    background-color: rgba(99, 102, 241, 0.08) !important;
    transition: background-color 2s ease;
}

/* Sidebar popular stores */
.list-group-item { transition: background-color 0.15s ease; }
.list-group-item:hover { background-color: #f0f4ff; }

/* Store index cards */
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

/* Summary Cards */
.card.bg-primary.bg-opacity-10,
.card.bg-success.bg-opacity-10,
.card.bg-danger.bg-opacity-10,
.card.bg-secondary.bg-opacity-10 {
    border-radius: 12px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 0; }
.breadcrumb-item a { color: var(--bs-primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }

/* Badges */
.badge { border-radius: 6px; }

/* Footer */
footer a:hover { color: #fff !important; }

/* Responsive */
@media (max-width: 576px) {
    .coupon-card .row { text-align: center; }
    .discount-badge { min-width: 70px; }
    .copy-btn { width: 100%; }
}

/* Sticky sidebar offset */
@media (min-width: 992px) {
    .position-sticky { top: 75px; }
}

/* ══════════════════════════════════════════════════════════
   Become a Sponsor landing page
   ══════════════════════════════════════════════════════════ */

/* Hero */
.sp-hero {
    background: linear-gradient(135deg, #0d1030 0%, #161055 55%, #3b1fa0 100%);
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,102,241,.2) 0%, transparent 70%);
    pointer-events: none;
}
.sp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3);
    border-radius: 20px; padding: 4px 14px; margin-bottom: 22px;
}
.sp-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: #f8fafc; line-height: 1.2; text-wrap: balance; margin-bottom: 18px;
}
.sp-hero h1 em { color: #a5b4fc; font-style: normal; }
.sp-hero-sub {
    color: #94a3b8; font-size: 1rem; max-width: 560px;
    margin: 0 auto 32px; line-height: 1.65; text-wrap: balance;
}
.sp-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.sp-stat-num { font-size: 1.5rem; font-weight: 800; color: #f8fafc; font-variant-numeric: tabular-nums; }
.sp-stat-lbl { font-size: 0.72rem; color: #64748b; margin-top: 2px; }

/* Pricing section */
.sp-pricing-section { background: #f1f5f9; padding: 80px 0 90px; }
.sp-pricing-label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--primary); background: var(--primary-light); border: 1px solid #c7d2fe;
    border-radius: 20px; padding: 4px 14px; margin-bottom: 14px;
}
.sp-pricing-title {
    font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
    color: #0f172a; line-height: 1.25; margin-bottom: 8px;
}
.sp-pricing-sub { font-size: .9rem; color: #64748b; margin-bottom: 36px; }

.billing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.billing-pill { display: inline-flex; background: #e2e8f0; border-radius: 40px; padding: 4px; gap: 2px; }
.billing-opt {
    padding: 8px 22px; border-radius: 36px;
    font-size: .82rem; font-weight: 600; cursor: pointer;
    color: #64748b; border: none; background: transparent; outline: none;
}
.billing-opt.active { background: #fff; color: #0f172a; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.billing-discount-tag {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: #16a34a; background: #dcfce7; border: 1px solid #bbf7d0;
    border-radius: 20px; padding: 3px 10px; white-space: nowrap;
}

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
@media (max-width: 1199px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; } }
@media (max-width: 575px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card.pkg-free { background: #f8fafc; }
.pkg-free-tag {
    display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    color: #16a34a; background: #dcfce7; border: 1px solid #bbf7d0;
    border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
}
.pkg-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 32px 28px 28px;
    position: relative; display: flex; flex-direction: column;
}
.pkg-card.pkg-featured { border-color: var(--primary); border-width: 2px; }
.pkg-pop-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 3px 16px; border-radius: 20px;
    font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    white-space: nowrap; background: var(--primary); color: #fff;
}
.pkg-name { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.pkg-desc { font-size: .82rem; color: #64748b; line-height: 1.55; margin-bottom: 24px; min-height: 52px; }

.pkg-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pkg-price-amount { font-size: 2.4rem; font-weight: 800; color: #0f172a; line-height: 1; font-variant-numeric: tabular-nums; }
.pkg-price-period { font-size: .85rem; color: #94a3b8; font-weight: 400; }
.pkg-billing-note { font-size: .72rem; color: #94a3b8; margin-bottom: 6px; }
.pkg-annual-box {
    display: none;
    font-size: .75rem; color: #16a34a; font-weight: 600;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 8px; padding: 8px 12px; margin-bottom: 20px; line-height: 1.5;
}
.pkg-annual-box.show { display: block; }

.pkg-divider { border: none; border-top: 1px solid #f1f5f9; margin: 20px 0; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pkg-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .82rem; color: #374151; padding: 6px 0;
    border-bottom: 1px solid #f8fafc; line-height: 1.45;
}
.pkg-features li:last-child { border-bottom: none; }
.pf-on  { color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pf-off { color: #d1d5db; flex-shrink: 0; margin-top: 1px; }
.pf-off + span { color: #9ca3af; }

.pkg-cta {
    display: block; text-align: center;
    padding: 12px 20px; border-radius: 10px;
    font-size: .85rem; font-weight: 700;
    text-decoration: none; margin-top: auto;
    border: none; cursor: pointer;
}
.pkg-cta-default { background: #f1f5f9; color: #374151; border: 1.5px solid #e2e8f0; }
.pkg-cta-primary { background: var(--primary); color: #fff; }
.pkg-cta-dark { background: #0f172a; color: #fff; }

.sp-reassurance {
    display: flex; flex-wrap: wrap; gap: 24px;
    justify-content: center; align-items: center;
    margin-top: 40px; font-size: .75rem; color: #94a3b8;
}
.sp-reassurance span { display: flex; align-items: center; gap: 6px; }

/* Benefits */
.sp-benefits { background: #fff; padding: 64px 0; }
.benefit-item { display: flex; gap: 16px; margin-bottom: 32px; }
.benefit-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--primary-light); border: 1px solid #c7d2fe;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.1rem;
}
.benefit-title { font-size: .9rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.benefit-text  { font-size: .82rem; color: #6b7280; line-height: 1.6; }

/* Current sponsors */
.sp-current { background: #f8fafc; padding: 56px 0; }
.sp-current-card {
    display: flex; align-items: center; justify-content: center;
    height: 56px; border: 1px solid #e2e8f0; border-radius: 10px;
    background: #fff; padding: 0 20px;
}
.sp-current-name { font-size: .85rem; font-weight: 700; color: #374151; }

/* Contact CTA */
.sp-contact { background: linear-gradient(135deg, #0d1030, #3b1fa0); padding: 64px 0; text-align: center; }
.sp-contact h2 { font-size: 1.6rem; font-weight: 800; color: #f8fafc; margin-bottom: 12px; }
.sp-contact p  { color: #94a3b8; margin-bottom: 28px; }
.sp-contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff;
    padding: 12px 28px; border-radius: 8px;
    font-size: .9rem; font-weight: 700;
    text-decoration: none;
}
.sp-contact-btn:hover { background: var(--primary-dark); color: #fff; }

/* Store status badge */
.status-badge {
    display: inline-flex; align-items: center;
    font-size: .74rem; font-weight: 700;
    padding: 5px 13px 5px 10px; border-radius: 999px;
    line-height: 1.6;
    border: 1.5px solid transparent;
    text-transform: uppercase; letter-spacing: .03em;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(15,23,42,.1);
}
.status-badge i { font-size: .9rem; line-height: 1; margin-right: 6px; }

.status-badge--active {
    background: #ecfdf5; color: #047857; border-color: #6ee7b7;
}
.status-badge--under_review {
    background: #fffbeb; color: #b45309; border-color: #fcd34d;
}
.status-badge--stopped {
    background: #f1f5f9; color: #334155; border-color: #94a3b8;
}
.status-badge--scam {
    background: #fef2f2; color: #dc2626; border-color: #f87171;
    animation: status-pulse 1.8s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}
