/* =========================================================================
   ShareMaster — 2026 redesign
   Modern SaaS design system. Light surfaces, generous whitespace,
   green accent, soft shadows. Single self-contained stylesheet.
   ========================================================================= */

:root {
    /* Brand */
    --sm-brand: #12bf7c;
    --sm-brand-600: #0fa46a;
    --sm-brand-700: #0d8a59;
    --sm-brand-50: #ecfdf5;
    --sm-brand-100: #d1fae5;

    /* Neutrals */
    --sm-bg: #ffffff;
    --sm-bg-muted: #f8fafc;
    --sm-bg-soft: #f1f5f9;
    --sm-surface: #ffffff;
    --sm-border: #e2e8f0;
    --sm-border-strong: #cbd5e1;

    /* Text */
    --sm-text: #0f172a;
    --sm-text-muted: #475569;
    --sm-text-subtle: #64748b;
    --sm-text-inverse: #ffffff;

    /* Status */
    --sm-info: #2563eb;
    --sm-info-50: #eff6ff;
    --sm-warn: #d97706;
    --sm-warn-50: #fffbeb;
    --sm-danger: #dc2626;
    --sm-danger-50: #fef2f2;

    /* Effects */
    --sm-shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, .04), 0 1px 3px 0 rgba(15, 23, 42, .06);
    --sm-shadow: 0 4px 6px -1px rgba(15, 23, 42, .06), 0 2px 4px -2px rgba(15, 23, 42, .04);
    --sm-shadow-md: 0 10px 15px -3px rgba(15, 23, 42, .08), 0 4px 6px -4px rgba(15, 23, 42, .06);
    --sm-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, .08), 0 8px 10px -6px rgba(15, 23, 42, .04);
    --sm-shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, .15);
    --sm-shadow-brand: 0 10px 30px -10px rgba(18, 191, 124, .35);

    /* Radii */
    --sm-radius-sm: 6px;
    --sm-radius: 10px;
    --sm-radius-md: 14px;
    --sm-radius-lg: 20px;
    --sm-radius-xl: 28px;
    --sm-radius-pill: 999px;

    /* Spacing scale (rem-based) */
    --sm-space-1: .25rem;
    --sm-space-2: .5rem;
    --sm-space-3: .75rem;
    --sm-space-4: 1rem;
    --sm-space-5: 1.5rem;
    --sm-space-6: 2rem;
    --sm-space-8: 3rem;
    --sm-space-10: 4rem;
    --sm-space-12: 6rem;
    --sm-space-16: 8rem;

    /* Type */
    --sm-font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --sm-font-display: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --sm-font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

    --sm-text-xs: .75rem;
    --sm-text-sm: .875rem;
    --sm-text-base: 1rem;
    --sm-text-lg: 1.125rem;
    --sm-text-xl: 1.25rem;
    --sm-text-2xl: 1.5rem;
    --sm-text-3xl: 1.875rem;
    --sm-text-4xl: 2.25rem;
    --sm-text-5xl: 3rem;
    --sm-text-6xl: 3.75rem;

    /* Layout */
    --sm-container: 1200px;
    --sm-container-narrow: 760px;
    --sm-container-wide: 1320px;
    --sm-header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sm-font-sans);
    font-size: var(--sm-text-base);
    line-height: 1.6;
    color: var(--sm-text);
    background: var(--sm-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--sm-brand-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--sm-brand-700); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sm-font-display);
    color: var(--sm-text);
    margin: 0 0 var(--sm-space-4);
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 2.5vw + .75rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1vw + .75rem, 1.5rem); }
h4 { font-size: var(--sm-text-xl); }
h5 { font-size: var(--sm-text-lg); }
h6 { font-size: var(--sm-text-base); text-transform: uppercase; letter-spacing: .08em; color: var(--sm-text-muted); }

p { margin: 0 0 var(--sm-space-4); }

hr {
    border: 0;
    border-top: 1px solid var(--sm-border);
    margin: var(--sm-space-8) 0;
}

::selection { background: var(--sm-brand-100); color: var(--sm-text); }

/* ---------- Container ---------- */
.sm-container {
    width: 100%;
    max-width: var(--sm-container);
    margin: 0 auto;
    padding: 0 var(--sm-space-5);
}
.sm-container-narrow { max-width: var(--sm-container-narrow); }
.sm-container-wide { max-width: var(--sm-container-wide); }

@media (min-width: 768px) {
    .sm-container { padding: 0 var(--sm-space-6); }
}

/* ---------- Section ---------- */
.sm-section {
    padding: var(--sm-space-12) 0;
    position: relative;
}
.sm-section--tight { padding: var(--sm-space-8) 0; }
.sm-section--loose { padding: var(--sm-space-16) 0; }
.sm-section--muted { background: var(--sm-bg-muted); }
.sm-section--soft { background: var(--sm-bg-soft); }
.sm-section--dark {
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    color: var(--sm-text-inverse);
}
.sm-section--dark h1,
.sm-section--dark h2,
.sm-section--dark h3,
.sm-section--dark h4,
.sm-section--dark h5,
.sm-section--dark h6 { color: #fff; }
.sm-section--dark p { color: rgba(255,255,255,.85); }

/* ---------- Eyebrow / section header ---------- */
.sm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sm-space-2);
    padding: var(--sm-space-1) var(--sm-space-3);
    background: var(--sm-brand-50);
    color: var(--sm-brand-700);
    border-radius: var(--sm-radius-pill);
    font-size: var(--sm-text-xs);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid var(--sm-brand-100);
}
.sm-section--dark .sm-eyebrow {
    background: rgba(18, 191, 124, .15);
    color: #6ee7b7;
    border-color: rgba(18, 191, 124, .25);
}

.sm-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--sm-space-10);
}
.sm-section-header .sm-eyebrow { margin-bottom: var(--sm-space-4); }
.sm-section-header h2 { margin-bottom: var(--sm-space-4); }
.sm-section-header p { color: var(--sm-text-muted); font-size: var(--sm-text-lg); margin: 0; }
.sm-section--dark .sm-section-header p { color: rgba(255,255,255,.75); }

.sm-section-header--left { text-align: left; margin-left: 0; }

/* ---------- Buttons ---------- */
.sm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sm-space-2);
    padding: .75rem 1.25rem;
    font-size: var(--sm-text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--sm-radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}
.sm-btn:hover { transform: translateY(-1px); }
.sm-btn:active { transform: translateY(0); }
.sm-btn:focus-visible {
    outline: 2px solid var(--sm-brand);
    outline-offset: 2px;
}

.sm-btn-primary {
    background: var(--sm-text);
    color: #fff;
    box-shadow: var(--sm-shadow-sm);
}
.sm-btn-primary:hover {
    background: #1e293b;
    color: #fff;
    box-shadow: var(--sm-shadow);
}

.sm-btn-brand {
    background: var(--sm-brand);
    color: #fff;
    box-shadow: var(--sm-shadow-brand);
}
.sm-btn-brand:hover {
    background: var(--sm-brand-600);
    color: #fff;
}

.sm-btn-secondary {
    background: var(--sm-surface);
    color: var(--sm-text);
    border-color: var(--sm-border-strong);
}
.sm-btn-secondary:hover {
    border-color: var(--sm-text);
    color: var(--sm-text);
    background: var(--sm-bg-muted);
}

.sm-btn-ghost {
    background: transparent;
    color: var(--sm-text);
    border-color: transparent;
}
.sm-btn-ghost:hover {
    background: var(--sm-bg-muted);
    color: var(--sm-text);
}

.sm-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.sm-btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.6);
}

.sm-btn-lg { padding: 1rem 1.5rem; font-size: var(--sm-text-base); border-radius: var(--sm-radius-md); }
.sm-btn-sm { padding: .5rem .875rem; font-size: var(--sm-text-xs); }
.sm-btn-block { width: 100%; }

.sm-btn-group { display: inline-flex; gap: var(--sm-space-3); flex-wrap: wrap; }

/* ---------- Header / nav ---------- */
.sm-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--sm-border);
}

.sm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sm-space-6);
    height: var(--sm-header-h);
}

.sm-logo {
    display: inline-flex;
    align-items: center;
    color: var(--sm-text);
    text-decoration: none;
}
.sm-logo img { height: 36px; width: auto; display: block; }
.sm-logo:hover { color: var(--sm-text); }

.sm-nav {
    display: none;
    align-items: center;
    gap: var(--sm-space-1);
}
.sm-nav a {
    padding: .5rem .875rem;
    color: var(--sm-text-muted);
    font-size: var(--sm-text-sm);
    font-weight: 500;
    border-radius: var(--sm-radius-sm);
    transition: color .15s ease, background .15s ease;
}
.sm-nav a:hover,
.sm-nav a.is-active {
    color: var(--sm-text);
    background: var(--sm-bg-muted);
}

.sm-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sm-space-2);
}

.sm-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--sm-border);
    background: var(--sm-surface);
    border-radius: var(--sm-radius-sm);
    color: var(--sm-text);
}
.sm-nav-toggle:hover { background: var(--sm-bg-muted); }

@media (min-width: 992px) {
    .sm-nav { display: inline-flex; }
    .sm-nav-toggle { display: none; }
}

/* Mobile menu */
.sm-mobile-menu {
    display: none;
    border-bottom: 1px solid var(--sm-border);
    background: var(--sm-surface);
}
.sm-mobile-menu.is-open { display: block; }
.sm-mobile-menu-inner {
    padding: var(--sm-space-4) 0 var(--sm-space-5);
    display: grid;
    gap: var(--sm-space-1);
}
.sm-mobile-menu a {
    padding: .75rem .25rem;
    color: var(--sm-text);
    font-weight: 500;
    border-bottom: 1px solid var(--sm-border);
}
.sm-mobile-menu a:last-of-type { border-bottom: 0; }

@media (min-width: 992px) {
    .sm-mobile-menu { display: none !important; }
}

/* Top announcement bar */
.sm-announce {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: .625rem var(--sm-space-5);
    font-size: var(--sm-text-sm);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sm-announce a {
    color: #6ee7b7;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.sm-announce a:hover { color: #d1fae5; }

/* ---------- Hero ---------- */
.sm-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 5vw, 5rem);
    overflow: hidden;
    isolation: isolate;
}
.sm-hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 70%;
    background:
        radial-gradient(60% 60% at 25% 30%, rgba(18,191,124,.10), transparent 60%),
        radial-gradient(50% 60% at 80% 20%, rgba(37,99,235,.08), transparent 60%);
    z-index: -1;
}
.sm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
    z-index: -1;
    opacity: .6;
}

.sm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sm-space-10);
    align-items: center;
}
@media (min-width: 992px) {
    .sm-hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--sm-space-12); }
}

.sm-hero h1 { margin-bottom: var(--sm-space-5); }
.sm-hero h1 .sm-hero-accent { color: var(--sm-brand-600); }
.sm-hero-lead {
    font-size: clamp(1.05rem, .8vw + .85rem, 1.25rem);
    color: var(--sm-text-muted);
    margin-bottom: var(--sm-space-6);
    max-width: 56ch;
}

.sm-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm-space-5);
    margin-top: var(--sm-space-6);
    font-size: var(--sm-text-sm);
    color: var(--sm-text-subtle);
}
.sm-hero-meta-item { display: inline-flex; align-items: center; gap: var(--sm-space-2); }
.sm-hero-meta-item i { color: var(--sm-brand-600); }

.sm-hero-image-wrap {
    position: relative;
    border-radius: var(--sm-radius-lg);
    background: linear-gradient(180deg, var(--sm-brand-50), var(--sm-bg-muted));
    padding: var(--sm-space-5);
    box-shadow: var(--sm-shadow-xl);
    border: 1px solid var(--sm-border);
}
.sm-hero-image-wrap img { border-radius: var(--sm-radius); }

/* ---------- Card ---------- */
.sm-card {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-md);
    padding: var(--sm-space-6);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.sm-card:hover {
    border-color: var(--sm-border-strong);
    box-shadow: var(--sm-shadow-md);
}
.sm-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}
.sm-card-link:hover { color: inherit; }
.sm-card-link:hover .sm-card { transform: translateY(-2px); border-color: var(--sm-border-strong); box-shadow: var(--sm-shadow-md); }

.sm-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--sm-radius);
    background: var(--sm-brand-50);
    color: var(--sm-brand-700);
    font-size: 22px;
    margin-bottom: var(--sm-space-4);
}
.sm-card-icon img { width: 28px; height: 28px; }

.sm-card h3 { margin-bottom: var(--sm-space-2); font-size: var(--sm-text-xl); }
.sm-card p { color: var(--sm-text-muted); margin-bottom: var(--sm-space-4); }
.sm-card-link-arrow {
    color: var(--sm-text);
    font-weight: 600;
    font-size: var(--sm-text-sm);
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}
.sm-card-link-arrow::after {
    content: "→";
    transition: transform .15s ease;
}
.sm-card-link:hover .sm-card-link-arrow::after { transform: translateX(3px); }

.sm-card--feature { background: linear-gradient(180deg, #fff 0%, var(--sm-bg-muted) 100%); }

/* ---------- Grid utilities ---------- */
.sm-grid { display: grid; gap: var(--sm-space-6); }
.sm-grid-2 { grid-template-columns: 1fr; }
.sm-grid-3 { grid-template-columns: 1fr; }
.sm-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .sm-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .sm-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .sm-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Feature row (alternating image + text) ---------- */
.sm-feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sm-space-8);
    align-items: center;
    margin-bottom: var(--sm-space-12);
}
@media (min-width: 992px) {
    .sm-feature-row { grid-template-columns: 1fr 1fr; gap: var(--sm-space-12); }
    .sm-feature-row--reverse > :first-child { order: 2; }
}
.sm-feature-row h3 { font-size: var(--sm-text-3xl); }
.sm-feature-row .sm-eyebrow { margin-bottom: var(--sm-space-3); }
.sm-feature-row-media {
    position: relative;
    border-radius: var(--sm-radius-lg);
    overflow: hidden;
    background: var(--sm-bg-muted);
    border: 1px solid var(--sm-border);
    box-shadow: var(--sm-shadow-md);
}
.sm-feature-row-media img { width: 100%; height: auto; display: block; }

.sm-feature-list {
    list-style: none;
    padding: 0;
    margin: var(--sm-space-5) 0 var(--sm-space-6);
    display: grid;
    gap: var(--sm-space-3);
}
.sm-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sm-space-3);
    color: var(--sm-text);
}
.sm-feature-list li::before {
    content: "";
    flex: none;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 999px;
    background: var(--sm-brand-50);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bf7c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

/* ---------- Pricing ---------- */
.sm-pricing-grid {
    display: grid;
    gap: var(--sm-space-6);
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 768px) {
    .sm-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .sm-pricing-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.sm-price-card {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-lg);
    padding: var(--sm-space-6);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.sm-price-card:hover {
    border-color: var(--sm-border-strong);
    box-shadow: var(--sm-shadow-md);
}
.sm-price-card--featured {
    border-color: var(--sm-text);
    box-shadow: var(--sm-shadow-lg);
    transform: scale(1.02);
}
@media (max-width: 767px) {
    .sm-price-card--featured { transform: none; }
}
.sm-price-card--featured::before {
    content: "Most popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sm-text);
    color: #fff;
    padding: .25rem .75rem;
    font-size: var(--sm-text-xs);
    font-weight: 600;
    border-radius: var(--sm-radius-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sm-price-card-name {
    font-size: var(--sm-text-sm);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sm-text-muted);
    font-weight: 600;
    margin-bottom: var(--sm-space-2);
}
.sm-price-card-amount {
    display: flex;
    align-items: baseline;
    gap: var(--sm-space-2);
    margin-bottom: var(--sm-space-2);
}
.sm-price-card-amount .price {
    font-size: var(--sm-text-5xl);
    font-weight: 800;
    color: var(--sm-text);
    letter-spacing: -.03em;
    line-height: 1;
}
.sm-price-card-amount .unit { color: var(--sm-text-muted); font-size: var(--sm-text-sm); }
.sm-price-card-desc { color: var(--sm-text-muted); margin-bottom: var(--sm-space-5); }
.sm-price-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sm-space-6);
    display: grid;
    gap: var(--sm-space-3);
    font-size: var(--sm-text-sm);
}
.sm-price-card-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--sm-space-3);
}
.sm-price-card-features li::before {
    content: "✓";
    color: var(--sm-brand-600);
    font-weight: 700;
    flex: none;
}
.sm-price-card-features li.is-muted { color: var(--sm-text-subtle); }
.sm-price-card-features li.is-muted::before { content: "—"; color: var(--sm-text-subtle); }
.sm-price-card .sm-btn { margin-top: auto; }

/* ---------- FAQ / accordion ---------- */
.sm-accordion { display: grid; gap: var(--sm-space-3); max-width: 820px; margin: 0 auto; }
.sm-accordion details {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.sm-accordion details[open] {
    border-color: var(--sm-border-strong);
    box-shadow: var(--sm-shadow-sm);
}
.sm-accordion summary {
    cursor: pointer;
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    color: var(--sm-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sm-space-3);
    font-size: var(--sm-text-base);
}
.sm-accordion summary::-webkit-details-marker { display: none; }
.sm-accordion summary::after {
    content: "+";
    color: var(--sm-text-muted);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform .2s ease;
}
.sm-accordion details[open] summary::after { content: "−"; }
.sm-accordion .sm-accordion-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--sm-text-muted);
    line-height: 1.7;
}

/* ---------- Tabs ---------- */
.sm-tabs { display: flex; flex-direction: column; gap: var(--sm-space-6); }
.sm-tabs-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--sm-space-1);
    background: var(--sm-bg-muted);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-pill);
    padding: 4px;
    align-self: center;
}
.sm-tabs-nav button {
    border: 0;
    background: transparent;
    color: var(--sm-text-muted);
    padding: .5rem 1rem;
    font-size: var(--sm-text-sm);
    font-weight: 600;
    border-radius: var(--sm-radius-pill);
    transition: color .15s ease, background .15s ease;
}
.sm-tabs-nav button:hover { color: var(--sm-text); }
.sm-tabs-nav button.is-active {
    background: var(--sm-surface);
    color: var(--sm-text);
    box-shadow: var(--sm-shadow-sm);
}
.sm-tabs-panel { display: none; }
.sm-tabs-panel.is-active { display: block; animation: smFadeIn .25s ease; }

@keyframes smFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Logo strip ---------- */
.sm-logo-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sm-space-6);
    align-items: center;
    opacity: .85;
}
.sm-logo-strip img {
    max-height: 32px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(1) contrast(.9);
    opacity: .7;
    transition: opacity .2s ease, filter .2s ease;
}
.sm-logo-strip img:hover { opacity: 1; filter: none; }
@media (min-width: 768px) {
    .sm-logo-strip { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- CTA block ---------- */
.sm-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: var(--sm-radius-xl);
    padding: clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.sm-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 0%, rgba(18,191,124,.25), transparent 70%);
    z-index: -1;
}
.sm-cta h2 { color: #fff; margin-bottom: var(--sm-space-4); }
.sm-cta p { color: rgba(255,255,255,.8); margin-bottom: var(--sm-space-6); font-size: var(--sm-text-lg); }
.sm-cta .sm-btn-group { justify-content: center; }

/* ---------- Page banner (sub-page hero) ---------- */
.sm-page-banner {
    padding: var(--sm-space-12) 0 var(--sm-space-8);
    background:
        radial-gradient(40% 60% at 20% 10%, rgba(18,191,124,.10), transparent 60%),
        radial-gradient(35% 55% at 85% 30%, rgba(37,99,235,.08), transparent 60%),
        var(--sm-bg);
    border-bottom: 1px solid var(--sm-border);
    text-align: center;
    position: relative;
}
.sm-page-banner h1 {
    margin: 0 auto var(--sm-space-3);
    max-width: 24ch;
}
.sm-page-banner-lead {
    color: var(--sm-text-muted);
    font-size: var(--sm-text-lg);
    max-width: 60ch;
    margin: 0 auto var(--sm-space-5);
}
.sm-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sm-space-2);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--sm-text-sm);
    color: var(--sm-text-subtle);
}
.sm-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: var(--sm-space-2);
    color: var(--sm-text-subtle);
}
.sm-breadcrumb a { color: var(--sm-text-muted); }
.sm-breadcrumb a:hover { color: var(--sm-text); }

/* ---------- Article (blog / guide / use-case) ---------- */
.sm-article {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--sm-space-10) 0 var(--sm-space-12);
}
.sm-article h2 {
    margin-top: var(--sm-space-10);
    margin-bottom: var(--sm-space-4);
    font-size: var(--sm-text-3xl);
}
.sm-article h3 {
    margin-top: var(--sm-space-8);
    margin-bottom: var(--sm-space-3);
    font-size: var(--sm-text-2xl);
}
.sm-article p,
.sm-article li {
    color: var(--sm-text);
    font-size: 1.0625rem;
    line-height: 1.75;
}
.sm-article ul, .sm-article ol {
    padding-left: 1.25rem;
    margin: 0 0 var(--sm-space-5);
}
.sm-article li { margin-bottom: .5rem; }
.sm-article blockquote {
    margin: var(--sm-space-6) 0;
    padding: var(--sm-space-4) var(--sm-space-5);
    background: var(--sm-bg-muted);
    border-left: 4px solid var(--sm-brand);
    border-radius: var(--sm-radius-sm);
    color: var(--sm-text-muted);
    font-style: italic;
}
.sm-article code {
    background: var(--sm-bg-soft);
    color: var(--sm-text);
    padding: .15em .4em;
    border-radius: var(--sm-radius-sm);
    font-family: var(--sm-font-mono);
    font-size: .9em;
}
.sm-article pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: var(--sm-space-5);
    border-radius: var(--sm-radius);
    overflow-x: auto;
    font-family: var(--sm-font-mono);
    font-size: var(--sm-text-sm);
    line-height: 1.6;
}
.sm-article pre code { background: transparent; padding: 0; color: inherit; }
.sm-article table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--sm-space-5) 0;
    font-size: var(--sm-text-sm);
}
.sm-article th, .sm-article td {
    border: 1px solid var(--sm-border);
    padding: var(--sm-space-3) var(--sm-space-4);
    text-align: left;
}
.sm-article th { background: var(--sm-bg-muted); font-weight: 600; }
.sm-article img {
    margin: var(--sm-space-6) auto;
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow);
}

.sm-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm-space-3);
    color: var(--sm-text-subtle);
    font-size: var(--sm-text-sm);
    margin-bottom: var(--sm-space-6);
}
.sm-article-meta span { display: inline-flex; align-items: center; gap: var(--sm-space-1); }

/* ---------- SEO list ---------- */
.sm-seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
}
.sm-seo-list li {
    padding: var(--sm-space-4) 0;
    border-bottom: 1px solid var(--sm-border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--sm-space-4);
}
.sm-seo-list li:last-child { border-bottom: 0; }
.sm-seo-list a {
    color: var(--sm-text);
    font-weight: 600;
    font-size: var(--sm-text-lg);
    flex: 1;
}
.sm-seo-list a:hover { color: var(--sm-brand-600); }
.sm-seo-list .meta {
    color: var(--sm-text-subtle);
    font-size: var(--sm-text-sm);
    white-space: nowrap;
}

.sm-empty-state {
    background: var(--sm-bg-muted);
    border: 1px dashed var(--sm-border-strong);
    border-radius: var(--sm-radius);
    padding: var(--sm-space-8);
    text-align: center;
    color: var(--sm-text-muted);
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- Forms ---------- */
.sm-form { display: grid; gap: var(--sm-space-4); }
.sm-form-field { display: grid; gap: var(--sm-space-2); }
.sm-label {
    font-size: var(--sm-text-sm);
    font-weight: 600;
    color: var(--sm-text);
}
.sm-input,
.sm-textarea,
.sm-select {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--sm-surface);
    border: 1px solid var(--sm-border-strong);
    border-radius: var(--sm-radius);
    font-size: var(--sm-text-base);
    color: var(--sm-text);
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.sm-input:focus,
.sm-textarea:focus,
.sm-select:focus {
    outline: 0;
    border-color: var(--sm-brand);
    box-shadow: 0 0 0 4px rgba(18,191,124,.15);
}
.sm-textarea { min-height: 140px; resize: vertical; }
.sm-help { font-size: var(--sm-text-sm); color: var(--sm-text-subtle); }
.sm-error { font-size: var(--sm-text-sm); color: var(--sm-danger); }

/* ---------- Alerts / inline messages ---------- */
.sm-alert {
    padding: var(--sm-space-4) var(--sm-space-5);
    border-radius: var(--sm-radius);
    border: 1px solid;
    display: flex;
    gap: var(--sm-space-3);
    align-items: flex-start;
}
.sm-alert--info { background: var(--sm-info-50); border-color: #bfdbfe; color: #1e40af; }
.sm-alert--warn { background: var(--sm-warn-50); border-color: #fde68a; color: #92400e; }
.sm-alert--danger { background: var(--sm-danger-50); border-color: #fecaca; color: #991b1b; }
.sm-alert--success { background: var(--sm-brand-50); border-color: var(--sm-brand-100); color: var(--sm-brand-700); }

/* ---------- Footer ---------- */
.sm-footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: var(--sm-space-12) 0 var(--sm-space-6);
    margin-top: var(--sm-space-12);
}
.sm-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sm-space-8);
    padding-bottom: var(--sm-space-8);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) {
    .sm-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.sm-footer-brand img { height: 32px; width: auto; margin-bottom: var(--sm-space-3); filter: brightness(1.2); }
.sm-footer-brand p { color: #94a3b8; font-size: var(--sm-text-sm); max-width: 32ch; }

.sm-footer h4 {
    color: #fff;
    font-size: var(--sm-text-sm);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: var(--sm-space-4);
}
.sm-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sm-space-2); }
.sm-footer li a {
    color: #94a3b8;
    font-size: var(--sm-text-sm);
}
.sm-footer li a:hover { color: #fff; }

.sm-footer-bottom {
    padding-top: var(--sm-space-5);
    color: #64748b;
    font-size: var(--sm-text-xs);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--sm-space-3);
}
.sm-footer-bottom a { color: #94a3b8; }
.sm-footer-bottom a:hover { color: #fff; }

/* ---------- Back-to-top ---------- */
.sm-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--sm-text);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sm-shadow-lg);
    z-index: 90;
    transition: background .15s ease, transform .15s ease;
}
.sm-to-top:hover { background: #1e293b; color: #fff; transform: translateY(-2px); }
.sm-to-top.is-visible { display: inline-flex; }

/* ---------- Misc helpers ---------- */
.sm-mt-0 { margin-top: 0 !important; }
.sm-mb-0 { margin-bottom: 0 !important; }
.sm-text-center { text-align: center; }
.sm-text-left { text-align: left; }
.sm-text-muted { color: var(--sm-text-muted) !important; }
.sm-text-subtle { color: var(--sm-text-subtle) !important; }
.sm-divider { height: 1px; background: var(--sm-border); margin: var(--sm-space-8) 0; }

/* ---------- Aspect helpers ---------- */
.sm-aspect-video { aspect-ratio: 16 / 9; }

/* ---------- YouTube embed wrapper ---------- */
.sm-video-card {
    position: relative;
    border-radius: var(--sm-radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--sm-shadow-md);
    aspect-ratio: 16/9;
}
.sm-video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Legacy class adapter =============================================
   Many SEO article pages (Views/Blog, /Guides, /UseCases, /Compare, /Tools,
   /Alerts) still use the old theme's class names. Rather than rewrite each one,
   we re-implement those classes in the new visual language so legacy markup
   inherits the redesign automatically.
   =========================================================================== */

/* Bootstrap-ish grid the old pages assume */
.container,
.container-wrap > .container {
    width: 100%;
    max-width: var(--sm-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--sm-space-5);
    padding-right: var(--sm-space-5);
}
.container-wrap { display: block; }

@media (min-width: 768px) {
    .container { padding-left: var(--sm-space-6); padding-right: var(--sm-space-6); }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.75rem;
    margin-right: -.75rem;
}
.row > [class^="col-"], .row > [class*=" col-"] {
    width: 100%;
    padding: 0 .75rem;
    margin-bottom: var(--sm-space-5);
}
@media (min-width: 576px) {
    .col-md-6, .col-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
    .col-md-4 { width: 33.3333%; }
    .col-md-5 { width: 41.6667%; }
    .col-md-7 { width: 58.3333%; }
    .col-md-8 { width: 66.6667%; }
    .col-md-10 { width: 83.3333%; }
    .col-md-12 { width: 100%; }
    .offset-md-1 { margin-left: 8.3333%; }
}
@media (min-width: 992px) {
    .col-lg-2 { width: 16.6667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.3333%; }
    .col-lg-5 { width: 41.6667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.3333%; }
    .col-lg-8 { width: 66.6667%; }
    .col-lg-10 { width: 83.3333%; }
    .offset-lg-1 { margin-left: 8.3333%; }
    .offset-lg-2 { margin-left: 16.6667%; }
    .mx-auto { margin-left: auto; margin-right: auto; }
}

/* Legacy page banner used by SEO articles */
.page-banner,
.page-banner.blog-details-banner,
.page-banner-contact {
    padding: var(--sm-space-12) 0 var(--sm-space-8);
    background:
        radial-gradient(40% 60% at 20% 10%, rgba(18,191,124,.10), transparent 60%),
        radial-gradient(35% 55% at 85% 30%, rgba(37,99,235,.08), transparent 60%),
        var(--sm-bg);
    border-bottom: 1px solid var(--sm-border);
    text-align: center;
    position: relative;
}
.page-banner .page-title-wrapper,
.page-banner-contact .page-title-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.page-title {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    margin: 0 auto var(--sm-space-4);
    color: var(--sm-text);
    line-height: 1.15;
    letter-spacing: -.03em;
}
.bradcurmed, .post-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sm-space-3);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sm-space-2);
    font-size: var(--sm-text-sm);
    color: var(--sm-text-subtle);
}
.bradcurmed li:not(:last-child)::after {
    content: "/";
    margin-left: var(--sm-space-2);
}
.bradcurmed a, .post-meta a { color: var(--sm-text-muted); }
.bradcurmed a:hover, .post-meta a:hover { color: var(--sm-text); }

/* Hide legacy decorative SVGs/balls used by old banners */
.page-banner > .circle,
.page-banner > .animate-ball,
.page-banner-contact > .circle,
.page-banner-contact > .animate-ball,
.animate-particle,
.banner-leaf,
.banner-background-element,
.banner-right-shape,
.section-animate-element,
.tab-bg-shape-wrapper,
.overlay-bg {
    display: none !important;
}

/* Legacy blog/article container */
.blog-single {
    padding: var(--sm-space-10) 0;
    background: var(--sm-bg);
}
.blog-single .container {
    max-width: 800px;
}
.blog-single h2 {
    margin-top: var(--sm-space-10);
    font-size: var(--sm-text-3xl);
}
.blog-single h3 {
    margin-top: var(--sm-space-8);
    font-size: var(--sm-text-2xl);
}
.blog-single p, .blog-single li {
    color: var(--sm-text);
    font-size: 1.0625rem;
    line-height: 1.75;
}
.blog-single ul, .blog-single ol { padding-left: 1.25rem; margin: 0 0 var(--sm-space-5); }
.blog-single li { margin-bottom: .5rem; }
.blog-single img {
    border-radius: var(--sm-radius);
    margin: var(--sm-space-5) auto;
}
.blog-single iframe {
    width: 100% !important;
    max-width: 800px;
    aspect-ratio: 16/9;
    height: auto !important;
    border: 0;
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow-md);
    margin: var(--sm-space-5) auto;
    display: block;
}
.guide-tip {
    background: var(--sm-bg-muted);
    border-left: 4px solid var(--sm-brand);
    padding: var(--sm-space-4) var(--sm-space-5);
    margin: var(--sm-space-6) 0;
    border-radius: 0 var(--sm-radius) var(--sm-radius) 0;
    color: var(--sm-text);
}
.callout {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-md);
    padding: var(--sm-space-5);
    margin: var(--sm-space-6) 0;
    box-shadow: var(--sm-shadow-sm);
}
.mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sm-space-4);
    margin: var(--sm-space-5) 0;
}
@media (min-width: 768px) {
    .mini-grid { grid-template-columns: 1fr 1fr; }
}
.mini-card {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-md);
    padding: var(--sm-space-5);
}
.checklist { padding-left: 1rem; }
.checklist li { margin: .375rem 0; }

/* Legacy buttons mapped to sm- equivalents */
.pix-btn,
.banner-btn,
.app-btn-two,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sm-space-2);
    padding: .75rem 1.25rem;
    font-size: var(--sm-text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--sm-radius);
    border: 1px solid transparent;
    background: var(--sm-text);
    color: #fff !important;
    text-decoration: none !important;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.pix-btn:hover, .banner-btn:hover, .app-btn-two:hover, .submit-btn:hover {
    background: #1e293b;
    color: #fff;
    transform: translateY(-1px);
}
.pix-btn.btn-outline,
.pix-btn.btn-grey,
.pix-btn.btn-light {
    background: var(--sm-surface);
    color: var(--sm-text) !important;
    border-color: var(--sm-border-strong);
}
.pix-btn.btn-outline:hover,
.pix-btn.btn-grey:hover,
.pix-btn.btn-light:hover {
    background: var(--sm-bg-muted);
    color: var(--sm-text) !important;
    border-color: var(--sm-text);
}
.pix-btn.btn-four,
.pix-btn.color-three {
    background: var(--sm-brand);
    color: #fff !important;
    box-shadow: var(--sm-shadow-brand);
}
.pix-btn.btn-four:hover,
.pix-btn.color-three:hover { background: var(--sm-brand-600); color: #fff !important; }

/* Legacy section titles inside articles */
.section-title {
    text-align: center;
    margin: 0 auto var(--sm-space-8);
    max-width: 760px;
}
.section-title.style-five { text-align: center; }
.section-title .sub-title {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--sm-brand-50);
    color: var(--sm-brand-700);
    border-radius: var(--sm-radius-pill);
    font-size: var(--sm-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: var(--sm-space-3);
    border: 1px solid var(--sm-brand-100);
}
.section-title .title {
    font-size: clamp(1.75rem, 2.5vw + .75rem, 2.5rem);
    color: var(--sm-text);
    margin: 0 0 var(--sm-space-3);
}

/* Tables */
.blog-single table, .guide-body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--sm-space-5) 0;
    font-size: var(--sm-text-sm);
}
.blog-single th, .blog-single td, .guide-body th, .guide-body td {
    border: 1px solid var(--sm-border);
    padding: var(--sm-space-3) var(--sm-space-4);
    text-align: left;
}
.blog-single th, .guide-body th { background: var(--sm-bg-muted); font-weight: 600; }

/* Hide legacy WOW animation hooks that depend on missing JS */
[class*="wow "]:not(.animated) {
    visibility: visible !important;
    animation: none !important;
}

/* Spacing helpers used by older pages */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-3 { margin-top: var(--sm-space-3); }
.mt-4 { margin-top: var(--sm-space-4); }
.mb-3 { margin-bottom: var(--sm-space-3); }
.mb-5 { margin-bottom: var(--sm-space-6); }
.pb-120 { padding-bottom: var(--sm-space-12); }
.align-items-center { align-items: center; }
.img-fluid { max-width: 100%; height: auto; }

/* Forms (legacy) inside .contactus / .faq-forms — pages we've kept */
.faq-form input,
.faq-form textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--sm-surface);
    border: 1px solid var(--sm-border-strong);
    border-radius: var(--sm-radius);
    font-size: var(--sm-text-base);
    color: var(--sm-text);
    font-family: inherit;
    margin-bottom: var(--sm-space-4);
}
.faq-form textarea, .contact-form textarea { min-height: 140px; resize: vertical; }

/* The portfolios-two / featured-nine sections used by older landing pages */
.featured-nine, .portfolios-two, .process-nine, .faqs, .app-tabs, .download-two, .teams-four, .pricing-single-one, .contactus, .call-to-action {
    padding: var(--sm-space-10) 0;
}
.featured-nine .saaspik-icon-box-wrapper,
.process-nine .single-process-box,
.teams-four .saaspik-icon-box-wrapper {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-md);
    padding: var(--sm-space-6);
    height: 100%;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.featured-nine .saaspik-icon-box-wrapper:hover,
.process-nine .single-process-box:hover,
.teams-four .saaspik-icon-box-wrapper:hover {
    border-color: var(--sm-border-strong);
    box-shadow: var(--sm-shadow-md);
    transform: translateY(-2px);
}
.saaspik-icon-box-icon img,
.single-process-box .icon img { margin-bottom: var(--sm-space-4); }
.pixsass-icon-box-title, .process-title {
    font-size: var(--sm-text-xl);
    margin: 0 0 var(--sm-space-2);
    color: var(--sm-text);
}
.pixsass-icon-box-title a { color: inherit; }
.feature-keywords { font-size: var(--sm-text-sm); color: var(--sm-text-subtle); margin-top: var(--sm-space-3); }

/* Legacy FAQ accordions (Bootstrap collapse) — restyle without depending on JS */
.faqs .card,
.pricing-faqs .card {
    background: var(--sm-surface) !important;
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    margin-bottom: var(--sm-space-3);
    overflow: hidden;
}
.faqs .card-header,
.pricing-faqs .card-header {
    background: transparent;
    border: 0;
    padding: 0;
}
.faqs .card .btn-link,
.pricing-faqs .card .btn-link,
.faqs .card button.btn-link,
.pricing-faqs .card button.btn-link {
    width: 100%;
    text-align: left;
    background: transparent;
    color: var(--sm-text) !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 1.125rem 1.25rem;
    border: 0;
    cursor: pointer;
    font-size: var(--sm-text-base);
}
.faqs .card .btn-link::after,
.pricing-faqs .card .btn-link::after { content: ""; }
.faqs .card-body, .pricing-faqs .card-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--sm-text-muted);
    line-height: 1.7;
}
/* Without Bootstrap JS, "collapse" hides content. We want it visible by default for SEO + UX. */
.faqs .collapse, .pricing-faqs .collapse { display: block !important; }
.faqs .collapse.show, .pricing-faqs .collapse.show { display: block !important; }

/* Legacy tab nav inside FAQ page */
.faq-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--sm-space-1);
    list-style: none;
    padding: 4px;
    margin: 0 0 var(--sm-space-6);
    background: var(--sm-bg-muted);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-pill);
}
.faq-tabs .nav-link {
    padding: .5rem 1rem;
    border-radius: var(--sm-radius-pill);
    color: var(--sm-text-muted);
    font-weight: 600;
    font-size: var(--sm-text-sm);
}
.faq-tabs .nav-link.active {
    background: var(--sm-surface);
    color: var(--sm-text);
    box-shadow: var(--sm-shadow-sm);
}
/* Without Bootstrap JS, all tab-panes stay rendered. Show them all for SEO/UX. */
.tab-pane { display: block !important; }
.tab-content > .tab-pane:not(:first-child) { margin-top: var(--sm-space-6); border-top: 1px dashed var(--sm-border); padding-top: var(--sm-space-6); }

/* Legacy contact form layout */
.contactus .contact-info { padding-right: var(--sm-space-4); }
.contactus .contact-info h3 { font-size: var(--sm-text-lg); margin-bottom: var(--sm-space-2); }

/* Site-info copyright block */
.site-info, .copyright { padding: var(--sm-space-4) 0; text-align: center; color: var(--sm-text-subtle); font-size: var(--sm-text-sm); }

/* Banner mockup wrappers used by older landing pages */
.banner-five, .banner-eight {
    padding: var(--sm-space-12) 0 var(--sm-space-10) !important;
    height: auto !important;
}
.banner-content .sub-title {
    color: var(--sm-brand-700);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: var(--sm-text-sm);
    font-weight: 600;
    margin-bottom: var(--sm-space-3);
}
.banner-title {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    color: var(--sm-text);
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 var(--sm-space-4);
    font-weight: 800;
}
.banner-content .description { color: var(--sm-text-muted); font-size: 1.0625rem; margin-bottom: var(--sm-space-5); }

/* Promo mockup lists (animate-element-five) — show as static centered images */
.promo-mockup-five { position: relative; }
.promo-mockup-five .animate-element-five { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sm-space-3); max-width: 480px; margin-left: auto; }
.promo-mockup-five .animate-element-five li { margin: 0; }
.promo-mockup-five .animate-element-five img { width: 100%; height: auto; border-radius: var(--sm-radius-sm); }

/* Hide remaining legacy decorative ornaments */
.banner-five .banner-right-shape, .banner-five .animate-particle, .banner-five .bubble { display: none !important; }

/* Generic compatibility for old "addon-card" etc. (we've removed but kept for safety) */
.addon-card {
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-md);
    padding: var(--sm-space-6);
    margin-bottom: var(--sm-space-5);
    box-shadow: var(--sm-shadow-sm);
}
