/* ============================================
   StrangerCam Brand Page Widget — Premium Styles
   v3.0 — Unified layout, consistent visual rhythm
   ============================================ */

:root {
    /* Brand */
    --scw-yellow: #FFC800;
    --scw-yellow-soft: #FFD740;
    --scw-yellow-light: #FFFBEB;
    --scw-yellow-hover: #F0BD00;
    --scw-yellow-glow: rgba(255, 200, 0, 0.15);

    /* Neutrals — refined scale */
    --scw-black: #0F0F0F;
    --scw-dark: #1A1A1A;
    --scw-gray-900: #262626;
    --scw-gray-700: #525252;
    --scw-gray-500: #8A8A8A;
    --scw-gray-400: #A3A3A3;
    --scw-gray-300: #D4D4D4;
    --scw-gray-200: #E5E5E5;
    --scw-gray-100: #F5F5F5;
    --scw-gray-50: #FAFAFA;
    --scw-white: #FFFFFF;

    /* Semantic */
    --scw-green: #16A34A;
    --scw-green-light: #F0FDF4;
    --scw-red: #DC2626;
    --scw-red-light: #FEF2F2;
    --scw-blue: #2563EB;

    /* Layout — UNIFIED width system
       One content width for everything. */
    --scw-content-width: 960px;

    /* Spacing scale */
    --scw-section-gap: 80px;

    /* Radius */
    --scw-radius-xs: 6px;
    --scw-radius-sm: 8px;
    --scw-radius: 12px;
    --scw-radius-lg: 16px;
    --scw-radius-xl: 20px;

    /* Shadows — layered for depth */
    --scw-shadow-xs: 0 1px 2px rgba(0,0,0,.03);
    --scw-shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
    --scw-shadow-md: 0 4px 16px rgba(0,0,0,.05), 0 1px 4px rgba(0,0,0,.03);
    --scw-shadow-lg: 0 12px 40px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.03);
    --scw-shadow-yellow: 0 4px 24px rgba(255, 200, 0, 0.2);

    /* Type */
    --scw-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --scw-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --scw-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --scw-duration: 0.2s;
}

/* ── Reset & Base ── */

.scw-brand-page {
    font-family: var(--scw-font);
    color: var(--scw-black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01';
    overflow-x: hidden;
}

.scw-brand-page *, .scw-brand-page *::before, .scw-brand-page *::after {
    box-sizing: border-box;
}

/* UNIFIED container — every section uses this exact same width */
.scw-container {
    max-width: var(--scw-content-width);
    margin: 0 auto;
    padding: 0 32px;
}

.scw-section {
    padding: var(--scw-section-gap) 0;
}

.scw-section--alt {
    background: var(--scw-gray-50);
    border-top: 1px solid var(--scw-gray-100);
    border-bottom: 1px solid var(--scw-gray-100);
}

/* Unified section separator for non-alt sections */
.scw-section + .scw-section:not(.scw-section--alt):not(.scw-cta-banner) {
    border-top: 1px solid var(--scw-gray-200);
}

/* ── Typography — unified heading system ── */

.scw-heading {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    color: var(--scw-black);
}

.scw-heading-group {
    margin-bottom: 44px;
}

.scw-heading-group .scw-heading {
    margin-bottom: 10px;
}

.scw-section-subtitle {
    font-size: 16px;
    color: var(--scw-gray-500);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* Centered heading variant */
.scw-heading-group--center {
    text-align: center;
}

.scw-heading-group--center .scw-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Yellow accent line under heading */
.scw-heading--accent::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--scw-yellow);
    border-radius: 2px;
    margin-top: 16px;
}

.scw-heading-group--center .scw-heading--accent::after {
    margin-left: auto;
    margin-right: auto;
}

/* ── Prose — consistent text styling ── */

.scw-prose {
    font-size: 16px;
    line-height: 1.8;
    color: var(--scw-gray-700);
}

.scw-prose p {
    margin: 0 0 20px;
}

.scw-prose p:last-child {
    margin-bottom: 0;
}

.scw-prose h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--scw-black);
    letter-spacing: -0.015em;
}

.scw-prose ul {
    padding-left: 0;
    list-style: none;
    margin: 0 0 20px;
}

.scw-prose ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.scw-prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    background: var(--scw-yellow);
    border-radius: 50%;
}

/* ── Buttons ── */

.scw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--scw-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--scw-duration) var(--scw-ease);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

a.scw-btn--primary,
.scw-btn--primary {
    background: var(--scw-yellow);
    color: var(--scw-black) !important;
    box-shadow: var(--scw-shadow-yellow);
}

a.scw-btn--primary:hover,
.scw-btn--primary:hover {
    background: var(--scw-yellow-hover);
    color: var(--scw-black) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(255, 200, 0, 0.3);
}

a.scw-btn--dark,
.scw-btn--dark {
    background: var(--scw-black);
    color: #fff !important;
    box-shadow: var(--scw-shadow-md);
}

a.scw-btn--dark:hover,
.scw-btn--dark:hover {
    background: var(--scw-gray-900);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--scw-shadow-lg);
}

a.scw-btn--outline,
.scw-btn--outline {
    background: transparent;
    color: var(--scw-black) !important;
    border: 1.5px solid var(--scw-gray-200);
}

a.scw-btn--outline:hover,
.scw-btn--outline:hover {
    border-color: var(--scw-yellow);
    background: var(--scw-yellow-light);
    color: var(--scw-black) !important;
}

/* ============================================
   HERO — full-bleed dark, content centered
   ============================================ */

.scw-hero {
    background: var(--scw-black);
    padding: 80px 32px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow */
.scw-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 200, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom edge accent */
.scw-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,200,0,0.25) 50%, transparent 95%);
}

.scw-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--scw-content-width);
    margin: 0 auto;
    padding: 0 32px;
}

.scw-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 200, 0, 0.08);
    color: var(--scw-yellow);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 200, 0, 0.12);
}

.scw-hero__title {
    font-size: 56px;
    font-weight: 900;
    color: var(--scw-white);
    margin: 0 0 14px;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.scw-hero__tagline {
    font-size: 18px;
    color: var(--scw-gray-400);
    margin: 0 0 32px;
    font-weight: 400;
    line-height: 1.5;
}

.scw-hero__divider {
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.scw-hero__divider::before,
.scw-hero__divider::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--scw-gray-700);
}

.scw-hero__divider span {
    color: var(--scw-yellow);
    font-size: 12px;
    line-height: 1;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */

.scw-toc {
    background: var(--scw-white);
    border-bottom: 1px solid var(--scw-gray-200);
}

.scw-toc .scw-section {
    padding: 28px 0;
}

.scw-toc__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--scw-gray-400);
    margin: 0 0 14px;
    text-align: center;
}

.scw-toc__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.scw-toc__links li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--scw-gray-700);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--scw-gray-200);
    background: var(--scw-white);
    transition: all var(--scw-duration) var(--scw-ease);
}

.scw-toc__links li a:hover {
    border-color: var(--scw-yellow);
    background: var(--scw-yellow-light);
    color: var(--scw-black);
}

.scw-toc__links li a::before {
    content: '→';
    font-size: 10px;
    color: var(--scw-gray-400);
    transition: color var(--scw-duration) var(--scw-ease);
}

.scw-toc__links li a:hover::before {
    color: var(--scw-yellow-hover);
}

/* ============================================
   OVERVIEW
   ============================================ */

.scw-overview {
    background: var(--scw-white);
}

.scw-overview__image {
    margin: 28px 0;
}

.scw-overview__image img {
    width: 100%;
    border-radius: var(--scw-radius-lg);
    box-shadow: var(--scw-shadow-lg);
}

/* ============================================
   INFO CARDS
   ============================================ */

.scw-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 640px) {
    .scw-info-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .scw-info-grid { grid-template-columns: repeat(6, 1fr); }
}

.scw-info-card {
    background: var(--scw-white);
    border: 1px solid var(--scw-gray-200);
    border-radius: var(--scw-radius);
    padding: 24px 14px;
    text-align: center;
    transition: all var(--scw-duration) var(--scw-ease);
}

.scw-info-card:hover {
    border-color: var(--scw-yellow);
    box-shadow: 0 2px 12px rgba(255, 200, 0, 0.08);
    transform: translateY(-2px);
}

.scw-info-card__icon {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

.scw-info-card__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--scw-gray-400);
    margin-bottom: 3px;
}

.scw-info-card__value {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--scw-black);
    line-height: 1.35;
}

/* ============================================
   FEATURES — 2-col grid
   ============================================ */

.scw-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .scw-features-grid { grid-template-columns: repeat(2, 1fr); }
}

.scw-feature-card {
    background: var(--scw-white);
    border: 1px solid var(--scw-gray-200);
    border-radius: var(--scw-radius-lg);
    padding: 28px 24px;
    transition: all 0.25s var(--scw-ease);
    position: relative;
}

.scw-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--scw-yellow);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.25s var(--scw-ease);
}

.scw-feature-card:hover {
    border-color: var(--scw-gray-300);
    box-shadow: var(--scw-shadow-md);
    transform: translateY(-2px);
}

.scw-feature-card:hover::before {
    opacity: 1;
}

.scw-feature-card__icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--scw-yellow-light);
    border-radius: var(--scw-radius-sm);
}

.scw-feature-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--scw-black);
    letter-spacing: -0.01em;
}

.scw-feature-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--scw-gray-700);
    margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.scw-steps {
    position: relative;
}

.scw-steps::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, var(--scw-yellow), var(--scw-gray-200));
}

.scw-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.scw-step:last-child { margin-bottom: 0; }

.scw-step__number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--scw-yellow);
    color: var(--scw-black);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--scw-gray-50), var(--scw-shadow-sm);
}

.scw-step__content {
    padding-top: 8px;
    flex: 1;
}

.scw-step__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--scw-black);
}

.scw-step__desc {
    font-size: 15px;
    color: var(--scw-gray-700);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   EDITORIAL / OUR TAKE
   ============================================ */

.scw-editorial__inner {
    /* Inherits container width — no extra constraint */
}

/* ============================================
   STATUS / AVAILABILITY
   ============================================ */

.scw-status__inner {
    /* Same container width, left-aligned */
}

.scw-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.scw-status-indicator--online {
    background: var(--scw-green-light);
    color: var(--scw-green);
    border: 1px solid rgba(22, 163, 74, 0.12);
}

.scw-status-indicator__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: scw-pulse 2s ease-in-out infinite;
}

@keyframes scw-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   PROS & CONS
   ============================================ */

.scw-proscons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .scw-proscons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.scw-proscons-col {
    background: var(--scw-white);
    border-radius: var(--scw-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--scw-gray-200);
    transition: box-shadow var(--scw-duration) var(--scw-ease);
}

.scw-proscons-col:hover {
    box-shadow: var(--scw-shadow-sm);
}

.scw-proscons-col--pros {
    border-top: 3px solid var(--scw-green);
}

.scw-proscons-col--cons {
    border-top: 3px solid var(--scw-red);
}

.scw-proscons__label {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--scw-black);
}

.scw-proscons-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scw-pro-item,
.scw-con-item,
.scw-proscons-col ul li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--scw-gray-700);
    border-bottom: 1px solid var(--scw-gray-100);
    line-height: 1.55;
}

.scw-proscons-col ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.scw-proscons-col ul li:first-child {
    padding-top: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.scw-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--scw-radius-lg);
    border: 1px solid var(--scw-gray-200);
    background: var(--scw-white);
    box-shadow: var(--scw-shadow-xs);
}

.scw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 600px;
}

.scw-table thead th {
    background: var(--scw-black);
    color: var(--scw-white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 14px 16px;
    text-align: center;
    white-space: nowrap;
}

.scw-table thead th:first-child {
    text-align: left;
    border-radius: var(--scw-radius-lg) 0 0 0;
}

.scw-table thead th:last-child {
    border-radius: 0 var(--scw-radius-lg) 0 0;
}

.scw-table tbody td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--scw-gray-100);
    font-size: 14px;
    transition: background var(--scw-duration) var(--scw-ease);
}

.scw-table tbody tr:last-child td { border-bottom: none; }

.scw-table tbody tr:hover td {
    background: var(--scw-yellow-light);
}

.scw-table__name {
    text-align: left !important;
    font-weight: 700;
}

.scw-table tbody tr:first-child td {
    background: var(--scw-yellow-light);
}

.scw-table tbody tr:first-child:hover td {
    background: #FFF3CC;
}

/* ============================================
   SAFETY
   ============================================ */

.scw-safety__inner {
    /* Inherits container width */
}

/* ============================================
   ALTERNATIVES — 3-col grid
   ============================================ */

.scw-alternatives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .scw-alternatives-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .scw-alternatives-grid { grid-template-columns: repeat(3, 1fr); }
}

.scw-alt-card {
    display: flex;
    flex-direction: column;
    background: var(--scw-white);
    border: 1px solid var(--scw-gray-200);
    border-radius: var(--scw-radius-lg);
    padding: 24px 22px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s var(--scw-ease);
    position: relative;
}

.scw-alt-card:hover {
    border-color: var(--scw-yellow);
    box-shadow: var(--scw-shadow-md);
    transform: translateY(-2px);
}

.scw-alt-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--scw-black);
    margin: 0 0 6px;
}

.scw-alt-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--scw-gray-700);
    margin: 0 0 14px;
    flex: 1;
}

.scw-alt-card__link {
    font-size: 12px;
    font-weight: 600;
    color: var(--scw-yellow-hover);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--scw-duration) var(--scw-ease);
}

.scw-alt-card:hover .scw-alt-card__link {
    gap: 8px;
}

/* ============================================
   CTA BANNER — full-bleed yellow
   ============================================ */

.scw-cta-banner {
    background: var(--scw-yellow);
    position: relative;
    overflow: hidden;
}

.scw-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.scw-cta-banner .scw-section {
    padding: 72px 0;
}

.scw-cta-banner__inner {
    text-align: center;
    max-width: var(--scw-content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.scw-cta-banner__title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--scw-black);
    letter-spacing: -0.025em;
}

.scw-cta-banner__text {
    font-size: 15px;
    color: var(--scw-dark);
    margin: 0 auto 32px;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 600px;
}

/* ============================================
   FAQ
   ============================================ */

.scw-faq-list {
    /* Inherits container width — no extra constraint */
}

.scw-faq-item {
    border: 1px solid var(--scw-gray-200);
    border-radius: var(--scw-radius);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--scw-white);
    transition: all var(--scw-duration) var(--scw-ease);
}

.scw-faq-item:hover {
    border-color: var(--scw-gray-300);
    color: var(--scw-black);
}

.scw-faq-item.is-open {
    border-color: var(--scw-yellow);
    box-shadow: 0 2px 8px rgba(255, 200, 0, 0.06);
}

.scw-faq-item__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    font-family: var(--scw-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--scw-black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    line-height: 1.45;
    gap: 16px;
    transition: background var(--scw-duration) var(--scw-ease);
}

.scw-faq-item__q:hover {
    background: var(--scw-gray-50);
    color: var(--scw-black);
}

.scw-faq-item.is-open .scw-faq-item__q {
    background: var(--scw-yellow-light);
}

.scw-faq-item__arrow {
    font-size: 12px;
    color: var(--scw-gray-400);
    transition: all 0.25s var(--scw-ease);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--scw-gray-100);
}

.scw-faq-item.is-open .scw-faq-item__arrow {
    transform: rotate(90deg);
    background: var(--scw-yellow);
    color: var(--scw-black);
}

.scw-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--scw-ease);
}

.scw-faq-item.is-open .scw-faq-item__a {
    max-height: 600px;
}

.scw-faq-item__a > div {
    padding: 0 22px 22px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--scw-gray-700);
}

.scw-faq-item__a p {
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1023px) {
    :root {
        --scw-section-gap: 68px;
    }
}

@media (max-width: 767px) {
    :root {
        --scw-section-gap: 52px;
    }
    .scw-heading { font-size: 24px; }
    .scw-hero { padding: 56px 20px 48px; }
    .scw-hero__title { font-size: 36px; }
    .scw-hero__tagline { font-size: 16px; }
    .scw-cta-banner__title { font-size: 24px; }
    .scw-cta-banner .scw-section { padding: 56px 0; }
    .scw-proscons-col { padding: 24px 20px; }
    .scw-btn { padding: 12px 28px; font-size: 13px; }
    .scw-container { padding: 0 20px; }
    .scw-toc__links { gap: 5px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .scw-toc__links::-webkit-scrollbar { display: none; }
    .scw-toc__links li a { font-size: 11px; padding: 6px 11px; white-space: nowrap; }
    .scw-toc__label { text-align: left; }
    .scw-section-subtitle { font-size: 15px; }
    .scw-heading-group { margin-bottom: 36px; }
}

@media (max-width: 480px) {
    .scw-hero__title { font-size: 30px; }
    .scw-info-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .scw-container { padding: 0 16px; }
    .scw-info-card { padding: 18px 10px; }
    .scw-feature-card { padding: 22px 18px; }
    .scw-step { gap: 16px; }
    .scw-step__number { width: 36px; height: 36px; min-width: 36px; font-size: 13px; }
    .scw-steps::before { left: 17px; }
    .scw-alt-card { padding: 20px 18px; }
}

/* ============================================
   DISCLAIMER
   ============================================ */

.scw-disclaimer {
    padding: 28px 0;
    border-top: 1px solid var(--scw-gray-200);
}

.scw-disclaimer p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--scw-gray-400);
    margin: 0;
    text-align: center;
}

/* ── Elementor Editor Overrides ── */

.elementor-editor-active .scw-brand-page {
    min-height: 200px;
}

.elementor-editor-active .scw-faq-item__a {
    max-height: none !important;
}
