/* ============================================
   MONOJOG — Style System
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --accent: #00D4AA;
    --accent-light: #34D9B8;
    --accent-dark: #00B894;
    --bg-dark: #0A0A0F;
    --bg-card: #12121A;
    --bg-card-hover: #1A1A25;
    --bg-surface: #16161F;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --text-muted: #6B6B80;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-text: linear-gradient(135deg, var(--primary-light), var(--accent));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(108, 60, 225, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

input {
    font-family: inherit;
    border: none;
    outline: none;
}

::selection {
    background: rgba(108, 60, 225, 0.4);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(108, 60, 225, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 60, 225, 0.5);
}

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

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    animation: preloaderSpin 1.5s linear infinite;
    margin-bottom: 24px;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 3px;
    animation: preloaderFill 1.2s ease-in-out infinite;
}

@keyframes preloaderFill {
    0% {
        width: 0;
        transform: translateX(0);
    }

    50% {
        width: 70%;
    }

    100% {
        width: 0;
        transform: translateX(120px);
    }
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease, top 0.15s ease;
    will-change: left, top;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(108, 60, 225, 0.1);
    border: 1px solid rgba(108, 60, 225, 0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(108, 60, 225, 0.4);
    background: rgba(108, 60, 225, 0.08);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

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

.btn-ghost-white {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 1001;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 16px 32px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    font-family: var(--font-display);
}

.mobile-link:hover {
    color: var(--text-primary);
}

.mobile-cta {
    margin-top: 24px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -40px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-40px, 20px);
    }

    66% {
        transform: translate(30px, -30px);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero-content {
    max-width: 580px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    text-align: center;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

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

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

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

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

.browser-dots span:first-child {
    background: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #28C840;
}

.browser-url {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    flex: 1;
    max-width: 280px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.browser-content {
    padding: 20px;
}

/* Dashboard Mockup */
.mockup-dashboard {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-main);
}

.dash-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.dash-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.timer-ring {
    width: 70px;
    height: 70px;
    position: relative;
}

.timer-ring svg {
    width: 100%;
    height: 100%;
}

.timer-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.dash-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-stat-val {
    font-weight: 700;
    font-size: 0.95rem;
}

.dash-stat-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Chart */
.dash-chart {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: rgba(108, 60, 225, 0.15);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--transition);
}

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

.chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    z-index: 5;
}

.float-card-1 {
    top: 20%;
    left: -40px;
    animation: floatCard1 6s ease-in-out infinite;
}

.float-card-2 {
    bottom: 15%;
    right: -30px;
    animation: floatCard2 7s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-title {
    font-weight: 600;
    font-size: 0.82rem;
}

.float-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* --- Trust Section --- */
.trust-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.4;
}

.trust-logo {
    transition: var(--transition);
}

.trust-logo:hover {
    opacity: 1;
}

/* --- Features Section --- */
.features-section {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

.feature-card-lg {
    grid-column: span 1;
    grid-row: span 2;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 60, 225, 0.08);
    color: var(--accent, #6C3CE1);
    position: relative;
}

.feature-icon[style*="--accent: #6C3CE1"] {
    background: rgba(108, 60, 225, 0.1);
    color: #6C3CE1;
}

.feature-icon[style*="--accent: #00D4AA"] {
    background: rgba(0, 212, 170, 0.1);
    color: #00D4AA;
}

.feature-icon[style*="--accent: #FF6B6B"] {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.feature-icon[style*="--accent: #FFB347"] {
    background: rgba(255, 179, 71, 0.1);
    color: #FFB347;
}

.feature-icon[style*="--accent: #4ECDC4"] {
    background: rgba(78, 205, 196, 0.1);
    color: #4ECDC4;
}

.feature-icon[style*="--accent: #A78BFA"] {
    background: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Shield Demo */
.feature-visual {
    margin-top: 24px;
}

.shield-demo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shield-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    border: 1px solid var(--border);
}

.shield-status {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.shield-item.blocked .shield-status {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.shield-item.allowed .shield-status {
    background: rgba(0, 212, 170, 0.1);
    color: #00D4AA;
}

/* --- Extension Section --- */
.extension-section {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.extension-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.extension-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 32px 0;
}

.ext-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.ext-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ext-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Extension Popup Mockup */
.extension-visual {
    display: flex;
    justify-content: center;
}

.ext-popup-mockup {
    position: relative;
}

.ext-popup {
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
}

.ext-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.ext-popup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.ext-popup-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
}

.toggle-switch {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--accent);
}

.toggle-knob {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

.toggle-switch.active .toggle-knob {
    left: 20px;
}

.ext-popup-timer {
    padding: 24px;
    display: flex;
    justify-content: center;
}

.ext-timer-circle {
    width: 140px;
    height: 140px;
    position: relative;
}

.ext-timer-circle svg {
    width: 100%;
    height: 100%;
}

.ext-timer-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ext-timer-time {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.ext-timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.ext-popup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px 16px;
    gap: 8px;
}

.ext-mini-stat {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.ext-mini-val {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.ext-mini-lbl {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.ext-popup-sites {
    padding: 12px 20px 20px;
    border-top: 1px solid var(--border);
}

.ext-site-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.ext-site-item+.ext-site-item {
    border-top: 1px solid var(--border);
}

.ext-site-blocked {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6B6B;
    flex-shrink: 0;
}

.ext-site-count {
    margin-left: auto;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- How It Works --- */
.how-section {
    padding: 120px 0;
}

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

.step-card {
    text-align: center;
    padding: 40px 32px;
    flex: 1;
    max-width: 320px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: rgba(108, 60, 225, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 120px;
    opacity: 0.3;
}

/* --- App Section --- */
.app-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
}

.app-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.app-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.app-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.app-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Phone Mockup */
.app-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    background: #1A1A25;
    border-radius: 36px;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg), var(--shadow-glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1A1A25;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #0D0D14;
}

.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px 8px;
    font-size: 0.72rem;
    font-weight: 600;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-app-content {
    padding: 8px 16px 0;
}

.phone-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-hello {
    font-weight: 700;
    font-size: 1.1rem;
}

.phone-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.phone-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-main);
}

.phone-greeting {
    margin-bottom: 16px;
}

.phone-focus-card {
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 16px;
}

.phone-focus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.phone-focus-streak {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: var(--radius-full);
    color: #FFB347;
}

.phone-timer-large {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
}

.phone-timer-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-time {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.phone-time-label {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.phone-start-btn {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-full);
    background: var(--gradient-main);
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
}

.phone-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.phone-qstat {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.phone-qstat-val {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.phone-qstat-lbl {
    display: block;
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.phone-nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 16px;
    border-top: 1px solid var(--border);
}

.phone-nav-item {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.58rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.phone-nav-item.active {
    color: var(--primary-light);
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(108, 60, 225, 0.1);
    border: 1px solid rgba(108, 60, 225, 0.2);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.app-feat {
    display: flex;
    gap: 16px;
}

.app-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(108, 60, 225, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
}

.app-feat strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.app-feat p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Notify Form */
.app-notify-form {
    margin-top: 36px;
}

.app-notify-form h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.notify-form .form-group {
    display: flex;
    gap: 8px;
}

.notify-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.notify-form input:focus {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.05);
}

.notify-form input::placeholder {
    color: var(--text-muted);
}

.form-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-badge:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.08);
}

.store-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.store-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFB347;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.25) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

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

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 24px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(108, 60, 225, 0.15);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

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

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-mockup {
        max-width: 500px;
        margin: 0 auto;
    }

    .float-card-1 {
        left: -10px;
    }

    .float-card-2 {
        right: -10px;
    }

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

    .feature-card-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .extension-layout,
    .app-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .extension-content,
    .app-content {
        order: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .extension-content .section-desc,
    .app-content .section-desc {
        max-width: 540px;
    }

    .extension-features {
        align-items: flex-start;
        max-width: 400px;
    }

    .app-features-list {
        text-align: left;
        max-width: 480px;
    }

    .app-notify-form {
        width: 100%;
        max-width: 480px;
        text-align: left;
    }

    .store-badges {
        justify-content: center;
    }

    .extension-visual,
    .app-visual {
        order: 1;
    }

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

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

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

    .step-connector {
        display: none;
    }

    .trust-logos {
        gap: 32px;
    }
}

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

    .nav-actions .btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .float-card {
        display: none;
    }

    /* Browser mockup scaling */
    .mockup-browser {
        max-width: 100%;
    }

    .browser-url {
        max-width: 180px;
    }

    .dash-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .dash-stat-card {
        padding: 8px;
        gap: 6px;
    }

    .dash-stat-icon {
        width: 26px;
        height: 26px;
    }

    .dash-stat-val {
        font-size: 0.82rem;
    }

    .dash-stat-lbl {
        font-size: 0.58rem;
    }

    .timer-ring {
        width: 56px;
        height: 56px;
    }

    .timer-text {
        font-size: 0.72rem;
    }

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

    .feature-card-lg {
        grid-column: span 1;
    }

    .feature-card {
        padding: 24px;
    }

    /* Trust */
    .trust-logos {
        gap: 20px;
    }

    .trust-logo svg {
        width: 90px;
    }

    /* How It Works */
    .step-card {
        padding: 24px 16px;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-icon {
        width: 52px;
        height: 52px;
    }

    /* Extension */
    .ext-popup {
        width: 290px;
    }

    .ext-popup-header {
        padding: 12px 16px;
    }

    .ext-popup-stats {
        padding: 0 16px 12px;
    }

    .ext-popup-sites {
        padding: 10px 16px 16px;
    }

    /* App section */
    .app-content .section-title {
        text-align: center;
    }

    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .app-notify-form {
        max-width: 100%;
    }

    .notify-form .form-group {
        flex-direction: column;
    }

    .notify-form input {
        width: 100%;
    }

    .notify-form .btn {
        width: 100%;
        justify-content: center;
    }

    .store-badges {
        justify-content: center;
    }

    .store-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 22px;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .cta-desc {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 48px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .nav-logo {
        justify-content: center;
    }

    .footer-desc {
        max-width: 100%;
        text-align: center;
    }

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

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

    .footer-col a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Section spacing */
    .section-header {
        margin-bottom: 48px;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .features-section,
    .extension-section,
    .how-section,
    .app-section,
    .testimonials-section,
    .cta-section {
        padding: 80px 0;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Mobile menu */
    .mobile-link {
        font-size: 1.25rem;
        padding: 14px 24px;
    }

    .mobile-cta {
        width: 80%;
        margin: 24px auto 0;
        justify-content: center;
    }
}

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

    /* Hero */
    .hero {
        padding: 88px 0 48px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
        gap: 6px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 0.88rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    /* Section typography */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .section-desc {
        font-size: 0.88rem;
    }

    /* Browser mockup */
    .browser-bar {
        padding: 8px 10px;
        gap: 8px;
    }

    .browser-dots span {
        width: 8px;
        height: 8px;
    }

    .browser-url {
        max-width: 140px;
        font-size: 0.68rem;
        padding: 4px 10px;
    }

    .browser-content {
        padding: 12px;
    }

    .dash-header {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .dash-greeting {
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }

    .dash-stats-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .dash-stat-card {
        padding: 8px 10px;
        justify-content: center;
    }

    .chart-bars {
        height: 50px;
        gap: 6px;
    }

    /* Phone mockup */
    .phone-frame {
        width: 230px;
    }

    .phone-notch {
        width: 90px;
        height: 22px;
    }

    .phone-hello {
        font-size: 0.95rem;
    }

    .phone-avatar-sm {
        width: 30px;
        height: 30px;
    }

    .phone-focus-card {
        padding: 12px;
    }

    .phone-timer-large svg {
        width: 110px;
        height: 110px;
    }

    .phone-time {
        font-size: 1.15rem;
    }

    .phone-start-btn {
        font-size: 0.72rem;
        padding: 8px;
    }

    .phone-quick-stats {
        gap: 4px;
    }

    .phone-qstat {
        padding: 6px;
    }

    .phone-qstat-val {
        font-size: 0.85rem;
    }

    .phone-status-bar {
        padding: 10px 16px 6px;
        font-size: 0.65rem;
    }

    .phone-app-content {
        padding: 6px 10px 0;
    }

    /* Extension popup */
    .ext-popup {
        width: 260px;
    }

    .ext-popup-header {
        padding: 10px 14px;
    }

    .ext-popup-logo {
        font-size: 0.8rem;
        gap: 6px;
    }

    .ext-popup-logo svg {
        width: 20px;
        height: 20px;
    }

    .ext-popup-toggle {
        font-size: 0.7rem;
        gap: 6px;
    }

    .toggle-switch {
        width: 34px;
        height: 18px;
    }

    .toggle-knob {
        width: 14px;
        height: 14px;
    }

    .toggle-switch.active .toggle-knob {
        left: 18px;
    }

    .ext-popup-timer {
        padding: 16px;
    }

    .ext-timer-circle {
        width: 110px;
        height: 110px;
    }

    .ext-timer-time {
        font-size: 1.2rem;
    }

    .ext-popup-stats {
        padding: 0 12px 10px;
        gap: 6px;
    }

    .ext-mini-stat {
        padding: 8px 4px;
    }

    .ext-mini-val {
        font-size: 0.88rem;
    }

    .ext-mini-lbl {
        font-size: 0.6rem;
    }

    .ext-popup-sites {
        padding: 8px 12px 14px;
    }

    .ext-site-item {
        font-size: 0.75rem;
    }

    /* Features */
    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-title {
        font-size: 1.05rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .shield-item {
        font-size: 0.75rem;
        padding: 8px 10px;
        gap: 8px;
    }

    .shield-status {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    /* Extension features checklist */
    .ext-feature {
        font-size: 0.85rem;
        gap: 10px;
    }

    .ext-check {
        width: 24px;
        height: 24px;
    }

    .ext-check svg {
        width: 12px;
        height: 12px;
    }

    .ext-note {
        font-size: 0.75rem;
    }

    /* How it works */
    .step-card {
        padding: 20px 12px;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-desc {
        font-size: 0.82rem;
    }

    /* App section */
    .app-feat-icon {
        width: 38px;
        height: 38px;
    }

    .app-feat-icon svg {
        width: 16px;
        height: 16px;
    }

    .app-feat strong {
        font-size: 0.88rem;
    }

    .app-feat p {
        font-size: 0.8rem;
    }

    .app-notify-form h4 {
        font-size: 0.9rem;
    }

    .notify-form input {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .coming-soon-badge {
        font-size: 0.7rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 0.82rem;
    }

    .author-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.68rem;
    }

    .author-name {
        font-size: 0.82rem;
    }

    .author-role {
        font-size: 0.68rem;
    }

    /* CTA */
    .cta-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .cta-desc {
        font-size: 0.88rem;
    }

    .cta-buttons .btn {
        max-width: 100%;
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 0.82rem;
        padding: 5px 0;
    }

    .footer-desc {
        font-size: 0.82rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Section spacing */
    .features-section,
    .extension-section,
    .how-section,
    .app-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    /* Trust */
    .trust-section {
        padding: 32px 0;
    }

    .trust-logos {
        gap: 16px;
    }

    .trust-logo svg {
        width: 70px;
        height: auto;
    }

    .trust-label {
        font-size: 0.72rem;
        margin-bottom: 18px;
    }

    /* Buttons general */
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}