/* ========================
   SEVERIS — Bento Design
   ======================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
    --white:   #ffffff;
    --off:     #f8f7f4;
    --ink:     #0c0c0e;
    --ink2:    #1a1a1d;
    --muted:   #6b7280;
    --border:  #e5e3de;
    --purple:  #6d28d9;
    --purple2: #8b5cf6;
    --purple-bg: #f5f0ff;
    --font-body: 'Inter', sans-serif;
    --font-disp: 'Space Grotesk', sans-serif;
    --tr: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 0 40px; height: 60px;
    display: flex; align-items: center;
    background: rgba(255,255,255,0.88); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner { width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-logo span { font-family: var(--font-disp); font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; color: var(--ink); }
.footer-logo-img { height: 48px; width: auto; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo-link span { font-family: var(--font-disp); font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a, .nav-drop > span {
    padding: 6px 14px; font-size: 0.85rem; font-weight: 500; color: var(--muted);
    border-radius: 6px; cursor: pointer; transition: var(--tr); display: block;
}
.nav-links a:hover, .nav-drop:hover > span { color: var(--ink); background: var(--off); }
.nav-drop { position: relative; }
.nav-drop-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 6px; min-width: 200px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--tr);
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a { display: block; padding: 9px 14px; font-size: 0.85rem; color: var(--muted); border-radius: 8px; transition: var(--tr); }
.nav-drop-menu a:hover { background: var(--off); color: var(--ink); }
.nav-cta {
    padding: 8px 18px; background: var(--ink); color: var(--white);
    border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: var(--tr);
}
.nav-cta:hover { background: var(--ink2); transform: translateY(-1px); }

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding: 120px 40px 60px; max-width: 1280px; margin: 0 auto;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 36px;
}
.dot { width: 7px; height: 7px; background: var(--purple); border-radius: 50%; display: inline-block; }
.hero-h1 {
    font-family: var(--font-disp); display: flex; flex-direction: column;
    font-weight: 800; line-height: 0.95; margin-bottom: 32px;
}
.hero-line-1 { font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.04em; color: var(--ink); }
.hero-line-2 { font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.04em; color: var(--ink); }
.hero-line-3 {
    font-size: clamp(1.4rem, 3.2vw, 3rem); letter-spacing: -0.03em;
    color: var(--muted); font-weight: 700;
}
.hero-line-3 em { font-style: italic; color: var(--purple); }
.hero-sub {
    font-size: 1.05rem; color: var(--muted); max-width: 540px; line-height: 1.7;
    margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; }
.btn-main {
    padding: 14px 28px; background: var(--ink); color: var(--white);
    border-radius: 10px; font-size: 0.95rem; font-weight: 700; transition: var(--tr);
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-main:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,40,217,0.3); }
.btn-main-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-ghost {
    padding: 14px 24px; color: var(--muted); font-size: 0.9rem;
    font-weight: 500; border: 1px solid var(--border); border-radius: 10px; transition: var(--tr);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ======================== STATS STRIP ======================== */
.stats-strip {
    background: var(--ink); color: var(--white);
    overflow: hidden; padding: 18px 0;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
    display: flex; align-items: center; gap: 0;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: baseline; gap: 8px; padding: 0 32px; white-space: nowrap; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.ticker-item span { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.ticker-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======================== BENTO GRID ======================== */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 80px 40px;
    max-width: 1280px; margin: 0 auto;
}

.bento-card {
    border-radius: 20px; padding: 40px;
    position: relative; overflow: hidden;
    transition: var(--tr); display: block;
    border: 1px solid var(--border);
    background: var(--off);
}
.bento-card:is(a):hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

/* Layout positions */
.bento-large  { background: var(--ink); color: var(--white); border-color: transparent; min-height: 340px; }
.bento-medium { min-height: 340px; }
.bento-quote  { display: flex; flex-direction: column; justify-content: center; }

/* Positions nth-child */
.bento > .bento-card:nth-child(1) { grid-column: 1 / 5;  grid-row: 1; }
.bento > .bento-card:nth-child(2) { grid-column: 5 / 9;  grid-row: 1; }
.bento > .bento-card:nth-child(3) { grid-column: 9 / 13; grid-row: 1; background: var(--purple-bg); border-color: rgba(109,40,217,0.15); }
.bento > .bento-card:nth-child(4) { grid-column: 1 / 13; grid-row: 2; padding: 32px 48px; }

.bento-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.5; margin-bottom: 20px; }
.bento-badge {
    display: inline-block; padding: 4px 10px; background: var(--purple); color: var(--white);
    border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 16px;
}
.bento-card h2 { font-family: var(--font-disp); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.bento-card p { font-size: 0.9rem; line-height: 1.6; opacity: 0.7; max-width: 300px; }
.bento-arrow { position: absolute; bottom: 32px; right: 32px; font-size: 1.5rem; opacity: 0.4; transition: var(--tr); }
.bento-card:is(a):hover .bento-arrow { opacity: 1; transform: translate(3px, -3px); }
.bento-stat-number { font-family: var(--font-disp); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--purple); }
.bento-stat-unit { font-size: 0.45em; font-weight: 700; opacity: 0.7; vertical-align: super; margin-left: 3px; }
.bento-stat-top { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.45; margin-bottom: auto; padding-bottom: 24px; }
.bento-dark .bento-stat-number { color: var(--purple2); }
.bento-stat p { font-size: 0.78rem; opacity: 0.4; line-height: 1.4; }
blockquote { font-family: var(--font-disp); font-size: 1.2rem; font-weight: 700; font-style: italic; line-height: 1.4; margin-bottom: 12px; }
cite { font-size: 0.78rem; opacity: 0.5; font-style: normal; }
.bento-bg-shape {
    position: absolute; bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(109,40,217,0.2) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}

/* ======================== GLOBE HERO ======================== */
.globe-hero {
    background: var(--ink); min-height: 540px;
    display: flex; flex-direction: row; align-items: center;
    padding: 60px 80px; gap: 20px;
}
#globe-bg {
    flex: 0 0 480px; width: 480px; height: 480px;
    position: relative; overflow: hidden;
    pointer-events: none; order: 2;
}
#globe-bg canvas { display: block !important; position: relative !important; }
.globe-hero-inner {
    flex: 1; z-index: 2; order: 1;
}
@media (max-width: 900px) {
    .globe-hero { flex-direction: column; padding: 60px 24px; }
    #globe-bg { flex: 0 0 300px; width: 300px; height: 300px; }
}.globe-hero .hero-eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.globe-hero .dot { background: var(--purple2); }
.globe-hero-h2 {
    font-family: var(--font-disp); display: flex; flex-direction: column;
    font-weight: 700; line-height: 1; margin-bottom: 28px;
}
.globe-hero-h2 span:nth-child(1),
.globe-hero-h2 span:nth-child(2) { font-size: clamp(2.4rem, 5.5vw, 5rem); letter-spacing: -0.03em; color: var(--white); }
.globe-hero-h2 span:nth-child(3) { font-size: clamp(1.3rem, 2.8vw, 2.4rem); color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 4px; }
.globe-hero-h2 em { font-style: italic; color: var(--purple2); }
.globe-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.4); max-width: 500px; line-height: 1.75; }
@media (max-width: 900px) { .globe-hero-sub { max-width: 100%; } }

/* ======================== ABOUT ======================== */
.about-section { padding: 100px 40px; background: var(--off); border-top: 1px solid var(--border); }
.about-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.about-top .eyebrow { margin-bottom: 24px; }
.about-top h2 {
    font-family: var(--font-disp); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -0.02em;
    max-width: 700px;
}
.about-top h2 em { font-style: italic; color: var(--purple); }
.about-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding-top: 40px; border-top: 1px solid var(--border); }
.about-text p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.about-badge {
    padding: 8px 16px; background: var(--white); border: 1px solid var(--border);
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    color: var(--ink); letter-spacing: 0.04em;
    transition: var(--tr);
}
.about-badge:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ======================== PILLARS ======================== */
.pillars-section { padding: 80px 40px 100px; max-width: 1280px; margin: 0 auto; }
.pillars-header { margin-bottom: 64px; }
.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 12px; }
.pillars-header h2 { font-family: var(--font-disp); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.pillars-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.pillar { padding: 48px 36px; border-right: 1px solid var(--border); background: var(--white); transition: var(--tr); }
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--purple); color: var(--white); }
.pillar:hover .pillar-num { color: rgba(255,255,255,0.4); }
.pillar:hover p { color: rgba(255,255,255,0.8); }
.pillar-num { font-family: var(--font-disp); font-size: 3rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 20px; transition: var(--tr); }
.pillar h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.pillar p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; transition: var(--tr); }

/* ======================== CTA BAND ======================== */
.cta-band { background: var(--purple); padding: 80px 40px; }
.cta-band-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band-text h2 { font-family: var(--font-disp); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-band-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cta-band .btn-main { background: var(--white); color: var(--purple); flex-shrink: 0; }
.cta-band .btn-main:hover { background: var(--off); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ======================== FOOTER ======================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 60px 40px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 800; color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: var(--tr); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ======================== PAGE HEADER (Pentest) ======================== */
.page-header {
    background: var(--white);
    padding: 130px 80px 72px;
    border-bottom: 1px solid var(--border);
}
.page-header-inner { max-width: 1280px; margin: 0 auto; }
.page-header-content .section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple);
    background: var(--purple-bg); padding: 5px 12px; border-radius: 100px; margin-bottom: 28px;
}
.page-header-content h1 {
    font-family: var(--font-disp); font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--ink);
}
.page-header-content h1 .gradient-text { color: var(--purple); }
.page-header-content p { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.75; }

/* ======================== PHASES BAND ======================== */
.phases-band { background: var(--off); border-bottom: 1px solid var(--border); padding: 0 80px; }
.phases-inner { max-width: 1280px; margin: 0 auto; display: flex; }
.phase-step { flex: 1; padding: 28px 24px 28px 0; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--border); position: relative; }
.phase-step:last-child { border-right: none; padding-left: 24px; }
.phase-step:not(:first-child) { padding-left: 24px; }
.phase-num { font-family: var(--font-disp); font-size: 1.8rem; font-weight: 800; color: var(--purple); opacity: 0.18; line-height: 1; flex-shrink: 0; }
.phase-label { font-size: 0.78rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.phase-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }

/* ======================== DETAIL SECTIONS ======================== */
.detail-section { padding: 72px 40px; border-top: 1px solid var(--border); }
.detail-section:nth-child(even) { background: var(--off); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-text h2 { font-family: var(--font-disp); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.detail-text h2 .gradient-text { color: var(--purple); }
.detail-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.detail-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.detail-list-item { display: flex; gap: 14px; align-items: flex-start; }
.detail-list-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; background: var(--purple-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--purple); }
.detail-list-icon svg { width: 10px; height: 10px; }
.detail-list-item span { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.detail-list-item strong { color: var(--ink); font-weight: 700; }
.visual-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.visual-icon-large { color: var(--purple); display: flex; justify-content: center; margin-bottom: 24px; opacity: 0.7; }
.visual-icon-large svg { width: 120px; height: 120px; }
.visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.visual-stat { background: var(--off); border-radius: 12px; padding: 16px; }
.visual-stat-number { font-family: var(--font-disp); font-size: 1.5rem; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.visual-stat-label { font-size: 0.775rem; color: var(--muted); line-height: 1.4; }

/* ======================== FAQ ======================== */
.faq-section { padding: 80px 80px; background: var(--off); border-top: 1px solid var(--border); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-section .eyebrow { margin-bottom: 16px; }
.faq-title { font-family: var(--font-disp); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary { font-size: 0.95rem; font-weight: 700; color: var(--ink); padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--purple); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; padding-bottom: 20px; max-width: 720px; }
@media (max-width: 600px) { .faq-section { padding: 60px 20px; } }

/* ======================== CONTACT PAGE ======================== */
.contact-section { padding: 60px 40px 96px; max-width: 1280px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: var(--font-disp); font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.15; }
.contact-info h2 .gradient-text { color: var(--purple); }
.contact-info > p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--purple-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--purple); }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-detail a, .contact-detail p { font-size: 0.9rem; color: var(--ink); }
.contact-detail a:hover { color: var(--purple); }
.contact-form-card { background: var(--off); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body); color: var(--ink);
    transition: var(--tr); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(109,40,217,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

/* ======================== CTA SECTION ======================== */
.cta-section { padding: 0 40px 96px; }
.cta-box { max-width: 1280px; margin: 0 auto; background: var(--ink); border-radius: 24px; padding: 72px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-bg-effects, .cta-orb { display: none; }
.cta-box::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(109,40,217,0.35) 0%, transparent 70%); border-radius: 50%; top: -100px; right: -100px; pointer-events: none; }
.cta-box h2 { font-family: var(--font-disp); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.1; position: relative; }
.cta-box p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; line-height: 1.6; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 12px; position: relative; }
.cta-box .btn-primary, .cta-box .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: var(--tr); border: none; }
.cta-box .btn-primary, .cta-box .btn-lg { background: var(--white); color: var(--purple); }
.cta-box .btn-primary:hover { background: var(--off); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ======================== RESPONSIVE ======================== */
/* --- Hamburger button --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: var(--tr);
    z-index: 300;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
    .bento > .bento-card:nth-child(1) { grid-column: 1 / 8; }
    .bento > .bento-card:nth-child(3) { grid-column: 8 / 13; }
    .pillars-row { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: none; }
    .pillar:nth-child(3) { border-top: 1px solid var(--border); }
    .detail-grid { gap: 48px; }
}
@media (max-width: 900px) {
    .bento { grid-template-columns: 1fr 1fr; }
    .bento > .bento-card:nth-child(1) { grid-column: 1 / -1; min-height: 280px; }
    .bento > .bento-card:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .bento > .bento-card:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .bento > .bento-card:nth-child(4) { grid-column: 1 / -1; grid-row: auto; padding: 28px 32px; }
    .bento > .bento-card:nth-child(5) { grid-column: 1 / 2; grid-row: auto; }
    .bento > .bento-card:nth-child(6) { grid-column: 2 / 3; grid-row: auto; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-cols { grid-template-columns: 1fr; gap: 20px; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .detail-grid.reverse { direction: ltr; }
    .hero-h1 .hero-line-1, .hero-h1 .hero-line-2 { font-size: clamp(3rem, 12vw, 6rem); }
}
@media (max-width: 600px) {
    /* Navbar mobile */
    .navbar { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px 28px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.2s ease;
        pointer-events: none;
        z-index: 190;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a, .nav-drop > span {
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        color: var(--ink);
    }
    .nav-links > a:last-child, .nav-drop { border-bottom: none; }
    .nav-drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 12px;
        min-width: 0;
        border-radius: 0;
    }
    .nav-drop-menu a { padding: 8px 0; font-size: 0.9rem; border-radius: 0; }

    /* Hero */
    .hero { padding: 100px 20px 48px; }
    .hero-sub { font-size: 0.9rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }

    /* Globe */
    .globe-hero { flex-direction: column; padding: 48px 20px; gap: 32px; }
    #globe-bg { flex: 0 0 280px; width: 280px; height: 280px; }

    /* Bento */
    .stats-strip { justify-content: flex-start; }
    .bento { padding: 40px 20px; gap: 12px; grid-template-columns: 1fr; }
    .bento > .bento-card { grid-column: 1 / -1 !important; }

    /* Pillars */
    .pillars-row { grid-template-columns: 1fr; }
    .pillar { border-right: none !important; border-top: 1px solid var(--border); }
    .pillars-section, .contact-section { padding: 60px 20px; }

    /* CTA */
    .detail-section { padding: 56px 20px; }
    .cta-section { padding: 0 20px 60px; }
    .cta-box { padding: 48px 28px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-band { padding: 60px 20px; }

    /* Footer */
    .footer { padding: 48px 20px 0; }
    .footer-cols { grid-template-columns: 1fr 1fr; }

    /* Contact form */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px; }

    /* Page pentest */
    .page-header { padding: 100px 20px 48px; }
    .phases-band { padding: 0 20px; }
    .phases-inner { flex-direction: column; }
    .phase-step { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
    .phase-step:last-child { border-bottom: none; }
    .visual-stats { grid-template-columns: 1fr; }
    .about-bottom { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; }
}