:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #00d4aa;
    --accent-alt: #48bb78;
    --dark: #0a0e27;
    --dark-lighter: #131740;
    --dark-card: #1a1f4e;
    --text: #e2e8f0;
    --text-muted: #a0aec0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #48bb78 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #131740 50%, #1a1f4e 100%);
    --shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    --radius: 16px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(102,126,234,.15);
    border: 1px solid rgba(102,126,234,.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(102,126,234,.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102,126,234,.6);
}

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #0a0e27;
    box-shadow: 0 4px 20px rgba(0,212,170,.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,212,170,.5);
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .3s ease;
}

.nav.scrolled {
    background: rgba(10,14,39,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 10px 0;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .3s;
}

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

.nav-highlight {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 6px 16px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    animation: navPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 12px rgba(102,126,234,.4);
}
.nav-highlight:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102,126,234,.6);
}
@keyframes navPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(102,126,234,.4); }
    50% { box-shadow: 0 2px 20px rgba(118,75,162,.6); }
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta .btn { padding: 10px 24px; font-size: .9rem; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102,126,234,.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118,75,162,.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span:not(.hero-typing) {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat h3, .hero-stat .h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat p {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.1);
}

.hero-mockup img {
    width: 100%;
    display: block;
}

.hero-mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,14,39,.6));
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102,126,234,.4);
    z-index: 2;
}

.hero-badge h4 { font-size: 1.8rem; font-weight: 800; }
.hero-badge p { font-size: .8rem; opacity: .8; }

/* ========== TRUST BADGES ========== */
.trust-badges {
    padding: 30px 0;
    background: var(--dark-lighter);
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: .9rem;
    font-weight: 700;
}

.trust-item span {
    font-size: .75rem;
    color: var(--text-muted);
}

/* ========== CONTENTS SECTION ========== */
.contents-section {
    padding: 100px 0;
    position: relative;
}

.contents-header {
    text-align: center;
    margin-bottom: 40px;
}

.contents-header .section-subtitle { margin: 0 auto 40px; }

.contents-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 100px;
    color: #ef4444;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.4); }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.content-cat-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.content-pill {
    padding: 8px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
    user-select: none;
}

.content-pill.active,
.content-pill:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.content-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102,126,234,.3);
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.content-card.hidden {
    display: none;
}

.cc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.content-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.content-card p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.cc-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    background: rgba(255,255,255,.08);
    color: var(--text-muted);
}

.cc-badge.auto {
    background: rgba(0,212,170,.1);
    color: #00d4aa;
}

.cc-badge.realtime {
    background: rgba(239,68,68,.1);
    color: #ef4444;
}

.contents-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== WHITE LABEL TEASER ========== */
.wl-teaser {
    padding: 100px 0;
    background: var(--dark-lighter);
    position: relative;
    overflow: hidden;
}

.wl-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,.08) 0%, transparent 70%);
    pointer-events: none;
}

.wl-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wl-teaser-content .section-title {
    margin-bottom: 20px;
}

.wl-teaser-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.wl-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.wl-hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
}

.wl-hl span {
    font-size: 1.1rem;
}

.wl-teaser-price {
    padding: 14px 24px;
    background: rgba(102,126,234,.1);
    border: 1px solid rgba(102,126,234,.2);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--text);
    display: inline-block;
}

.wl-teaser-price strong {
    color: var(--primary);
    font-size: 1.15rem;
}

.wl-brand-demo {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.wl-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--gradient);
}

.wl-brand-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.wl-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
}

.wl-brand-url {
    font-size: .8rem;
    opacity: .8;
}

.wl-brand-body {
    padding: 24px;
}

.wl-mini-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.wl-mini-card {
    flex: 1;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.06);
}

.wl-mc-num {
    font-size: 1.2rem;
    font-weight: 800;
}

.wl-mc-label {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.wl-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 0 8px;
}

.wl-chart-bar {
    flex: 1;
    background: rgba(102,126,234,.2);
    border-radius: 4px 4px 0 0;
    transition: all .3s;
}

.wl-chart-bar.active {
    background: var(--gradient);
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-subtitle { margin: 0 auto 40px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102,126,234,.3);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(102,126,234,.15); color: var(--primary); }
.feature-icon.green { background: rgba(0,212,170,.15); color: var(--accent); }
.feature-icon.pink { background: rgba(236,72,153,.15); color: #ec4899; }
.feature-icon.orange { background: rgba(245,158,11,.15); color: #f59e0b; }
.feature-icon.blue { background: rgba(59,130,246,.15); color: #3b82f6; }
.feature-icon.cyan { background: rgba(6,182,212,.15); color: #06b6d4; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .95rem;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-lighter);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,.3), transparent);
}

.hiw-header {
    text-align: center;
    margin-bottom: 80px;
}

.hiw-header .section-subtitle { margin: 0 auto; }

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.hiw-step {
    text-align: center;
    position: relative;
}

.hiw-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(102,126,234,.3);
}

.hiw-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hiw-step p {
    color: var(--text-muted);
    font-size: .95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ========== SCREENSHOTS / DEMO ========== */
.screenshots {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 60px;
}

.screenshots-header .section-subtitle { margin: 0 auto; }

.screenshots-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.screenshots-tabs button {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.1);
    background: transparent;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

.screenshots-tabs button.active,
.screenshots-tabs button:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.screenshots-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-item {
    display: none;
    animation: fadeIn .4s ease;
}

.screenshot-item.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.screenshot-frame {
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.screenshot-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-dot.red { background: #ff5f57; }
.screenshot-dot.yellow { background: #ffbd2e; }
.screenshot-dot.green { background: #28ca41; }

.screenshot-url {
    flex: 1;
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
    background: rgba(255,255,255,.05);
    padding: 4px 16px;
    border-radius: 6px;
    margin: 0 40px;
}

.screenshot-body {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.screenshot-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    padding: 40px;
}

.screenshot-placeholder .sp-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: .5;
}

.screenshot-placeholder h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.screenshot-placeholder p {
    color: var(--text-muted);
    font-size: .9rem;
    text-align: center;
    max-width: 400px;
}

.screenshot-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0,0,0,.2);
}

.screenshot-info h4 { font-size: 1rem; font-weight: 600; }
.screenshot-info p { font-size: .85rem; color: var(--text-muted); }

/* ========== SAAS / TENANTS ========== */
.saas-section {
    padding: 100px 0;
    background: var(--dark-lighter);
    position: relative;
}

.saas-header {
    text-align: center;
    margin-bottom: 64px;
}

.saas-header .section-subtitle { margin: 0 auto; }

.saas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.saas-grid.reverse { direction: rtl; }
.saas-grid.reverse > * { direction: ltr; }

.saas-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.saas-content h3 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saas-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.saas-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.saas-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.saas-feature-item .check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 8px;
    background: rgba(0,212,170,.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    margin-top: 2px;
}

.saas-visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}

.saas-visual img {
    width: 100%;
    display: block;
}

/* ========== PRICING ========== */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all .3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.pricing-card.featured {
    border-color: rgba(102,126,234,.4);
    background: linear-gradient(180deg, rgba(102,126,234,.08) 0%, var(--dark-lighter) 100%);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 4px 20px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-card .price small {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card .price-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--text-muted);
}

.pricing-features li .icon {
    color: var(--accent);
    font-size: .9rem;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
    background: var(--dark-lighter);
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-header .section-subtitle { margin: 0 auto; }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item:hover { border-color: rgba(102,126,234,.2); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    gap: 16px;
    user-select: none;
}

.faq-question .arrow {
    transition: transform .3s;
    font-size: .8rem;
    color: var(--primary);
    min-width: 20px;
    text-align: center;
}

.faq-item.open .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ========== CTA ========== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: var(--gradient);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.15rem;
    opacity: .9;
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-buttons .btn-white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.cta-buttons .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 30px;
    background: rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: .95rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 10px;
    transition: color .3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: .85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========== ARCHITECTURE ========== */
.architecture {
    padding: 100px 0;
}

.arch-header {
    text-align: center;
    margin-bottom: 64px;
}

.arch-header .section-subtitle { margin: 0 auto; }

.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.arch-node {
    background: var(--dark-lighter);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    min-width: 200px;
    transition: all .3s;
}

.arch-node:hover {
    transform: translateY(-4px);
    border-color: rgba(102,126,234,.3);
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.arch-node .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.arch-node h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.arch-node p {
    font-size: .85rem;
    color: var(--text-muted);
}

.arch-arrow {
    font-size: 2rem;
    color: var(--primary);
    opacity: .6;
}

.arch-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.arch-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.arch-benefit .num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
}

.arch-benefit h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.arch-benefit p { font-size: .85rem; color: var(--text-muted); }

/* ========== HERO REDESIGN ========== */
/* Hero typing effect */
.hero-typing {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 3px solid var(--primary);
    padding-right: 4px;
    animation: blink-cursor .7s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,.18) 0%, transparent 70%);
}
.hero-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118,75,162,.12) 0%, transparent 70%);
}
.hero-orb-3 {
    top: 50%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,212,170,.06) 0%, transparent 70%);
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(102,126,234,.12);
    border: 1px solid rgba(102,126,234,.25);
    border-radius: 100px;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: .3px;
}

.htb-dot {
    width: 7px;
    height: 7px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--text-muted);
}

.hero-trust-item span {
    color: #00d4aa;
    font-weight: 700;
}

/* HERO DASHBOARD CARD */
.hero-dashboard-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
    position: relative;
}

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

.hdc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: .95rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hdc-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: #00d4aa;
    background: rgba(0,212,170,.1);
    border: 1px solid rgba(0,212,170,.2);
    padding: 4px 12px;
    border-radius: 100px;
}

.hdc-live-dot {
    width: 6px;
    height: 6px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite;
}

.hdc-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.hdc-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.hdc-stat {
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.06);
}
.hdc-stat.online { border-color: rgba(0,212,170,.2); background: rgba(0,212,170,.06); }
.hdc-stat.offline { border-color: rgba(236,72,153,.2); background: rgba(236,72,153,.06); }
.hdc-stat.system { border-color: rgba(59,130,246,.2); background: rgba(59,130,246,.06); }

.hdc-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.hdc-stat.online .hdc-stat-num { color: #00d4aa; }
.hdc-stat.offline .hdc-stat-num { color: #ec4899; }
.hdc-stat.system .hdc-stat-num { color: #3b82f6; font-size: .85rem; }

.hdc-stat-lbl {
    font-size: .6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.hdc-screens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.hdc-screen {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 10px 12px;
}
.hdc-screen.online { border-color: rgba(0,212,170,.15); }
.hdc-screen.offline { border-color: rgba(236,72,153,.15); }

.hdc-screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hdc-screen.online .hdc-screen-dot { background: #00d4aa; box-shadow: 0 0 6px rgba(0,212,170,.5); }
.hdc-screen.offline .hdc-screen-dot { background: #ec4899; }

.hdc-screen-name { font-size: .75rem; font-weight: 600; }
.hdc-screen-id { font-size: .6rem; color: var(--text-muted); }

.hdc-footer {
    display: flex;
    gap: 10px;
}

.hdc-footer-item {
    flex: 1;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hdc-footer-item span { font-size: .65rem; color: var(--text-muted); }
.hdc-footer-item strong { font-size: .8rem; }

/* HERO FLOAT BADGES */
.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102,126,234,.4);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hfb-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
}

.hfb-title { font-size: .85rem; font-weight: 700; }
.hfb-sub { font-size: .7rem; opacity: .8; }

.hero-float-badge-2 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(0,212,170,.15);
    border: 1px solid rgba(0,212,170,.3);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 16px;
    z-index: 2;
    text-align: center;
}

.hfb2-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #00d4aa;
    line-height: 1;
}
.hfb2-label { font-size: .65rem; color: var(--text-muted); }

/* HERO STATS BAR */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding: 0 0 20px;
}

.hsb-inner {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hsb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.hsb-num {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.hsb-label {
    font-size: .78rem;
    color: var(--text-muted);
}

.hsb-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.08);
    margin: 0 16px;
}

/* ========== SEGMENTS SECTION ========== */
.segments-section {
    padding: 80px 0;
    background: var(--dark-lighter);
}

.seg-header {
    text-align: center;
    margin-bottom: 48px;
}

.seg-header .section-title { margin-bottom: 0; }

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

.seg-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .3s;
    text-decoration: none;
    color: inherit;
}

.seg-card:hover {
    border-color: rgba(102,126,234,.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.seg-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.seg-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.seg-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ========== SCREENSHOT MOCKUPS (CSS) ========== */
.screenshot-body .sp-mockup,
.screenshot-placeholder {
    width: 100%;
    height: 100%;
}

.sp-mockup {
    display: flex;
    width: 100%;
    height: 100%;
}

.sp-sidebar {
    width: 120px;
    flex-shrink: 0;
    background: rgba(0,0,0,.2);
    border-right: 1px solid rgba(255,255,255,.05);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-sidebar-logo {
    width: 60px;
    height: 20px;
    background: var(--gradient);
    border-radius: 6px;
}

.sp-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-nav-item {
    height: 10px;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    width: 85%;
}
.sp-nav-item.active-nav {
    background: rgba(102,126,234,.4);
    width: 95%;
}

.sp-main {
    flex: 1;
    padding: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}

.sp-page-title {
    font-size: .85rem;
    font-weight: 700;
}

.sp-realtime-badge {
    font-size: .5rem;
    background: rgba(0,212,170,.2);
    color: #00d4aa;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .5px;
}

.sp-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.sp-stat-card {
    border-radius: 10px;
    padding: 10px 8px;
    border-top: 2px solid transparent;
}
.sp-c-purple { background: rgba(102,126,234,.1); border-top-color: #667eea; }
.sp-c-green { background: rgba(0,212,170,.1); border-top-color: #00d4aa; }
.sp-c-pink { background: rgba(236,72,153,.1); border-top-color: #ec4899; }
.sp-c-blue { background: rgba(59,130,246,.1); border-top-color: #3b82f6; }

.sp-stat-label { font-size: .45rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 3px; }
.sp-stat-val { font-size: 1rem; font-weight: 800; }

.sp-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sp-info-card {
    background: rgba(255,255,255,.03);
    border-radius: 8px;
    padding: 8px 10px;
}
.sp-ic-label { font-size: .5rem; color: var(--text-muted); margin-bottom: 3px; font-weight: 600; }
.sp-ic-val { font-size: .75rem; font-weight: 700; }

/* Telas mockup */
.sp-screens-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-screen-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.03);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.05);
}
.sp-screen-online { border-color: rgba(0,212,170,.15); }
.sp-screen-offline { border-color: rgba(236,72,153,.15); }

.sp-screen-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sp-screen-online .sp-screen-status-dot { background: #00d4aa; }
.sp-screen-offline .sp-screen-status-dot { background: #ec4899; }

.sp-screen-name { font-size: .7rem; font-weight: 600; }
.sp-screen-sub { font-size: .55rem; color: var(--text-muted); }

/* Content/Media mockup */
.sp-gradient-header {
    border-radius: 10px;
    padding: 12px 14px;
}
.sp-gh-title { font-size: .85rem; font-weight: 800; }
.sp-gh-sub { font-size: .6rem; opacity: .8; }

.sp-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
}

.sp-media-item {
    border-radius: 8px;
    aspect-ratio: 16/9;
}

/* Layouts mockup */
.sp-layouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.sp-layout-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 8px;
}
.sp-layout-card.featured-layout { border-color: rgba(102,126,234,.3); }
.sp-layout-preview {
    aspect-ratio: 16/9;
    border-radius: 4px;
    margin-bottom: 6px;
}
.sp-layout-split-h {
    background: rgba(102,126,234,.1);
    display: flex;
}
.sp-layout-split-h::before {
    content: '';
    flex: 2;
    background: rgba(102,126,234,.2);
    border-radius: 4px 0 0 4px;
}
.sp-layout-fullbar {
    background: rgba(102,126,234,.15);
    display: flex;
    flex-direction: column;
}
.sp-layout-fullbar::before {
    content: '';
    flex: 2;
    background: rgba(102,126,234,.2);
    border-radius: 4px 4px 0 0;
}
.sp-layout-grid2x2 {
    background: rgba(0,212,170,.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
}
.sp-layout-name { font-size: .6rem; font-weight: 600; text-align: center; }

/* Design/Play Design mockup */
.sp-design-panel {
    width: 110px;
    flex-shrink: 0;
    background: rgba(0,0,0,.2);
    border-right: 1px solid rgba(255,255,255,.05);
    padding: 14px 10px;
}
.sp-design-panel-title { font-size: .65rem; font-weight: 700; margin-bottom: 10px; color: var(--text-muted); }
.sp-template-list { display: flex; flex-direction: column; gap: 5px; }
.sp-template-item { font-size: .6rem; padding: 5px 8px; background: rgba(255,255,255,.04); border-radius: 6px; }
.sp-template-item.active-template { background: rgba(236,72,153,.15); color: #ec4899; }

.sp-design-canvas {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-canvas-preview {
    flex: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-canvas-content { text-align: center; }
.sp-canvas-title { font-size: .9rem; font-weight: 900; }
.sp-canvas-sub { font-size: .55rem; opacity: .8; }

.sp-design-toolbar {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}
.sp-tool-btn {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
}

/* ========== PRICING BADGE ========== */
.pricing-badge {
    display: none;
}

.pricing-card.featured .pricing-badge {
    display: block;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
}

/* ========== CTA BADGE ========== */
.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .seg-grid { grid-template-columns: repeat(3, 1fr); }
    .hdc-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .container { padding: 0 20px; }

    /* Hero tablet */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content p { margin: 0 auto 28px; }
    .hero-cta-group { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .hero-float-badge { bottom: -14px; left: -10px; }
    .hero-float-badge-2 { top: -14px; right: -10px; }

    .hsb-inner { padding: 20px 24px; gap: 0; }
    .hsb-num { font-size: 1.3rem; }
    .hsb-sep { margin: 0 10px; }

    /* Nav */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }

    /* Sections */
    .saas-grid { grid-template-columns: 1fr; gap: 40px; }
    .saas-grid.reverse { direction: ltr; }
    .wl-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
    .seg-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .arch-arrow { display: none; }
    .trust-row { gap: 24px; }

    .contents-section,
    .features,
    .how-it-works,
    .screenshots,
    .pricing,
    .faq,
    .cta,
    .wl-teaser,
    .saas-section,
    .segments-section,
    .architecture { padding: 70px 0; }

    .screenshots-showcase { max-width: 100%; }
    .screenshot-url { margin: 0 10px; font-size: .7rem; }

    .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    
    .ct-layout { grid-template-columns: 1fr; }
    .ct-interest-options { grid-template-columns: 1fr; }
    .ct-row { grid-template-columns: 1fr; }

    /* SP mockup tablet */
    .sp-sidebar { width: 90px; padding: 12px 8px; }
    .sp-stat-cards { gap: 6px; }
    .sp-stat-val { font-size: .85rem; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }

    /* Hero mobile */
    .hero { padding: 90px 0 30px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-top-badge { font-size: .72rem; padding: 6px 14px; }
    .hero-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-cta-group .btn { width: 100%; justify-content: center; text-align: center; }
    .hero-trust-row { gap: 12px; justify-content: center; }
    .hero-visual { max-width: 100%; }
    .hero-float-badge { display: none; }
    .hero-float-badge-2 { display: none; }

    /* Hero dashboard card mobile */
    .hdc-stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .hdc-screens-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .hdc-screen-name { font-size: .7rem; }

    /* Stats bar mobile */
    .hero-stats-bar { margin-top: 40px; }
    .hsb-inner {
        padding: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        border-radius: 12px;
    }
    .hsb-item { align-items: center; }
    .hsb-num { font-size: 1.3rem; }
    .hsb-label { font-size: .72rem; }
    .hsb-sep { display: none; }

    /* Segments */
    .seg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .seg-card { padding: 20px 16px; }
    .seg-icon { font-size: 1.7rem; }
    .seg-card h4 { font-size: .9rem; }
    .seg-card p { font-size: .8rem; }
    .segments-section { padding: 56px 0; }

    /* General */
    .section-title { font-size: 1.65rem; }
    .section-subtitle { font-size: .95rem; }

    .contents-section,
    .features,
    .how-it-works,
    .screenshots,
    .pricing,
    .faq,
    .cta,
    .wl-teaser,
    .saas-section,
    .architecture { padding: 56px 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer { padding: 50px 0 24px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card { padding: 32px 24px; }
    .pricing-card.featured { order: -1; }

    /* CTA */
    .cta-box { padding: 48px 24px; border-radius: 16px; }
    .cta-box h2 { font-size: 1.5rem; }
    .cta-box p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feature-card { padding: 22px 18px; }
    .feature-icon { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 14px; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: .88rem; }

    /* Trust row */
    .trust-row { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .trust-item { flex: 0 0 calc(50% - 16px); }

    /* WL */
    .wl-highlights { grid-template-columns: 1fr; gap: 8px; }
    .wl-mini-cards { flex-direction: row; gap: 8px; }
    .wl-brand-header { padding: 14px 16px; }
    .wl-brand-body { padding: 16px; }
    .wl-brand-name { font-size: .95rem; }

    /* Contents */
    .contents-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .content-card { padding: 18px; }
    .content-cat-scroll { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
    .content-pill { flex-shrink: 0; font-size: .78rem; padding: 6px 14px; }

    /* HIW */
    .hiw-header { margin-bottom: 40px; }
    .hiw-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hiw-step p { max-width: 100%; font-size: .88rem; }
    .hiw-step-number { width: 52px; height: 52px; font-size: 1.2rem; }

    /* Screenshots */
    .screenshots-tabs { gap: 6px; }
    .screenshots-tabs button { padding: 8px 14px; font-size: .78rem; }
    .screenshot-topbar { padding: 8px 12px; }
    .screenshot-url { margin: 0 6px; font-size: .62rem; }
    .screenshot-info { padding: 14px 16px; }
    .screenshot-info h4 { font-size: .9rem; }
    .screenshot-info p { font-size: .8rem; }

    /* SP mockup mobile - simplify */
    .sp-sidebar { display: none; }
    .sp-stat-cards { grid-template-columns: repeat(4, 1fr); }
    .sp-stat-val { font-size: .85rem; }
    .sp-stat-cards { gap: 5px; }
    .sp-stat-label { font-size: .42rem; }

    /* FAQ */
    .faq-question { padding: 16px 18px; font-size: .9rem; }
    .faq-answer-inner { padding: 0 18px 16px; font-size: .88rem; }

    /* Arch */
    .arch-flow { gap: 16px; }
    .arch-node { min-width: 150px; padding: 20px 16px; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .contents-grid { grid-template-columns: 1fr; }
    .hiw-steps { grid-template-columns: 1fr; gap: 24px; }
    .seg-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { flex: 0 0 100%; }
    .trust-row { flex-direction: column; align-items: center; text-align: center; }
    .pricing-grid { max-width: 100%; }

    .hero-content h1 { font-size: 1.85rem; }
    .hdc-stats-row { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .hdc-stat-num { font-size: .95rem; }
    .hdc-stat.system .hdc-stat-num { font-size: .65rem; }
    .hdc-stat-lbl { font-size: .5rem; }
    .hdc-screen-name { font-size: .65rem; }
    .hdc-footer-item span { font-size: .58rem; }
    .hdc-footer-item strong { font-size: .7rem; }
}

@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .hero-content h1 { font-size: 1.65rem; }
    .hero-content p { font-size: .95rem; }
    .btn { padding: 13px 20px; font-size: .9rem; }
    .section-title { font-size: 1.45rem; }
    .nav-logo span { font-size: 1.2rem; }
    .nav-logo img { width: 28px; height: 28px; }
    .pricing-card .price { font-size: 2rem; }
    .seg-grid { grid-template-columns: 1fr; }
    .hsb-inner { grid-template-columns: 1fr 1fr; }
    .hdc-screens-grid { grid-template-columns: 1fr; }
    .hdc-footer { flex-direction: column; gap: 6px; }
    .wl-mini-cards { flex-direction: column; }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating { animation: float 4s ease-in-out infinite; }

/* ========== MOBILE NAV ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,14,39,.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-nav.open { transform: none; }

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    transition: color .3s;
}

.mobile-nav a:hover { color: var(--primary); }

.mobile-nav .nav-highlight {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 10px 20px !important;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(102,126,234,.4);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
