/* ==========================================================================
   WEB BLOCKER - HOW TO USE WEB BLOCKER (PRODUCT EDUCATION / USER GUIDE)
   Design System: Premium Wine-Red Glassmorphism, Pure SVG Vectors, Responsive
   ========================================================================== */

:root {
    --wb-bg-main: #9F2B2C;
    --wb-bg-dark: #6B1C1D;
    --wb-bg-card: rgba(255, 255, 255, 0.05);
    --wb-bg-card-hover: rgba(255, 255, 255, 0.08);
    --wb-bg-card-solid: #832223;
    --wb-border: rgba(255, 255, 255, 0.12);
    --wb-border-light: rgba(255, 255, 255, 0.22);
    --wb-border-accent: rgba(248, 100, 102, 0.45);
    --wb-coral: #F86466;
    --wb-coral-hover: #ff7577;
    --wb-coral-glow: rgba(248, 100, 102, 0.25);
    --wb-green: #34D399;
    --wb-green-bg: rgba(52, 211, 153, 0.12);
    --wb-green-border: rgba(52, 211, 153, 0.35);
    --wb-orange: #FB923C;
    --wb-orange-bg: rgba(251, 146, 60, 0.12);
    --wb-orange-border: rgba(251, 146, 60, 0.35);
    --wb-text-main: #FFFFFF;
    --wb-text-muted: rgba(255, 255, 255, 0.78);
    --wb-text-subtle: rgba(255, 255, 255, 0.55);
    --wb-radius-sm: 8px;
    --wb-radius-md: 14px;
    --wb-radius-lg: 20px;
    --wb-radius-xl: 28px;
    --wb-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    --wb-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    background-color: var(--wb-bg-main);
    color: var(--wb-text-main);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Ambient Circles */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 0.03;
    transform: translate(-50%, -50%);
}

.circle-1 { width: 650px; height: 650px; top: 10%; left: 10%; }
.circle-2 { width: 1050px; height: 1050px; top: 50%; left: 85%; opacity: 0.02; }
.circle-3 { width: 1400px; height: 1400px; top: 85%; left: 20%; opacity: 0.015; }

/* Main Wrapper */
.guide-page-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.guide-hero {
    text-align: center;
    padding: 50px 20px 40px;
    margin-bottom: 30px;
}

.guide-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--wb-border);
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wb-coral);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--wb-coral);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--wb-coral);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.7; }
}

.guide-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-wrap: balance;
}

.guide-hero-lead {
    font-size: 19px;
    font-weight: 300;
    color: var(--wb-text-muted);
    max-width: 780px;
    margin: 0 auto 32px;
    line-height: 1.6;
    text-wrap: pretty;
}

.guide-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    color: #1F1F1F;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--wb-transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--wb-coral);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px var(--wb-coral-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--wb-border);
    transition: var(--wb-transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

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

.btn-coral {
    background: var(--wb-coral);
    color: #FFFFFF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--wb-transition);
}

.btn-coral:hover {
    background: var(--wb-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--wb-coral-glow);
}

/* ==========================================================================
   ON THIS PAGE (STICKY / CHIP NAVIGATION)
   ========================================================================== */
.guide-nav-wrapper {
    position: sticky;
    top: 76px;
    z-index: 990;
    margin-bottom: 50px;
    transition: var(--wb-transition);
}

.guide-nav-container {
    background: rgba(107, 28, 29, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-lg);
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-nav-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wb-coral);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 8px;
    border-right: 1px solid var(--wb-border);
}

.guide-nav-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
}

.guide-nav-chips::-webkit-scrollbar {
    display: none;
}

.guide-nav-chip {
    font-size: 12px;
    font-weight: 500;
    color: var(--wb-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--wb-transition);
}

.guide-nav-chip:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--wb-border);
}

.guide-nav-chip.active {
    color: #FFFFFF;
    background: var(--wb-coral);
    font-weight: 700;
    box-shadow: 0 4px 14px var(--wb-coral-glow);
}

/* ==========================================================================
   SECTION STRUCTURE & LAYOUT
   ========================================================================== */
.guide-section {
    margin-bottom: 70px;
    scroll-margin-top: 140px;
}

.guide-card-main {
    background: var(--wb-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-xl);
    padding: 40px;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
    position: relative;
    overflow: hidden;
}

.guide-card-main:hover {
    border-color: var(--wb-border-light);
    background: var(--wb-bg-card-hover);
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wb-coral);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.section-lead {
    font-size: 16px;
    font-weight: 400;
    color: var(--wb-text-muted);
    margin-bottom: 28px;
    max-width: 900px;
    line-height: 1.65;
}

/* Two-column Content Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 20px;
}

.section-grid.grid-reverse {
    direction: rtl;
}

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

.text-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: var(--wb-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--wb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wb-coral);
}

.feature-text-group h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.feature-text-group p {
    font-size: 14px;
    color: var(--wb-text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   CALLOUT BOXES & ADVICE CARDS
   ========================================================================== */
.guide-callout {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 5, 6, 0.4) 100%);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-md);
    padding: 20px 24px;
    margin-top: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.guide-callout.callout-advice {
    background: linear-gradient(135deg, rgba(248, 100, 102, 0.09) 0%, rgba(20, 5, 6, 0.45) 100%);
    border: 1px solid rgba(248, 100, 102, 0.25);
    box-shadow: 0 8px 26px rgba(248, 100, 102, 0.08);
}

.guide-callout.callout-warning {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.09) 0%, rgba(20, 5, 6, 0.45) 100%);
    border: 1px solid rgba(255, 159, 67, 0.25);
    box-shadow: 0 8px 26px rgba(255, 159, 67, 0.08);
}

.guide-callout.callout-success {
    background: linear-gradient(135deg, rgba(78, 203, 113, 0.09) 0%, rgba(20, 5, 6, 0.45) 100%);
    border: 1px solid rgba(78, 203, 113, 0.25);
    box-shadow: 0 8px 26px rgba(78, 203, 113, 0.08);
}

.callout-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
}

.guide-callout.callout-advice .callout-title {
    background: rgba(248, 100, 102, 0.15);
    border-color: rgba(248, 100, 102, 0.35);
    color: var(--wb-coral);
}

.guide-callout.callout-warning .callout-title {
    background: rgba(255, 159, 67, 0.15);
    border-color: rgba(255, 159, 67, 0.35);
    color: var(--wb-orange);
}

.guide-callout.callout-success .callout-title {
    background: rgba(78, 203, 113, 0.15);
    border-color: rgba(78, 203, 113, 0.35);
    color: var(--wb-green);
}

.callout-text {
    font-size: 14px;
    color: var(--wb-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   AUTHENTIC 1:1 WEB BLOCKER SOFTWARE COMPONENTS (DIRECT FROM DASHBOARD)
   ========================================================================== */
.wb-app-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
}

.wb-app-card {
    width: 100%;
    max-width: 520px;
    background: #C54D4E;
    border-radius: 28px;
    padding: 26px 28px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* 1. Blocklist Card 1:1 */
.wb-app-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.wb-app-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1;
}

.wb-app-counter {
    width: 36px;
    height: 36px;
    border: 3.5px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 17px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.wb-app-input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.wb-app-input {
    flex: 1;
    min-width: 0;
    height: 46px;
    background: #FFFFFF;
    border: none;
    border-radius: 23px;
    padding: 0 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    outline: none;
}

.wb-app-add-btn {
    padding: 0 18px;
    height: 46px;
    background: #FFFFFF;
    border: none;
    border-radius: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #333333;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.wb-app-sites-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.wb-app-site-item {
    width: 100%;
    height: 52px;
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 14px 0 18px;
    gap: 12px;
    box-sizing: border-box;
}

.wb-app-site-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.wb-app-site-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wb-app-site-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wb-app-site-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wb-app-site-status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1px;
}

.wb-app-del-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: default;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
    padding: 0;
    flex-shrink: 0;
}

.wb-app-del-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 2. Daily Pulse Card 1:1 */
.dp-goal-box {
    margin-bottom: 18px;
    position: relative;
    border-radius: 18px;
    padding: 10px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dp-interactive-plaque {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.dp-interactive-plaque:hover,
.dp-interactive-plaque.is-highlighted {
    box-shadow: 0 0 0 2px #FFFFFF, 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    z-index: 5;
}

.dp-interactive-plaque.is-highlighted::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.65);
    pointer-events: none;
    animation: plaqueGlow 2s infinite ease-in-out;
}

.dp-goal-title {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 8px;
}

.dp-prog-track {
    width: 100%;
    height: 26px;
    background-color: rgba(61, 16, 16, 0.4);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.dp-prog-fill {
    height: 100%;
    background: #76D18B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-prog-num {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1A3A22;
}

.dp-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
}

.dp-focus-box {
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 18px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dp-card-head {
    width: 100%;
    margin-bottom: 6px;
}

.dp-card-title {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.dp-legend {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
}

.dp-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dp-dot.green { background: #76D18B; }
.dp-dot.orange { background: #FFB347; }

.dp-donut-wrap {
    width: 110px;
    height: 110px;
    position: relative;
    margin: 4px 0;
}

.dp-donut-svg {
    width: 100%;
    height: 100%;
}

.dp-donut-text {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 900;
    fill: #FFFFFF;
}

.dp-status-text {
    font-size: 11px;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-stat-box {
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 18px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.dp-stat-lbl {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.dp-stat-val {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
}

.dp-stat-sub {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

/* 3. Focus Audit Card 1:1 */
.fa-filter-bar {
    display: flex;
    gap: 6px;
    background: rgba(61, 16, 16, 0.4);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.fa-filter-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 6px 4px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 10px;
    cursor: default;
    text-align: center;
}

.fa-filter-btn.active {
    background: #FFFFFF;
    color: #C54D4E;
}

.fa-card-full {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.fa-filter-bar {
    display: flex;
    background: rgba(61, 16, 16, 0.45);
    padding: 3px;
    border-radius: 14px;
    gap: 4px;
}

.fa-filter-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    padding: 6px 8px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.fa-filter-btn.active {
    background: #FFFFFF;
    color: #C54D4E;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.fa-filter-btn.icon-btn {
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-cards-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.85fr;
    gap: 8px;
}

.fa-box {
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 16px;
    padding: 12px 10px;
    color: #FFFFFF;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fa-card-title {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fa-dist-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fa-dist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.14);
    padding: 4px 6px;
    border-radius: 8px;
    gap: 6px;
}

.fa-dist-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    flex: 1;
}

.fa-dist-favicon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.fa-dist-name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9.5px;
}

.fa-dist-time {
    font-weight: 500;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.fa-add-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #F86466;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    line-height: 1;
}

.fa-lost-prod {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fa-lost-num {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
}

.fa-lost-sub {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 3px;
    text-transform: uppercase;
}

.fa-small-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fa-small-card {
    padding: 6px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fa-small-title {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.2;
}

.fa-small-val {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-top: 2px;
}

/* Time Spent By Website Chart Card 1:1 */
.fa-chart-card {
    padding: 12px 14px;
}

.fa-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.fa-chart-title-group h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    color: #FFFFFF;
}

.fa-chart-subtitle {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
}

.fa-chart-summary-badge {
    text-align: right;
}

.fa-chart-sum-val {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

.fa-chart-sum-lbl {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.fa-summary-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.fa-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 8.5px;
    font-weight: 700;
}

.fa-stat-pill.warning {
    background: rgba(255, 179, 71, 0.2);
    color: #FFB347;
}

.fa-pill-val {
    color: #FFFFFF;
    font-weight: 900;
}

.fa-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fa-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
}

.fa-bar-label {
    width: 85px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.fa-bar-tag {
    font-size: 7.5px;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fa-bar-tag.tag-dist {
    background: #9F2B2C;
    color: #FFFFFF;
}

.fa-bar-tag.tag-prod {
    background: #76D18B;
    color: #14381C;
}

.fa-bar-track {
    flex: 1;
    height: 7px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.fa-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.fa-bar-fill.fill-dist {
    background: #FFFFFF;
}

.fa-bar-fill.fill-prod {
    background: #76D18B;
}

.fa-bar-time {
    width: 42px;
    text-align: right;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Screen Time Audit Card 1:1 */
.fa-audit-card {
    padding: 12px 14px;
}

.fa-audit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.fa-audit-title-group h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    color: #FFFFFF;
}

.fa-audit-subtitle {
    font-size: 8.5px;
    color: rgba(255, 255, 255, 0.75);
}

.fa-audit-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.fa-search-box {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2px 8px;
    gap: 5px;
    width: 140px;
    height: 22px;
}

.fa-search-box svg {
    color: #777;
    flex-shrink: 0;
}

.fa-search-box input {
    border: none;
    outline: none;
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    font-weight: 700;
    width: 100%;
    color: #333;
}

.fa-search-box input::placeholder {
    color: #999;
    font-weight: 400;
}

.fa-audit-actions {
    display: flex;
    gap: 4px;
}

.fa-action-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 7.5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.fa-sites-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.fa-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.12);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 9px;
}

.fa-table-left {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.fa-custom-check {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fa-custom-check svg {
    stroke: #F86466;
    stroke-width: 3;
}

.fa-table-name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fa-table-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.fa-bypass-badge {
    background: #9F2B2C;
    color: #FFFFFF;
    font-size: 7.5px;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
}

/* Interactive Plaque Highlights and Left Accents */
.interactive-point {
    cursor: pointer;
    border-radius: 12px;
    padding: 12px 14px;
    margin: -4px -14px;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.interactive-point:hover,
.interactive-point.active {
    background: rgba(248, 100, 102, 0.12);
    border-color: rgba(248, 100, 102, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.interactive-point.active .feature-icon-box {
    background: var(--wb-coral);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(248, 100, 102, 0.6);
}

.fa-interactive-plaque {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.fa-interactive-plaque:hover,
.fa-interactive-plaque.is-highlighted {
    box-shadow: 0 0 0 2px #FFFFFF, 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    z-index: 5;
}

.fa-interactive-plaque.is-highlighted::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.65);
    pointer-events: none;
    animation: plaqueGlow 2s infinite ease-in-out;
}

@keyframes plaqueGlow {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

/* 4. Notifications Card 1:1 */
.notif-bar {
    display: flex;
    gap: 6px;
    background: rgba(61, 16, 16, 0.4);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow-x: auto;
}

.notif-pill {
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.notif-pill.active {
    background: #FFFFFF;
    color: #C54D4E;
}

.notif-cards-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notif-card-item {
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 16px;
    padding: 12px 14px;
}

.notif-card-item.unread {
    background: #FA7678;
}

.notif-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.notif-tag {
    font-size: 9px;
    font-weight: 900;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.notif-time {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
}

.notif-msg {
    font-size: 12px;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

/* 5. Voting Card 1:1 */
.vote-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vote-badge {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 999px;
}

.vote-time-left {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.vote-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vote-item {
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 16px;
    padding: 12px 14px;
}

.vote-item.leader {
    background: #FA7678;
}

.vote-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.vote-item-name {
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
}

.vote-item-pct {
    font-weight: 900;
    font-size: 11px;
    color: #FFFFFF;
}

.vote-bar-bg {
    width: 100%;
    height: 7px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.vote-bar-fill {
    height: 100%;
    background: #FFFFFF;
    border-radius: 999px;
}

/* Step Cards for "Start Here" */
.steps-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.step-3-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--wb-transition);
    position: relative;
}

.step-3-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wb-border-accent);
    transform: translateY(-3px);
}

.step-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wb-coral);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--wb-coral-glow);
}

.step-3-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
}

.step-3-card p {
    font-size: 14px;
    color: var(--wb-text-muted);
    line-height: 1.5;
}

/* Architecture Diagram (Website vs Extension) */
.arch-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
}

.arch-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-md);
    padding: 20px;
    text-align: center;
}

.arch-node-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: rgba(248, 100, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wb-coral);
}

.arch-node h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.arch-node p {
    font-size: 12px;
    color: var(--wb-text-muted);
    line-height: 1.45;
}

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--wb-coral);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    gap: 6px;
}

.arch-connector svg {
    animation: flowPulse 2.4s infinite ease-in-out;
}

@keyframes flowPulse {
    0%, 100% { opacity: 0.55; filter: drop-shadow(0 0 0px transparent); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px var(--wb-coral-glow)); }
}

/* Protection Status Matrix (4 Cards) */
.status-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.status-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--wb-transition);
}

.status-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.status-stat-card.status-orange {
    border-color: var(--wb-orange-border);
    background: rgba(251, 146, 60, 0.06);
}

.status-stat-card.status-green {
    border-color: var(--wb-green-border);
    background: rgba(52, 211, 153, 0.06);
}

.status-stat-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 900;
    border: 4px solid var(--wb-border);
}

.status-stat-card.status-orange .status-stat-ring {
    border-color: var(--wb-orange);
    color: var(--wb-orange);
    box-shadow: 0 0 16px var(--wb-orange-bg);
}

.status-stat-card.status-green .status-stat-ring {
    border-color: var(--wb-green);
    color: var(--wb-green);
    box-shadow: 0 0 16px var(--wb-green-bg);
}

.status-stat-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.status-stat-card p {
    font-size: 12px;
    color: var(--wb-text-muted);
    line-height: 1.4;
}

/* Simulated Block List Row */
.sim-block-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sim-input-box {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.sim-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-sm);
    padding: 10px 14px;
    color: #FFFFFF;
    font-size: 13px;
    font-family: monospace;
}

.sim-add-btn {
    background: var(--wb-coral);
    color: #FFFFFF;
    border: none;
    border-radius: var(--wb-radius-sm);
    padding: 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: default;
}

.sim-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sim-domain-name {
    font-family: monospace;
    font-size: 13px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-badge-orange {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--wb-orange-bg);
    color: var(--wb-orange);
    border: 1px solid var(--wb-orange-border);
    padding: 2px 6px;
    border-radius: 4px;
}

.sim-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sim-toggle {
    width: 38px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    position: relative;
    transition: var(--wb-transition);
}

.sim-toggle.on {
    background: var(--wb-coral);
}

.sim-toggle-knob {
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--wb-transition);
}

.sim-toggle.on .sim-toggle-knob {
    left: 19px;
}

.sim-del-btn {
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

/* Password Levels Comparison */
.pass-levels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.pass-level-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pass-level-card.featured {
    border-color: var(--wb-coral);
    background: rgba(248, 100, 102, 0.06);
}

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

.pass-level-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.pass-level-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.pass-level-card.featured .pass-level-tag {
    background: var(--wb-coral);
}

.pass-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pass-feature-list li {
    font-size: 13px;
    color: var(--wb-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pass-feature-list li svg {
    color: var(--wb-coral);
    min-width: 16px;
}

/* Overview 2-Card Comparison */
.overview-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.overview-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--wb-transition);
}

.overview-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--wb-border-light);
    transform: translateY(-2px);
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wb-coral);
}

.overview-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.overview-card-question {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 6px 0;
}

.overview-card-desc {
    font-size: 14px;
    color: var(--wb-text-muted);
    line-height: 1.55;
}



/* Simple Routine (5 Steps) */
.routine-5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.routine-step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: var(--wb-transition);
}

.routine-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wb-border-accent);
    transform: translateY(-2px);
}

.routine-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--wb-coral);
}

.routine-step-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.routine-step-card p {
    font-size: 13px;
    color: var(--wb-text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Troubleshooting Checklist */
.trouble-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.trouble-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--wb-transition);
    cursor: pointer;
}

.trouble-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wb-border-light);
}

.trouble-check-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 2px solid var(--wb-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--wb-transition);
}

.trouble-item.checked .trouble-check-circle {
    background: var(--wb-green);
    border-color: var(--wb-green);
    color: #FFFFFF;
}

.trouble-text-wrap h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.trouble-text-wrap p {
    font-size: 13px;
    color: var(--wb-text-muted);
}

/* Final CTA Section */
.guide-final-cta {
    background: linear-gradient(135deg, rgba(131, 34, 35, 0.9), rgba(107, 28, 29, 0.95));
    border: 1px solid var(--wb-border-light);
    border-radius: var(--wb-radius-xl);
    padding: 60px 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.guide-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, var(--wb-coral-glow) 0%, transparent 70%);
    pointer-events: none;
}

.guide-final-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.guide-final-lead {
    font-size: 17px;
    color: var(--wb-text-muted);
    max-width: 650px;
    margin: 0 auto 32px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1080px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .status-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routine-5-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-page-wrapper {
        padding: 24px 16px 80px;
    }
    
    .guide-hero {
        padding: 30px 10px 24px;
    }
    
    .guide-hero-title {
        font-size: 32px;
    }
    
    .guide-hero-lead {
        font-size: 16px;
    }
    
    .guide-nav-wrapper {
        top: 60px;
    }
    
    .guide-nav-container {
        padding: 8px 12px;
    }
    
    .guide-card-main {
        padding: 24px 18px;
        border-radius: var(--wb-radius-lg);
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .steps-3-grid {
        grid-template-columns: 1fr;
    }
    
    .arch-diagram {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .arch-connector {
        margin: 8px 0;
    }
    
    .arch-connector svg {
        transform: rotate(90deg);
    }
    
    .status-matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .pass-levels-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .fa-cards-row {
        grid-template-columns: 1fr;
    }
    
    .routine-5-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-final-cta {
        padding: 40px 20px;
    }
    
    .guide-final-title {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
