/* ══════════════════════════════════════════════════════════
   Signage Signage — Shared marketing styles
   Used by features, pricing, and support pages.
   The landing page (index.html) has its own inline styles.
   ══════════════════════════════════════════════════════════ */

:root {
    --ds-brand: #3B82F6;
    --ds-brand-hover: #2563EB;
    --ds-brand-light: rgba(59, 130, 246, 0.08);
    --ds-brand-glow: rgba(59, 130, 246, 0.18);
    --ds-gold: #F59E0B;
    --ds-gold-light: rgba(245, 158, 11, 0.1);
    --ds-page-bg: #F8FAFC;
    --ds-text: #0F172A;
    --ds-text-muted: #64748B;
    --ds-card-bg: #FFFFFF;
    --ds-card-border: #E2E8F0;
    --ds-dark: #0F172A;
    --ds-ease: cubic-bezier(.4, 0, .2, 1);
}

body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif !important;
    background: var(--ds-page-bg) !important;
    color: var(--ds-text);
    -webkit-font-smoothing: antialiased;
}

/* Override Bulma section wrapper from base.html */
body > .section > .container {
    max-width: none !important;
    padding: 0 !important;
}
body > .section {
    padding: 0 !important;
}

/* ── Section scaffolding ──────────────────────────────── */
.ds-section {
    padding: 80px 24px;
}
.ds-section.is-white { background: #fff; }
.ds-section.is-gray { background: var(--ds-page-bg); }
.ds-section.is-dark { background: var(--ds-dark); color: #fff; }

.ds-container {
    max-width: 1140px;
    margin: 0 auto;
}
.ds-container.is-narrow {
    max-width: 820px;
}

.ds-section-title {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--ds-text);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.ds-section.is-dark .ds-section-title { color: #fff; }

.ds-section-subtitle {
    font-size: clamp(14px, 2.5vw, 17px);
    color: var(--ds-text-muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.ds-section.is-dark .ds-section-subtitle { color: rgba(255,255,255,0.65); }

/* ── Buttons ──────────────────────────────────────────── */
.ds-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Outfit", "Inter", sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ds-ease);
    text-decoration: none;
    line-height: 1.4;
}
.ds-btn.is-primary {
    background: var(--ds-brand);
    color: #fff;
    box-shadow: 0 4px 16px var(--ds-brand-glow);
}
.ds-btn.is-primary:hover {
    background: var(--ds-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 127, 90, 0.25);
}
.ds-btn.is-outline {
    background: transparent;
    border-color: var(--ds-brand);
    color: var(--ds-brand);
}
.ds-btn.is-outline:hover {
    background: var(--ds-brand-light);
    transform: translateY(-2px);
}
.ds-btn.is-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.ds-btn.is-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ── Marketing hero (simpler than landing-page hero) ── */
.ds-mkt-hero {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    text-align: center;
}
.ds-mkt-hero h1 {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 auto 16px;
    max-width: 820px;
}
.ds-mkt-hero h1 span { color: var(--ds-brand); }
.ds-mkt-hero p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: #94A3B8;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}
.ds-mkt-hero .ds-small {
    font-size: 12px;
    color: #64748B;
    margin-top: 12px;
}

/* ── Feature list (features page) ───────────────────── */
.ds-feature-list-section + .ds-feature-list-section {
    padding-top: 40px;
}
.ds-feature-group-title {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--ds-text);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.ds-feature-group-sub {
    font-size: 15px;
    color: var(--ds-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.ds-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ds-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-card-border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.25s var(--ds-ease);
}
.ds-feature-list li:hover {
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.ds-feature-list .ds-fl-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--ds-brand-light);
    color: var(--ds-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.ds-feature-list .ds-fl-text {
    min-width: 0;
}
.ds-feature-list strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--ds-text);
    margin-bottom: 3px;
    font-family: "Outfit", "Inter", sans-serif;
}
.ds-feature-list p {
    font-size: 13px;
    color: var(--ds-text-muted);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 720px) {
    .ds-feature-list { grid-template-columns: 1fr; }
}

/* ── FAQ (features + pricing + support pages) ──────── */
.ds-faq {
    max-width: 760px;
    margin: 0 auto;
}
.ds-faq-item {
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-card-border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 14px;
    transition: all 0.25s var(--ds-ease);
}
.ds-faq-item:hover {
    border-color: rgba(59, 130, 246, 0.25);
}
.ds-faq-q {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ds-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ds-faq-q i {
    color: var(--ds-brand);
    font-size: 14px;
}
.ds-faq-a {
    font-size: 14px;
    color: var(--ds-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Pricing cards ───────────────────────────────────── */
.ds-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.ds-price-card {
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-card-border);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s var(--ds-ease);
}
.ds-price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.ds-price-card.is-featured {
    border: 2px solid var(--ds-brand);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
}
.ds-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ds-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(212,167,59,0.35);
}
.ds-price-title {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ds-text);
    margin-bottom: 4px;
}
.ds-price-amount {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--ds-brand);
    line-height: 1;
    margin: 14px 0 2px;
}
.ds-price-amount.is-muted {
    color: var(--ds-text);
    font-size: 28px;
}
.ds-price-amount-cadence {
    font-size: 15px;
    font-weight: 600;
    color: var(--ds-text-muted);
}
.ds-price-yearly {
    font-size: 13px;
    color: var(--ds-text-muted);
    margin-bottom: 16px;
    min-height: 18px;
}
.ds-price-yearly strong {
    color: var(--ds-brand);
    font-weight: 700;
}
.ds-price-desc {
    font-size: 14px;
    color: var(--ds-text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}
.ds-price-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.ds-price-bullets li {
    font-size: 14px;
    color: var(--ds-text);
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.ds-price-bullets li i {
    color: var(--ds-brand);
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}
.ds-price-card .ds-btn {
    width: 100%;
    justify-content: center;
}
.ds-price-small {
    font-size: 12px;
    color: var(--ds-text-muted);
    margin-top: 12px;
    text-align: center;
}
@media (max-width: 920px) {
    .ds-pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ── Compare table (pricing page) ────────────────── */
.ds-compare-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}
.ds-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-card-border);
    border-radius: 12px;
    overflow: hidden;
}
.ds-compare th,
.ds-compare td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--ds-card-border);
}
.ds-compare th {
    background: var(--ds-brand-light);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ds-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ds-compare td:first-child,
.ds-compare th:first-child {
    text-align: left;
}
.ds-compare tr:last-child td {
    border-bottom: none;
}
.ds-compare tr.is-group td {
    background: var(--ds-page-bg);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ds-text-muted);
    text-align: left;
}
.ds-compare .check { color: var(--ds-brand); font-size: 14px; }
.ds-compare .dash { color: var(--ds-text-muted); }

/* ── Support cards ───────────────────────────────── */
.ds-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.ds-support-card {
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-card-border);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    transition: all 0.3s var(--ds-ease);
}
.ds-support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    border-color: rgba(59, 130, 246, 0.25);
}
.ds-support-card.is-muted {
    opacity: 0.75;
}
.ds-support-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--ds-brand-light);
    color: var(--ds-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}
.ds-support-title {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ds-text);
    margin-bottom: 6px;
}
.ds-support-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ds-gold);
    background: var(--ds-gold-light);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.ds-support-desc {
    font-size: 14px;
    color: var(--ds-text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}
@media (max-width: 720px) {
    .ds-support-grid { grid-template-columns: 1fr; }
}

/* ── Final CTA (shared) ──────────────────────────── */
.ds-final-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}
.ds-final-cta h2 {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.ds-final-cta p {
    font-size: clamp(15px, 2.5vw, 17px);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.ds-final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
