/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #0b0b15;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-logo span {
    color: #818cf8;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.header-nav a:hover {
    color: #fff;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #818cf8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

.header-cta:hover {
    background: #6366f1;
    transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #a5b4fc;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.25);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
}

.hero-cta:active {
    transform: translateY(0);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
}

.stats-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   GENERATOR SECTION
   ============================================ */
.generator-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   APP LAYOUT
   ============================================ */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.controls-panel {
    width: 420px;
    min-width: 380px;
    background: #111827;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.controls-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.controls-scroll::-webkit-scrollbar {
    width: 6px;
}

.controls-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.controls-scroll::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 3px;
}

.preview-panel {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #0b0b15;
    position: relative;
    padding-top: 24px;
}

.preview-panel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
}

/* ============================================
   AD CONTAINER
   ============================================ */
.ad-container {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    width: 728px;
    max-width: 100%;
    height: 90px;
    border: 1px dashed #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   APP TITLE (in controls panel)
   ============================================ */
.app-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

/* ============================================
   SECTIONS (in controls panel)
   ============================================ */
.section {
    margin-bottom: 12px;
    background: #1f2937;
    border-radius: 10px;
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}

.section-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.section-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chevron {
    font-size: 10px;
    color: #4b5563;
    transition: transform 0.2s;
}

.section-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.section-body.open {
    max-height: 2000px;
    padding: 4px 16px 16px;
}

.section-header:not(.active) .chevron {
    transform: rotate(-90deg);
}

/* ============================================
   SETTINGS
   ============================================ */
.setting {
    margin-bottom: 12px;
}

.setting:last-child {
    margin-bottom: 0;
}

.setting-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 6px;
}

.setting-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.setting-toggle .setting-label {
    margin-bottom: 0;
}

/* Inputs */
input[type="text"],
select {
    width: 100%;
    padding: 8px 12px;
    background: #0f172a;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
select:focus {
    border-color: #818cf8;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234b5563'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* Range slider */
.range-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-value {
    font-size: 13px;
    color: #9ca3af;
    min-width: 36px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #818cf8;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #111827;
}

/* Toggle switch */
.toggle {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle input {
    display: none;
}

.toggle-track {
    display: block;
    width: 42px;
    height: 24px;
    background: #374151;
    border-radius: 12px;
    transition: background 0.3s;
    position: relative;
}

.toggle input:checked + .toggle-track {
    background: #22c55e;
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.toggle input:checked + .toggle-track .toggle-thumb {
    left: 20px;
}

/* Signal bars in settings */
.signal-setting-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.signal-bars-preview {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.signal-bars-preview .bar {
    width: 5px;
    border-radius: 1px;
    background: #818cf8;
    transition: opacity 0.2s;
}

.signal-bars-preview .bar.inactive {
    opacity: 0.25;
}

.signal-bars-preview .bar:nth-child(1) { height: 4px; }
.signal-bars-preview .bar:nth-child(2) { height: 7px; }
.signal-bars-preview .bar:nth-child(3) { height: 10px; }
.signal-bars-preview .bar:nth-child(4) { height: 14px; }

/* ============================================
   MESSAGES LIST (in controls)
   ============================================ */
#messages-list {
    margin-bottom: 8px;
}

.message-row {
    background: #0f172a;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    position: relative;
}

.message-row-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.drag-handle {
    cursor: grab;
    color: #4b5563;
    font-size: 14px;
    padding: 2px;
    user-select: none;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.15s;
}

.drag-handle:hover {
    opacity: 1;
}

.message-row.dragging {
    opacity: 0.4;
}

.message-row.drag-over {
    border-color: #818cf8;
    background: rgba(129, 140, 248, 0.08);
}

.message-row-top input[type="text"] {
    flex: 1;
}

.message-colors {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.color-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.1s;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: #fff;
}

.color-btn.color-grey { background: #8e8e93; }
.color-btn.color-blue { background: #007aff; }
.color-btn.color-green { background: #34c759; }

.btn-delete-msg {
    width: 22px;
    height: 22px;
    border: none;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.15s;
}

.btn-delete-msg:hover {
    opacity: 0.8;
}

.message-row-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-row-bottom input[type="text"] {
    flex: 1;
    font-size: 12px;
    padding: 5px 8px;
}

.message-row-bottom .ts-label {
    font-size: 11px;
    color: #4b5563;
    white-space: nowrap;
}

/* Add message button */
.btn-add-message {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px dashed #374151;
    border-radius: 8px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-add-message:hover {
    background: rgba(129, 140, 248, 0.08);
    border-color: #818cf8;
}

/* Message warnings */
.msg-warning {
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: #fbbf24;
}

.msg-warning-max {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ============================================
   DOWNLOAD BUTTON
   ============================================ */
.section-download {
    background: transparent;
}

.btn-download {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
}

.btn-download:hover {
    opacity: 0.9;
}

.btn-download:active {
    transform: scale(0.98);
}

.btn-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-secondary {
    flex: 1;
    padding: 10px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 10px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}

.btn-secondary:hover {
    background: #374151;
    border-color: #818cf8;
    color: #e0e0e0;
}

/* ============================================
   JSON MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 14px;
    width: 520px;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #1f2937;
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.modal-close {
    width: 28px;
    height: 28px;
    background: #374151;
    border: none;
    border-radius: 50%;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.modal-close:hover {
    background: #4b5563;
    color: #fff;
}

.modal-textarea {
    flex: 1;
    margin: 12px 20px;
    padding: 12px;
    background: #0b0b15;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #86efac;
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 12px;
    line-height: 1.5;
    resize: none;
    min-height: 300px;
    outline: none;
}

.modal-textarea:focus {
    border-color: #818cf8;
}

.modal-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 16px;
}

/* Setting hints */
.setting-hint {
    font-size: 11px;
    color: #4b5563;
    margin-top: 5px;
    line-height: 1.5;
}

.ts-format-hint {
    margin-bottom: 10px;
    padding: 8px 10px;
    background: rgba(129, 140, 248, 0.06);
    border-radius: 6px;
    border: 1px solid rgba(129, 140, 248, 0.12);
}

/* ============================================
   SECTION CONTAINERS (landing page sections)
   ============================================ */
.section-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subheading {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
    background: #0f1019;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #161b2e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(129, 140, 248, 0.2);
    transform: translateY(-2px);
}

.feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(129, 140, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #818cf8;
}

.feature-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: 80px 0;
    background: #0b0b15;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    margin-top: 24px;
    flex-shrink: 0;
    opacity: 0.4;
    border-radius: 1px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #0f1019;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
    padding: 80px 0;
    text-align: center;
    background: #0b0b15;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bottom-cta p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #080810;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
}

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.footer-brand span {
    color: #818cf8;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
    font-size: 12px;
    color: #374151;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
    .app-container {
        flex-direction: column;
        width: 100%;
    }

    .controls-panel {
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .preview-panel {
        padding: 24px 16px;
    }

    .ad-placeholder {
        width: 100%;
        max-width: 468px;
        height: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stats-inner {
        gap: 24px;
    }

    .stat-number {
        font-size: 22px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 26px;
    }

    .footer-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .controls-scroll {
        padding: 16px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-trust {
        gap: 16px;
    }

    .stats-inner {
        gap: 16px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .features-section,
    .how-section,
    .faq-section,
    .bottom-cta {
        padding: 48px 0;
    }

    .footer-disclaimer {
        text-align: center;
    }
}
