/* ==========================================================================
   FITTRACK — BRAND-ALIGNED IMMERSIVE SAAS LANDING PAGE DESIGN SYSTEM
   Brand System: Electric Lime (#84cc16) • FITTRACK Logotype • Auto-Sliding Ticker
   Philosophy: Clarity first. Immersive depth second. Smooth effects third.
   ========================================================================== */

:root {
    /* Brand Color Palette — Electric Lime & Deep Charcoal */
    --bg-dark: #080a0c;
    --bg-surface: #0e1117;
    --bg-card: #151922;
    --bg-card-hover: #1c2230;
    --bg-elevated: #222938;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(132, 204, 22, 0.35);

    /* Electric Lime (#84cc16) */
    --accent: #84cc16;
    --accent-hover: #65a30d;
    --accent-bright: #a3e635;
    --accent-glow: rgba(132, 204, 22, 0.28);
    --accent-soft: rgba(132, 204, 22, 0.12);
    --lime: #84cc16;
    --lime-bright: #a3e635;

    --text-bright: #ffffff;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout Spacing */
    --container-width: 1260px;
    --container-narrow: 1000px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --shadow-card: 0 12px 35px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 8px 30px rgba(132, 204, 22, 0.3);
    --shadow-lg: 0 25px 60px -15px rgba(0, 0, 0, 0.85);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    line-height: 1.6;
    background-color: var(--bg-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header Shared Utility */
.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    background: var(--accent-soft);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-accent);
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-lime {
    background-color: var(--accent);
    color: #081202;
    box-shadow: var(--shadow-glow);
}

.btn-lime:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-bright);
    border-color: var(--border-medium);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: 1.0625rem;
}

/* ==========================================================================
   01. BRAND LOGO & NAVIGATION
   ========================================================================== */
.saas-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.saas-nav.scrolled {
    background-color: rgba(8, 10, 12, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-subtle);
}

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

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-f-logo {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #081202;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.35);
    font-style: italic;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-logotype {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-fit {
    color: #ffffff;
}

.brand-track {
    color: var(--accent);
    font-style: italic;
}

.brand-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-bright);
}

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

.nav-auth-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
}

.nav-auth-link:hover {
    color: var(--accent);
}

.nav-demo-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-demo-link:hover {
    color: var(--text-bright);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Drawer - Streamlined, sleek SaaS dropdown */
.mobile-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(9, 12, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-medium);
    z-index: 999;
    padding: 1rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-smooth), opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-bright);
    padding: 0.55rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: block;
    transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-drawer-link:hover,
.mobile-drawer-link:active {
    color: var(--accent);
    background: rgba(132, 204, 22, 0.08);
    padding-left: 0.85rem;
}

.mobile-drawer-cta {
    margin-top: 0.65rem !important;
    width: 100% !important;
    text-align: center !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
}

/* ==========================================================================
   02. HERO SECTION — DIRECT INLINE GYM PHOTO (MATCHING LOGIN PAGE SCREENSHOT)
   ========================================================================== */
/* ==========================================================================
   02. HERO SECTION — FULL-BLEED GYM BACKGROUND WITH FLOATING ENGINE
   ========================================================================== */
.hero-section {
    min-height: 92vh;
    padding-top: 135px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(8, 12, 20, 0.62) 0%, rgba(6, 9, 14, 0.48) 50%, rgba(6, 9, 14, 0.84) 100%),
        url('landing/hero_gym.png') center/cover no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(1.65rem, 4.8vw + 0.5rem, 3.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.hero-title .title-highlight {
    color: var(--accent);
    display: block;
    margin-top: 0.2rem;
    text-shadow: 0 4px 24px rgba(132, 204, 22, 0.4), 0 2px 8px rgba(0, 0, 0, 0.9);
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.2vw + 0.55rem, 1.0625rem);
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-feature-pills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
    max-width: 520px;
    width: 100%;
}

.hero-feature-pill {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(10, 14, 22, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: all var(--transition-fast);
    width: 100%;
    max-width: 100%;
}

.hero-feature-pill:hover {
    background: rgba(132, 204, 22, 0.2);
    border-color: var(--border-accent);
}

.pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pill-title {
    font-size: clamp(0.875rem, 1vw + 0.6rem, 0.95rem);
    font-weight: 700;
    color: var(--text-bright);
    overflow-wrap: break-word;
}

.pill-sub {
    font-size: clamp(0.75rem, 0.8vw + 0.5rem, 0.8125rem);
    color: #cbd5e1;
    overflow-wrap: break-word;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 520px;
}

.hero-ctas .btn {
    flex: 1;
    padding: 0.75rem 1.1rem;
    font-size: clamp(0.8125rem, 1vw + 0.45rem, 0.95rem);
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.hero-cta-block {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 520px;
}

.hero-cta-cues,
.cta-micro-cues {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.cta-cue-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.cta-cue-item .cue-check {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.cta-cue-item .cue-check svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.8;
}

.cta-cue-bullet {
    color: var(--text-dim);
    font-weight: bold;
    user-select: none;
}

.scroll-explore-wrap {
    text-align: center;
    margin-top: 3.5rem;
}

.scroll-explore-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Right Side: 3D Interactive Showcase Floating directly over Background */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* 3D Tilt Card Container */
.tilt-container {
    perspective: 1000px;
    width: 100%;
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.tilt-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
}

.tilt-card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-bright);
}

.tilt-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-accent);
}

.ui-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.ui-metric-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem;
}

.metric-lbl {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
}

.metric-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-bright);
}

.metric-trend {
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.25rem;
}

/* ==========================================================================
   03. TRUST / INTRODUCTION SECTION
   ========================================================================== */
.trust-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.trust-role-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.trust-role-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.role-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.role-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.role-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   04. THE GYM MANAGEMENT PROBLEM
   ========================================================================== */
.problem-section {
    padding: 100px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-point-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.problem-text-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.25rem;
}

.problem-text-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.problem-summary-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.summary-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.summary-headline {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.summary-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   05. THE FITTRACK SOLUTION
   ========================================================================== */
.solution-section {
    padding: 90px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.solution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    width: 100%;
}

.flow-node {
    background-color: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    text-align: center;
    min-width: 200px;
    max-width: 280px;
    flex: 1;
    transition: all var(--transition-base);
}

.flow-node:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.flow-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.flow-node-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.flow-node-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.25rem;
}

.flow-node-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.arrow-svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    stroke-width: 2.5;
}

.flow-hub {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.18) 0%, rgba(132, 204, 22, 0.05) 100%);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   06. CORE FEATURES
   ========================================================================== */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.feature-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   07. FEATURE PRESENTATION (ALTERNATING ROWS WITH ACCURATE GYM PHOTOS)
   ========================================================================== */
.feature-presentation-section {
    padding: 90px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.deepdive-mobile-nav,
.deepdive-dots {
    display: none;
}

.feature-presentation-track {
    display: contents;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 90px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-text-block .feature-label {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.feature-text-block .feature-row-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.feature-text-block .feature-row-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-main);
}

.bullet-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.feature-media-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-medium);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-lg);
}

.feature-media-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.feature-media-ui-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(14, 17, 23, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}

.media-ui-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.media-ui-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-bright);
}

/* ==========================================================================
   08. PRODUCT SHOWCASE ("SEE FITTRACK IN ACTION")
   ========================================================================== */
.showcase-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 12, 0.88) 0%, rgba(8, 10, 12, 0.96) 100%),
        url('landing/gym_equipment.png') center/cover no-repeat;
}

.showcase-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.showcase-tab-btn {
    background: rgba(14, 17, 23, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-tab-btn:hover {
    color: var(--text-bright);
    border-color: var(--border-medium);
}

.showcase-tab-btn.active {
    background: var(--accent);
    color: #081202;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.showcase-window {
    background-color: rgba(15, 20, 30, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(132, 204, 22, 0.05);
}

.showcase-window-header {
    background-color: rgba(11, 15, 23, 0.96);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.window-dots .dot:nth-child(1) {
    background-color: #ef4444;
}

.window-dots .dot:nth-child(2) {
    background-color: #f59e0b;
}

.window-dots .dot:nth-child(3) {
    background-color: #84cc16;
}

.window-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-family: monospace;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.85rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-screen-content {
    padding: 1.75rem;
    min-height: 440px;
}

.screen-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen UI Mockup Elements */
.mock-stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mock-stat-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.mock-stat-box:hover {
    transform: translateY(-2px);
    border-color: rgba(132, 204, 22, 0.3);
}

.mock-stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-bright);
    margin: 0.3rem 0;
}

.mock-stat-badge {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.mock-table-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    overflow-x: auto;
}

.mock-table-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.mock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    white-space: nowrap;
}

.mock-table th,
.mock-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-table th {
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-table td {
    color: var(--text-main);
}

.status-badge-active {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border-accent);
}

/* ==========================================================================
   09. HOW FITTRACK WORKS
   ========================================================================== */
.how-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: 0.75rem;
}

.step-card:hover .step-num {
    color: var(--accent-soft);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   10. USER TYPES EXPERIENCE
   ========================================================================== */
.users-section {
    padding: 100px 0;
}

.users-tabs-container {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.users-tab-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-subtle);
}

.user-tab-btn {
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.user-tab-btn:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.02);
}

.user-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(132, 204, 22, 0.06);
}

.user-pane-content {
    padding: 3rem;
    display: none;
}

.user-pane-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.user-pane-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.user-pane-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.user-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9375rem;
    color: var(--text-main);
    font-weight: 600;
}

/* ==========================================================================
   11. TESTIMONIALS — INFINITE AUTO-SLIDING MARQUEE TICKER
   ========================================================================== */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.ticker-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}

.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

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

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

.testimonial-card.ticker-card {
    width: 380px;
    flex-shrink: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.quote-text {
    font-size: 0.9875rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid var(--border-accent);
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--text-bright);
}

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

/* ==========================================================================
   12. PRICING
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-medium);
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--bg-card-hover) 0%, var(--bg-card) 100%);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
    padding-top: 2.85rem;
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #081202;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.26rem 0.85rem;
    border-radius: var(--radius-pill);
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1.1 !important;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 10px rgba(132, 204, 22, 0.35);
    pointer-events: none;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.plan-price-box {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-bright);
    vertical-align: top;
}

.price-val {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-bright);
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-main);
}

.pricing-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.pricing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.pricing-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.pricing-dot.active {
    width: 22px;
    border-radius: 11px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(132, 204, 22, 0.5);
}

.pricing-bottom-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.pricing-demo-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base), text-decoration var(--transition-base);
}

.pricing-demo-link:hover {
    color: #a3e635;
    text-decoration: underline;
}

/* ==========================================================================
   13. FINAL CTA & FOOTER
   ========================================================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(14, 17, 23, 0.9) 0%, rgba(21, 25, 34, 0.95) 100%),
        url('landing/hero_gym.png') center/cover no-repeat;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-bright);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-micro-cues {
    justify-content: center;
    margin-top: 1.5rem;
}

/* SaaS Footer */
.saas-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 50px;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-link:hover {
    color: var(--accent);
}

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

/* ==========================================================================
   DEMO REQUEST MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 580px;
    max-height: min(92vh, 760px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.modal-backdrop.open .modal-card {
    transform: translateY(0);
}

.modal-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-bright);
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-bright);
}

.modal-body {
    padding: 1.75rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.84375rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-card .form-label {
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    color: #94a3b8 !important;
    letter-spacing: 0.015em !important;
    margin-bottom: 0.28rem !important;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-bright);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.18);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}



/* ==========================================================================
   14. VECTOR SVG ICON SYSTEM & AMBIENT EFFECTS
   ========================================================================== */
.icon-svg,
.pill-icon svg,
.problem-icon svg,
.flow-node-icon svg,
.feature-icon-box svg,
.quote-icon svg {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
}

.pill-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.problem-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ef4444;
}

.flow-node-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.bullet-check svg,
.check-svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

.btn-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-svg {
    transform: translateX(3px);
}

.mobile-toggle-icon {
    width: 26px;
    height: 26px;
    stroke: var(--text-bright);
}

.quote-svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    opacity: 0.85;
}

.star-rating-icon {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    vertical-align: -1px;
}

.close-icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

/* Green Live Pulse Dot */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 rgba(132, 204, 22, 0.6);
    animation: pulseGlow 2s infinite;
    margin-right: 4px;
    vertical-align: middle;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(132, 204, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0);
    }
}

/* Ambient Glow Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-top {
    top: 50px;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-hero {
    top: 300px;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

/* ==========================================================================
   HERO LAPTOP MOCKUP CAROUSEL STYLES
   ========================================================================== */
.hero-right {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-laptop-container {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.hero-laptop-frame {
    position: relative;
    width: 100%;
}

.hero-laptop-bezel {
    background: #141820;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px 14px 0 0;
    padding: 8px 8px 0 8px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85),
        0 0 45px -10px rgba(132, 204, 22, 0.18);
    position: relative;
}

.hero-laptop-camera {
    width: 6px;
    height: 6px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin: 0 auto 6px auto;
}

.hero-laptop-screen {
    background: #0a0e14;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.hero-laptop-browser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    gap: 8px;
}

.hero-laptop-browser .browser-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-laptop-browser .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.hero-laptop-browser .dot-red {
    background: #ff5f56;
}

.hero-laptop-browser .dot-yellow {
    background: #ffbd2e;
}

.hero-laptop-browser .dot-green {
    background: #27c93f;
}

.hero-laptop-url {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}

.url-shield-icon {
    width: 12px;
    height: 12px;
    stroke: #84cc16;
    flex-shrink: 0;
}

.hero-laptop-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #84cc16;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #84cc16;
    box-shadow: 0 0 8px #84cc16;
    animation: livePulse 1.8s infinite ease-in-out;
}

@keyframes livePulse {

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

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.hero-laptop-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0a0e14;
    overflow: hidden;
}

.hero-laptop-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.98);
}

.hero-laptop-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-laptop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Hover Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.25s ease;
}

.hero-laptop-viewport:hover .hero-slider-arrow {
    opacity: 1;
}

.hero-slider-arrow:hover {
    background: #84cc16;
    color: #090d12;
    border-color: #84cc16;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
    left: 10px;
}

.hero-slider-arrow.next {
    right: 10px;
}

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

/* Feature Label Overlay Pill */
.hero-feature-label-overlay {
    position: absolute;
    bottom: 10px;
    left: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 14, 20, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 204, 22, 0.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f3f4f6;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hflo-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #84cc16;
}

/* Laptop Base & Hinge */
.hero-laptop-hinge {
    height: 4px;
    background: linear-gradient(90deg, #1c2330 0%, #2e3748 50%, #1c2330 100%);
    border-radius: 0 0 2px 2px;
}

.hero-laptop-base {
    height: 12px;
    background: linear-gradient(180deg, #1a202c 0%, #0d1117 100%);
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: none;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.hero-laptop-notch {
    width: 60px;
    height: 4px;
    background: #0d1117;
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
}

/* Hero Laptop Navigation Dots */
.hero-laptop-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    width: 24px;
    border-radius: 12px;
    background: #84cc16;
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.5);
}

/* ==========================================================================
   LAPTOP DEVICE MOCKUP & FEATURE CAROUSEL
   ========================================================================== */
.laptop-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.laptop-device {
    position: relative;
}

/* Laptop Screen Frame */
.laptop-screen {
    background: #0c1018;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 -4px 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(132, 204, 22, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Browser Top Bar */
.laptop-browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(8, 11, 18, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 12px;
}

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

.bdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bdot-red {
    background: #ef4444;
}

.bdot-yellow {
    background: #f59e0b;
}

.bdot-green {
    background: #84cc16;
}

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-weight: 500;
    max-width: 380px;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.browser-actions {
    flex-shrink: 0;
    opacity: 0.4;
}

/* Slide Viewport */
.laptop-slides-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    overflow: hidden;
    background: #080b12;
}

.laptop-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.laptop-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.laptop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.laptop-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
}

.laptop-screen:hover .laptop-nav-arrow {
    opacity: 1;
}

.laptop-nav-arrow:hover {
    background: rgba(132, 204, 22, 0.25);
    border-color: rgba(132, 204, 22, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.laptop-nav-prev {
    left: 12px;
}

.laptop-nav-next {
    right: 12px;
}

/* Feature Label Bar */
.laptop-feature-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 999px;
    padding: 6px 18px;
    z-index: 8;
}

.lfl-icon {
    display: flex;
    align-items: center;
}

.lfl-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Laptop Base & Hinge */
.laptop-base {
    position: relative;
}

.laptop-hinge {
    height: 14px;
    background: linear-gradient(180deg, #2a2e38 0%, #1e2028 60%, #16181e 100%);
    border-radius: 0 0 2px 2px;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    border-right: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.laptop-bottom {
    width: 115%;
    margin-left: -7.5%;
    height: 10px;
    background: linear-gradient(180deg, #1e2028 0%, #141620 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
}

.laptop-trackpad {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-top: -1px;
}

/* Dot Indicators */
.laptop-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.laptop-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.laptop-dot:hover {
    background: rgba(255, 255, 255, 0.35);
}

.laptop-dot.active {
    background: #84cc16;
    width: 22px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(132, 204, 22, 0.4);
}

/* Slide Label Pills */
.laptop-slide-labels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.lsl-btn {
    background: rgba(14, 17, 23, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.lsl-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.lsl-btn.active {
    background: rgba(132, 204, 22, 0.15);
    color: #84cc16;
    border-color: rgba(132, 204, 22, 0.35);
    box-shadow: 0 0 12px rgba(132, 204, 22, 0.1);
}



/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .ticker-track {
        animation: none !important;
        flex-wrap: wrap !important;
    }
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.faq-accordion-wrap {
    max-width: 840px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(132, 204, 22, 0.4);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(132, 204, 22, 0.12);
    background: rgba(20, 24, 32, 0.95);
}

.faq-question-btn {
    width: 100%;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    color: var(--text-bright);
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: color var(--transition-fast);
}

.faq-question-btn:hover {
    color: var(--accent);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    color: var(--text-main);
    flex-shrink: 0;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: #0d1117;
    border-color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   MASTER RESPONSIVE BREAKPOINTS (DESKTOP, TABLET, MOBILE DOWN TO 320px)
   Placed at the bottom to guarantee full CSS cascade precedence
   ========================================================================== */

/* --- TABLET LANDSCAPE & MEDIUM LAPTOPS (<= 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .ambient-glow {
        display: none !important;
    }

    .hero-section {
        padding-top: 105px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-left {
        align-items: center;
        text-align: center;
        margin: 0 auto;
        max-width: 680px;
    }

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

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-feature-pills {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .hero-feature-pill {
        text-align: left;
    }

    .hero-ctas {
        justify-content: center;
        margin: 0 auto;
    }

    .hero-right {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 50px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-media-photo {
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: 320px;
    }

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

    .trust-roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.15rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.15rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .user-pane-content.active {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem;
    }

    .user-pane-content img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
    }

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

    .showcase-screen-content {
        padding: 1.25rem;
        overflow-x: auto;
    }
}

/* --- TABLETS PORTRAIT & LARGE PHONES (<= 768px) --- */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .ambient-glow {
        display: none !important;
    }

    .saas-nav {
        height: 64px;
    }

    .saas-nav .nav-menu,
    .saas-nav .nav-actions {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-drawer {
        top: 64px;
        max-height: calc(100dvh - 64px);
    }

    .container {
        padding: 0 1.15rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Section padding tune down */
    .features-section,
    .problem-section,
    .solution-section,
    .showcase-section,
    .users-section,
    .steps-section,
    .pricing-section,
    .faq-section {
        padding: 60px 0;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

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

    .section-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

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

    /* Hero Section */
    .hero-section {
        padding-top: 88px;
        padding-bottom: 38px;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        gap: 2rem;
    }

    .hero-left {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, 2.2rem);
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.925rem;
        margin-bottom: 1.25rem;
    }

    /* Hero Feature Cards Tuned Down */
    .hero-feature-pills {
        gap: 0.55rem;
        margin-bottom: 1.35rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-feature-pill {
        padding: 0.55rem 0.8rem;
        gap: 0.65rem;
        border-radius: 9px;
    }

    .pill-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .pill-icon svg {
        width: 15px;
        height: 15px;
    }

    .pill-title {
        font-size: 0.825rem;
    }

    .pill-sub {
        font-size: 0.72rem;
    }

    .hero-ctas {
        max-width: 440px;
        width: 100%;
    }

    /* Hero Laptop Carousel */
    .hero-right {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .hero-laptop-container {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }

    .hero-laptop-browser {
        padding: 5px 8px;
        gap: 6px;
    }

    .hero-laptop-url {
        max-width: 160px;
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .hero-slider-arrow {
        opacity: 0.85;
        width: 28px;
        height: 28px;
    }

    .hero-slider-arrow.prev {
        left: 6px;
    }

    .hero-slider-arrow.next {
        right: 6px;
    }

    .hero-feature-label-overlay {
        font-size: 0.65rem;
        padding: 3px 8px;
        bottom: 6px;
        left: 8px;
        max-width: 75%;
    }

    .hero-laptop-dots {
        margin-top: 10px;
    }

    /* Problem Cards Tuned Down */
    .problem-points {
        gap: 0.75rem;
    }

    .problem-point-card {
        padding: 0.75rem 0.9rem;
        border-radius: 9px;
        gap: 0.65rem;
    }

    .problem-icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .problem-text-title {
        font-size: 0.9rem;
    }

    .problem-text-desc {
        font-size: 0.78rem;
    }

    .problem-summary-card {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }

    .summary-headline {
        font-size: 1.3rem;
    }

    .summary-body {
        font-size: 0.85rem;
    }

    /* Solution Flow */
    .solution-flow {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        margin-top: 1.75rem;
    }

    .flow-node {
        width: 100%;
        max-width: 300px;
        padding: 0.85rem 1rem;
        border-radius: 9px;
    }

    .flow-node-title {
        font-size: 0.925rem;
    }

    .flow-node-desc {
        font-size: 0.76rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.15rem 0;
    }

    /* Core Feature Cards Tuned Down */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .feature-card {
        padding: 1.15rem 1rem;
        border-radius: 10px;
    }

    .feature-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        margin-bottom: 0.65rem;
    }

    .feature-icon-box svg {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

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

    /* Trust Role Cards Tuned Down */
    .trust-roles-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .trust-role-card {
        padding: 1.15rem 1rem;
        border-radius: 10px;
    }

    .role-title {
        font-size: 1.15rem;
    }

    .role-desc {
        font-size: 0.825rem;
    }

    /* Feature Presentation Deep Dives (Mobile Hybrid Carousel + Pill Tabs) */
    .feature-presentation-section {
        padding: 45px 0 35px;
        overflow: hidden;
    }

    .feature-presentation-section .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 1. Mobile Pill Nav */
    .deepdive-mobile-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0 1.15rem 0;
        margin-bottom: 0.25rem;
        justify-content: flex-start;
    }

    .deepdive-mobile-nav::-webkit-scrollbar {
        display: none;
    }

    .deepdive-pill-btn {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
        font-weight: 600;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .deepdive-pill-btn .pill-num {
        color: var(--text-dim);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        transition: color 0.2s ease;
    }

    .deepdive-pill-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-bright);
    }

    .deepdive-pill-btn.active {
        background: rgba(132, 204, 22, 0.12);
        border-color: #84cc16;
        color: #ffffff;
        box-shadow: 0 0 12px rgba(132, 204, 22, 0.25);
    }

    .deepdive-pill-btn.active .pill-num {
        color: #84cc16;
    }

    /* 2. Horizontal Swipe Track - Strictly One Card Visible */
    .feature-presentation-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        scroll-padding: 0 !important;
        width: 100% !important;
    }

    .feature-presentation-track::-webkit-scrollbar {
        display: none;
    }

    /* 3. Each Card in the Carousel - Full 100% Width */
    .feature-row {
        display: flex !important;
        flex-direction: column !important;
        direction: ltr !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        margin-bottom: 0 !important;
        background: rgba(16, 20, 28, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        overflow: hidden;
        padding: 1.25rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        gap: 0.85rem !important;
        box-sizing: border-box !important;
    }

    .feature-row.reverse {
        direction: ltr !important;
    }

    .feature-row.reverse > * {
        direction: ltr !important;
    }

    /* Photo Frame on Top */
    .feature-media-frame {
        order: 1 !important;
        width: 100% !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        position: relative !important;
        margin: 0 !important;
    }

    .feature-media-photo {
        width: 100% !important;
        height: 160px !important;
        max-height: 160px !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        display: block !important;
    }

    .feature-media-ui-overlay {
        bottom: 0.5rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.45rem 0.65rem !important;
        border-radius: 6px !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    .media-ui-title {
        font-size: 0.58rem !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 2px !important;
    }

    .media-ui-val {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Text Block Below */
    .feature-text-block {
        order: 2 !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .feature-text-block .feature-label {
        font-size: 0.68rem !important;
        margin-bottom: 0.35rem !important;
    }

    .feature-text-block .feature-row-title {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        margin-bottom: 0.45rem !important;
    }

    .feature-text-block .feature-row-desc {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
        color: var(--text-muted) !important;
        margin-bottom: 0.75rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feature-bullets {
        gap: 0.35rem !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .feature-bullet-item {
        font-size: 0.76rem !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
        line-height: 1.35 !important;
    }

    .feature-bullet-item .bullet-check {
        margin-top: 1px !important;
        flex-shrink: 0 !important;
    }

    .feature-bullet-item .bullet-check svg {
        width: 13px !important;
        height: 13px !important;
    }

    /* 4. Dots Indicators */
    .deepdive-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 1rem !important;
    }

    .deepdive-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.25s ease;
    }

    .deepdive-dot:hover {
        background: rgba(255, 255, 255, 0.45);
    }

    .deepdive-dot.active {
        width: 20px;
        border-radius: 10px;
        background: var(--accent);
        box-shadow: 0 0 8px rgba(132, 204, 22, 0.5);
    }

    /* Product Showcase & Laptop Mockup */
    .laptop-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }

    .laptop-screen {
        border-radius: 10px 10px 0 0;
    }

    .laptop-browser-bar {
        padding: 6px 10px;
    }

    .browser-address {
        font-size: 0.65rem;
        padding: 3px 8px;
        max-width: 200px;
    }

    .laptop-nav-arrow {
        width: 30px;
        height: 30px;
        opacity: 0.85;
    }

    .laptop-bottom {
        width: 100% !important;
        margin-left: 0 !important;
        height: 6px;
        border-radius: 0 0 6px 6px;
    }

    .showcase-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 2px 8px 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 1.5rem;
        gap: 0.45rem;
    }

    .showcase-tabs-nav::-webkit-scrollbar,
    .laptop-slide-labels::-webkit-scrollbar {
        display: none;
    }

    .showcase-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }

    .laptop-slide-labels {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px 4px 10px 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
        gap: 6px;
    }

    .lsl-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.4rem 0.85rem;
        font-size: 0.72rem;
    }

    /* User Roles Tabs Tuned Down */
    .users-tabs-container {
        border-radius: 12px;
    }

    .user-tab-btn {
        font-size: 0.78rem;
        padding: 0.75rem 0.35rem;
    }

    .user-pane-content {
        padding: 1.35rem 1rem;
    }

    .user-pane-title {
        font-size: 1.3rem;
        margin-bottom: 0.65rem;
    }

    .user-pane-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .user-benefit-list {
        gap: 0.65rem;
    }

    .user-benefit-item {
        font-size: 0.825rem;
    }

    /* Steps Cards Tuned Down */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .step-card {
        padding: 1.15rem 1rem;
        border-radius: 10px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }

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

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

    /* Pricing Horizontal Carousel with Centered Snap (<= 768px) */
    .pricing-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    .pricing-section .section-header {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none;
        gap: 1rem !important;
        padding: 1.25rem calc((100vw - min(310px, 82vw)) / 2) 1.5rem !important;
        scroll-padding: 0 calc((100vw - min(310px, 82vw)) / 2) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 min(310px, 82vw) !important;
        width: min(310px, 82vw) !important;
        max-width: min(310px, 82vw) !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        padding: 1.35rem 1.15rem;
        border-radius: 14px;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .pricing-card.popular {
        padding-top: 1.95rem !important;
    }

    .pricing-dots {
        display: flex !important;
    }

    .plan-name {
        font-size: 1.2rem;
    }

    .plan-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        min-height: auto;
    }

    .plan-price-box {
        margin-bottom: 1.15rem;
        padding-bottom: 0.85rem;
    }

    .price-val {
        font-size: 2.15rem;
    }

    .plan-features-list {
        gap: 0.55rem;
        margin-bottom: 1.35rem;
    }

    .plan-feature-item {
        font-size: 0.825rem;
    }

    /* Testimonials Marquee Card Tuned Down */
    .testimonial-card.ticker-card {
        width: min(280px, 80vw);
        padding: 1.15rem 1rem;
        border-radius: 10px;
    }

    .quote-icon {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .quote-text {
        font-size: 0.825rem;
        margin-bottom: 0.75rem;
        line-height: 1.45;
    }

    .author-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

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

    /* FAQ Section Tuned Down */
    .faq-accordion-wrap {
        margin-top: 1.75rem;
        gap: 0.65rem;
    }

    .faq-item {
        border-radius: 8px;
    }

    .faq-question-btn {
        padding: 0.85rem 1rem;
        font-size: 0.875rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.85rem 1rem;
    }

    .faq-answer p {
        font-size: 0.825rem;
        line-height: 1.45;
    }

    /* CTA Section Tuned Down */
    .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 14px;
    }

    .cta-title {
        font-size: 1.65rem;
    }

    .cta-desc {
        font-size: 0.875rem;
        margin-bottom: 1.35rem;
    }

    .hero-cta-block {
        max-width: 100%;
    }

    .hero-cta-cues {
        font-size: 0.76rem;
        gap: 0.35rem 0.6rem;
    }

    .cta-micro-cues {
        font-size: 0.76rem;
        gap: 0.35rem 0.6rem;
        margin-top: 1.15rem;
    }

    .pricing-bottom-cue {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }

    /* Footer */
    .saas-footer {
        padding: 50px 0 25px;
    }

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

    .footer-grid > :first-child,
    .footer-brand-col {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }

    .footer-brand-desc {
        max-width: 100%;
        font-size: 0.85rem;
        margin-top: 0.75rem;
        line-height: 1.55;
    }

    .footer-col-title {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }

    .footer-links {
        gap: 0.65rem;
    }

    .footer-link {
        font-size: 0.825rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.75rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .ui-metrics-row {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .mock-table-card {
        overflow-x: auto;
    }

    /* Mobile Drawer Tune-Down (<= 768px) */
    .mobile-drawer {
        top: 64px;
        padding: 0.85rem 1.15rem 1.25rem;
        gap: 0.15rem;
        max-height: calc(100dvh - 64px);
    }

    .mobile-drawer-link {
        font-size: 0.9rem;
        padding: 0.52rem 0.5rem;
    }

    .mobile-drawer-cta {
        margin-top: 0.5rem !important;
        padding: 0.6rem 0.9rem !important;
        font-size: 0.85rem !important;
    }

    /* Request Demo Modal Tune-Down (<= 768px) */
    .modal-backdrop {
        padding: 0.75rem;
    }

    .modal-card {
        max-width: 480px;
        max-height: min(88vh, 640px);
        border-radius: 14px;
        background-color: rgba(14, 18, 26, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-header {
        padding: 0.75rem 1.15rem;
    }

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

    .modal-close-btn {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 0.95rem 1.15rem;
    }

    .modal-body .form-group {
        margin-bottom: 0.65rem;
    }

    .modal-body .form-label {
        font-size: 0.7rem !important;
        font-weight: 500 !important;
        margin-bottom: 0.25rem;
        color: #94a3b8;
        letter-spacing: 0.015em;
    }

    .modal-body .form-input,
    .modal-body .form-select {
        padding: 0.45rem 0.7rem;
        font-size: 0.825rem;
        border-radius: 6px;
        height: 36px;
        background-color: rgba(22, 28, 40, 0.7);
    }

    .modal-body textarea.form-input {
        height: auto;
        min-height: 48px;
        padding: 0.45rem 0.7rem;
    }

    .modal-body .form-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    #submitDemoBtn {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        border-radius: 7px !important;
        margin-top: 0.25rem;
    }
}

/* --- SMARTPHONES (<= 520px) --- */
@media (max-width: 520px) {
    .container {
        padding: 0 0.95rem;
    }

    .brand-logotype {
        font-size: 1.15rem;
    }

    .brand-f-logo {
        width: 32px;
        height: 32px;
        font-size: 1.15rem;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    /* Hero Cards: 2-column compact micro-cards */
    .hero-feature-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.15rem;
        width: 100%;
    }

    .hero-feature-pill {
        padding: 0.45rem 0.6rem;
        border-radius: 8px;
        gap: 0.45rem;
        background: rgba(14, 18, 26, 0.85);
    }

    .pill-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        border-radius: 5px;
    }

    .pill-icon svg {
        width: 13px;
        height: 13px;
    }

    .pill-title {
        font-size: 0.75rem;
        font-weight: 700;
        line-height: 1.15;
    }

    .pill-sub {
        font-size: 0.62rem;
        line-height: 1.25;
        color: #94a3b8;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-cta-block {
        margin-bottom: 1.25rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.55rem;
        margin-bottom: 0.65rem;
    }

    .hero-ctas .btn {
        width: 100%;
        min-height: 42px;
        font-size: 0.875rem;
        padding: 0.65rem 1rem;
        justify-content: center;
        border-radius: 8px;
    }

    .hero-cta-cues {
        font-size: 0.72rem;
        gap: 0.3rem 0.5rem;
        justify-content: center;
        text-align: center;
    }

    .hero-laptop-browser {
        padding: 4px 6px;
    }

    .hero-laptop-url {
        max-width: 120px;
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .hero-laptop-live-badge span {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    /* Further tuned down cards */
    .feature-card {
        padding: 0.85rem 0.75rem;
        border-radius: 8px;
    }

    .feature-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        margin-bottom: 0.45rem;
    }

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

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

    .problem-point-card {
        padding: 0.6rem 0.75rem;
        border-radius: 7px;
    }

    .problem-text-title {
        font-size: 0.825rem;
    }

    .problem-text-desc {
        font-size: 0.72rem;
    }

    .problem-summary-card {
        padding: 1.15rem 0.85rem;
        border-radius: 10px;
    }

    .summary-headline {
        font-size: 1.15rem;
    }

    .summary-body {
        font-size: 0.78rem;
    }

    .trust-role-card {
        padding: 0.85rem 0.75rem;
        border-radius: 8px;
    }

    .role-title {
        font-size: 0.98rem;
    }

    .role-desc {
        font-size: 0.75rem;
    }

    .user-tab-btn {
        font-size: 0.72rem;
        padding: 0.65rem 0.2rem;
    }

    .user-pane-content {
        padding: 0.95rem 0.75rem;
    }

    .user-pane-title {
        font-size: 1.1rem;
    }

    .user-pane-desc {
        font-size: 0.78rem;
    }

    .step-card {
        padding: 0.85rem 0.75rem;
        border-radius: 8px;
    }

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

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

    /* Feature Deep Dives Carousel for <= 520px: strictly 1 card */
    .feature-presentation-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .feature-presentation-track {
        gap: 1.25rem !important;
        padding: 0 !important;
        scroll-padding: 0 !important;
        width: 100% !important;
    }

    .feature-row {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        border-radius: 14px !important;
    }

    .feature-media-photo {
        height: 165px !important;
        max-height: 165px !important;
    }

    .feature-text-block .feature-row-title {
        font-size: 1.1rem !important;
    }

    .feature-text-block .feature-row-desc {
        font-size: 0.8rem !important;
    }

    /* Pricing Horizontal Carousel with Centered Snap (<= 520px) */
    .pricing-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .pricing-section .section-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-grid {
        gap: 0.85rem !important;
        padding: 1.15rem calc((100vw - min(285px, 84vw)) / 2) 1.25rem !important;
        scroll-padding: 0 calc((100vw - min(285px, 84vw)) / 2) !important;
        width: 100% !important;
    }

    .pricing-card {
        flex: 0 0 min(285px, 84vw) !important;
        width: min(285px, 84vw) !important;
        max-width: min(285px, 84vw) !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .pricing-card.popular {
        padding-top: 1.85rem !important;
    }

    .popular-badge {
        font-size: 0.65rem;
        padding: 0.22rem 0.75rem;
        top: -10px;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .plan-desc {
        font-size: 0.76rem;
        margin-bottom: 0.75rem;
    }

    .plan-price-box {
        margin-bottom: 0.95rem;
        padding-bottom: 0.75rem;
    }

    .price-val {
        font-size: 1.85rem;
    }

    .plan-features-list {
        gap: 0.5rem;
        margin-bottom: 1.15rem;
    }

    .plan-feature-item {
        font-size: 0.78rem;
    }

    .testimonial-card.ticker-card {
        width: min(250px, 75vw);
        padding: 0.95rem 0.8rem;
        border-radius: 8px;
    }

    .quote-text {
        font-size: 0.76rem;
    }

    .faq-question-btn {
        padding: 0.75rem 0.85rem;
        font-size: 0.825rem;
    }

    .cta-box {
        padding: 1.85rem 0.95rem;
        border-radius: 12px;
    }

    .cta-title {
        font-size: 1.35rem;
    }

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

    .cta-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.55rem;
    }

    .cta-btn-group .btn {
        width: 100%;
        min-height: 42px;
    }

    .cta-micro-cues {
        font-size: 0.72rem;
        gap: 0.3rem 0.5rem;
        margin-top: 1rem;
    }

    .pricing-bottom-cue {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.35rem;
        margin-top: 1.25rem;
    }

    /* Mobile Drawer Tune-Down (<= 520px) */
    .mobile-drawer {
        top: 60px;
        padding: 0.75rem 1rem 1rem;
        gap: 0.12rem;
        max-height: calc(100dvh - 60px);
    }

    .mobile-drawer-link {
        font-size: 0.85rem;
        padding: 0.48rem 0.45rem;
    }

    .mobile-drawer-cta {
        margin-top: 0.45rem !important;
        padding: 0.55rem 0.85rem !important;
        font-size: 0.825rem !important;
    }

    /* Modal Tune-Down (<= 520px) */
    .modal-backdrop {
        padding: 0.4rem;
    }

    .modal-card {
        border-radius: 12px;
        max-width: 100%;
        max-height: 92vh;
    }

    .modal-header {
        padding: 0.65rem 0.85rem;
    }

    .modal-title {
        font-size: 0.95rem;
    }

    .modal-close-btn {
        font-size: 1.15rem;
        padding: 0.2rem;
    }

    .modal-body {
        padding: 0.75rem 0.85rem;
    }

    .modal-body .form-group {
        margin-bottom: 0.5rem;
    }

    .modal-body .form-label {
        font-size: 0.68rem !important;
        font-weight: 500 !important;
        margin-bottom: 0.2rem;
        color: #94a3b8;
        letter-spacing: 0.015em;
    }

    .modal-body .form-input,
    .modal-body .form-select {
        font-size: 16px; /* Prevents iOS Safari auto-zoom */
        padding: 0.45rem 0.65rem;
        border-radius: 6px;
        height: 35px;
    }

    .modal-body textarea.form-input {
        height: auto;
        min-height: 42px;
        padding: 0.45rem 0.65rem;
    }

    .modal-body .form-grid-2 {
        gap: 0.45rem;
    }

    #submitDemoBtn {
        padding: 0.55rem 0.85rem !important;
        font-size: 0.825rem !important;
    }

    .saas-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1.15rem;
        text-align: left;
    }

    .footer-grid > :first-child,
    .footer-brand-col {
        grid-column: 1 / -1;
        margin-bottom: 0.25rem;
    }

    .footer-brand-desc {
        margin-left: 0;
        margin-right: 0;
        font-size: 0.8rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .footer-col-title {
        font-size: 0.76rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        align-items: flex-start;
        gap: 0.6rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 1rem;
        font-size: 0.72rem;
        gap: 0.4rem;
    }
}

/* --- ULTRA-COMPACT SMARTPHONES (<= 380px) --- */
@media (max-width: 380px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-feature-pills {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .hero-feature-pill {
        padding: 0.45rem 0.55rem;
    }

    .hero-laptop-url {
        max-width: 90px;
        font-size: 0.55rem;
        padding: 2px 4px;
    }

    .hero-laptop-browser .dot {
        width: 5px;
        height: 5px;
    }

    .hero-feature-label-overlay {
        font-size: 0.58rem;
        padding: 2px 5px;
    }

    .testimonial-card.ticker-card {
        width: min(240px, 80vw);
        padding: 0.85rem 0.75rem;
    }

    .user-tab-btn {
        font-size: 0.68rem;
        padding: 0.6rem 0.15rem;
    }

    /* Feature Deep Dives Carousel for <= 380px: strictly 1 card */
    .feature-presentation-section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .feature-presentation-track {
        gap: 1rem !important;
        padding: 0 !important;
        scroll-padding: 0 !important;
        width: 100% !important;
    }

    .feature-row {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.85rem !important;
    }

    .feature-media-photo {
        height: 150px !important;
        max-height: 150px !important;
    }

    .feature-text-block .feature-row-title {
        font-size: 1.02rem !important;
    }

    /* Pricing Horizontal Carousel with Centered Snap (<= 380px) */
    .pricing-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .pricing-section .section-header {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .pricing-grid {
        gap: 0.75rem !important;
        padding: 0.95rem calc((100vw - min(260px, 85vw)) / 2) 1rem !important;
        scroll-padding: 0 calc((100vw - min(260px, 85vw)) / 2) !important;
        width: 100% !important;
    }

    .pricing-card {
        flex: 0 0 min(260px, 85vw) !important;
        width: min(260px, 85vw) !important;
        max-width: min(260px, 85vw) !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        padding: 1.15rem 0.85rem;
    }

    .pricing-card.popular {
        padding-top: 1.7rem !important;
    }

    .popular-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.65rem;
        top: -9px;
    }

    .price-val {
        font-size: 1.65rem;
    }

    .footer-grid {
        gap: 1.5rem 0.85rem;
    }

    .footer-link {
        font-size: 0.78rem;
    }

    .footer-col-title {
        font-size: 0.72rem;
        margin-bottom: 0.65rem;
    }

    /* Mobile Drawer Tune-Down (<= 380px) */
    .mobile-drawer {
        top: 56px;
        padding: 0.65rem 0.85rem 0.95rem;
        gap: 0.1rem;
        max-height: calc(100dvh - 56px);
    }

    .mobile-drawer-link {
        font-size: 0.82rem;
        padding: 0.42rem 0.35rem;
    }

    .mobile-drawer-cta {
        margin-top: 0.4rem !important;
        padding: 0.52rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    /* Modal Tune-Down (<= 380px) */
    .modal-card {
        border-radius: 10px;
    }

    .modal-header {
        padding: 0.55rem 0.75rem;
    }

    .modal-title {
        font-size: 0.88rem;
    }

    .modal-body {
        padding: 0.65rem 0.75rem;
    }

    .modal-body .form-group {
        margin-bottom: 0.42rem;
    }

    .modal-body .form-label {
        font-size: 0.65rem !important;
        font-weight: 500 !important;
        margin-bottom: 0.18rem;
        color: #94a3b8;
        letter-spacing: 0.015em;
    }

    .modal-body .form-input,
    .modal-body .form-select {
        height: 32px;
        padding: 0.35rem 0.55rem;
    }

    .modal-body textarea.form-input {
        min-height: 38px;
    }

    #submitDemoBtn {
        padding: 0.48rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
}

/* ==========================================================================
   SUBSCRIPTION PLAN DISTRIBUTION TRIGGER & MODAL
   ========================================================================== */
.pricing-distribution-cta {
    text-align: center;
    margin: 32px 0 16px;
}

.btn-plan-distribution {
    background: rgba(18, 24, 21, 0.85);
    border: 1.5px solid rgba(132, 204, 22, 0.35);
    color: var(--text-bright);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5), 0 0 16px rgba(132, 204, 22, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.btn-plan-distribution:hover {
    border-color: var(--lime);
    background: rgba(22, 32, 25, 0.95);
    color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(132, 204, 22, 0.25);
}

.btn-distribution-icon {
    display: inline-flex;
    color: var(--lime);
}

.btn-distribution-arrow {
    transition: transform 0.2s ease;
}

.btn-plan-distribution:hover .btn-distribution-arrow {
    transform: translateX(4px);
}

/* Distribution Modal Card */
.modal-card.distribution-modal-card {
    max-width: 960px;
    width: 95%;
    max-height: min(92vh, 860px);
    background: #0b100d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9);
}

.distribution-modal-header {
    background: linear-gradient(180deg, rgba(132, 204, 22, 0.06) 0%, transparent 100%), #0e1411;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.distribution-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.distribution-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
}

.distribution-modal-body {
    padding: 1.5rem 2rem;
    overflow-y: auto;
}

.distribution-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.distribution-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 19, 16, 0.6);
}

.distribution-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.distribution-table th {
    padding: 14px 18px;
    background: rgba(18, 25, 21, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-bright);
    vertical-align: bottom;
}

.distribution-table .col-cap {
    width: 35%;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.distribution-table .col-tier {
    width: 21.6%;
}

.distribution-table .tier-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.distribution-table .tier-name {
    font-weight: 800;
    font-size: 1rem;
}

.distribution-table .tier-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.distribution-table .popular-tag {
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #84cc16;
    color: #081202 !important;
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    width: fit-content;
    box-shadow: 0 0 12px rgba(132, 204, 22, 0.45);
    line-height: 1.1;
}

.distribution-table th.col-tier.popular {
    background: rgba(132, 204, 22, 0.08);
    border-left: 1px solid rgba(132, 204, 22, 0.25);
    border-right: 1px solid rgba(132, 204, 22, 0.25);
}

.distribution-table th.col-tier.popular .tier-name {
    color: var(--lime-bright, #a3e635);
}

.distribution-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
}

.distribution-table td.col-popular {
    background: rgba(132, 204, 22, 0.04);
    border-left: 1px solid rgba(132, 204, 22, 0.15);
    border-right: 1px solid rgba(132, 204, 22, 0.15);
}

.dist-cat-row td {
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lime);
    padding: 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dist-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.dist-pill.muted {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.dist-pill.lime {
    background: rgba(132, 204, 22, 0.15);
    color: #bef264;
}

.dist-pill.sky {
    background: rgba(56, 189, 248, 0.15);
    color: #7dd3fc;
}

.dist-pill.purple {
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
}

.status-access {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.82rem;
}

.status-locked {
    color: #f87171;
    font-size: 0.82rem;
}

.dist-text-highlight {
    color: #f8fafc;
    font-weight: 600;
}

.dist-text-lime {
    color: var(--lime);
    font-weight: 700;
}

.dist-text-purple {
    color: #c084fc;
    font-weight: 700;
}

.distribution-modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0e1411;
    display: flex;
    justify-content: flex-end;
}

.dist-footer-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .distribution-modal-header {
        padding: 1rem 1.25rem;
    }
    .distribution-modal-body {
        padding: 1rem 1.25rem;
    }
    .dist-footer-ctas {
        justify-content: stretch;
    }
    .dist-footer-ctas .btn {
        flex: 1 1 100%;
        text-align: center;
    }
}