/* ---- MetaCampus — Ajans.Start 2.0 ----
   Premium dark aesthetic with violet/purple gradient system.
*/

:root {
  --bg: #07060F;
  --bg-2: #0B0A1A;
  --bg-3: #100E22;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #F4F2FF;
  --text-soft: #B7B4D1;
  --text-muted: #7A7795;
  --violet: #7C3AED;
  --violet-light: #A78BFA;
  --indigo: #6366F1;
  --pink: #EC4899;
  --gold: #F5C242;
  --green: #34D399;
  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #EC4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.15) 50%, rgba(236,72,153,0.12) 100%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-glow: 0 25px 60px -20px rgba(139, 92, 246, 0.35);
  --shadow-card: 0 24px 50px -25px rgba(0, 0, 0, 0.7);
  --shadow-lift: 0 1px 0 0 rgba(255,255,255,0.06) inset, 0 30px 70px -25px rgba(0,0,0,0.8);
  --max: 1240px;
  --gap: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--violet); color: white; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5 { overflow-wrap: break-word; word-wrap: break-word; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { display: block; text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.6), 0 1px 0 0 rgba(255,255,255,0.2) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(139, 92, 246, 0.8), 0 1px 0 0 rgba(255,255,255,0.2) inset;
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn-lg { padding: 16px 26px; font-size: 15.5px; }
.btn-xl { padding: 20px 34px; font-size: 17px; }

/* ---- ANNOUNCEMENT BAR ---- */
.announce {
  background: linear-gradient(90deg, rgba(99,102,241,0.20) 0%, rgba(236,72,153,0.20) 100%);
  border-bottom: 1px solid rgba(167,139,250,0.15);
  font-size: 13.5px;
  position: relative;
  z-index: 50;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
}
.announce-cta { color: var(--violet-light); font-weight: 600; }
.announce-cta:hover { color: #fff; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 6, 15, 0.7);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14.5px;
  margin-left: auto;
  margin-right: 16px;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 18px; font-size: 13.5px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: rgba(7,6,15,0.95);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 16px; color: var(--text-soft); font-weight: 500; }

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb-1 {
  width: 500px; height: 500px;
  background: #6366F1;
  top: -150px; left: -100px;
  animation: float 18s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: #EC4899;
  bottom: -200px; right: -150px;
  animation: float 22s ease-in-out infinite reverse;
  opacity: 0.4;
}
.orb-3 {
  width: 400px; height: 400px;
  background: #8B5CF6;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(34px, 6.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-soft);
  margin-bottom: 38px;
  max-width: 560px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 38px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.av2 { background: linear-gradient(135deg, #EC4899, #F472B6); }
.av3 { background: linear-gradient(135deg, #34D399, #10B981); }
.av4 { background: linear-gradient(135deg, #F59E0B, #F5C242); }
.av5 {
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  border: 2.5px solid var(--bg);
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; }
.hero-trust-text p { font-size: 13.5px; color: var(--text-soft); margin-top: 3px; }
.hero-trust-text strong { color: var(--text); }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-glow {
  position: absolute;
  width: 90%;
  height: 100%;
  background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.hero-portrait {
  position: relative;
  z-index: 1;
  max-height: 580px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(99, 70, 200, 0.4));
}
.hero-stat {
  position: absolute;
  background: rgba(15, 12, 35, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  padding: 16px 20px;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: var(--shadow-lift);
  animation: floatBox 6s ease-in-out infinite;
}
@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-stat-1 { top: 8%; right: 0; animation-delay: 0s; }
.hero-stat-2 { bottom: 25%; left: -20px; animation-delay: 1.5s; }
.hero-stat-3 { bottom: 5%; right: 5%; animation-delay: 3s; display: flex; gap: 12px; align-items: center; }
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { font-size: 16px; margin-left: 2px; }
.hero-stat-label { font-size: 11.5px; color: var(--text-soft); line-height: 1.3; }
.hero-stat-icon {
  width: 38px; height: 38px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---- METRICS ---- */
.metrics {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05), transparent);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.metric-num i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--violet-light);
  -webkit-text-fill-color: var(--violet-light);
}
.metric-label {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- SECTIONS ---- */
.section { padding: 110px 0; position: relative; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.section-title.left { text-align: left; }
.section-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---- PILLARS ---- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.4);
  background: var(--surface-2);
}
.pillar-featured {
  background: linear-gradient(180deg, rgba(139,92,246,0.12), rgba(236,72,153,0.06));
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 30px 60px -30px rgba(139,92,246,0.4);
}
.pillar-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-soft);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
  margin-bottom: 22px;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { color: var(--text-soft); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pillar-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-soft);
}
.pillar-list svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

/* ---- STORIES / VIDEOS ---- */
.section-stories {
  background:
    radial-gradient(ellipse 800px 400px at 20% 0%, rgba(99,102,241,0.08), transparent),
    radial-gradient(ellipse 800px 400px at 80% 100%, rgba(236,72,153,0.06), transparent);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.story:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.4);
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.story-meta { padding: 16px 20px 0; }
.story-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--gradient-soft);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  color: var(--violet-light);
}
.story p {
  padding: 14px 20px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---- GUARANTEE ---- */
.guarantee {
  padding: 60px 0;
}
.guarantee-card {
  background:
    linear-gradient(135deg, rgba(245,194,66,0.10), rgba(139,92,246,0.06)),
    var(--surface);
  border: 1px solid rgba(245,194,66,0.25);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.guarantee-seal {
  flex-shrink: 0;
}
.seal-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #E5A91A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1a1500;
  font-weight: 800;
  box-shadow: 0 20px 50px -15px rgba(245,194,66,0.5);
  position: relative;
}
.seal-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(245,194,66,0.4);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.seal-ring span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  line-height: 1;
}
.seal-ring small { font-size: 11px; letter-spacing: 0.18em; margin-top: 4px; }
.guarantee-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 12px;
}
.guarantee-content p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.guarantee-content strong { color: var(--gold); font-weight: 700; }

/* ---- MODULES ---- */
.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: all 0.3s ease;
}
.module:hover {
  border-color: rgba(139,92,246,0.35);
  background: var(--surface-2);
  transform: translateX(4px);
}
.module-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.module h3 { font-size: 20px; margin-bottom: 8px; }
.module p { color: var(--text-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 14px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.module-tags span {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255,255,255,0.02);
}

/* ---- ABOUT ---- */
.section-about {
  background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(139,92,246,0.06), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 1;
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: rgba(11,10,26,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  padding: 22px 28px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-lift);
}
.about-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-badge-label { font-size: 12px; color: var(--text-soft); line-height: 1.3; }
.about-content p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-content p:last-of-type { margin-bottom: 28px; }
.about-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.about-tag {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.about-tag strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

/* ---- TESTIMONIAL WALL ---- */
.section-wall {
  background: radial-gradient(ellipse at top, rgba(99,102,241,0.05), transparent 60%);
}
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  gap: 20px;
}
.wall-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.wall-card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.3); }
.wall-card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}
.wall-card blockquote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
  position: relative;
  padding-top: 24px;
  font-weight: 500;
}
.wall-card blockquote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  color: var(--violet);
  opacity: 0.4;
  line-height: 1;
}
.wall-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.wall-card .who {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.wall-card .where {
  font-size: 12px;
  color: var(--text-muted);
}
.wall-card:has(img) { padding: 0; }
.wall-card:has(img) img { border-radius: var(--radius); }

/* ---- WHY ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-item {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.why-item:hover {
  border-color: rgba(139,92,246,0.3);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-soft);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
  margin-bottom: 18px;
}
.why-item h4 { font-size: 17px; margin-bottom: 8px; }
.why-item p { color: var(--text-soft); font-size: 14px; line-height: 1.55; }

/* ---- FAQ ---- */
.section-faq { max-width: 880px; margin-left: auto; margin-right: auto; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(139,92,246,0.35); background: var(--surface-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--violet-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- FINAL CTA ---- */
.section-cta { padding: 120px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb-cta-1 {
  width: 600px; height: 600px;
  background: #6366F1;
  top: -100px; left: -100px;
  opacity: 0.25;
}
.orb-cta-2 {
  width: 600px; height: 600px;
  background: #EC4899;
  bottom: -200px; right: -100px;
  opacity: 0.25;
}
.cta-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 40px;
  background: rgba(11,10,26,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.cta-title {
  font-size: clamp(28px, 4.5vw, 56px);
  margin: 12px 0 18px;
  letter-spacing: -0.025em;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.55;
}
.cta-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.cta-meta div { display: flex; align-items: center; gap: 6px; }
.cta-meta svg { width: 16px; height: 16px; color: var(--green); }

/* ---- FOOTER ---- */
.footer {
  background: #050410;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: var(--text);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--violet-light); }
.footer-addr {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #030208;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-soft); }

/* ---- FLOATING WA ---- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,0.5);
  z-index: 30;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: floatBox 4s ease-in-out infinite;
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  z-index: -1;
  animation: pulse 2s infinite;
}
.float-wa:hover {
  transform: scale(1.08);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { min-height: 480px; }
  .hero-portrait { max-height: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .section-title.left { text-align: center; }
  .about-content { text-align: center; }
  .modules { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .wall-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; gap: 24px; }
  .guarantee-seal { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-tags { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 34px !important; }
  .section-title { font-size: 26px !important; }
  .cta-title { font-size: 26px !important; }
  .announce-inner span:nth-of-type(2) { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
  .stories-grid, .wall-grid, .why-grid, .metrics-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 80px; }
  .hero-title { font-size: 38px; letter-spacing: -0.02em; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 30px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-stat { padding: 10px 12px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-1 { right: -6px; top: 4%; }
  .hero-stat-2 { left: -6px; bottom: 32%; }
  .hero-stat-3 { left: 50%; transform: translateX(-50%); bottom: 0; right: auto; }
  .hero-visual { min-height: 420px; }
  .hero-portrait { max-height: 420px; }
  .hero-ctas .btn { flex: 1; padding: 14px 18px; font-size: 14px; }
  .hero-ctas { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .cta-card { padding: 50px 22px; }
  .cta-meta { gap: 16px; font-size: 12.5px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .announce-inner { font-size: 12px; gap: 8px; padding: 10px 16px; }
  .announce-cta { display: none; }
  .float-wa { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .container { padding: 0 18px; }
  .btn-xl { padding: 16px 22px; font-size: 14.5px; }
  .module { grid-template-columns: 1fr; gap: 14px; padding: 26px 22px; }
  .module-num { font-size: 36px; }
  .guarantee-card { padding: 32px 22px; }
  .seal-ring { width: 110px; height: 110px; }
  .seal-ring span { font-size: 28px; }
  .pillar { padding: 28px 24px; }
  .footer { padding: 50px 0 0; }
  .footer-bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom nav { justify-content: center; }
}
