:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --orange-100: #ffedd5;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --purple-100: #ede9fe;
    --purple-500: #8b5cf6;
    --orange-500: #f97316;
    --pink-500: #ec4899;
    --red-500: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--slate-900);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 17, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 24px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--green-600) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--green-700) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.7);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.open {
    display: block;
    opacity: 1;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 101;
    padding: 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.nav-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-900);
}

.nav-mobile-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-close svg {
    width: 24px;
    height: 24px;
    color: var(--slate-500);
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile-links a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--slate-700);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-mobile-links a:hover {
    background: var(--slate-50);
}

.nav-mobile-links .nav-mobile-cta {
    background: var(--green-600);
    color: var(--white);
    text-align: center;
    margin-top: 16px;
}

.nav-mobile-links .nav-mobile-cta:hover {
    background: var(--green-700);
}

.hero {
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #0f1117 0%, #111827 100%);
    color: var(--white);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-top {
    text-align: center;
    margin-bottom: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--green-700);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-form {
    max-width: 480px;
    margin: 0 auto;
}

.hero-form .formkit-form {
    width: 100%;
}

.hero-form .formkit-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-form .formkit-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--slate-900);
}

.hero-form .formkit-input::placeholder {
    color: var(--slate-400);
}

.hero-form .formkit-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.hero-form .formkit-submit {
    background: var(--slate-900);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-form .formkit-submit:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
}

.hero-form .formkit-submit span {
    display: block;
}

.hero-form .formkit-alert {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.hero-form .formkit-alert-success {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-form .formkit-powered-by-convertkit-container {
    display: none;
}

.preview-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--slate-100);
    color: var(--slate-500);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 10;
}

.app-flow {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.views-mockup {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.filter-mockup {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-cta .price {
    font-weight: 800;
    font-size: 1.125rem;
}

.hero-note {
    margin-top: 12px;
    font-size: 0.8125rem;
    opacity: 0.7;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pain-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--slate-800);
    transition: transform 0.2s;
}

.pain-card:hover {
    transform: translateX(4px);
}

.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon svg {
    width: 20px;
    height: 20px;
}

.pain-icon.orange { background: var(--orange-100); color: var(--orange-500); }
.pain-icon.blue { background: var(--blue-100); color: var(--blue-500); }
.pain-icon.purple { background: var(--purple-100); color: var(--purple-500); }
.pain-icon.green { background: var(--green-100); color: var(--green-600); }

.pain-content h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.pain-content p {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.app-flow-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
}

.flow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    cursor: pointer;
    transition: all 0.2s;
}

.flow-dot.active {
    background: var(--green-500);
    transform: scale(1.2);
}

.app-flow-screens {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.flow-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.flow-screen.active {
    opacity: 1;
    pointer-events: auto;
}

.flow-label {
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-100);
}

.flow-label span {
    background: var(--green-100);
    color: var(--green-700);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
}

.screen-dropzone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
}

.dropzone-box {
    border: 2px dashed var(--green-400);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    background: var(--white);
    max-width: 320px;
    width: 100%;
}

.dropzone-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--green-500);
}

.dropzone-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.dropzone-sub {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 16px;
}

.dropzone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-500);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.screen-whoareyou {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--slate-100);
}

.whoareyou-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.whoareyou-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--slate-900);
}

.whoareyou-sub {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 16px;
}

.whoareyou-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.whoareyou-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
}

.whoareyou-item.selected {
    border-color: var(--green-500);
    background: var(--green-50);
}

.whoareyou-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
}

.whoareyou-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-800);
}

.whoareyou-count {
    font-size: 0.6875rem;
    color: var(--slate-500);
}

.whoareyou-btn {
    width: 100%;
    background: var(--green-500);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.screen-appview {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--slate-50);
}

.appview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.appview-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.appview-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.appview-logo-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slate-800);
}

.appview-logo-sub {
    font-size: 0.625rem;
    color: var(--slate-500);
}

.appview-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--slate-600);
}

.appview-btn svg {
    width: 12px;
    height: 12px;
}

.appview-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.appview-tab {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--slate-500);
    background: var(--slate-100);
    border-radius: 6px;
}

.appview-tab.active {
    background: var(--white);
    color: var(--green-600);
    border: 1px solid var(--slate-200);
}

.appview-tab svg {
    width: 12px;
    height: 12px;
}

.appview-body {
    flex: 1;
    padding: 12px;
    overflow: hidden;
}

.conv-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conv-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.conv-msg.sent {
    flex-direction: row-reverse;
}

.conv-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.conv-bubble {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 8px 12px;
    max-width: 200px;
}

.conv-msg.sent .conv-bubble {
    background: var(--green-500);
    border-color: var(--green-500);
}

.conv-name {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--green-600);
    margin-bottom: 2px;
}

.conv-msg.sent .conv-name {
    color: rgba(255,255,255,0.85);
}

.conv-text {
    font-size: 0.75rem;
    color: var(--slate-700);
}

.conv-msg.sent .conv-text {
    color: var(--white);
}

.conv-time {
    font-size: 0.5rem;
    color: var(--slate-400);
    margin-top: 2px;
    text-align: right;
}

.conv-msg.sent .conv-time {
    color: rgba(255,255,255,0.7);
}

.table-head {
    display: grid;
    grid-template-columns: 20px 30px 65px 60px 1fr 50px;
    gap: 6px;
    padding: 8px 10px;
    background: var(--slate-50);
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    border-bottom: 1px solid var(--slate-200);
}

.table-row {
    display: grid;
    grid-template-columns: 20px 30px 65px 60px 1fr 50px;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.625rem;
    border-bottom: 1px solid var(--slate-100);
    align-items: center;
    background: var(--white);
}

.table-check {
    width: 12px;
    height: 12px;
    border: 1px solid var(--slate-300);
    border-radius: 3px;
}

.table-num {
    color: var(--slate-400);
}

.table-sender {
    display: flex;
    align-items: center;
    gap: 4px;
}

.table-sender-av {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 0.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.table-msg {
    color: var(--slate-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-attach {
    color: var(--slate-400);
    font-size: 0.5625rem;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-item {
    display: flex;
    gap: 10px;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.timeline-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 10px 12px;
}

.timeline-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.timeline-name {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate-800);
}

.timeline-time {
    font-size: 0.5625rem;
    color: var(--slate-400);
}

.timeline-text {
    font-size: 0.6875rem;
    color: var(--slate-600);
}

.timeline-attach {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 4px 8px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 4px;
    font-size: 0.5625rem;
    color: var(--slate-600);
}

.timeline-attach svg {
    width: 10px;
    height: 10px;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 32px 24px;
    background: #111827;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.platform svg {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.35);
}

section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1rem;
    color: var(--slate-500);
}

.how-section {
    background: var(--white);
}

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

.step {
    text-align: center;
    padding: 32px 24px;
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    transition: all 0.2s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--green-600);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.views-section {
    background: var(--slate-50);
}

.views-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.views-content {
    text-align: center;
}

.views-content h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.views-content > p {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 24px;
}

/* Views screenshot placeholders */
.views-screenshots {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.views-img {
    display: none;
}
.views-img.active {
    display: block;
}
.views-img .img-placeholder {
    aspect-ratio: 16 / 9;
}
.views-img img {
    width: 100%;
    display: block;
    height: auto;
}

.view-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.view-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}

.view-tab svg {
    width: 18px;
    height: 18px;
}

.view-tab.active {
    border-color: var(--green-500);
    color: var(--green-600);
    background: var(--green-50);
}

.view-tab:hover {
    border-color: var(--green-400);
}

.view-desc {
    display: none;
}

.view-desc.active {
    display: block;
}

.view-desc h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-desc h4 svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
}

.view-desc p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
}

.views-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.views-mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.views-mockup-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.views-mockup-logo span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slate-800);
}

.views-mockup-tabs {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--slate-100);
    background: var(--white);
}

.vm-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-500);
    background: var(--slate-100);
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.vm-tab.active {
    background: var(--white);
    color: var(--green-600);
    border: 1px solid var(--slate-200);
}

.vm-tab svg {
    width: 14px;
    height: 14px;
}

.views-mockup-body {
    min-height: 300px;
    background: var(--slate-50);
}

.vm-view {
    display: none;
    padding: 16px;
}

.vm-view.active {
    display: block;
}

.filters-section {
    background: var(--slate-50);
}

.filters-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.filters-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.filters-content > p {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

.filter-list svg {
    width: 20px;
    height: 20px;
    color: var(--green-500);
}

.filter-mockup-header {
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.filter-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.filter-stat {
    padding: 12px;
    background: var(--slate-50);
    border-radius: 10px;
    border: 1px solid var(--slate-100);
}

.filter-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.filter-stat-icon svg {
    width: 16px;
    height: 16px;
}

.filter-stat-icon.blue { background: var(--blue-100); color: var(--blue-500); }
.filter-stat-icon.purple { background: var(--purple-100); color: var(--purple-500); }
.filter-stat-icon.green { background: var(--green-100); color: var(--green-500); }
.filter-stat-icon.orange { background: var(--orange-100); color: var(--orange-500); }

.filter-stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
}

.filter-stat-label {
    font-size: 0.625rem;
    color: var(--slate-500);
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
}

.filter-search svg {
    width: 16px;
    height: 16px;
    color: var(--slate-400);
}

.filter-search span {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 12px;
    padding: 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.filter-control label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.filter-control select,
.filter-control input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--slate-200);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--slate-600);
    background: var(--white);
}

.filter-clear {
    align-self: end;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--slate-500);
    cursor: pointer;
}

.privacy-section {
    background: linear-gradient(135deg, var(--slate-900) 0%, #0c1222 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(16,185,129,0.3);
}

.privacy-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.privacy-inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.privacy-inner > p {
    color: var(--slate-400);
    margin-bottom: 48px;
    font-size: 1.0625rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.privacy-card {
    padding: 28px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.privacy-card.good {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
    border-color: rgba(16,185,129,0.3);
}

.privacy-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-card.good h4 { color: var(--green-400); }
.privacy-card.bad h4 { color: var(--slate-500); }

.privacy-card ul {
    list-style: none;
}

.privacy-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    padding: 8px 0;
}

.privacy-card.good li { color: var(--green-200); }
.privacy-card.bad li { color: var(--slate-500); }

.privacy-card svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.privacy-quote {
    margin-top: 40px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-500);
    text-align: left;
}

.privacy-quote p {
    font-size: 1rem;
    color: var(--slate-300);
    font-style: italic;
    line-height: 1.7;
}

.export-section {
    background: var(--green-50);
}

.export-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.export-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--slate-900);
}

.export-content > p {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.export-steps {
    list-style: none;
}

.export-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 0.9375rem;
    color: var(--slate-700);
    border-bottom: 1px solid var(--green-100);
}

.export-steps li:last-child {
    border-bottom: none;
}

.export-step-num {
    width: 32px;
    height: 32px;
    background: var(--green-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.export-step-text {
    padding-top: 4px;
}

.export-note {
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--slate-600);
    border: 1px solid var(--green-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-note svg {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    flex-shrink: 0;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    max-width: 280px;
    margin: 0 auto;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    background: #111;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
}

.wa-screen {
    display: none;
    background: #111;
    min-height: 480px;
}

.wa-screen.active {
    display: block;
}

.wa-menu {
    padding: 40px 16px 16px;
}

.wa-menu-card {
    background: #1f2c34;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.wa-menu-item {
    padding: 14px 16px;
    color: #00a884;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.wa-menu-item.danger {
    color: #f15c6d;
}

.wa-menu-item.highlight {
    background: rgba(0,168,132,0.1);
}

.wa-menu-footer {
    padding: 12px 16px;
    font-size: 0.75rem;
    color: #8696a0;
}

.wa-dialog {
    padding: 40px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.wa-dialog-box {
    background: #1f2c34;
    border-radius: 12px;
    width: 100%;
    padding: 20px;
}

.wa-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.wa-dialog-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.wa-dialog-close {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-dialog-close svg {
    width: 14px;
    height: 14px;
    color: #8696a0;
}

.wa-dialog-note {
    background: #111b21;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #8696a0;
    margin-bottom: 16px;
}

.wa-dialog-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wa-dialog-option:last-child {
    border-bottom: none;
}

.wa-dialog-option span {
    color: #fff;
    font-size: 0.875rem;
}

.wa-dialog-option svg {
    width: 20px;
    height: 20px;
    color: #8696a0;
}

.wa-exporting {
    padding: 40px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.wa-exporting-box {
    background: #1f2c34;
    border-radius: 12px;
    width: 100%;
    padding: 24px;
    text-align: center;
}

.wa-exporting-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.wa-exporting-bar {
    height: 4px;
    background: #111b21;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.wa-exporting-progress {
    height: 100%;
    width: 60%;
    background: #00a884;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 20%; }
    50% { width: 80%; }
    100% { width: 20%; }
}

.wa-exporting-cancel {
    color: #f15c6d;
    font-size: 0.9375rem;
}

.phone-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--green-50);
}

.phone-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    cursor: pointer;
    transition: all 0.2s;
}

.phone-nav-dot.active {
    background: var(--green-500);
    transform: scale(1.2);
}

.phone-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--slate-500);
    min-height: 40px;
}

.pricing-section {
    background: var(--slate-50);
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--green-500);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(16,185,129,0.15);
}

.pricing-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-500);
}

.pricing-amount .value {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--slate-700);
    padding: 10px 12px;
    background: var(--slate-50);
    border-radius: 8px;
}

.pricing-feature svg {
    width: 16px;
    height: 16px;
    color: var(--green-600);
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    background: var(--green-600);
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.pricing-cta:hover {
    background: var(--green-700);
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.email-section {
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    padding: 60px 24px;
}

.email-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.email-icon {
    width: 56px;
    height: 56px;
    background: var(--slate-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.email-icon svg {
    width: 28px;
    height: 28px;
    color: var(--slate-500);
}

.email-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.email-card > p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.email-embed {
    min-height: 60px;
}

.email-form .formkit-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form .formkit-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--slate-900);
}

.email-form .formkit-input::placeholder {
    color: var(--slate-400);
}

.email-form .formkit-input:focus {
    outline: none;
    border-color: var(--green-500);
}

.email-form .formkit-submit {
    background: var(--green-600);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.email-form .formkit-submit:hover {
    background: var(--green-700);
}

.email-form .formkit-submit span {
    display: block;
}

.email-form .formkit-alert {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.email-form .formkit-powered-by-convertkit-container {
    display: none;
}

.faq-section {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--slate-200);
}

.faq-q {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--green-600);
}

.faq-q svg {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding-bottom: 20px;
    color: var(--slate-600);
    font-size: 0.9375rem;
}

.story-section {
    background: var(--white);
    border-top: 1px solid var(--slate-100);
}

.story-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--slate-900);
}

.story-text {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

.story-badge .flag {
    font-size: 1.125rem;
}

.footer {
    background: linear-gradient(135deg, var(--slate-900) 0%, #0c1222 100%);
    color: var(--white);
    padding: 60px 24px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-brand-logo span {
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--green-600);
    border-color: var(--green-600);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-400);
}

.footer-contact {
    margin-top: 16px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-400);
    font-weight: 500;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--slate-500);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-legal a {
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--green-400);
}

.footer-disclaimer {
    padding: 20px 24px;
    text-align: center;
    font-size: 0.75rem;
    color: white;
}

/* ══════ Hero CTA Buttons ══════ */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #059669;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.hero-btn-primary:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.35);
}
.hero-btn-primary svg {
    transition: transform 0.25s;
}
.hero-btn-primary:hover svg {
    transform: translateY(2px);
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    color: rgb(0, 219, 255);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
}
.hero-btn-ghost:hover {
    color: #fff;
}
.hero-btn-ghost svg {
    transition: transform 0.25s;
}
.hero-btn-ghost:hover svg {
    transform: translateX(3px);
}

/* ══════ Hero Preview (Carousel + Floating Widgets) ══════ */
.hero-preview {
    position: relative;
    max-width: 960px;
    margin: 3.5rem auto 0;
}
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.fw {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 20;
    padding: 14px 16px;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.fw-pdf { top: 3%; left: -215px;  animation: floatBob 5s ease-in-out 1s infinite; }
.fw-speed { top: 38%; left: -175px;  text-align: center; animation: floatBob 5.5s ease-in-out 1.3s infinite; }
.fw-zero { bottom: 12%; left: -200px;  animation: floatBob 5.3s ease-in-out 1.6s infinite; }
.fw-bkmk { top: 3%; right: -215px; animation: floatBob 4.8s ease-in-out 1.1s infinite; }
.fw-xsearch { top: 38%; right: -195px; animation: floatBob 5.2s ease-in-out 1.4s infinite; }
.fw-offline { bottom: 12%; right: -185px;  animation: floatBob 4.6s ease-in-out 1.5s infinite; }
.fw-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fw-icon svg { width: 16px; height: 16px; }
.fw-icon.green { background: rgba(5, 150, 105, 0.15); }
.fw-icon.green svg { color: #34d399; }
.fw-icon.amber { background: rgba(245, 158, 11, 0.15); }
.fw-icon.amber svg { color: #fbbf24; }
.fw-icon.purple { background: rgba(124, 58, 237, 0.15); }
.fw-icon.purple svg { color: #a78bfa; }
.fw-icon.teal { background: rgba(20, 184, 166, 0.15); }
.fw-icon.teal svg { color: #2dd4bf; }
.fw-icon.red { background: rgba(239, 68, 68, 0.15); }
.fw-icon.red svg { color: #f87171; }
.fw-title { font-size: 0.78rem; font-weight: 700; margin-bottom: 3px; color: rgba(255,255,255,0.9); }
.fw-desc { font-size: 0.65rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.fw-row { display: flex; align-items: center; gap: 8px; }
.fw-stat { font-size: 1.6rem; font-weight: 900; color: #059669; line-height: 1; }
.fw-stat-label { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
}
.fw-search-mock {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}
.fw-search-mock svg { width: 11px; height: 11px; flex-shrink: 0; color: rgba(255,255,255,0.35); }
.fw-search-mock .fw-query { color: rgba(255,255,255,0.85); font-weight: 600; }
.fw-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #34d399;
    margin-top: 5px;
}
.fw-check svg { width: 13px; height: 13px; }

/* App Frame */
.app-frame {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.app-toolbar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}
.app-dots {
    display: flex;
    gap: 6px;
}
.app-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}
.app-dots span:nth-child(1) { background: #ff5f57; }
.app-dots span:nth-child(2) { background: #febc2e; }
.app-dots span:nth-child(3) { background: #28c840; }
.app-title-area { display: flex; flex-direction: column; }
.app-title-name { font-size: 0.8rem; font-weight: 700; }
.app-title-sub { font-size: 0.6rem; color: #9ca3af; }
.app-badge {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1.5px solid #059669;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Image Carousel */
.img-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.img-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-carousel-slide {
    min-width: 100%;
    position: relative;
}
.img-carousel-slide img {
    width: 100%;
    display: block;
    height: auto;
}
.img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f1f5f3 0%, #e2ebe6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ca3af;
    gap: 6px;
    flex-direction: column;
}
.img-placeholder svg {
    width: 32px;
    height: 32px;
    color: #059669;
    opacity: 0.4;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.carousel-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.carousel-nav button.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}
.carousel-caption {
    text-align: center;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Hide floating widgets on smaller screens */
@media (max-width: 1350px) {
    .fw { display: none; }
}

/* ══════ Trust Statement ══════ */
.trust-statement {
    padding: 32px 24px;
    text-align: center;
}
.trust-statement p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #6b7280;
    padding: 20px 28px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

/* ══════ Problem Section ("Never meant to be read") ══════ */
.problem-section {
    padding: 80px 24px;
    background: #fff;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.problem-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.3s;
}
.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.problem-card-cx {
    border-color: #059669;
    box-shadow: 0 0 0 1px #059669, 0 8px 32px rgba(5, 150, 105, 0.1);
}
.problem-preview {
    padding: 16px;
    min-height: 280px;
    overflow: hidden;
}

/* Raw terminal */
.problem-raw {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    line-height: 1.6;
    background: #1e293b;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin: 8px;
    padding: 12px;
}
.raw-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #0f172a;
    border-radius: 8px 8px 0 0;
    margin: -12px -12px 8px;
}
.raw-titlebar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.raw-titlebar .dot.red { background: #ff5f57; }
.raw-titlebar .dot.yellow { background: #febc2e; }
.raw-titlebar .dot.green { background: #28c840; }
.raw-filename {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}
.raw-line {
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.raw-ts { color: rgba(255, 255, 255, 0.3); }
.raw-sender { color: rgba(255, 255, 255, 0.7); font-weight: 700; }
.raw-file { color: #f59e0b; }

/* Upload warning */
.problem-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
}
.upload-box {
    padding: 20px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    width: 100%;
}
.upload-box svg {
    width: 28px;
    height: 28px;
    color: #9ca3af;
    margin-bottom: 4px;
}
.upload-title { font-size: 0.78rem; font-weight: 700; }
.upload-sub { font-size: 0.62rem; color: #9ca3af; }
.upload-warning {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 8px;
    text-align: left;
}
.upload-warning svg {
    width: 14px;
    height: 14px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 1px;
}
.upload-warning span {
    font-size: 0.6rem;
    color: #6b7280;
    line-height: 1.4;
}
.upload-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.upload-badge {
    font-size: 0.56rem;
    padding: 2px 6px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}
.upload-badge svg { width: 9px; height: 9px; }

/* ChatXport preview */
.problem-cx {
    padding: 8px;
    position: relative;
}
.cx-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 6px;
}
.cx-logo {
    width: 20px;
    height: 20px;
    background: #059669;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cx-logo svg { width: 11px; height: 11px; color: #fff; }
.cx-name { font-size: 0.7rem; font-weight: 700; }
.cx-stats { display: flex; gap: 12px; margin-left: auto; }
.cx-stat { text-align: center; }
.cx-stat-val { font-size: 0.72rem; font-weight: 800; }
.cx-stat-label { font-size: 0.45rem; color: #9ca3af; }

.cx-view-tabs {
    display: flex;
    gap: 2px;
    padding: 4px 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 6px;
}
.cx-vtab {
    font-size: 0.58rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 5px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.25s;
}
.cx-vtab.active { background: #059669; color: #fff; }
.cx-view { display: none; min-height: 155px; animation: cxViewFade 0.4s ease; }
.cx-view.active { display: block; }
@keyframes cxViewFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Chat view */
.cx-msg { display: flex; gap: 6px; align-items: flex-start; margin-bottom: 6px; padding: 0 6px; }
.cx-msg.cx-sent { flex-direction: row-reverse; }
.cx-msg.cx-sent > div:not(.cx-av) { display: flex; flex-direction: column; align-items: flex-end; }
.cx-av {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.48rem; font-weight: 700; color: #fff; flex-shrink: 0; line-height: 1;
}
.cx-bubble {
    max-width: 70%; padding: 6px 8px; border-radius: 10px;
    background: #f3f4f6; font-size: 0.62rem; line-height: 1.4;
}
.cx-msg.cx-sent .cx-bubble {
    background: #059669; color: #fff; border-radius: 10px 10px 2px 10px;
}
.cx-sender { font-size: 0.52rem; font-weight: 700; margin-bottom: 1px; }
.cx-time { font-size: 0.45rem; color: #9ca3af; text-align: right; margin-top: 1px; }
.cx-attach {
    font-size: 0.5rem; color: #059669; display: flex; align-items: center;
    gap: 2px; margin-top: 2px; font-weight: 600;
}
.cx-attach svg { width: 8px; height: 8px; }

/* Table view */
.cx-table { width: 100%; font-size: 0.58rem; }
.cx-table-head {
    display: grid; grid-template-columns: 22px 60px 70px 1fr 50px;
    gap: 4px; padding: 5px 6px; background: #f3f4f6;
    font-weight: 700; color: #9ca3af; font-size: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.08em; border-radius: 4px; margin-bottom: 3px;
}
.cx-table-row {
    display: grid; grid-template-columns: 22px 60px 70px 1fr 50px;
    gap: 4px; padding: 5px 6px; border-bottom: 1px solid #e5e7eb; align-items: center;
}
.cx-tnum { color: #9ca3af; }
.cx-tdate { color: #9ca3af; font-size: 0.55rem; }
.cx-tsender { display: flex; align-items: center; gap: 3px; }
.cx-tav {
    width: 16px; height: 16px; border-radius: 50%;
    font-size: 0.4rem; font-weight: 700; color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.cx-tmsg { color: #6b7280; }
.cx-tatt { color: #9ca3af; font-size: 0.5rem; }

/* Timeline view */
.cx-tl-item { display: flex; gap: 6px; padding: 3px 0 3px 6px; position: relative; }
.cx-tl-item::before {
    content: ''; position: absolute; left: 15px; top: 18px; bottom: -2px;
    width: 1.5px; background: #e5e7eb;
}
.cx-tl-item:last-child::before { display: none; }
.cx-tl-dot {
    width: 18px; height: 18px; border-radius: 50%; border: 2px solid #059669;
    background: #fff; flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1;
}
.cx-tl-card { flex: 1; background: #f3f4f6; border-radius: 8px; padding: 6px 8px; font-size: 0.6rem; }
.cx-tl-top { display: flex; justify-content: space-between; margin-bottom: 1px; }
.cx-tl-name { font-weight: 700; color: #1f2937; }
.cx-tl-time { color: #9ca3af; font-size: 0.5rem; }
.cx-tl-text { color: #6b7280; line-height: 1.35; }

/* CX Badges */
.cx-badges { display: flex; gap: 4px; padding: 5px 8px; flex-wrap: wrap; }
.cx-badge {
    font-size: 0.55rem; padding: 2px 6px; border-radius: 100px;
    background: rgba(5, 150, 105, 0.08); color: #059669;
    font-weight: 600; display: flex; align-items: center; gap: 3px;
}
.cx-badge svg { width: 9px; height: 9px; }

/* Problem card footer */
.problem-card-footer { padding: 18px; }
.problem-card-footer h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.problem-card-footer h3.problem-red { color: #ef4444; }
.problem-card-footer h3.problem-green { color: #059669; }
.problem-card-footer p { font-size: 0.8rem; color: #6b7280; line-height: 1.55; }
.problem-punchline {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 800;
    text-align: center;
    margin-top: 40px;
    letter-spacing: -0.02em;
}
.problem-accent { color: #059669; }

/* ══════ Pricing Grid (3-tier) ══════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-tier {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}
.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.pricing-tier-personal {
    border-color: #059669;
    box-shadow: 0 0 0 1px #059669;
}
.pricing-tier-pro {
    background: #1f2937;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 0 0 1px #7c3aed, 0 12px 40px rgba(124, 58, 237, 0.15);
}
.pricing-tier-pro::before {
    content: 'Most Popular';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #7c3aed;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.tier-name {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 10px;
}
.pricing-tier-personal .tier-name { color: #059669; }
.pricing-tier-pro .tier-name { color: #a78bfa; }
.tier-price {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.tier-price span {
    font-size: 0.82rem;
    font-weight: 400;
    color: #9ca3af;
}
.pricing-tier-pro .tier-price span { color: rgba(255, 255, 255, 0.4); }
.tier-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 24px;
}
.pricing-tier-pro .tier-desc { color: rgba(255, 255, 255, 0.45); }
.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
    flex-grow: 1;
    padding: 0;
}
.tier-features li {
    font-size: 0.82rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 7px;
}
.pricing-tier-pro .tier-features li { color: rgba(255, 255, 255, 0.55); }
.tier-features li svg { width: 15px; height: 15px; flex-shrink: 0; }
.tier-features li.included svg { color: #059669; }
.pricing-tier-personal .tier-features li.included svg { color: #059669; }
.pricing-tier-pro .tier-features li.included svg { color: #a78bfa; }
.tier-features li.excluded { color: #d1d5db; }
.tier-features li.excluded svg { color: #d1d5db; }
.pricing-tier-pro .tier-features li.excluded { color: rgba(255, 255, 255, 0.2); }
.pricing-tier-pro .tier-features li.excluded svg { color: rgba(255, 255, 255, 0.2); }
.tier-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #1f2937;
}
.tier-btn:hover { background: #f3f4f6; }
.pricing-tier-personal .tier-btn {
    background: #059669;
    color: #fff;
    border-color: #059669;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.pricing-tier-personal .tier-btn:hover {
    background: #047857;
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.35);
}
.pricing-tier-pro .tier-btn {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.pricing-tier-pro .tier-btn:hover {
    background: #6d28d9;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
}
.tier-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .hero-inner {
        padding: 0 16px;
    }
    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .filters-grid,
    .export-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .filters-grid { direction: ltr; }
    .filter-mockup { order: -1; }
    .privacy-cards { grid-template-columns: 1fr; }
    .pricing-features { grid-template-columns: 1fr; }
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .platforms {
        flex-wrap: wrap;
        gap: 20px;
    }
    .filter-stats { grid-template-columns: repeat(2, 1fr); }
    .filter-controls { grid-template-columns: repeat(2, 1fr); }
    .phone-mockup { order: -1; }
    .problem-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-mobile { display: block; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 16px 40px; }
    .hero h1 { font-size: 1.75rem; }
    section { padding: 60px 16px; }
    .view-tabs { flex-wrap: wrap; }
    .hero-cta-buttons { flex-direction: column; align-items: stretch; }
    .hero-btn-primary { justify-content: center; }
    .hero-btn-ghost { justify-content: center; }
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
        text-align: center;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-col h4 { font-size: 0.7rem; margin-bottom: 12px; }
    .footer-col a { font-size: 0.8rem; padding: 5px 0; }
    .footer-contact { justify-content: center; display: flex; }
    .footer-contact a { font-size: 0.75rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ══════ Coming Soon Popup ══════ */
.cs-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cs-overlay.active {
    display: flex;
    opacity: 1;
}
.cs-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 40px 32px 32px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.cs-overlay.active .cs-modal {
    transform: translateY(0);
}
.cs-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--slate-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    transition: all 0.2s;
}
.cs-close:hover {
    background: var(--slate-200);
    color: var(--slate-800);
}
.cs-close svg {
    width: 16px;
    height: 16px;
}
.cs-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cs-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.cs-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.cs-text {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 24px;
}
.cs-features {
    background: var(--slate-50);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}
.cs-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--slate-700);
    padding: 6px 0;
}
.cs-feat svg {
    width: 16px;
    height: 16px;
    color: #059669;
    flex-shrink: 0;
}
.cs-notify {
    padding-top: 4px;
}
.cs-notify-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-bottom: 12px;
    font-weight: 500;
}
/* ConvertKit form in popup */
.cs-form {
    margin-top: 4px;
}
.cs-form form {
    margin: 0;
}
.cs-form-row {
    display: flex;
    gap: 8px;
}
.cs-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    transition: border-color 0.2s;
    outline: none;
}
.cs-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.cs-input::placeholder {
    color: #94a3b8;
}
.cs-submit {
    flex: 0 0 auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.cs-submit:hover {
    background: linear-gradient(135deg, #047857, #065f46);
}
.cs-success {
    background: #d1fae5;
    border: 1px solid #059669;
    color: #065f46;
    border-radius: 10px;
    padding: 16px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}
.cs-success svg {
    color: #059669;
    vertical-align: -4px;
    margin-right: 4px;
}
@media (max-width: 600px) {
    .cs-modal {
        padding: 32px 20px 24px;
        border-radius: 16px;
    }
    .cs-title {
        font-size: 1.25rem;
    }
    .cs-text {
        font-size: 0.875rem;
    }
    .cs-features {
        padding: 12px 16px;
    }
    .cs-feat {
        font-size: 0.8125rem;
    }
    .cs-form-row {
        flex-direction: column;
    }
    .cs-submit {
        width: 100%;
    }
}
