/* ============================================================
   CSS VARIABLES & THEME
============================================================ */
:root {
    --gold: #F5A623;
    --gold-light: #FFD166;
    --green: #22C55E;
    --green-bright: #00FF88;
    --blue: #3B82F6;
    --blue-bright: #60A5FA;
    --purple: #A855F7;
    --red-alert: #EF4444;
    /* Dark theme (default) */
    --bg-primary: #060C1A;
    --bg-secondary: #0A1628;
    --bg-card: #0D1B2E;
    --bg-card-hover: #112238;
    --bg-overlay: rgba(6,12,26,0.85);
    --border: rgba(255,255,255,0.07);
    --border-bright: rgba(255,255,255,0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --glow-blue: rgba(59,130,246,0.3);
    --glow-green: rgba(34,197,94,0.3);
    --glow-gold: rgba(245,166,35,0.3);
    --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
    --nav-bg: rgba(6,12,26,0.92);
}

[data-theme="light"] {
    --bg-primary: #F0F4FF;
    --bg-secondary: #E8EEFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFF;
    --bg-overlay: rgba(240,244,255,0.92);
    --border: rgba(0,0,0,0.08);
    --border-bright: rgba(0,0,0,0.15);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --glow-blue: rgba(59,130,246,0.15);
    --glow-green: rgba(34,197,94,0.15);
    --glow-gold: rgba(245,166,35,0.15);
    --shadow-card: 0 4px 32px rgba(0,0,0,0.1);
    --nav-bg: rgba(240,244,255,0.95);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}*/

img {
    max-width: 100%;
    border-radius: 20px;
}

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

/*ul {
    list-style: none;
}*/

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 3px;
}

/* ============================================================
   ANIMATED BACKGROUND PARTICLES
============================================================ */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

[data-theme="light"] #particles {
    opacity: 0.12;
}

/* ============================================================
   NAVIGATION
============================================================ */
/*nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

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

.theme-toggle {
    width: 44px;
    height: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}

    .theme-toggle::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        background: var(--gold);
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: transform 0.3s;
    }

[data-theme="light"] .theme-toggle::after {
    transform: translateX(20px);
}*/

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

    .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ============================================================
   SECTION WRAPPER
============================================================ */
section {
    position: relative;
    z-index: 1;
    /*padding: 80px 80px;*/
}

.hiw-container {
    /* Same 1200px content column the home page uses (.ycontainer,
       .fcontainer, .tcontainer …). Without it the sections ran the full
       width of the screen. */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad {
    padding: 80px 0;
}

/* ============================================================
   SECTION 1 – HERO / HOW IT WORKS
============================================================ */
#hiw-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59,130,246,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 30%, rgba(34,197,94,0.08) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 95% 70%, rgba(245,166,35,0.08) 0%, transparent 50%), var(--bg-primary);
}

body.light-mode #hiw-hero {
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59,130,246,0.16) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 30%, rgba(34,197,94,0.12) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 95% 70%, rgba(245,166,35,0.14) 0%, transparent 50%), #f6fbff;
}

#hiw-hero > .container {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 70px;
    padding-right: 70px;
}

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 2.5rem;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-left,
.hero-content {
    position: relative;
    z-index: 5;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

    .hero-title .accent {
        color: var(--gold);
    }

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold,
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #000;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
}

.btn-gold {
    background: var(--gold);
    box-shadow: 0 0 24px rgba(245,166,35,0.4);
}

.btn-green {
    background: var(--green);
    box-shadow: 0 0 24px rgba(34,197,94,0.35);
}

    .btn-gold:hover,
    .btn-green:hover {
        transform: translateY(-2px);
    }

.hero-badges {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 3rem;
    max-width: 560px;
}

.badge {
    position: relative;
    z-index: 21;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 12px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

body.light-mode .badge {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,30,70,0.08);
    box-shadow: 0 10px 30px rgba(0,30,70,0.06);
}

.badge-title {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--text-primary);
    text-wrap:wrap;
}

.badge-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-bottom: 4px;
    line-height: 1.45;
}

.layers-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    overflow: hidden;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

    .layers-visual img {
        width: 100%;
        max-width: 780px;
        height: auto;
        display: block;
        border-radius: 28px;
        position: relative;
        z-index: 1;
    }

body.light-mode .layers-visual {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,30,70,0.08);
    box-shadow: 0 28px 70px rgba(10,40,80,0.14);
}

    body.light-mode .layers-visual img {
        filter: brightness(1.04) contrast(0.96);
    }

.hero-bottom-bar {
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem;
}

.bottom-bar-items {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .bottom-bar-item span {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

.hiw-icon {
    width: 40px;
    height: 40px;
    color: var(--green);
}

    .hiw-icon svg {
        width: 40px;
        height: 100%;
        display: block;
    }

.bottom-bar-item .hiw-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.badge .hiw-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
}

.hiw-icon-blue,
.icon-blue {
    color: #1ea7ff !important;
}

.hiw-icon-green,
.icon-green {
    color: #26f46a !important;
}

.hiw-icon-gold,
.icon-gold {
    color: #ffc21a !important;
}

.hiw-icon-purple,
.icon-purple {
    color: #c06cff !important;
}

.hiw-icon svg * {
    vector-effect: non-scaling-stroke;
}

/* Tablet */
@media (max-width: 991px) {
    #hiw-hero {
        min-height: auto;
    }

        #hiw-hero > .hiw-container {
            padding-left: 24px;
            padding-right: 24px;
        }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 70px 0 50px;
        text-align: center;
    }

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

    .btn-group {
        justify-content: center;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .badge {
        align-items: center;
    }

    .layers-visual {
        max-width: 680px;
        margin: 0 auto;
        border-radius: 30px;
    }

        .layers-visual img {
            max-width: 620px;
            border-radius: 24px;
        }
}

/* Mobile */
@media (max-width: 575px) {
    #hiw-hero > .hiw-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-inner {
        padding: 55px 0 40px;
    }

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

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

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,
    .btn-green {
        width: 100%;
        max-width: 330px;
    }

    .hero-badges {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .badge {
        padding: 12px 8px;
    }

    .layers-visual {
        padding: 8px;
        border-radius: 22px;
    }

        .layers-visual img {
            border-radius: 18px;
        }

    .hero-bottom-bar {
        padding: 1rem;
    }

    .bottom-bar-items {
        gap: 1.2rem;
        justify-content: flex-start;
    }

    .bottom-bar-item {
        width: 100%;
    }
}
/* ============================================================
   SECTION 2 – HIDDEN RISK / PROTECTION JOURNEY
============================================================ */
#journey {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 100px 80px;
}

.section-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.journey-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 3rem;
}

    .journey-flow::before {
        content: '';
        position: absolute;
        top: 60px;
        left: calc(100%/12);
        right: calc(100%/12);
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--red-alert), var(--green));
        z-index: 0;
    }

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0 0.5rem;
    z-index: 1;
}

.journey-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    transition: transform 0.3s;
}

    .journey-icon-wrap:hover {
        transform: scale(1.1);
    }

    .journey-icon-wrap.threat {
        border-color: rgba(239,68,68,0.5);
        box-shadow: 0 0 20px rgba(239,68,68,0.2);
    }

    .journey-icon-wrap.safe {
        border-color: rgba(34,197,94,0.5);
        box-shadow: 0 0 20px rgba(34,197,94,0.2);
    }

.journey-attack-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--red-alert);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.journey-step-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.journey-step-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.attack-flow-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.attack-step {
    background: var(--bg-card);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.attack-step-icon {
    font-size: 1.75rem;
}

.attack-step-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.attack-step-defend {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
}

.attack-step-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.journey-cta-bar {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1));
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 16px;
    padding: 20px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.journey-cta-icon {
    font-size: 3.5rem;
}

.journey-cta-title {
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.journey-cta-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

    .check-item::before {
        content: '✓';
        color: var(--green);
        font-weight: 700;
        flex-shrink: 0;
    }


.attack-flow-row {
    max-width: 1450px;
    margin: 0 auto 30px;
    padding: 28px 40px;
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
    align-items: center;
    gap: 18px;
    background: rgba(2, 22, 48, 0.78);
    border: 1px solid rgba(0, 147, 255, 0.25);
    border-radius: 16px;
    box-shadow: inset 0 0 35px rgba(0, 132, 255, 0.08), 0 0 35px rgba(0, 0, 0, 0.22);
}

.attack-step {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.attack-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .attack-step-icon img {
        width: 62px;
        height: 62px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 0 10px rgba(255, 49, 49, 0.55));
    }

.attack-step-title {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.attack-step-defend {
    font-size: 10px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
}

.attack-step-desc {
    display: none;
}

.attack-arrow {
    color: rgba(88, 158, 235, 0.75);
    font-size: 42px;
    line-height: 1;
    font-weight: 200;
    text-align: center;
    transform: translateY(-2px);
}

body.light-mode .attack-flow-row {
    background: rgba(245, 250, 255, 0.88);
    border-color: rgba(0, 110, 210, 0.18);
}

body.light-mode .attack-step-title {
    color: #071428;
}

body.light-mode .attack-step-defend {
    color: rgba(7, 20, 40, 0.75);
}

@media (max-width: 1200px) {
    .attack-flow-row {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
    }

    .attack-arrow {
        transform: rotate(90deg);
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    #journey {
        padding: 70px 18px;
    }

    .attack-flow-row {
        padding: 10px;
    }

    .attack-step {
        grid-template-columns: 56px 1fr;
        gap: 10px;
    }

    .attack-step-icon,
    .attack-step-icon img {
        width: 40px;
        height: 40px;
    }

    .attack-step-title {
        font-size: 12px;
    }

    .attack-step-defend {
        font-size: 10px;
    }
}


/* ============================================================
   SECTION 3 – SAFERNET (LAYER 1)
============================================================ */
#safernet {
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, var(--bg-primary) 50%, rgba(59,130,246,0.04) 100%);
    padding: 80px 80px;
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.product-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-badge {
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--blue-bright);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

    .product-badge.green {
        background: rgba(34,197,94,0.15);
        border-color: rgba(34,197,94,0.3);
        color: var(--green);
    }

    .product-badge.gold {
        background: rgba(245,166,35,0.15);
        border-color: rgba(245,166,35,0.3);
        color: var(--gold);
    }

.product-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

    .feat-icon-box.blue {
        background: rgba(59,130,246,0.12);
        border: 1px solid rgba(59,130,246,0.2);
    }

    .feat-icon-box.green {
        background: rgba(34,197,94,0.12);
        border: 1px solid rgba(34,197,94,0.2);
    }

    .feat-icon-box.gold {
        background: rgba(245,166,35,0.12);
        border: 1px solid rgba(245,166,35,0.2);
    }

.feat-text-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

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

.product-cta-strip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .product-cta-strip:hover {
        border-color: var(--blue-bright);
    }

    .product-cta-strip.green:hover {
        border-color: var(--green);
    }

    .product-cta-strip.gold:hover {
        border-color: var(--gold);
    }

.product-cta-text-title {
    font-weight: 700;
    font-size: 0.9rem;
}

    .product-cta-text-title.blue {
        color: var(--blue-bright);
    }

    .product-cta-text-title.green {
        color: var(--green);
    }

    .product-cta-text-title.gold {
        color: var(--gold);
    }

.product-cta-text-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Dashboard mockup */
.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    animation: floatY 4s ease-in-out infinite;
}

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

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

.mockup-header {
    background: var(--bg-secondary);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
}

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

    .mockup-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

.dot-red {
    background: #FF5F57;
}

.dot-yellow {
    background: #FEBC2E;
}

.dot-green {
    background: #28C840;
}

.mockup-title-bar {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    padding: 1.25rem;
}

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

.stat-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid var(--border);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 600;
}

    .stat-value.blue {
        color: var(--blue-bright);
    }

    .stat-value.green {
        color: var(--green);
    }

    .stat-value.gold {
        color: var(--gold);
    }

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

.progress-section {
    margin-bottom: 1rem;
}

.progress-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.progress-bar-bg {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

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

.device-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 0.6rem;
    text-align: center;
    border: 1px solid var(--border);
}

.device-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.device-name {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.device-status {
    font-size: 0.65rem;
    color: var(--green);
}

/* ============================================================
   SECTION 4 – ZED (LAYER 2)
============================================================ */
#zed {
    background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, var(--bg-primary) 50%, rgba(34,197,94,0.04) 100%);
    padding: 80px 80px;
}

.zed-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zed-dashboard {
    background: var(--bg-card);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(34,197,94,0.1);
    animation: floatY 5s ease-in-out infinite;
}

.zed-nav {
    background: var(--bg-secondary);
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.zed-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
}

.zed-nav-tabs {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.zed-tab {
    font-size: 0.72rem;
    color: var(--text-muted);
    cursor: pointer;
}

    .zed-tab.active {
        color: var(--green);
        border-bottom: 2px solid var(--green);
        padding-bottom: 2px;
    }

.zed-body {
    padding: 1.25rem;
}

.zed-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.zed-stat {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid var(--border);
}

.zed-stat-num {
    font-size: 1.4rem;
    font-weight: 600;
}

    .zed-stat-num.green {
        color: var(--green);
    }

    .zed-stat-num.gold {
        color: var(--gold);
    }

    .zed-stat-num.red {
        color: var(--red-alert);
    }

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

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

.zed-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border);
}

.zed-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.zed-card-sub {
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.mini-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

    .mini-stat strong {
        color: var(--text-primary);
        font-size: 1rem;
        display: block;
    }

        .mini-stat strong.red {
            color: var(--red-alert);
        }

.donut-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donut {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#EF4444 0 5.7%, var(--gold) 5.7% 18.9%, #F59E0B 18.9% 68.4%, var(--green) 68.4% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

    .donut::after {
        content: '317';
        font-size: 0.7rem;
        font-weight: 600;
        position: absolute;
        inset: 12px;
        background: var(--bg-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
    }

.legend {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.scan-map {
    height: 80px;
    background: var(--bg-card);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

    .scan-map::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(34,197,94,0.3) 0%, transparent 40%), radial-gradient(circle at 70% 30%, rgba(34,197,94,0.2) 0%, transparent 30%);
        animation: pulse 2s ease infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.score-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 76%, var(--border) 76% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

    .score-ring::after {
        content: '76';
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--green);
        position: absolute;
        inset: 10px;
        background: var(--bg-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.score-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.score-good {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
}

.zed-bottom-bar {
    background: rgba(34,197,94,0.08);
    border-top: 1px solid rgba(34,197,94,0.2);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .zed-bottom-bar span {
        font-size: 0.72rem;
        color: var(--text-muted);
    }

    .zed-bottom-bar strong {
        color: var(--green);
    }

/* ============================================================
   SECTION 5 – COMPLIANCE (LAYER 3)
============================================================ */
#compliance {
    background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, var(--bg-primary) 50%, rgba(245,166,35,0.04) 100%);
    padding: 100px 0;
}

.compliance-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.compliance-logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.compliance-logo-card {
    background: var(--bg-card);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .compliance-logo-card:hover {
        transform: translateY(-4px);
        border-color: var(--gold);
    }

.compliance-logo-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.compliance-logo-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.compliance-logo-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.compliance-dashboard {
    background: var(--bg-card);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 0 40px rgba(245,166,35,0.08);
}

.compliance-dash-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

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

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

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

.comp-stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

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

.brand-bottom {
    background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.04));
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.brand-logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

    .brand-logo-text span {
        color: var(--gold);
    }

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

    .brand-tagline strong {
        color: var(--gold);
    }

.comp-bottom-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.comp-bottom-icon {
    font-size: 2.5rem;
}

.comp-bottom-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.comp-bottom-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.comp-chips {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.comp-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

    .comp-chip::before {
        content: '↘';
        font-size: 0.65rem;
        color: var(--text-muted);
    }

/* ============================================================
   SECTION 6 – COMPLETE PROTECTION (3 LAYERS OVERVIEW)
============================================================ */
#overview {
    /*background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59,130,246,0.1) 0%, transparent 60%), var(--bg-secondary);*/
    background-color:##000B1F;
    padding: 80px 80px;
}

.three-cards {
    display: flex;
    /*grid-template-columns: repeat(3, 1fr);*/
    
    /*gap: 1.5rem;
    margin-top: 3.5rem;*/
    -webkit-align-items: center;
    align-items: center;
}

.big-layer-card {
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .big-layer-card:hover {
        transform: translateY(-8px);
    }

    .big-layer-card.blue {
        border-color: rgba(59,130,246,0.3);
    }

        .big-layer-card.blue:hover {
            box-shadow: 0 20px 60px rgba(59,130,246,0.2);
        }

    .big-layer-card.green {
        border-color: rgba(34,197,94,0.3);
    }

        .big-layer-card.green:hover {
            box-shadow: 0 20px 60px rgba(34,197,94,0.2);
        }

    .big-layer-card.gold {
        border-color: rgba(245,166,35,0.3);
    }

        .big-layer-card.gold:hover {
            box-shadow: 0 20px 60px rgba(245,166,35,0.2);
        }

.big-layer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

    .big-layer-glow.blue {
        background: var(--blue);
        box-shadow: 0 0 20px var(--blue);
    }

    .big-layer-glow.green {
        background: var(--green);
        box-shadow: 0 0 20px var(--green);
    }

    .big-layer-glow.gold {
        background: var(--gold);
        box-shadow: 0 0 20px var(--gold);
    }

.big-layer-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

    .big-layer-badge.blue {
        background: rgba(59,130,246,0.12);
        color: var(--blue-bright);
    }

    .big-layer-badge.green {
        background: rgba(34,197,94,0.12);
        color: var(--green);
    }

    .big-layer-badge.gold {
        background: rgba(245,166,35,0.12);
        color: var(--gold);
    }

.big-layer-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.big-layer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

    .big-layer-title.blue {
        color: var(--blue-bright);
    }

    .big-layer-title.green {
        color: var(--green);
    }

    .big-layer-title.gold {
        color: var(--gold);
    }

.big-layer-sub {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.big-feat-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.big-feat-item {
    display: flex;
    gap: 0.75rem;
}

.big-feat-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.big-feat-title {
    font-size: 0.82rem;
    font-weight: 700;
}

.big-feat-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.compliance-icons-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.c-icon {
    background: var(--bg-secondary);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
}

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

.overview-bottom-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.overview-bottom-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overview-bottom-title {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.overview-bottom-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================================
   SECTION 7 – WHY IT WORKS
============================================================ */
#why {
    background: var(--bg-primary);
    padding: 100px 0;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

    .why-card:hover {
        transform: translateY(-6px);
    }

    .why-card:nth-child(1):hover {
        border-color: rgba(59,130,246,0.4);
    }

    .why-card:nth-child(2):hover {
        border-color: rgba(34,197,94,0.4);
    }

    .why-card:nth-child(3):hover {
        border-color: rgba(59,130,246,0.4);
    }

    .why-card:nth-child(4):hover {
        border-color: rgba(245,166,35,0.4);
    }

    .why-card:nth-child(5):hover {
        border-color: rgba(168,85,247,0.4);
    }

.why-card-img {
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 3.5rem;
    background: var(--bg-secondary);
}

.why-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

    .why-card-title span {
        display: block;
    }

    .why-card-title .accent-blue {
        color: var(--blue-bright);
    }

    .why-card-title .accent-green {
        color: var(--green);
    }

    .why-card-title .accent-gold {
        color: var(--gold);
    }

    .why-card-title .accent-purple {
        color: var(--purple);
    }

.why-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex: 1;
}

.why-card-feats {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.why-feat {
    font-size: 0.72rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .why-feat::before {
        content: '✓';
        color: var(--green);
        font-size: 0.7rem;
    }

.why-stats-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto repeat(4, auto);
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.why-stats-text .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.why-stats-text .desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

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

.big-stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    display: block;
}

    .big-stat-value.green {
        color: var(--green);
    }

    .big-stat-value.blue {
        color: var(--blue-bright);
    }

    .big-stat-value.gold {
        color: var(--gold);
    }

    .big-stat-value.purple {
        color: var(--purple);
    }

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

/* ============================================================
   SECTION 8 – CTA / READY
============================================================ */
#hiw-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 900px;
    padding: 280px 0 70px;
    background-image: url('../images/howitwork/sec8-main01-01.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 85% auto;

}

.hiw-cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    margin: 0 auto 1.25rem;
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 6px 22px rgba(0,0,0,.65);
}

    .cta-title .accent {
        color: #f5a623;
    }

.cta-desc {
    max-width: 760px;
    margin: 0 auto 3rem;
    font-size: clamp(1rem, 1.4vw, 1.45rem);
    line-height: 1.55;
    color: rgba(255,255,255,.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .cta-buttons button {
        min-width: 300px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        border-radius: 10px;
    }

.cta-bottom-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
    margin: clamp(80px, 15vw, 105px) auto 0;
    color: #fff;
}

.cta-bottom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0 1.6rem;
    border-right: 1px solid rgba(255,255,255,.25);
}

    .cta-bottom-item:last-child {
        border-right: 0;
    }

.cta-bottom-icon {
    font-size: 2rem;
    flex: 0 0 auto;
}

.cta-bottom-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .35rem;
    color: #fff;
}

.cta-bottom-desc {
    font-size: .9rem;
    line-height: 1.4;
    color: rgba(255,255,255,.78);
}

/* Tablet */
@media (max-width: 991px) {
    #hiw-cta {
        min-height: 820px;
        padding: 250px 20px 50px;
        background-position: center top;
        background-size: auto 100%;
    }

    .cta-bottom-items {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 90px;
        gap: 1.3rem;
    }

    .cta-bottom-item {
        border-right: 0;
        background: rgba(0,0,0,.25);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 14px;
        padding: 1rem;
    }
}

/* Mobile */
@media (max-width: 575px) {
    #hiw-cta {
        min-height: 780px;
        padding: 210px 14px 35px;
        background-position: center top;
        background-size: auto 100%;
    }

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

    .cta-desc {
        font-size: .95rem;
        margin-bottom: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

        .cta-buttons button {
            width: 100%;
            min-width: 0;
            max-width: 340px;
        }

    .cta-bottom-items {
        grid-template-columns: 1fr;
        margin-top: 55px;
        gap: .9rem;
    }

    .cta-bottom-item {
        padding: .85rem 1rem;
    }
}
/*#hiw-cta {
    position: relative;
    min-height: 100vh;
    padding: 260px 0 70px;
    overflow: hidden;
    text-align: center;
    background-image: url('../images/howitwork/sec8-main01-01.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.hiw-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(1, 8, 24, 0.05) 0%, rgba(1, 8, 24, 0.10) 45%, rgba(1, 8, 24, 0.45) 100% );
    pointer-events: none;
}

.hiw-cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    margin-top: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}

    .cta-title .accent {
        color: var(--gold);
    }

.cta-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.86);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-buttons button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

.cta-bottom-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 11rem auto 0;
    color: #fff;
}

.cta-bottom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.25);
}

    .cta-bottom-item:last-child {
        border-right: 0;
    }

.cta-bottom-icon {
    font-size: 2rem;
    flex: 0 0 auto;
}

.cta-bottom-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.cta-bottom-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
}*/

/* Tablet */
/*@media (max-width: 991px) {
    #hiw-cta {
        min-height: 760px;
        padding: 230px 0 50px;
        background-position: center top;
    }

    .cta-bottom-items {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 7rem;
        gap: 1.5rem;
    }

    .cta-bottom-item {
        border-right: 0;
        justify-content: center;
    }
}*/

/* Mobile */
/*@media (max-width: 575px) {
    #hiw-cta {
        min-height: 680px;
        padding: 190px 16px 40px;
        background-size: cover;
        background-position: center top;
    }

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

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

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

        .cta-buttons button {
            width: 100%;
            max-width: 330px;
        }

    .cta-bottom-items {
        grid-template-columns: 1fr;
        margin-top: 4rem;
        gap: 1rem;
    }

    .cta-bottom-item {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: rgba(0,0,0,0.25);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
    }
}*/

/*#hiw-cta {
    position: relative;
    min-height: 100vh;*/
    /*background-image: url('../images/howitwork/sec8-main01-01.png');*/
    /*background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
}

.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), #C8780A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(245,166,35,0.4);
    animation: glow-pulse 3s ease infinite;
}

@keyframes glow-pulse {
    0%,100% {
        box-shadow: 0 0 40px rgba(245,166,35,0.4);
    }

    50% {
        box-shadow: 0 0 70px rgba(245,166,35,0.7);
    }
}

.cta-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
}

    .cta-brand span {
        color: var(--gold);
        display: block;
    }

.cta-title {
    margin-top: 2.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

    .cta-title .accent {
        color: var(--gold);
    }

.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-bottom-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

.cta-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-bottom-icon {
    font-size: 1.75rem;
}

.cta-bottom-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.cta-bottom-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.stage-visual {
    width: 300px;
    height: 60px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 3rem;
    border-radius: 999px;
    opacity: 0.3;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0%,100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}*/



/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================================
   CANVAS PARTICLES
============================================================ */
canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 1rem;
        color: var(--text-secondary);
        padding: 0.5rem 0;
    }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .layers-visual {
        display: flex;
        grid-template-columns: repeat(3, 1fr);
    }

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

    .product-section, .zed-inner, .compliance-inner {
        grid-template-columns: 1fr;
    }

    .three-cards {
        grid-template-columns: 1fr;
    }

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

    .why-stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stats-divider {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .journey-flow {
        grid-template-columns: repeat(3, 1fr);
    }

    .attack-flow-row {
        grid-template-columns: 1fr 1fr;
    }

    .overview-bottom {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-inner {
        padding: 40px 0;
        gap: 2rem;
    }

    .layers-visual {
        grid-template-columns: 1fr;
    }

    .three-cards {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 1.25rem;
        gap: 1.25rem;
    }

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

    .attack-flow-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .hero-badges {
        grid-template-columns: 1fr 1fr;
    }

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

    .journey-cta-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .hiw-container {
        padding: 0 1rem;
    }

    nav {
        padding: 0 1rem;
    }
}



/* ══════════════════════════════════════════════════
   MOBILE GUTTERS
   #journey / #safernet / #zed / #overview each carry a fixed 80px
   inline padding, and .hiw-container adds 2rem more. On a 390px screen
   that left ~160px of usable width and pushed .product-section past
   the viewport. Below 991px the sections run edge to edge and
   .hiw-container is the single source of the gutter.
   ══════════════════════════════════════════════════ */
@media (max-width: 991px) {
    #journey,
    #safernet,
    #zed,
    #overview {
        padding-left: 0;
        padding-right: 0;
    }

    .hiw-container {
        padding-left: 24px;
        padding-right: 24px;
        /* #hiw-hero is a flex column; without this the container keeps
           its min-content width and spills past the screen edge. */
        min-width: 0;
    }

    /* A plain 1fr track floors at the item's min-content, and an <img>
       with a percentage max-width reports its intrinsic width there, so
       the product screenshots refused to shrink below ~349px. */
    .product-section {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575px) {
    .hiw-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* 1fr floors at each badge's min-content (159px + 191px), 5px more
       than the container allows. minmax(0,1fr) lets the labels wrap. */
    .hero-badges,
    .cta-bottom-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Icon, copy and chevron on one nowrap line don't fit a phone. */
    .product-cta-strip {
        flex-wrap: wrap;
    }

    /* Four device tiles need ~348px. The column count is an inline style
       on the element, so !important is the only way to override it. */
    .hiw-device-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 400px) {
    /* Two badges still leave the description 3px short at 320px. */
    .hero-badges {
        grid-template-columns: 1fr;
    }
}
