/* =====================================================
   77bee — Design System
   Premium Dark UI · Hexagonal Identity · 2025
   ===================================================== */

/* ===== FONT ===== */
@font-face {
  font-family: 'Exo2';
  src: url('../assets/fonts/Exo2-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* ===== DESIGN TOKENS ===== */
:root {
  --bg:         #06031a;
  --white:      #ffffff;
  --cyan:       #00d4ff;
  --violet:     #8b3fff;
  --purple:     #c840ff;
  --text-muted: rgba(255,255,255,0.58);
  --text-dim:   rgba(255,255,255,0.32);
  --grad:       linear-gradient(135deg, #00d4ff 0%, #8b3fff 50%, #c840ff 100%);
  --glass:      rgba(255,255,255,0.04);
  --glass-mid:  rgba(20,8,60,0.55);
  --border:     rgba(139,63,255,0.18);
  --border-hi:  rgba(139,63,255,0.45);
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --glow-card:  0 20px 60px rgba(139,63,255,0.2);
}

/* ===== BASE ===== */
body {
  font-family: 'Exo2', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
}

/* ===== BG GLOW LAYER ===== */
.bg-layer {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.bg-layer .glow-center {
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: 85vw; max-width: 900px; height: 75vh;
  background: radial-gradient(ellipse at center, rgba(100,0,200,0.55) 0%, rgba(60,0,150,0.18) 45%, transparent 70%);
  filter: blur(50px);
}
.bg-layer .glow-tr {
  position: absolute; top: -8%; right: -8%;
  width: 50vw; max-width: 520px; height: 55vh;
  background: radial-gradient(ellipse at center, rgba(0,150,255,0.28) 0%, transparent 65%);
  filter: blur(40px);
}
.bg-layer .glow-bl {
  position: absolute; bottom: -12%; left: -6%;
  width: 42vw; max-width: 420px; height: 45vh;
  background: radial-gradient(ellipse at center, rgba(0,170,255,0.2) 0%, transparent 65%);
  filter: blur(35px);
}
.hex-deco { position: absolute; pointer-events: none; }
.hex-deco svg { display: block; width: 100%; height: 100%; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }

/* ===== UTILITIES ===== */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.9rem;
}
.section-title { font-size: clamp(1.7rem,4vw,2.8rem); font-weight: 800; line-height: 1.18; margin-bottom: 1rem; color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 600px; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-family: 'Exo2', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 28px rgba(139,63,255,0.45); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 44px rgba(139,63,255,0.65); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border-hi); }
.btn-outline:hover { border-color: var(--violet); background: rgba(139,63,255,0.1); transform: translateY(-3px); }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.glass-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,63,255,0.5), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.glass-card:hover { border-color: var(--border-hi); transform: translateY(-6px); box-shadow: var(--glow-card); }
.glass-card:hover::after { opacity: 1; }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0; transition: all 0.4s ease; }
#navbar.scrolled {
  background: rgba(6,3,26,0.88); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0.75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 100px; width: auto; object-fit: contain; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.25s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SECTIONS ===== */
.section { position: relative; padding: 7rem 0; z-index: 1; overflow: hidden; }
.section-alt { background: rgba(139,63,255,0.04); }

/* ===== HERO ===== */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 130px 0 90px; z-index: 1; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(139,63,255,0.1); border: 1px solid var(--border);
  padding: 0.45rem 1.2rem; border-radius: 50px; font-size: 0.78rem;
  color: rgba(255,255,255,0.8); font-weight: 600; margin-bottom: 1.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
  animation: blink 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.35;transform:scale(1.5)} }
.hero-title { font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 900; line-height: 1.13; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.78; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 0.15rem; padding: 0 2rem; border-right: 1px solid var(--border); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 1.75rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-hex-wrap { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-hex-ring { position: absolute; inset: 0; }
.hero-hex-ring svg { width: 100%; height: 100%; animation: spin-slow 30s linear infinite; }
.hero-hex-ring-2 { position: absolute; width: 72%; height: 72%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-hex-ring-2 svg { animation: spin-slow 20s linear infinite reverse; width: 100%; height: 100%; }
@keyframes spin-slow { from{transform:rotate(0deg)}to{transform:rotate(360deg)} }
.hero-logo-center { position: relative; z-index: 2; }
.hero-logo-center img { width: 280px; height: auto; object-fit: contain; filter: drop-shadow(0 0 40px rgba(139,63,255,0.7)) drop-shadow(0 0 80px rgba(200,64,255,0.3)); }
.floating-card {
  position: absolute; background: var(--glass-mid); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 14px; padding: 0.75rem 1.25rem;
  font-size: 0.82rem; font-weight: 600; display: flex; align-items: center;
  gap: 0.6rem; white-space: nowrap; box-shadow: var(--shadow); z-index: 3;
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.card-1 { top:10%;right:-5%;animation:float-y 6s ease-in-out infinite; }
.card-2 { bottom:28%;right:-10%;animation:float-y 6s ease-in-out infinite -2s; }
.card-3 { bottom:10%;left:-8%;animation:float-y 6s ease-in-out infinite -4s; }
@keyframes float-y { 0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)} }

/* ===== PROBLEM ===== */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pain-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.pain-item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.25rem; border-radius: 16px; background: var(--glass); border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s; }
.pain-item:hover { border-color: rgba(200,64,255,0.3); background: rgba(200,64,255,0.05); }
.pain-hex { flex-shrink: 0; width: 170px; height: 170px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.pain-hex::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(200,64,255,0.25),rgba(139,63,255,0.25)); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); }
.pain-img { width: 170px; height: 170px; overflow:visible; border-radius:0; background:none; }
.pain-img::before { display:none; }
.pain-img img { width:100%; height:100%; object-fit:contain; border-radius:0; transform:scale(3.5); }
.pain-text h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; }
.pain-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.problem-quote { background:rgba(139,63,255,0.07); border-left:3px solid var(--violet); padding:1.5rem 2rem; border-radius:0 16px 16px 0; margin-top:2.5rem; font-style:italic; color:var(--text-muted); font-size:0.93rem; line-height:1.75; }

/* ===== SOLUTION ===== */
.sol-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.sol-card { text-align: center; padding: 2.5rem 2rem; }
.sol-icon-hex { width:190px; height:190px; margin:0 auto 1.5rem; position:relative; display:flex; align-items:center; justify-content:center; font-size:2.1rem; }
.sol-icon-hex::before { content:''; position:absolute; inset:0; background:var(--grad); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:0.13; transition:opacity 0.3s; }
.sol-card:hover .sol-icon-hex::before { opacity: 0.28; }
/* Image override for sol-icon-hex */
.sol-icon-img { width:190px; height:190px; overflow:visible; border-radius:0; background:none; }
.sol-icon-img::before { display:none; }
.sol-icon-img img { width:100%; height:100%; object-fit:contain; border-radius:0; position:relative; z-index:1; transform:scale(3.5); }
.sol-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.sol-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.68; }

/* ===== HOW IT WORKS ===== */
.steps-wrap { position: relative; margin-top: 3.5rem; }
.steps-track { position:absolute; top:36px; left:calc(12.5% + 1rem); right:calc(12.5% + 1rem); height:1px; background:linear-gradient(90deg,transparent,rgba(139,63,255,0.4),rgba(200,64,255,0.4),transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step-card { text-align: center; }
.step-num { width:120px; height:120px; margin:0 auto 1.5rem; position:relative; display:flex; align-items:center; justify-content:center; }
.step-num::before { content:''; position:absolute; inset:0; background:var(--glass); border:1px solid var(--border-hi); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); }
.step-num span { position:relative; z-index:1; font-size:2.4rem; font-weight:900; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SERVICES ===== */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:1.25rem; margin-top:3rem; }
.service-card { padding:2rem 1.5rem; text-align:center; cursor:default; }
.svc-hex { width:170px; height:170px; margin:0 auto 1.2rem; position:relative; display:flex; align-items:center; justify-content:center; }
.svc-hex::before { content:''; position:absolute; inset:0; background:var(--grad); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:0.18; }
.svc-hex svg { position:relative; z-index:1; }
.svc-img { width:180px; height:180px; margin:0 auto 1.2rem; border-radius:0; overflow:visible; display:flex; align-items:center; justify-content:center; background:none; }
.svc-img::before { display:none; }
.svc-img img { width:100%; height:100%; object-fit:contain; border-radius:0; transform:scale(3.5); }
.service-card span { font-size: 0.9rem; font-weight: 700; display: block; }


/* Img icons for feat-hex */
.feat-img { overflow:visible; border-radius:0; width:120px !important; height:120px !important; background:none; }
.feat-img::before { display:none; }
.feat-img img { width:100%; height:100%; object-fit:contain; border-radius:0; position:relative; z-index:1; transform:scale(3.5); }

/* ===== AUDIENCE ===== */
.tabs { display:flex; background:var(--glass); border:1px solid var(--border); border-radius:50px; padding:4px; margin:2.5rem auto 3rem; width:fit-content; }
.tab-btn { background:transparent; border:none; padding:0.65rem 2.2rem; border-radius:50px; font-family:'Exo2',sans-serif; font-weight:600; font-size:0.88rem; color:var(--text-muted); cursor:pointer; transition:all 0.3s; }
.tab-btn.active { background:var(--grad); color:var(--white); box-shadow:0 4px 20px rgba(139,63,255,0.5); }
.tab-content { display:none; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.tab-content.active { display:grid; }
.audience-features { list-style:none; display:flex; flex-direction:column; gap:1.4rem; }
.audience-features li { display:flex; align-items:flex-start; gap:1rem; }
.feat-hex { flex-shrink:0; width:42px; height:42px; position:relative; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.feat-hex::before { content:''; position:absolute; inset:0; background:var(--grad); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:0.12; }
.feat-text h4 { font-size:0.93rem; font-weight:700; margin-bottom:0.25rem; }
.feat-text p { font-size:0.84rem; color:var(--text-muted); line-height:1.62; }
.audience-visual { display:flex; flex-direction:column; align-items:center; text-align:center; gap:1.5rem; padding:3rem 2rem; border-radius:24px; background:var(--glass); border:1px solid var(--border); }
.audience-visual img { width:220px; filter:drop-shadow(0 0 24px rgba(139,63,255,0.6)); }
.audience-visual h3 { font-size:1.1rem; font-weight:700; }
.audience-visual p { font-size:0.85rem; color:var(--text-muted); line-height:1.65; }

/* ===== CTA ===== */
#cta-section { padding:6rem 0; position:relative; z-index:1; }
.cta-inner { background:linear-gradient(135deg,rgba(139,63,255,0.14),rgba(200,64,255,0.08)); border:1px solid var(--border); border-radius:28px; padding:5rem 3rem; text-align:center; position:relative; overflow:hidden; }
.cta-inner::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:500px; height:400px; background:radial-gradient(ellipse,rgba(139,63,255,0.3) 0%,transparent 65%); filter:blur(40px); pointer-events:none; }
.cta-inner h2 { font-size:clamp(1.9rem,4vw,3rem); font-weight:900; margin-bottom:1rem; }
.cta-inner p { font-size:1.05rem; color:var(--text-muted); margin-bottom:2.5rem; max-width:480px; margin-left:auto; margin-right:auto; line-height:1.75; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ===== FOOTER ===== */
footer { background:rgba(0,0,0,0.32); border-top:1px solid var(--border); padding:4rem 0 2rem; position:relative; z-index:1; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand img { height:180px; width:auto; object-fit:contain; margin-bottom:1.2rem; display:block; }
.footer-brand p { font-size:0.84rem; color:var(--text-muted); line-height:1.75; max-width:260px; }
.footer-col h4 { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.15em; color:var(--text-dim); margin-bottom:1.2rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.75rem; }
.footer-col ul a { color:var(--text-muted); text-decoration:none; font-size:0.87rem; transition:color 0.25s; }
.footer-col ul a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--border); padding-top:2rem; display:flex; align-items:center; justify-content:space-between; font-size:0.78rem; color:var(--text-dim); flex-wrap:wrap; gap:1rem; }
.footer-bottom img { height:80px; width:auto; object-fit:contain; opacity:0.8; }

/* ===== MODAL ===== */
.modal-overlay { position:fixed; inset:0; background:rgba(6,3,26,0.85); backdrop-filter:blur(8px); z-index:2000; display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; pointer-events:none; transition:opacity 0.3s ease; }
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal-box { background:#0d0825; border:1px solid var(--border-hi); border-radius:24px; padding:3rem 2.5rem; max-width:440px; width:100%; text-align:center; position:relative; box-shadow:0 0 80px rgba(139,63,255,0.3); transform:translateY(20px); transition:transform 0.3s ease; }
.modal-overlay.open .modal-box { transform:translateY(0); }
.modal-close { position:absolute; top:1.25rem; right:1.5rem; background:none; border:none; color:var(--text-muted); font-size:1.5rem; cursor:pointer; line-height:1; padding:0.25rem; transition:color 0.2s; }
.modal-close:hover { color:var(--white); }
.modal-icon { font-size:3rem; margin-bottom:1rem; }
.modal-box h2 { font-size:1.5rem; font-weight:800; margin-bottom:0.75rem; }
.modal-box p { font-size:0.9rem; color:var(--text-muted); margin-bottom:2rem; line-height:1.7; }
.modal-form { display:flex; flex-direction:column; gap:0.75rem; }
.modal-input { background:var(--glass); border:1px solid var(--border); border-radius:12px; padding:0.85rem 1.2rem; color:var(--white); font-family:'Exo2',sans-serif; font-size:0.92rem; outline:none; transition:border-color 0.25s; width:100%; }
.modal-input:focus { border-color:var(--violet); }
.modal-input::placeholder { color:var(--text-dim); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-36px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(36px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity:1; transform:none; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero { padding:10rem 0 5rem; text-align:center; position:relative; z-index:1; overflow:hidden; }
.page-hero h1 { font-size:clamp(2rem,5vw,3.5rem); font-weight:900; margin-bottom:1rem; }
.page-hero p { font-size:1rem; color:var(--text-muted); max-width:500px; margin:0 auto; line-height:1.75; }

/* ===== MVV PAGE ===== */
.mvv-duo { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin:3rem 0 4.5rem; }
.mvv-tag { display:inline-block; font-size:0.7rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:1rem; }
.mvv-card-body { font-size:1rem; line-height:1.78; color:var(--text-muted); font-style:italic; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.value-card { padding:2.25rem 2rem; }
.value-num { font-size:2.4rem; font-weight:900; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:1rem; display:block; }
.value-card h3 { font-size:1rem; font-weight:700; margin-bottom:0.75rem; }
.value-card p { font-size:0.87rem; color:var(--text-muted); line-height:1.72; }

/* ===== FAQ PAGE ===== */
.faq-list { display:flex; flex-direction:column; gap:0.75rem; margin-top:3rem; max-width:800px; margin-left:auto; margin-right:auto; }
.faq-item { border-radius:16px; background:var(--glass); border:1px solid var(--border); overflow:hidden; transition:border-color 0.3s; }
.faq-item.open { border-color:var(--border-hi); }
.faq-item.open .faq-answer { max-height:600px; }
.faq-question { width:100%; background:transparent; border:none; padding:1.35rem 1.75rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; cursor:pointer; color:var(--white); font-family:'Exo2',sans-serif; font-size:0.95rem; font-weight:600; text-align:left; transition:color 0.2s; }
.faq-question:hover { color:rgba(200,64,255,0.9); }
.faq-icon { font-size:1.4rem; font-weight:300; color:var(--violet); transition:transform 0.35s,color 0.3s; flex-shrink:0; line-height:1; }
.faq-item.open .faq-icon { transform:rotate(45deg); color:var(--purple); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.45s cubic-bezier(0.16,1,0.3,1); }
.faq-answer p { padding:0 1.75rem 1.5rem; font-size:0.9rem; color:var(--text-muted); line-height:1.78; }

/* ===== POLICY PAGES ===== */
.policy-body { max-width:820px; margin:0 auto; padding:3rem 1.5rem 7rem; position:relative; z-index:1; }
.policy-toc { background:var(--glass); border:1px solid var(--border); border-radius:20px; padding:2rem 2.5rem; margin-bottom:3.5rem; }
.policy-toc h2 { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.18em; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:1.2rem; }
.policy-toc ol { padding-left:1.5rem; display:flex; flex-direction:column; gap:0.5rem; }
.policy-toc a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:0.9rem; font-weight:500; transition:color 0.2s; }
.policy-toc a:hover { color:var(--white); }
.policy-section { margin-bottom:3rem; scroll-margin-top:90px; }
.policy-section h2 { font-size:1.1rem; font-weight:800; color:var(--white); margin-bottom:1.2rem; padding-bottom:0.75rem; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:0.75rem; }
.policy-section h2::before { content:''; display:inline-block; width:4px; height:18px; background:var(--grad); border-radius:2px; flex-shrink:0; }
.policy-section p,.policy-section li { font-size:0.92rem; color:var(--text-muted); line-height:1.82; margin-bottom:0.75rem; }
.policy-section ul,.policy-section ol { padding-left:1.5rem; display:flex; flex-direction:column; gap:0.45rem; margin-bottom:1rem; }
.policy-section strong { color:var(--white); font-weight:700; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero-content { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-ctas { justify-content:center; }
  .hero-stats { justify-content:center; }
  .hero-desc { margin-left:auto; margin-right:auto; }
  .problem-grid { grid-template-columns:1fr; gap:3rem; }
  .sol-cards { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .steps-track { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .mvv-duo { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .tab-content.active { grid-template-columns:1fr; }
  .audience-visual { display:none; }
}
@media (max-width:768px) {
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:0;left:0;right:0;bottom:0; background:rgba(6,3,26,0.97); align-items:center; justify-content:center; gap:2.5rem; z-index:999; }
  .nav-links.open a { font-size:1.4rem; font-weight:700; color:var(--white); }
  .sol-cards { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .values-grid { grid-template-columns:1fr; }
  .section { padding:4.5rem 0; }
  .cta-inner { padding:3rem 1.5rem; }
  .modal-box { padding:2.5rem 1.75rem; }
}
