/* =========================================================
   AttracTV.ai - Website CSS
   Uses Inter (Google Fonts) + brand tokens: orange #ff9500, navy #1a1a2e
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    --ws-orange: #ff9500;
    --ws-orange-hover: #e68600;
    --ws-orange-light: rgba(255, 149, 0, 0.10);
    --ws-navy: #1a1a2e;
    --ws-navy-mid: #24325e;
    --ws-bg: #f8f8fb;
    --ws-surface: #ffffff;
    --ws-surface-2: #f1f3f9;
    --ws-text: #0f172a;
    --ws-muted: #64748b;
    --ws-border: rgba(15, 23, 42, 0.08);
    --ws-shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
    --ws-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --ws-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.13);
    --ws-radius: 18px;
    --ws-radius-lg: 28px;
    --ws-gradient: linear-gradient(135deg, var(--ws-navy) 0%, var(--ws-navy-mid) 55%, #3a5294 100%);
    --ws-gradient-orange: linear-gradient(135deg, var(--ws-orange) 0%, #ffb740 100%);
    --ws-font: 'Inter', system-ui, -apple-system, sans-serif;
    --ws-max: 1180px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.website-body {
    font-family: var(--ws-font);
    background: var(--ws-bg);
    color: var(--ws-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ---------- Layout ---------- */
.ws-container {
    max-width: var(--ws-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ws-container-wide {
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ---------- Typography Scale ---------- */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--ws-navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }

p { line-height: 1.65; }

/* ---------- Shared Atoms ---------- */
.ws-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ws-orange);
    margin-bottom: 0.8rem;
}

.ws-eyebrow-light { color: rgba(255,255,255,0.65); }

.ws-badge {
    display: inline-block;
    background: var(--ws-orange-light);
    color: var(--ws-orange);
    border: 1px solid rgba(255,149,0,0.25);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

/* ---------- Buttons ---------- */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ws-font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.72rem 1.3rem;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.ws-btn-primary {
    background: var(--ws-orange);
    color: #fff;
}
.ws-btn-primary:hover { background: var(--ws-orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,149,0,0.3); }

.ws-btn-outline {
    background: transparent;
    color: var(--ws-navy);
    border: 1.5px solid rgba(15,23,42,0.18);
}
.ws-btn-outline:hover { border-color: var(--ws-orange); color: var(--ws-orange); }

.ws-btn-ghost {
    background: transparent;
    color: var(--ws-muted);
    border: 1.5px solid var(--ws-border);
}
.ws-btn-ghost:hover { background: var(--ws-surface-2); color: var(--ws-text); }

.ws-btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: 12px; }

/* ---------- Header / Nav ---------- */
.ws-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 248, 251, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ws-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.ws-brand { text-decoration: none; display: flex; align-items: center; }

.ws-logo-img { height: 32px; width: auto; }

/* Fallback if image fails */
.ws-brand:not(:has(img)) {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ws-navy);
    letter-spacing: -0.03em;
}

.ws-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ws-nav-links a {
    color: var(--ws-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: color 0.15s;
}
.ws-nav-links a:hover { color: var(--ws-navy); }
.ws-nav-links a.ws-btn-primary { color: #fff; }
.ws-nav-links a.ws-btn-primary:hover { color: #fff; }

.ws-nav-login { border: 1.5px solid var(--ws-border) !important; }
.ws-nav-auth-sep { margin-left: 0.75rem; }

.ws-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
}
.ws-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ws-navy);
    border-radius: 2px;
    transition: 0.25s;
}

/* ---------- Hero ---------- */
.ws-hero {
    padding: 6rem 0 5rem;
    text-align: center;
}

.ws-hero-inner {
    max-width: 820px;
    margin-inline: auto;
}

.ws-hero-inner h1 {
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--ws-navy) 40%, #4a7ecf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ws-muted);
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.ws-hero-actions {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ws-hero-actions .ws-btn {
    width: 100%;
}

.ws-hero-note {
    font-size: 0.88rem;
    color: var(--ws-muted);
}

.ws-hero-screenshot {
    margin-top: 3.5rem;
    border-radius: var(--ws-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(15,23,42,0.18), 0 4px 16px rgba(15,23,42,0.08);
    border: 1px solid var(--ws-border);
    line-height: 0;
}

.ws-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Stats Strip ---------- */
.ws-stats-strip {
    padding: 1rem 0 3.5rem;
}

.ws-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-lg);
    box-shadow: var(--ws-shadow);
    padding: 2rem 2.5rem;
}

.ws-stat {
    text-align: center;
}

.ws-stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ws-orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.ws-stat span {
    font-size: 0.9rem;
    color: var(--ws-muted);
    font-weight: 500;
}

/* ---------- Section ---------- */
.ws-section {
    padding: 5rem 0;
}

.ws-section-alt {
    background: var(--ws-surface-2);
    border-top: 1px solid var(--ws-border);
    border-bottom: 1px solid var(--ws-border);
}

.ws-section-dark {
    background: var(--ws-gradient);
}

.ws-section-head {
    max-width: 680px;
    margin-bottom: 3rem;
}

.ws-section-head h2 {
    margin-bottom: 0.85rem;
}

.ws-section-head-centered {
    text-align: center;
    max-width: 780px;
    margin-inline: auto;
}

.ws-section-head p {
    font-size: 1.05rem;
    color: var(--ws-muted);
}

.ws-section-head-light h2,
.ws-section-head-light p {
    color: #fff;
}

.ws-section-head-light p {
    opacity: 0.75;
}

/* ---------- Feature Cards ---------- */
.ws-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ws-card {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.75rem;
    box-shadow: var(--ws-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.ws-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ws-gradient-orange);
    opacity: 0;
    transition: opacity 0.2s;
}

.ws-card:hover { transform: translateY(-3px); box-shadow: var(--ws-shadow-lg); }
.ws-card:hover::before { opacity: 1; }

.ws-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.ws-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.ws-card p { color: var(--ws-muted); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.ws-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
}

.ws-steps-5 {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
}

.ws-steps-5 .ws-step {
    height: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 1.5rem;
}

.ws-steps-5 .ws-step-arrow {
    padding-top: 2.2rem;
    align-self: start;
}

.ws-step {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.75rem;
    box-shadow: var(--ws-shadow-sm);
    height: 100%;
    box-sizing: border-box;
}

.ws-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: var(--ws-orange-light);
    color: var(--ws-orange);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ws-step h3 { margin-bottom: 0.5rem; }
.ws-step p { color: var(--ws-muted); font-size: 0.95rem; }

.ws-step-arrow {
    color: rgba(15,23,42,0.2);
    font-size: 1.5rem;
    padding-top: 2.2rem;
    user-select: none;
}

/* ---------- Feature List ---------- */
.ws-feature-list {
    display: grid;
    gap: 1rem;
}

.ws-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--ws-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ws-feature-item:hover { transform: translateY(-2px); box-shadow: var(--ws-shadow); }

.ws-feature-num {
    flex-shrink: 0;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(15,23,42,0.1);
    min-width: 2.5rem;
    line-height: 1;
    padding-top: 0.2rem;
}

.ws-feature-item h3 { margin-bottom: 0.3rem; }
.ws-feature-item p { color: var(--ws-muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.ws-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ws-testimonial {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--ws-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ws-testimonial p {
    color: rgba(255,255,255,0.9);
    font-size: 0.98rem;
    line-height: 1.65;
    flex: 1;
}

.ws-testimonial footer strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.ws-testimonial footer span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* ---------- FAQ ---------- */
.ws-faq {
    max-width: 780px;
    margin-inline: auto;
    display: grid;
    gap: 0.6rem;
}

.ws-faq-item {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    overflow: hidden;
    box-shadow: var(--ws-shadow-sm);
}

.ws-faq-item[open] {
    border-color: rgba(255,149,0,0.25);
    box-shadow: 0 0 0 3px rgba(255,149,0,0.06), var(--ws-shadow-sm);
}

.ws-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.ws-faq-item summary::-webkit-details-marker { display: none; }

.ws-faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ws-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.ws-faq-item[open] summary::after {
    content: '−';
}

.ws-faq-item p {
    padding: 0 1.5rem 1.2rem;
    color: var(--ws-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---------- CTA Section ---------- */
.ws-cta-section { padding-bottom: 6rem; }

.ws-cta-card {
    background: var(--ws-gradient);
    border-radius: var(--ws-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--ws-shadow-lg);
}

.ws-cta-card .ws-eyebrow { margin-bottom: 1rem; }

.ws-cta-card h2 {
    color: #fff;
    margin-bottom: 0.85rem;
}

.ws-cta-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-inline: auto;
}

.ws-cta-card .ws-btn-primary {
    background: #fff;
    color: var(--ws-navy);
}
.ws-cta-card .ws-btn-primary:hover { background: rgba(255,255,255,0.92); }

/* ---------- Footer ---------- */
.ws-footer {
    background: var(--ws-navy);
    padding: 0;
}

.ws-footer-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-block: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.ws-footer-brand {
    display: inline-flex;
    text-decoration: none;
    flex-shrink: 0;
}

.ws-footer-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ws-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.ws-footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.ws-footer-links a:hover { color: #fff; }

.ws-footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.ws-footer-footnote {
    background: var(--ws-navy);
    padding: 0 0 1.4rem;
}

.ws-footer-footnote p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.42);
}

/* ---------- Modal ---------- */
.ws-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.ws-modal.is-open { display: flex; }

.ws-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(6px);
}

.ws-modal-dialog {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--ws-radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 32px 80px rgba(10,15,30,0.3);
    animation: ws-modal-in 0.22s ease;
}

@keyframes ws-modal-in {
    from { opacity: 0; transform: scale(0.97) translateY(8px); }
    to { opacity: 1; transform: none; }
}

.ws-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--ws-border);
    background: var(--ws-surface-2);
    color: var(--ws-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.ws-modal-close:hover { background: var(--ws-border); color: var(--ws-text); }

.ws-modal-head { margin-bottom: 1.5rem; }
.ws-modal-head h2 { font-size: 1.5rem; margin-bottom: 0.45rem; }
.ws-modal-head p { color: var(--ws-muted); font-size: 0.95rem; }

/* Step Dots */
.ws-step-dots {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.ws-step-dot {
    flex: 1;
    height: 5px;
    border-radius: 999px;
    background: var(--ws-surface-2);
    transition: background 0.25s;
}

.ws-step-dot.is-active,
.ws-step-dot.is-done {
    background: var(--ws-orange);
}

/* Form Error */
.ws-form-error {
    min-height: 1.4em;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: #dc2626;
}

.ws-form-error.is-success { color: #16a34a; }

/* Wizard Steps */
.ws-wizard-step { border: none; padding: 0; margin: 0; }
.ws-wizard-step { display: none; }
.ws-wizard-step.is-active { display: block; }

.ws-step-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 1.2rem;
}

/* Fields */
.ws-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.ws-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ws-text);
}

.ws-required { color: var(--ws-orange); }
.ws-optional { color: var(--ws-muted); font-weight: 400; }

.ws-field input,
.ws-field select,
.ws-field textarea {
    width: 100%;
    border: 1.5px solid rgba(15,23,42,0.13);
    border-radius: 10px;
    background: #fff;
    padding: 0.8rem 1rem;
    font: 0.95rem/1.5 var(--ws-font);
    color: var(--ws-text);
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: auto;
}

.ws-field input:focus,
.ws-field select:focus,
.ws-field textarea:focus {
    outline: none;
    border-color: var(--ws-orange);
    box-shadow: 0 0 0 4px rgba(255,149,0,0.12);
}

.ws-field textarea { resize: vertical; min-height: 90px; }

/* Wizard Action Rows */
.ws-wizard-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.ws-wizard-actions-end { justify-content: flex-end; }
.ws-wizard-actions-center { justify-content: center; }

/* Success state */
.ws-wizard-success {
    text-align: center;
    padding: 1rem 0;
}

.ws-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22,163,74,0.1);
    color: #16a34a;
    font-size: 1.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.ws-wizard-success h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.ws-wizard-success p { color: var(--ws-muted); margin-bottom: 0; }

/* ---------- Legal Pages ---------- */
.ws-legal-page {
    max-width: 780px;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.ws-legal-page h1 {
    margin-bottom: 0.3rem;
}

.ws-legal-date {
    color: var(--ws-muted);
    margin-bottom: 2.5rem;
}

.ws-legal-page section {
    margin-bottom: 2rem;
}

.ws-legal-page h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.ws-legal-page p {
    margin-bottom: 0.75rem;
    color: var(--ws-muted);
}

.ws-legal-page ul {
    margin: 0 0 0.75rem 1.25rem;
    color: var(--ws-muted);
}

.ws-legal-page li + li { margin-top: 0.3rem; }

.ws-legal-page a { color: var(--ws-orange); }

/* =========================================================
   Additional SEO/AEO Components
   ========================================================= */

/* ---------- Hero compact (landing pages) ---------- */
.ws-hero-compact { padding: 4rem 0 3rem; }

/* ---------- Answer block (homepage + landing pages) ---------- */
.ws-answer-block { padding: 4rem 0; }

.ws-answer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ws-answer-text-full { max-width: 780px; margin-inline: auto; }

.ws-answer-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ws-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.ws-answer-text h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.ws-answer-text p { color: var(--ws-muted); margin-bottom: 0.85rem; }

.ws-answer-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ws-link-arrow {
    color: var(--ws-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.ws-link-arrow::after { content: ' →'; }
.ws-link-arrow:hover { text-decoration: underline; }

.ws-answer-cards {
    display: grid;
    gap: 0.75rem;
}

.ws-quick-fact {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.1rem 1.3rem;
    box-shadow: var(--ws-shadow-sm);
}

.ws-quick-fact strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ws-navy);
    margin-bottom: 0.35rem;
}

.ws-quick-fact span {
    font-size: 0.93rem;
    color: var(--ws-muted);
    line-height: 1.5;
}

/* ---------- Card link & small link ---------- */
.ws-card-link, .ws-card-title-link {
    color: var(--ws-orange);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
}
.ws-card-link:hover, .ws-card-title-link:hover { text-decoration: underline; }
.ws-card-title-link { font-size: inherit; color: var(--ws-navy); margin-top: 0; font-weight: 800; }
.ws-card-title-link:hover { color: var(--ws-orange); }

.ws-link-sm {
    color: var(--ws-orange);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}
.ws-link-sm:hover { text-decoration: underline; }

/* ---------- Section CTA row ---------- */
.ws-section-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---------- Link grid (homepage use-case links) ---------- */
.ws-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ws-link-card {
    display: block;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.25rem 1.4rem;
    text-decoration: none;
    box-shadow: var(--ws-shadow-sm);
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.ws-link-card:hover { transform: translateY(-2px); box-shadow: var(--ws-shadow); border-color: rgba(255,149,0,0.3); }

.ws-link-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ws-navy);
    margin-bottom: 0.35rem;
}

.ws-link-card span {
    font-size: 0.85rem;
    color: var(--ws-muted);
    line-height: 1.45;
}

/* ---------- Breadcrumbs ---------- */
.ws-breadcrumbs {
    background: var(--ws-surface-2);
    border-bottom: 1px solid var(--ws-border);
    padding: 0.75rem 0;
}

.ws-breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.ws-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ws-muted);
}

.ws-breadcrumb-item a { color: var(--ws-orange); text-decoration: none; }
.ws-breadcrumb-item a:hover { text-decoration: underline; }
.ws-breadcrumb-sep { color: var(--ws-border); }

/* ---------- Related links section ---------- */
.ws-related-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ws-related-link {
    display: block;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.2rem 1.4rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.ws-related-link:hover { transform: translateY(-2px); box-shadow: var(--ws-shadow); }

.ws-related-link strong {
    display: block;
    color: var(--ws-orange);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.ws-related-link span { color: var(--ws-muted); font-size: 0.88rem; }

/* ---------- Comparison table ---------- */
.ws-comparison-wrap {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.ws-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.ws-comparison-table th {
    background: var(--ws-navy);
    color: #fff;
    padding: 0.85rem 1.2rem;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
}

.ws-comparison-table th:first-child { border-radius: 10px 0 0 0; }
.ws-comparison-table th:last-child { border-radius: 0 10px 0 0; }

.ws-comparison-table td {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--ws-border);
    vertical-align: top;
    line-height: 1.5;
}

.ws-comparison-table tr:nth-child(even) td { background: var(--ws-surface-2); }
.ws-comparison-table td:first-child { font-weight: 600; color: var(--ws-navy); }

.ws-comparison-disclaimer {
    font-size: 0.8rem;
    color: var(--ws-muted);
    text-align: center;
    margin-top: 0.75rem;
}

.ws-td-positive { background: #f0faf4 !important; color: #1a6b3c; }

/* ---------- Definition list ---------- */
.ws-definition-list {
    margin: 0.75rem 0 1rem 1.2rem;
    padding: 0;
    color: var(--ws-text);
    line-height: 2;
}
.ws-definition-list li { padding-left: 0.25rem; }

/* ---------- Workflow steps (ordered list) ---------- */
.ws-workflow-steps {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 0 1.4rem;
    counter-reset: none;
}
.ws-workflow-steps li {
    padding: 0.6rem 0 0.6rem 0.5rem;
    border-bottom: 1px solid var(--ws-border);
    line-height: 1.6;
    font-size: 1rem;
    color: var(--ws-text);
}
.ws-workflow-steps li:last-child { border-bottom: none; }

/* ---------- Platform status badges ---------- */
.ws-platform-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.ws-status-live { background: #dcfce7; color: #166534; }
.ws-status-soon { background: #fef9c3; color: #713f12; }

/* ---------- Topic clusters (resources hub) ---------- */
.ws-topic-clusters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.ws-topic-cluster {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}
.ws-topic-cluster h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ws-navy);
    margin-bottom: 0.4rem;
}
.ws-topic-cluster p {
    font-size: 0.88rem;
    color: var(--ws-muted);
    margin-bottom: 1rem;
}
.ws-topic-cluster ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ws-topic-cluster ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--ws-border);
    font-size: 0.9rem;
}
.ws-topic-cluster-full {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
}
.ws-topic-cluster ul li a {
    color: var(--ws-accent);
    text-decoration: none;
    font-weight: 500;
}
.ws-topic-cluster ul li a:hover { text-decoration: underline; }

/* ---------- Before / After Wheel Carousel ---------- */
.ws-ba-carousel {
    position: relative;
    max-width: 800px;
    margin: 2.5rem auto 0;
    overflow-x: clip;
    overflow-y: visible;
    perspective: 1200px;
    min-height: 350px;
}

.ws-ba-pair {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Active pair: centered, full size */
.ws-ba-active {
    transform: translateX(-50%) scale(1) translateZ(0);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

/* Right neighbour */
.ws-ba-side-next {
    transform: translateX(calc(-50% + 305px)) scale(0.8) translateZ(-60px);
    opacity: 0.38;
    z-index: 2;
    pointer-events: none;
}

/* Left neighbour */
.ws-ba-side-prev {
    transform: translateX(calc(-50% - 305px)) scale(0.8) translateZ(-60px);
    opacity: 0.38;
    z-index: 2;
    pointer-events: none;
}

/* Hidden pairs */
.ws-ba-hidden {
    transform: translateX(calc(-50% + 560px)) scale(0.6) translateZ(-120px);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.ws-ba-card {
    margin: 0;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 14px;
    padding: 0.4rem 0.4rem 0;
    box-shadow: var(--ws-shadow-sm);
    text-align: center;
    flex-shrink: 0;
    width: 228px;
    box-sizing: border-box;
    overflow: hidden;
}

.ws-before-after-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    border-radius: 0;
}

.ws-ba-thumb {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 0;
}

/* Depth shadow on active pair cards */
.ws-ba-active .ws-ba-card {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.ws-ba-card figcaption {
    margin-top: 0;
    padding: 0.65rem 0.65rem 0.8rem;
    font-size: 0.85rem;
    color: var(--ws-muted);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.2rem;
    min-height: 5.5rem;
}

.ws-ba-card figcaption strong {
    font-size: 0.9rem;
    color: var(--ws-navy);
}

.ws-ba-card figcaption span {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--ws-muted);
}

.ws-ba-before .ws-ba-card figcaption strong,
.ws-ba-card.ws-ba-before figcaption strong { color: var(--ws-muted); }

/* Controls */
.ws-ba-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.ws-ba-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--ws-border);
    background: var(--ws-surface);
    color: var(--ws-text);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.ws-ba-btn:hover { background: var(--ws-border); }

.ws-ba-dots { display: flex; gap: 0.5rem; align-items: center; }

.ws-ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--ws-border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.ws-ba-dot.is-active {
    background: var(--ws-orange);
    transform: scale(1.35);
}

@media (max-width: 700px) {
    .ws-ba-carousel {
        max-width: 340px;
        margin-top: 2rem;
        min-height: 0;
        height: auto !important;
        overflow: visible;
    }
    .ws-ba-pair {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        display: none;
        transform: none !important;
        opacity: 1;
        pointer-events: none;
    }
    .ws-ba-active {
        display: flex;
        pointer-events: auto;
    }
    .ws-ba-card {
        width: 162px;
        padding: 0.3rem 0.3rem 0;
    }
    .ws-ba-card figcaption {
        padding: 0.5rem 0.45rem 0.6rem;
        min-height: 4.7rem;
    }
    .ws-ba-card figcaption strong {
        font-size: 0.78rem;
    }
    .ws-ba-card figcaption span {
        font-size: 0.62rem;
        line-height: 1.3;
    }
    .ws-ba-side-next,
    .ws-ba-side-prev,
    .ws-ba-hidden {
        display: none;
    }
    .ws-ba-controls {
        gap: 0.85rem;
        margin-top: 1rem;
    }
    .ws-ba-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .ws-ba-carousel {
        max-width: 300px;
    }
    .ws-ba-card {
        width: 144px;
    }
    .ws-ba-card figcaption {
        min-height: 4.35rem;
    }
    .ws-ba-dots {
        gap: 0.4rem;
    }
}

/* ---------- Feature Video Carousel ---------- */
.ws-vc-carousel {
    position: relative;
    max-width: 800px;
    margin: 2.5rem auto 0;
    overflow-x: clip;
    overflow-y: visible;
    perspective: 1200px;
    min-height: 160px;
}

.ws-vc-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 230px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.ws-vc-active {
    transform: translateX(-50%) scale(1) translateZ(0);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.ws-vc-side-next {
    transform: translateX(calc(-50% + 152px)) scale(0.8) translateZ(-60px);
    opacity: 0.38;
    z-index: 2;
    pointer-events: none;
}

.ws-vc-side-prev {
    transform: translateX(calc(-50% - 152px)) scale(0.8) translateZ(-60px);
    opacity: 0.38;
    z-index: 2;
    pointer-events: none;
}

.ws-vc-hidden {
    transform: translateX(calc(-50% + 280px)) scale(0.6) translateZ(-120px);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.ws-vc-card {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ws-shadow-sm);
}

.ws-vc-active .ws-vc-card {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.ws-vc-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
}

.ws-vc-caption {
    padding: 1rem 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ws-vc-caption strong {
    font-size: 1rem;
    color: var(--ws-navy);
    font-weight: 700;
}

.ws-vc-caption span {
    font-size: 0.875rem;
    color: var(--ws-muted);
    line-height: 1.5;
}

@media (max-width: 740px) {
    .ws-vc-carousel {
        max-width: 340px;
        min-height: 0;
        height: auto !important;
        overflow: visible;
    }
    .ws-vc-slide {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        display: none;
        transform: none !important;
        opacity: 1;
        pointer-events: none;
    }
    .ws-vc-active {
        display: block;
        pointer-events: auto;
    }
    .ws-vc-side-next,
    .ws-vc-side-prev,
    .ws-vc-hidden {
        display: none;
    }
}

.ws-vc-card--clickable {
    cursor: pointer;
}

.ws-vc-card--clickable:hover .ws-vc-video {
    opacity: 0.85;
}

.ws-video-modal-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.ws-video-modal-close-btn {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-video-modal-close-btn:hover {
    background: #fff;
}

.ws-video-modal-dialog {
    max-width: 480px;
    width: 90vw;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: none;
}

.ws-video-modal-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1rem 0;
    margin: 0;
}

.ws-video-modal-player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}

/* ---------- Image modal ---------- */
.ws-image-modal-dialog {
    max-width: 1100px;
    padding: 1rem;
    background: transparent;
    box-shadow: none;
}

.ws-image-modal-head {
    margin-bottom: 0.75rem;
}

.ws-image-modal-head h2 {
    color: #fff;
    text-align: center;
}

.ws-image-modal-dialog .ws-modal-close {
    background: rgba(255, 255, 255, 0.9);
}

.ws-image-modal-image {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

/* ---------- Second row of steps ---------- */
.ws-steps-row2 {
    margin-top: 2rem;
    grid-template-columns: auto 1fr auto 1fr;
}

.ws-step-arrow-cont { padding-top: 2.2rem; }

/* Down continuation arrow between row 1 and row 2 - no longer used */
.ws-steps-row-connector { display: none; }

@media (max-width: 700px) {
    .ws-topic-clusters { grid-template-columns: 1fr; }
    .ws-before-after-grid { grid-template-columns: 1fr; }
    .ws-image-modal-dialog { padding: 0.5rem; }
}

/* ---------- Resources index ---------- */
.ws-resource-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Keep the old class working if referenced elsewhere */
.ws-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ws-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.ws-carousel-controls[hidden] { display: none !important; }

.ws-carousel-btn {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ws-navy);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.ws-carousel-btn:hover:not(:disabled) {
    background: var(--ws-navy);
    color: #fff;
    border-color: var(--ws-navy);
}
.ws-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.ws-carousel-status {
    font-size: 0.88rem;
    color: var(--ws-muted);
    min-width: 90px;
    text-align: center;
}

.ws-resource-card {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.75rem;
    box-shadow: var(--ws-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.18s, box-shadow 0.18s;
}
.ws-resource-card:hover { transform: translateY(-3px); box-shadow: var(--ws-shadow-lg); }

.ws-resource-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.ws-resource-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ws-orange);
}

.ws-resource-time {
    font-size: 0.78rem;
    color: var(--ws-muted);
}

.ws-resource-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}
.ws-resource-title a { color: var(--ws-navy); text-decoration: none; }
.ws-resource-title a:hover { color: var(--ws-orange); }

.ws-resource-summary {
    color: var(--ws-muted);
    font-size: 0.93rem;
    flex: 1;
}

/* ---------- Article page ---------- */
.ws-article-header {
    background: var(--ws-gradient);
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.ws-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.ws-article-header h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
}

.ws-article-summary {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 660px;
    line-height: 1.65;
}

.ws-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 3.5rem 0 5rem;
    align-items: start;
}

.ws-article-body { min-width: 0; }

.ws-article-section {
    margin-bottom: 2.5rem;
}

/* Styles apply to both the legacy .ws-article-section wrapper and direct DB body output */
.ws-article-section h2,
.ws-article-body > h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ws-border);
    color: var(--ws-navy);
}

.ws-article-section h3, .ws-article-section h4,
.ws-article-body > h3, .ws-article-body > h4,
.ws-article-body section h3, .ws-article-body section h4 {
    color: var(--ws-navy);
    font-weight: 700;
    font-size: 1rem;
    margin: 1.4rem 0 0.5rem;
}

.ws-article-section p,
.ws-article-body > p,
.ws-article-body section p {
    color: var(--ws-muted);
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.75;
}

.ws-article-section ul, .ws-article-section ol,
.ws-article-body > ul, .ws-article-body > ol,
.ws-article-body section ul, .ws-article-body section ol {
    margin: 0 0 1rem 1.25rem;
    color: var(--ws-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.ws-article-section li + li,
.ws-article-body li + li { margin-top: 0.3rem; }

.ws-article-section a,
.ws-article-body a { color: var(--ws-orange); }
.ws-article-section a:hover,
.ws-article-body a:hover { text-decoration: underline; }

/* Section spacing inside article body */
.ws-article-body section {
    margin-bottom: 2.5rem;
}
.ws-article-body section:first-child > h2 { margin-top: 0; }

/* Lead summary paragraph */
.ws-article-body > p:first-child {
    font-size: 1.05rem;
    color: var(--ws-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Sidebar */
.ws-article-sidebar {
    position: sticky;
    top: 90px;
}

.ws-sidebar-cta {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 1.75rem;
    box-shadow: var(--ws-shadow);
}

.ws-sidebar-cta h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.ws-sidebar-cta p {
    color: var(--ws-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.55;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 1100px) {
    .ws-link-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .ws-answer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .ws-related-links { grid-template-columns: 1fr 1fr; }
    .ws-resource-grid, .ws-resource-carousel { grid-template-columns: 1fr 1fr; }
    .ws-article-layout { grid-template-columns: 1fr; }
    .ws-article-sidebar { position: static; }
}

@media (max-width: 700px) {
    .ws-link-grid { grid-template-columns: 1fr; }
    .ws-related-links { grid-template-columns: 1fr; }
    .ws-resource-grid, .ws-resource-carousel { grid-template-columns: 1fr; }
    .ws-hero-compact { padding: 2.5rem 0 2rem; }
    .ws-answer-block { padding: 2.5rem 0; }
    .ws-article-header { padding: 2.5rem 0 2rem; }
}
@media (max-width: 960px) {
    .ws-card-grid,
    .ws-testimonials {
        grid-template-columns: 1fr;
    }

    .ws-steps,
    .ws-steps-5 {
        grid-template-columns: 1fr;
    }

    .ws-step-arrow { display: none; }

    .ws-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1.5rem;
    }
}

@media (max-width: 700px) {
    .ws-hamburger { display: flex; }

    .ws-nav-links {
        display: none;
        position: fixed;
        top: 72px;
        inset-inline: 0;
        background: var(--ws-surface);
        border-bottom: 1px solid var(--ws-border);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.35rem;
        box-shadow: var(--ws-shadow);
        z-index: 49;
    }

    .ws-nav-links.is-open { display: flex; }

    .ws-nav-links a,
    .ws-nav-links .ws-btn {
        width: 100%;
        text-align: center;
    }

    .ws-hero { padding: 3.5rem 0 2.5rem; }

    .ws-wizard-actions {
        flex-direction: column;
    }

    .ws-wizard-actions .ws-btn {
        width: 100%;
    }

    .ws-wizard-actions-end { flex-direction: column; align-items: stretch; }

    .ws-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ws-modal-dialog { padding: 1.75rem 1.4rem; }

    .ws-cta-card { padding: 2.5rem 1.5rem; }

    .ws-footer-bar { gap: 1rem; }
    .ws-footer-links { gap: 0.25rem 1.25rem; }
    .ws-footer-copy { width: 100%; }
}
