:root {
    --bg: #050505;
    --bg-alt: #0c0c0c;
    --surface: #111111;
    --surface-hover: #191919;
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.12);
    --text: #f5f0ed;
    --text-secondary: #a89e97;
    --text-muted: #6b6360;
    --primary: #FF5722;
    --primary-light: #FF8A65;
    --primary-dark: #E64A19;
    --primary-glow: rgba(255, 87, 34, 0.15);
    --primary-glow-strong: rgba(255, 87, 34, 0.3);
    --gradient: linear-gradient(135deg, #FF5722, #FF9800);
    --gradient-text: linear-gradient(135deg, #FF8A65, #FFB74D);
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.4);
    --max-w: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    width: min(100% - 2rem, var(--max-w));
    margin: 0 auto;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: var(--primary-glow);
}

.glow-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -200px;
    background: rgba(255, 152, 0, 0.08);
}

.glow-3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 30%;
    background: var(--primary-glow);
    opacity: 0.5;
}


/* ===================== NAVBAR ===================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.is-scrolled {
    padding: 0.6rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.logo-text strong {
    color: var(--text);
    font-weight: 700;
}

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

.nav-links a {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
}


/* ===================== BUTTONS ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    padding: 0.7rem 1.4rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.35);
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-strong);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,87,34,0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,87,34,0.3);
    transform: translateY(-2px);
}


/* ===================== HERO ===================== */

.hero {
    position: relative;
    padding: 10rem 0 4rem;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(255,87,34,0.08);
    border: 1px solid rgba(255,87,34,0.2);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,87,34,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255,87,34,0); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

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

.hero-desc {
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 4rem;
}

.stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.02em;
}

.stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
}

.hero-visual {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.browser-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg), 0 0 120px rgba(255,87,34,0.06);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.browser-dots i:first-child { background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #ffbd2e; }
.browser-dots i:last-child { background: #28c840; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.browser-content {
    padding: 0;
}

.browser-content img {
    width: 100%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    z-index: 2;
}

.fc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.floating-card small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fc-1 {
    top: 15%;
    left: -3rem;
}

.fc-2 {
    top: 45%;
    right: -2.5rem;
}

.fc-3 {
    bottom: 12%;
    left: -2rem;
}

[data-float="up"] {
    animation: floatUp 4s ease-in-out infinite;
}

[data-float="down"] {
    animation: floatDown 4.5s ease-in-out infinite;
}

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

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}


/* ===================== TRUST BAR ===================== */

.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.01);
    position: relative;
    z-index: 1;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}


/* ===================== SECTIONS COMMON ===================== */

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    background: rgba(255,87,34,0.08);
    border: 1px solid rgba(255,87,34,0.18);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ===================== FEATURES / BENTO ===================== */

.features {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 1rem;
}

.bento-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 100%, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.bento-card:hover {
    border-color: rgba(255,87,34,0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.bento-lg {
    grid-column: span 2;
}

.bento-icon-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    border-radius: var(--radius-sm);
    background: rgba(255,87,34,0.1);
    border: 1px solid rgba(255,87,34,0.15);
}

.bento-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.bento-card p {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bento-highlight {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.bento-highlight span {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}


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

.how-it-works {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

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

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 80px;
    justify-content: flex-start;
}

.step-number span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(255,87,34,0.25);
}

.step-line {
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-top: 0.5rem;
}

.step-content {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.step-content:hover {
    border-color: rgba(255,87,34,0.2);
    transform: translateY(-4px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 3rem;
}


/* ===================== SCREENS ===================== */

.screens {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.screen-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.screen-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: left;
    transition: all var(--transition);
}

.screen-tab:hover,
.screen-tab.is-active {
    border-color: rgba(255,87,34,0.3);
    background: rgba(255,87,34,0.06);
    transform: translateY(-2px);
}

.tab-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.screen-tab strong {
    display: block;
    font-size: 0.9rem;
}

.screen-tab small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.screen-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border);
}

.screen-device {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
}

.device-bar {
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}

.device-dots {
    display: flex;
    gap: 5px;
}

.device-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.device-dots i:first-child { background: #ff5f57; }
.device-dots i:nth-child(2) { background: #ffbd2e; }
.device-dots i:last-child { background: #28c840; }

.screen-device img {
    width: 100%;
    transition: opacity 0.4s ease;
}

.screen-info {
    padding: 1rem;
}

.screen-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255,87,34,0.1);
    border: 1px solid rgba(255,87,34,0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.screen-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.screen-info p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.screen-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.screen-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.screen-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,87,34,0.15);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23FF8A65' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}


/* ===================== ADVANTAGES ===================== */

.advantages {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.adv-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.adv-before,
.adv-after {
    padding: 1.3rem;
}

.adv-before {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}

.adv-after {
    background: rgba(255,87,34,0.04);
}

.adv-label {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.adv-label-before {
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
}

.adv-label-after {
    background: rgba(255,87,34,0.15);
    color: var(--primary-light);
}

.adv-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.adv-after p {
    color: var(--text);
}

.adv-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.adv-metric {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
}

.adv-metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    display: inline;
}

.adv-metric-unit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
    display: inline;
}

.adv-metric span {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}


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

.faq {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: rgba(255,87,34,0.25);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    transition: color var(--transition);
}

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

.faq-item summary:hover {
    color: var(--primary-light);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: grid;
    place-items: center;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle span {
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: transform var(--transition);
}

.faq-toggle span:last-child {
    transform: rotate(90deg);
}

.faq-item[open] .faq-toggle span:last-child {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 1.3rem 1.2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ===================== FINAL CTA ===================== */

.final-cta {
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 1;
}

.cta-box {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--primary-glow-strong), transparent 70%);
    pointer-events: none;
}

.cta-box .section-tag,
.cta-box .section-title,
.cta-box .section-desc {
    position: relative;
    z-index: 1;
}

.cta-box .section-header {
    margin-bottom: 0;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}


/* ===================== FOOTER ===================== */

.footer {
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.01);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-col a {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}


/* ===================== ANIMATIONS ===================== */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 1024px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5,5,5,0.97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 200;
        padding: 2rem;
    }

    .nav-links.is-open a {
        font-size: 1.3rem;
        padding: 1rem;
    }

    .nav-actions.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 3rem;
        left: 2rem;
        right: 2rem;
        z-index: 201;
        gap: 0.75rem;
    }

    .nav-actions.is-open .btn {
        width: 100%;
        justify-content: center;
    }

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

    .bento-lg {
        grid-column: span 1;
    }

    .steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .step-number {
        flex-direction: row;
        margin-bottom: 0;
    }

    .step-line {
        width: 2rem;
        height: 2px;
        margin-top: 0;
        margin-left: 0.5rem;
        background: linear-gradient(to right, var(--primary), transparent);
        display: none;
    }

    .screen-tabs {
        flex-direction: column;
    }

    .screen-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .floating-card {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .browser-frame {
        border-radius: var(--radius-lg);
    }
}
