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

:root {
  --bg:        #f7f6f2;
  --cream:     #f0ede6;
  --white:     #ffffff;
  --ink:       #1a1510;
  --ink-60:    rgba(26,21,16,0.6);
  --ink-30:    rgba(26,21,16,0.3);
  --gold:      #c8a25a;
  --gold-lt:   #e8c97a;
  --green:     #2d7a4f;
  --green-lt:  #3d9f68;
  --green-bg:  rgba(45,122,79,0.08);
  --red:       #c0392b;
  --border:    rgba(26,21,16,0.1);
  --radius:    16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
  will-change: transform;
  transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
}

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: ticker 35s linear infinite;
}
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.ticker-item .sep { opacity: 0.2; }
.ticker-item .up   { color: #4ade80; }
.ticker-item .down { color: #f87171; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 64px); max-width: 1160px;
  background: rgba(247,246,242,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 500;
  box-shadow: 0 4px 24px rgba(26,21,16,0.07);
  transition: all 0.4s;
}
nav.scrolled {
  top: 22px;
  background: rgba(247,246,242,0.95);
  box-shadow: 0 8px 40px rgba(26,21,16,0.12);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link-button {
  border: 0;
  background: none;
  color: var(--ink-60);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-link-button:hover { color: var(--ink); }
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.nav-cta .hamburger {
  display: flex;
}
.btn-ghost {
  font-size: 13px; font-weight: 600;
  color: var(--ink-60);
  background: none; border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  font-family: 'Cabinet Grotesk', sans-serif;
}
.btn-ghost:hover { color: var(--ink); background: var(--cream); }
.btn-pill {
  font-size: 13px; font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none; cursor: pointer;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s;
  font-family: 'Cabinet Grotesk', sans-serif;
  box-shadow: 0 4px 16px rgba(45,122,79,0.3);
}
.btn-pill:hover {
  background: var(--green-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,122,79,0.35);
}

/* ─── ANNOUNCEMENT GLIMPSE ─────────────────────────────────── */
.announcement-glimpse {
  position: fixed;
  top: 98px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 450;
  width: fit-content;
  max-width: calc(100% - 56px);
  animation: glimpseSlide 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}
@keyframes glimpseSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.announcement-glimpse-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 100%;
  background: linear-gradient(135deg, #1e5c38 0%, #0f2e1c 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 11px 24px;
  box-shadow:
    0 10px 40px rgba(26,21,16,0.15),
    0 2px 8px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.announcement-glimpse-inner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  to { left: 100%; }
}
.announcement-glimpse-icon {
  font-size: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.announcement-glimpse-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
}
.announcement-glimpse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  color: var(--green);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.announcement-glimpse-btn:hover {
  background: #f0ede6;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ─── HERO ──────────────────────────────────────────────────── */
/* Announcement Glimpse Banner */.hero {
  min-height: 100vh;
  padding: 160px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Floating grain texture overlay */
.hero::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Hero orb blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,122,79,0.12), transparent 70%);
  top: 10%; left: -10%;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,162,90,0.1), transparent 70%);
  top: 30%; right: 0%;
  animation: blobFloat 15s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.97); }
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg);
  border: 1px solid rgba(45,122,79,0.2);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 11px; font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroIn 0.7s 0.1s ease forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45,122,79,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45,122,79,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(45,122,79,0.08); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroIn 0.8s 0.2s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--green);
}
.hero-title .underline-word {
  position: relative;
  display: inline-block;
}
.hero-title .underline-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 6px;
  background: var(--gold-lt);
  z-index: -1;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.6s 1s ease forwards;
}
@keyframes lineReveal {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: 17px; font-weight: 400;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroIn 0.8s 0.35s ease forwards;
}

.hero-actions {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 52px;
  opacity: 0;
  animation: heroIn 0.8s 0.45s ease forwards;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 16px 30px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(26,21,16,0.2);
  position: relative; overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  transition: opacity 0.3s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26,21,16,0.28);
  background: #2d2010;
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-hero-secondary:hover {
  border-color: var(--ink-60);
  background: var(--cream);
}
.btn-play-icon {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-play-icon svg { margin-left: 2px; }

/* Social proof row */
.social-proof {
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
  animation: heroIn 0.8s 0.55s ease forwards;
}
.avatars {
  display: flex;
}
.av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.social-text {
  font-size: 12px;
  color: var(--ink-60);
  line-height: 1.4;
}
.social-text strong { color: var(--ink); }
.stars { color: #f59e0b; font-size: 13px; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PHONE MOCK ────────────────────────────────────────────── */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  opacity: 0;
  animation: heroIn 0.9s 0.3s ease forwards;
}

.phone-wrap {
  position: relative;
  width: 280px;
}

/* Glow behind phone */
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(45,122,79,0.15), transparent 65%);
  z-index: 0;
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.7; }
}

.phone-frame {
  width: 280px;
  height: 590px;
  background: #0f0f0f;
  border-radius: 48px;
  box-shadow:
    0 0 0 8px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.4),
    0 8px 16px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 40px;
  overflow: hidden;
  background: #f8f9fa;
}
.dynamic-island {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}
.phone-content {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  scrollbar-width: none;
  padding-top: 48px;
}

/* Portfolio card */
.portfolio-card {
  margin: 8px 12px 12px;
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, #1e5c38 0%, #0f2e1c 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.portfolio-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: 20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.pf-label { font-size: 10px; opacity: 0.65; margin-bottom: 5px; }
.pf-value { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.pf-change { font-size: 11px; opacity: 0.8; color: #86efac; }
.chart-area { margin-top: 12px; height: 44px; }
.chart-area svg { width: 100%; height: 100%; }
.chart-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawChart 2s ease-out 1s forwards;
}
@keyframes drawChart { to { stroke-dashoffset: 0; } }

/* Time tabs */
.time-tabs {
  display: flex; gap: 5px;
  padding: 4px 12px 10px;
  overflow-x: auto; scrollbar-width: none;
}
.tab {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 10px; font-weight: 700;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.tab.active { background: var(--green); color: #fff; }
.tab:not(.active) { background: #f1f5f9; color: #64748b; }

/* Holdings */
.holdings-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 14px 8px;
  font-size: 13px; font-weight: 700; color: #0f172a;
}
.holdings-header a { font-size: 11px; color: #3b82f6; text-decoration: none; font-weight: 600; }
.holding {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  margin: 0 8px 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.holding-left { display: flex; align-items: center; gap: 10px; }
.holding-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 13px;
}
.holding-name { font-size: 12px; font-weight: 700; color: #0f172a; }
.holding-shares { font-size: 10px; color: #94a3b8; }
.holding-price { font-size: 12px; font-weight: 700; color: #0f172a; text-align: right; }
.holding-change { font-size: 10px; font-weight: 600; color: #10b981; text-align: right; }

/* Phone bottom nav */
.phone-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-radius: 0 0 40px 40px;
  padding: 10px 0 16px;
  display: flex; justify-content: space-around; align-items: center;
  z-index: 10;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.nav-item-label { font-size: 8px; font-weight: 600; }

/* Floating notification cards */
.float-notif {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}
.notif-1 {
  top: 60px; left: -90px;
  animation: floatCard 3s ease-in-out infinite;
}
.notif-2 {
  bottom: 100px; right: -90px;
  animation: floatCard 3s ease-in-out 1.5s infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.notif-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.notif-title { font-size: 9px; color: #6b7280; font-weight: 500; }
.notif-val { font-size: 11px; color: #111; }

/* ─── STATS BAND ────────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 30px
  );
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-4px); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1.5px;
}
.stat-num span { color: var(--gold-lt); }
.stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
  font-size: 16px;
  color: var(--ink-60);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(45,122,79,0.04));
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,21,16,0.1);
  border-color: rgba(45,122,79,0.2);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ─── SECURITY SECTION ──────────────────────────────────────── */
.security-section {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.security-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,122,79,0.15), transparent 60%);
  pointer-events: none;
}
.security-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.sec-title em { font-style: italic; color: #86efac; }
.sec-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}
.sec-badges {
  display: flex; gap: 20px;
}
.sec-badge {
  text-align: center;
}
.sec-badge-val {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 900;
  color: #86efac;
  letter-spacing: -1px;
}
.sec-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.sec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s;
  cursor: default;
}
.sec-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(45,122,79,0.3);
  transform: translateY(-3px);
}
.sec-card-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.sec-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sec-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-wrap {
  background: var(--cream);
  padding: 100px 0;
}
.testimonials-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.testimonials-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.btn-testimonials-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(45,122,79,0.18);
  background: var(--white);
  color: var(--green);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 10px 30px rgba(45,122,79,0.08);
}
.btn-testimonials-more:hover {
  transform: translateY(-2px);
  border-color: rgba(45,122,79,0.35);
  box-shadow: 0 16px 40px rgba(45,122,79,0.14);
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--green);
  opacity: 0.08;
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,21,16,0.08);
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.testi-text {
  font-size: 14px; line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.testi-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--ink);
}
.testi-role { font-size: 12px; color: var(--ink-30); margin-top: 2px; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 40px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-question {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--green);
  font-size: 18px;
  font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 14px;
}

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-section {
  background: var(--green);
  padding: 90px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 65%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  position: relative;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--green);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 16px 34px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  position: relative;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 60px 40px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-cols-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.footer-brand span { color: #86efac; }
.footer-tagline { font-size: 13px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact-block + .footer-contact-block {
  margin-top: 24px;
}
.footer-contact-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-telegram-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.footer-telegram-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72) !important;
  transition: transform 0.2s, color 0.2s, background 0.2s, border-color 0.2s;
}
.footer-telegram-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(39, 167, 231, 0.28);
  background: linear-gradient(180deg, #37aee2 0%, #229ed9 100%);
  box-shadow: 0 10px 22px rgba(34, 158, 217, 0.22);
}
.footer-telegram-badge svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}
.footer-telegram-link span {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
}
.footer-telegram-link:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.footer-telegram-link:hover .footer-telegram-badge {
  background: linear-gradient(180deg, #45b8eb 0%, #229ed9 100%);
  border-color: rgba(69, 184, 235, 0.5);
}
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,21,16,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  display: flex; opacity: 1;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  max-width: 900px; width: 90%;
  max-height: 90vh;
  padding: 40px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none; cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.2s;
}
.modal-close:hover { background: var(--border); transform: rotate(90deg); }
.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.modal-sub { font-size: 14px; color: var(--ink-60); margin-bottom: 28px; }
.testimonials-modal-box {
  max-width: 1080px;
}
.testimonials-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.announcement-modal-box {
  max-width: 1040px;
  padding: 32px;
}
.announcement-modal-box .modal-title {
  padding-right: 48px;
}
.announcement-picture {
  display: block;
  margin-top: 20px;
}
.announcement-picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.announcement-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  min-width: 180px;
  width: fit-content;
  padding: 14px 28px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(45,122,79,0.3);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.announcement-register-btn:hover {
  background: var(--green-lt);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(45,122,79,0.36);
}
.demo-placeholder {
  background: #000;
  border-radius: 14px;
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  overflow: hidden;
}
.demo-play-btn {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 8px 24px rgba(45,122,79,0.3);
}
.demo-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(45,122,79,0.4);
}

/* ─── HAMBURGER MENU ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,246,242,0.98);
  backdrop-filter: blur(24px);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -1.5px;
  padding: 8px 24px;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: mobileNavIn 0.4s ease forwards;
}
.mobile-nav-link {
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  padding: 8px 24px;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: mobileNavIn 0.4s 0.15s ease forwards;
}
.mobile-nav-link:hover { color: var(--green); }
.mobile-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav a:hover { color: var(--green); }
@keyframes mobileNavIn {
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 24px;
  opacity: 0;
  animation: mobileNavIn 0.4s 0.25s ease forwards;
}
.mobile-nav-cta .btn-pill {
  font-size: 15px;
  padding: 14px 36px;
}
.mobile-nav-cta .btn-ghost {
  font-size: 15px;
  padding: 12px 24px;
  color: var(--ink-60);
}

/* ─── RESPONSIVE: TABLET (≤1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  nav {
    top: 22px;
    width: calc(100% - 32px);
    padding: 12px 20px;
  }
  .nav-links { display: none; }
  .hamburger-mobile { display: flex !important; }
  .nav-cta .hamburger { display: none !important; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 160px 28px 60px;
    gap: 48px;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .notif-1 { left: -40px; }
  .notif-2 { right: -40px; }

  /* Announcement Glimpse */
  .announcement-glimpse {
    top: 88px;
    max-width: calc(100% - 48px);
  }
  .announcement-glimpse-inner {
    padding: 9px 16px;
    gap: 6px 10px;
  }
  .announcement-glimpse-icon {
    font-size: 16px;
  }
  .announcement-glimpse-text {
    font-size: 12px;
  }
  .announcement-glimpse-btn {
    font-size: 11px;
    padding: 6px 14px;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 12px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  /* Features */
  .section { padding: 72px 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Security */
  .security-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 28px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-modal-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-cols-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* ─── RESPONSIVE: MOBILE (≤640px) ──────────────────────────── */
@media (max-width: 640px) {
  /* Nav */
  nav {
    top: 15px;
    width: calc(100% - 24px);
    padding: 11px 18px;
    border-radius: 20px;
  }
  .nav-logo { font-size: 19px; }
  .nav-cta .btn-pill { display: none; }

 /* Announcement Glimpse */
  .announcement-glimpse {
    top: 72px;
    max-width: calc(100% - 16px);
  }
  .announcement-glimpse-inner {
    width: auto;
    max-width: calc(100vw - 16px);
    padding: 7px 10px;
    gap: 5px 6px;
    border-radius: 18px;
  }
  .announcement-glimpse-icon {
    font-size: 14px;
  }
  .announcement-glimpse-text {
    font-size: 10px;
    line-height: 1.3;
  }
  .announcement-glimpse-btn {
    font-size: 9px;
    padding: 5px 10px;
  }

  /* Hero */
  .hero {
    padding: 140px 20px 48px;
    gap: 36px;
  }
  
  .hero-badge {
    font-size: 10px;
    margin-bottom: 22px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 52px);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 32px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
    font-size: 14px;
    padding: 15px 24px;
  }
  .social-proof { flex-wrap: wrap; gap: 10px; }

  /* Phone visual — shrink & center */
  .phone-wrap { width: 220px; }
  .phone-frame { width: 220px; height: 465px; border-radius: 38px; }
  .phone-screen { border-radius: 30px; }
  .pf-value { font-size: 24px; }
  .notif-1, .notif-2 { display: none; }
  .phone-glow { display: none; }

  /* Stats band */
  .stats-band { padding: 32px 0; }
  .stats-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 20px 12px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 32px; }
  .stat-desc { font-size: 11px; }

  /* Features */
  .section { padding: 56px 20px; }
  .section-title { letter-spacing: -1.5px; }
  .section-sub { font-size: 14px; margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feat-card { padding: 22px 20px; }

  /* Security */
  .security-section { padding: 64px 0; }
  .security-inner { padding: 0 20px; gap: 32px; }
  .sec-title { font-size: clamp(30px, 8vw, 42px); }
  .sec-sub { font-size: 14px; margin-bottom: 24px; }
  .sec-badges { 
    flex-wrap: wrap;
    gap: 12px; 
    justify-content: flex-start;
  }
  .sec-badge {
    padding-left: 0 !important;
    border-left: none !important;
    min-width: 80px;
  }
  .sec-badge-val { font-size: 20px; }
  .sec-badge-label { font-size: 10px; }
  .sec-cards { grid-template-columns: 1fr; gap: 10px; }
  .sec-card { padding: 18px; }
  .sec-card-icon svg { width: 20px; height: 20px; }
  .sec-card-title { font-size: 13px; }
  .sec-card-desc { font-size: 11px; line-height: 1.5; }

  /* Testimonials */
  .testimonials-wrap { padding: 64px 0; }
  .testimonials-inner { padding: 0 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 22px 20px; }
  .btn-testimonials-more { width: 100%; min-width: 0; }
  .testimonials-modal-grid { grid-template-columns: 1fr; gap: 14px; }

  /* FAQ */
  .faq-section { padding: 56px 20px; }
  .faq-question { font-size: 14px; }
  .faq-answer { font-size: 13px; }

  /* CTA */
  .cta-section { padding: 64px 20px; }
  .cta-title { font-size: clamp(30px, 8vw, 40px); letter-spacing: -1.5px; }
  .cta-sub { font-size: 15px; }
  .btn-cta { width: 100%; max-width: 320px; justify-content: center; font-size: 14px; padding: 15px 28px; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-cols-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand { font-size: 20px; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 11px;
  }

  /* Modal */
  .modal-box { 
    padding: 32px 20px 24px; 
    width: 95%;
    max-height: 85vh;
  }
  .testimonials-modal-box {
    width: calc(100% - 24px);
  }
  .modal-title { font-size: 20px; margin-bottom: 8px; }
  .modal-sub { font-size: 13px; margin-bottom: 20px; }
  .modal-close {
    width: 32px; height: 32px;
    top: 12px; right: 12px;
    font-size: 18px;
  }
  .announcement-modal-box {
    padding: 28px 14px 14px;
    width: calc(100% - 24px);
  }
  .announcement-picture { margin-top: 14px; }
  .announcement-picture img { border-radius: 10px; }
  .announcement-register-btn {
    width: 100%;
    margin-top: 14px;
  }
}

/* ─── RESPONSIVE: MOBILE M (375px) ─────────────────────────── */
@media (max-width: 425px) and (min-width: 375px) {
  .hero { padding: 138px 16px 40px; }
  .announcement-glimpse {
    top: 69px;
    max-width: calc(100% - 14px);
  }
  .announcement-glimpse-inner {
    width: auto;
    max-width: calc(100vw - 14px);
    padding: 7px 10px;
    gap: 5px 6px;
    border-radius: 18px;
  }
  .announcement-glimpse-icon {
    font-size: 14px;
  }
  .announcement-glimpse-text {
    font-size: 10px;
  }
  .announcement-glimpse-btn {
    font-size: 9px;
    padding: 5px 10px;
  }
}

/* ─── RESPONSIVE: SMALL MOBILE (≤400px) ─────────────────────── */
@media (max-width: 400px) {
  .hero { padding: 135px 16px 40px; }
  .announcement-glimpse {
    top: 68px;
    max-width: calc(100% - 12px);
  }
  .announcement-glimpse-inner {
    width: 330px;
    max-width: calc(100vw - 12px);
    padding: 7px 8px;
    gap: 5px 6px;
    border-radius: 18px;
    top: 5px;
  }
  .hero-title { font-size: 34px; }
  .section { padding: 48px 16px; }
  .security-inner { padding: 0 16px; }
  .testimonials-inner { padding: 0 16px; }
  .faq-section { padding: 48px 16px; }
  .cta-section { padding: 56px 16px; }
  footer { padding: 40px 16px 20px; }
  .stats-inner { padding: 0 8px; }
  .stat-num { font-size: 24px; }
}
