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

/* Add these media resets to prevent image overflow */
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }

:root {
  --bg: #03060f;
  --bg2: #060d1a;
  --surface: rgba(0,128,224,0.05);
  --border: rgba(0,160,255,0.12);
  --text: #e8f4ff;
  --muted: #6a8aaa;
  --accent: #0080e0;
  --accent2: #00b4ff;
  --accent3: #00e5ff;
  --green: #00d4aa;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,128,224,0.15);
  --sidenav-w: 220px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-wrap: break-word; /* Add this to prevent text overflow */
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
/* ===== LOADER ===== */
.loader-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #020510 0%, #030812 50%, #020510 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
.loader-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}

/* Animated blobs behind loader */
.loader-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.25;
  animation: loaderBlobFloat 6s ease-in-out infinite;
}
.loader-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0080e0, transparent);
  top: 10%; left: 15%;
}
.loader-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #00b4ff, transparent);
  bottom: 15%; right: 20%; animation-delay: 2s;
}
@keyframes loaderBlobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.1); }
}

/* Subtle grid */
.loader-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,128,224,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridSlide 20s linear infinite;
}
@keyframes gridSlide {
  to { background-position: 40px 40px; }
}

.loader-content {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  position: relative; z-index: 1;
}

/* Outer orbit ring */
.loader-orbit {
  position: absolute; inset: -30px;
  border: 1px solid rgba(0,128,224,0.15);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}
.loader-orbit-dot {
  position: absolute; top: 0; left: 50%;
  width: 6px; height: 6px; margin-left: -3px; margin-top: -3px;
  border-radius: 50%;
  background: var(--accent3);
  box-shadow: 0 0 12px var(--accent3);
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* Main ring container */
.loader-ring {
  position: relative; width: 140px; height: 140px;
}

/* SVG ring */
.loader-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.loader-track {
  fill: none;
  stroke: rgba(0,128,224,0.08);
  stroke-width: 2.5;
}
.loader-progress {
  fill: none;
  stroke: url(#loaderGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 389.6;
  stroke-dashoffset: 389.6;
  animation: loaderFill 2.5s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
.loader-glow-ring {
  stroke-width: 6;
  opacity: 0.4;
}
@keyframes loaderFill {
  to { stroke-dashoffset: 0; }
}

/* Logo inside ring */
.loader-logo-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.loader-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  animation: logoBreathe 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(0,128,224,0.7));
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 14px rgba(0,128,224,0.6)); }
  50%       { transform: scale(1.08); filter: drop-shadow(0 0 32px rgba(0,180,255,1)); }
}

/* Inner pulse ring */
.loader-pulse {
  position: absolute; inset: 10px;
  border: 1px solid rgba(0,180,255,0.3);
  border-radius: 50%;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.3; }
  50%       { transform: scale(1.1); opacity: 0; }
}

/* Brand name — letter-by-letter reveal */
.loader-brand {
  display: flex; gap: 4px;
  font-size: 28px; font-weight: 900; letter-spacing: 3px;
}
.loader-brand span {
  opacity: 0;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.loader-brand-a { animation-delay: 0.6s; }
.loader-brand-u { animation-delay: 0.75s; }
.loader-brand-t { animation-delay: 0.9s; }
.loader-brand-e { animation-delay: 1.05s; }
.loader-brand-x { animation-delay: 1.2s; }
@keyframes letterPop {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Tagline */
.loader-tagline {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.5s both;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== GLASS ===== */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== SIDE NAV ===== */
.sidenav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--sidenav-w);
  display: flex; flex-direction: column;
  background: rgba(2,4,12,0.55);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border-right: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
  overflow: hidden;
}

/* Animated gradient border on right edge */
.sidenav::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,128,224,0.8) 30%,
    rgba(0,180,255,0.6) 60%,
    rgba(0,229,255,0.4) 80%,
    transparent 100%);
  animation: sideEdge 5s ease-in-out infinite;
}
@keyframes sideEdge {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Inner ambient glow */
.sidenav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 15%, rgba(0,128,224,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ===== LOGO BLOCK ===== */
.sidenav-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 16px 18px;
  position: relative;
  flex-shrink: 0;
}
.sidenav-logo::after {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,128,224,0.4), rgba(0,180,255,0.3), transparent);
}
.sidenav-logo-img {
  width: 180px; height: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 12px rgba(0,128,224,0.4));
  transition: filter 0.3s, transform 0.3s;
}
.sidenav-logo:hover .sidenav-logo-img {
  filter: drop-shadow(0 4px 20px rgba(0,180,255,0.65));
  transform: translateY(-1px);
}

/* ===== SCROLL PROGRESS ===== */
.sidenav-progress-track {
  height: 2px; margin: 0 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px; flex-shrink: 0;
  margin-top: 14px;
}
.sidenav-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  border-radius: 1px;
  transition: width 0.15s ease;
  box-shadow: 0 0 6px rgba(0,128,224,0.6);
}

/* ===== NAV LINKS ===== */
.sidenav-links {
  list-style: none; flex: 1;
  padding: 18px 12px 12px;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto;
}
.sidenav-links::-webkit-scrollbar { display: none; }

.sidenav-links li { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  color: rgba(255,255,255,0.35); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1px;
  transition: all 0.22s ease;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
}

/* Hover fill */
.nav-link::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,128,224,0.12), rgba(0,180,255,0.04));
  opacity: 0; transition: opacity 0.22s;
}
.nav-link:hover::after { opacity: 1; }
.nav-link:hover { color: rgba(255,255,255,0.8); border-color: rgba(0,128,224,0.15); }

/* Active state */
.nav-link.active {
  color: #fff;
  background: rgba(0,128,224,0.12);
  border-color: rgba(0,128,224,0.25);
}
.nav-link.active::after { opacity: 1; }

/* Left indicator dot */
.nav-indicator {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  transition: all 0.22s;
  box-shadow: none;
}
.nav-link.active .nav-indicator {
  background: var(--accent2);
  box-shadow: 0 0 8px rgba(0,180,255,0.8);
  transform: scale(1.3);
}
.nav-link:hover .nav-indicator {
  background: rgba(0,180,255,0.5);
}

/* Icon */
.nav-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.22s;
  color: rgba(255,255,255,0.4);
}
.nav-link.active .nav-icon {
  background: linear-gradient(135deg, rgba(0,128,224,0.3), rgba(0,180,255,0.15));
  border-color: rgba(0,128,224,0.4);
  color: var(--accent2);
  box-shadow: 0 2px 10px rgba(0,128,224,0.25);
}
.nav-link:hover .nav-icon {
  background: rgba(0,128,224,0.12);
  border-color: rgba(0,128,224,0.2);
  color: rgba(255,255,255,0.7);
}

.nav-text { font-size: 13px; font-weight: 500; }

/* ===== BOTTOM CTA ===== */
.sidenav-cta {
  padding: 14px 12px 20px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sidenav-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px 16px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 12px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(0,128,224,0.35);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.sidenav-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.sidenav-cta-btn:hover::before { opacity: 1; }
.sidenav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,128,224,0.5);
}

/* Main content offset */
.main-content {
  margin-left: var(--sidenav-w);
}

/* Mobile top bar — hidden on desktop */
.mobile-topbar {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 20px;
  background: rgba(3,6,15,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  align-items: center; justify-content: space-between;
}
.mobile-logo {
  height: 60px; /* Increased for strong brand presence */
  width: auto; /* Lets the logo expand naturally */
  max-width: 65vw; /* Ensures it never overlaps with your hamburger menu */
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,128,224,0.5));
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(3,6,15,0.97); backdrop-filter: blur(20px);
  padding: 20px 24px; flex-direction: column; gap: 4px; z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted); text-decoration: none; font-size: 15px;
  font-weight: 500; padding: 12px 14px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.mobile-menu a:hover { background: rgba(0,128,224,0.1); color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
  max-width: 960px; margin: 0 auto;
  position: relative;
}

/* Dot-grid overlay */
.hero-grid-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Particle canvas */
.hero-particles {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  opacity: 0.5;
}
.hero-blobs {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35; animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0080e0, transparent);
  top: -100px; left: -100px; animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00b4ff, transparent);
  top: 200px; right: -80px; animation-delay: 3s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #00e5ff, transparent);
  bottom: 0; left: 40%; animation-delay: 5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-content { flex: 1; max-width: 680px; text-align: center; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,128,224,0.15); border: 1px solid rgba(0,128,224,0.3);
  color: var(--accent2); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--muted); font-size: 17px; margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero CTA */
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0,128,224,0.5);
  animation: fadeInUp 0.6s ease 0.3s both, ctaPulse 3s ease-in-out 1.5s infinite;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-hero-cta:hover::before { opacity: 1; }
.btn-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,128,224,0.55); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,128,224,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,128,224,0); }
}
.hero-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 6px 6px 20px;
  margin-bottom: 20px; gap: 12px;
  animation: fadeInUp 0.6s ease 0.3s both;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,128,224,0.2);
}
.search-icon { color: var(--muted); font-size: 15px; flex-shrink: 0; }
.hero-search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 15px; font-family: inherit;
}
.hero-search input::placeholder { color: var(--muted); }
.btn-search {
  padding: 10px 24px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.btn-search:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(0,128,224,0.5); }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.tag {
  padding: 7px 18px; border-radius: 50px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--muted); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.tag:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(0,128,224,0.1);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  flex: 0 0 340px; animation: fadeInRight 0.8s ease 0.3s both;
}
.laptop-card {
  padding: 28px; position: relative; overflow: hidden;
}
.laptop-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,128,224,0.1), rgba(0,180,255,0.05));
  pointer-events: none;
}
.ai-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,128,224,0.2); border: 1px solid rgba(0,128,224,0.4);
  color: var(--accent2); padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.laptop-specs { margin-bottom: 20px; }
.spec-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
}
.spec-val { color: var(--text); font-weight: 600; }
.match-bar { margin-bottom: 16px; }
.match-bar > span { font-size: 13px; color: var(--muted); display: block; margin-bottom: 8px; }
.bar-track {
  height: 8px; background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden; margin-bottom: 6px;
}
.bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px; transition: width 2s ease;
}
.match-pct { font-size: 13px; color: var(--accent2); font-weight: 700; }
.rec-label {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-size: 16px; font-weight: 700;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 60px;
  max-width: 960px; margin: 0 auto;
}
.stats-header {
  text-align: center; margin-bottom: 56px;
}
.stats-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent2); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: rgba(0,128,224,0.1); border: 1px solid rgba(0,128,224,0.25);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.stats-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 12px;
}
.stats-sub {
  color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 auto;
}

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px;
}

/* ── PIE CHART CARD ── */
.stat-card {
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 0%, rgba(0,128,224,0.08), transparent 60%);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0,128,224,0.25);
  border-color: rgba(0,128,224,0.3);
}
.stat-chart-card {
  display: flex; flex-direction: column; gap: 28px;
}

/* Pie canvas wrapper with glow ring */
.pie-wrap {
  position: relative; width: 200px; height: 200px; margin: 0 auto;
}
/* Outer ambient glow */
.pie-wrap::after {
  content: ''; position: absolute;
  inset: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,224,0.18), transparent 70%);
  filter: blur(12px);
  animation: pieGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pieGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.pie-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none; z-index: 1;
}
.pie-pct {
  font-size: 38px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pie-label {
  font-size: 11px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px;
}

.stat-chart-text h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 10px;
}
.stat-chart-text p {
  color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px;
}
.stat-chart-text strong { color: var(--text); }
.stat-legend {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.legend-row {
  display: flex; align-items: center; gap: 10px;
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.legend-dot.regret {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 6px rgba(0,128,224,0.6);
}
.legend-dot.happy {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── $400B CARD ── */
.stat-money-card {
  display: flex; flex-direction: column; justify-content: center;
  text-align: center; gap: 16px;
  background: rgba(0,128,224,0.04);
  border-color: rgba(0,128,224,0.2);
}
.stat-money-card::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,128,224,0.12), transparent 65%);
}
.money-icon {
  font-size: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.money-counter {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 2px; line-height: 1;
}
.money-prefix {
  font-size: 30px; font-weight: 900; color: var(--accent2);
  align-self: flex-start; margin-top: 8px;
}
.money-num {
  font-size: 80px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,128,224,0.4));
}
.money-suffix {
  font-size: 38px; font-weight: 900; color: var(--accent3);
  align-self: flex-end; margin-bottom: 10px;
}
.money-label {
  font-size: 15px; font-weight: 600; color: var(--text);
  max-width: 260px; margin: 0 auto; line-height: 1.5;
}
.money-bar-wrap {
  height: 5px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden; margin: 0 auto; width: 80%;
  position: relative;
}
.money-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  border-radius: 3px; transition: width 2.2s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 10px rgba(0,128,224,0.6);
}
.money-note {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  max-width: 280px; margin: 0 auto;
}

/* Bottom CTA line */
.stats-cta-line {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.stats-cta-line i {
  color: var(--accent2); animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== PERK HIGHLIGHT ===== */
.perk-highlight {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px; margin-top: 32px;
  background: rgba(0,128,224,0.07);
  border-color: rgba(0,128,224,0.25);
  position: relative; overflow: hidden;
}
.perk-highlight::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,128,224,0.08), transparent);
  pointer-events: none;
}
.perk-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 8px 24px rgba(0,128,224,0.4);
}
.perk-body h4 {
  font-size: 17px; font-weight: 800; margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.perk-body p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.perk-body strong { color: var(--text); }
.change-banner {
  padding: 0 60px;
  max-width: 960px; margin: 0 auto 0;
}
.change-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 28px 40px;
  background: rgba(0,128,224,0.06);
  border: 1px solid rgba(0,128,224,0.2);
  border-radius: 20px;
  position: relative; overflow: hidden;
}
.change-banner-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,128,224,0.08), transparent);
  animation: bannerSweep 3s ease-in-out infinite;
}
@keyframes bannerSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.change-banner-inner p {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 800;
  letter-spacing: -0.3px; text-align: center;
}
.change-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 10px var(--accent2);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ===== SECTIONS ===== */
section:not(.hero):not(.trusted) {
  padding: 80px 60px;
  max-width: 960px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px;
}
.section-header p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.feature-card {
  padding: 36px 28px; transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,128,224,0.25);
  border-color: rgba(0,128,224,0.3);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,128,224,0.2), rgba(0,180,255,0.1));
  border: 1px solid rgba(0,128,224,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent2); margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.arrow { color: var(--accent); font-size: 16px; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: none; }
.steps {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 220px; max-width: 300px;
  padding: 36px 24px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,128,224,0.2);
}
.step-num {
  font-size: 48px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.step-icon {
  font-size: 28px; color: var(--accent3); margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; }
.step-arrow { font-size: 24px; color: var(--accent); flex-shrink: 0; }

/* ===== TRENDING ===== */
.trending { padding: 80px 60px; max-width: 960px; margin: 0 auto; }
.trending-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.trend-card {
  padding: 28px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,128,224,0.25);
}
.trend-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 20px;
}
.trend-badge.gaming { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.trend-badge.design { background: rgba(0,180,255,0.15); color: var(--accent2); border: 1px solid rgba(0,180,255,0.3); }
.trend-badge.coding { background: rgba(0,229,255,0.15); color: var(--accent3); border: 1px solid rgba(0,229,255,0.3); }
.trend-badge.student { background: rgba(0,212,170,0.15); color: var(--green); border: 1px solid rgba(0,212,170,0.3); }
.trend-img {
  font-size: 40px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trend-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.trend-card p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.trend-score {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.trend-score span { color: var(--muted); font-size: 13px; }
.trend-score strong { color: var(--green); font-size: 16px; }

/* ===== CONTACT ===== */
.contact {
  padding: 80px 60px !important;
  max-width: 960px !important;
  margin: 0 auto !important;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-text h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px;
}
.contact-text p { color: var(--muted); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.contact-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-perks li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-size: 15px;
}
.contact-perks li i { color: var(--green); font-size: 16px; }

.contact-form { padding: 40px; }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.input-wrap {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,128,224,0.15);
}
.input-wrap i { color: var(--muted); font-size: 15px; flex-shrink: 0; }
.input-wrap input, .input-wrap select {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 15px; font-family: inherit;
}
.input-wrap select option { background: #030d1e; color: var(--text); }
.input-wrap input::placeholder { color: var(--muted); }

.btn-full { width: 100%; padding: 14px; font-size: 15px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,10,24,0.6);
  border-top: 1px solid var(--border);
  padding: 40px 60px 24px;
}
.footer-simple {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 32px;
}
.footer-left {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-logo {
  height: 80px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,128,224,0.5));
}
.footer-left p { color: var(--muted); font-size: 14px; }

/* Instagram button */
.insta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.insta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(253,88,73,0),
    rgba(214,36,159,0),
    rgba(150,47,191,0));
  transition: background 0.4s;
}
.insta-btn:hover::before {
  background: linear-gradient(135deg,
    rgba(253,88,73,0.15),
    rgba(214,36,159,0.15),
    rgba(150,47,191,0.15));
}
.insta-btn:hover {
  border-color: rgba(214,36,159,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214,36,159,0.2);
}

/* Instagram icon — gradient fill on hover */
.insta-icon-wrap {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.insta-icon-wrap::before {
  content: '';
  position: absolute; inset: 0; border-radius: 8px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  opacity: 0; transition: opacity 0.4s;
}
.insta-btn:hover .insta-icon-wrap::before { opacity: 1; }
.insta-icon-wrap i {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.6);
  transition: color 0.4s, transform 0.4s;
}
.insta-btn:hover .insta-icon-wrap i {
  color: #fff;
  transform: scale(1.15) rotate(-8deg);
}
.insta-label { position: relative; z-index: 1; }

.footer-bottom {
  max-width: 960px; margin: 0 auto;
  padding-top: 20px; border-top: 1px solid var(--border);
  text-align: center; color: var(--muted); font-size: 13px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%; max-width: 440px; padding: 40px;
  position: relative; animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: var(--muted); width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: var(--text); }
.modal h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.modal-form .form-group { margin-bottom: 16px; }
.modal-form .input-wrap { border-radius: 10px; }
.modal-divider {
  text-align: center; color: var(--muted); font-size: 13px;
  margin: 16px 0; position: relative;
}
.modal-divider::before, .modal-divider::after {
  content: ''; position: absolute; top: 50%; width: 40%;
  height: 1px; background: var(--border);
}
.modal-divider::before { left: 0; }
.modal-divider::after { right: 0; }
.modal-footer { text-align: center; margin-top: 16px; color: var(--muted); font-size: 13px; }
.modal-footer a { color: var(--accent2); text-decoration: none; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 3000;
  background: rgba(0,212,170,0.15); border: 1px solid rgba(0,212,170,0.4);
  color: var(--green); padding: 14px 24px; border-radius: 12px;
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600;
  backdrop-filter: blur(20px);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */

/* ===== RESPONSIVE ===== */

/* ── Tablet landscape / small desktop (≤1100px) ── */
@media (max-width: 1100px) {
  :root { --sidenav-w: 200px; }
  .sidenav-logo-img { width: 140px; }
  
  /* Stack the hero section to prevent horizontal overflow */
  .hero { flex-direction: column; gap: 48px; padding: 100px 40px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-visual { flex: 1 1 auto; width: 100%; max-width: 500px; margin: 0 auto; animation: fadeInUp 0.8s ease 0.3s both; }
  
  section:not(.hero):not(.trusted) { padding: 70px 40px; }
  .stats-section { padding: 70px 40px; }
  .trending { padding: 70px 40px; }
  .contact { padding: 70px 40px !important; }
  .change-banner { padding: 0 40px; }
  .footer { padding: 40px 40px 24px; }
}

/* ── Tablet portrait (≤900px) ── */
@media (max-width: 900px) {
  :root { --sidenav-w: 180px; }

  .hero { padding: 100px 32px 60px; min-height: auto; }
  .hero-title { font-size: clamp(30px, 6vw, 52px); }
  .hero-sub { font-size: 15px; }
  .btn-hero-cta { padding: 13px 28px; font-size: 14px; }

  section:not(.hero):not(.trusted) { padding: 60px 32px; }
  .stats-section { padding: 60px 32px; }
  .trending { padding: 60px 32px; }
  .contact { padding: 60px 32px !important; }
  .change-banner { padding: 0 32px; }
  .change-banner-inner { padding: 20px 24px; gap: 12px; }
  .footer { padding: 36px 32px 20px; }

  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .money-num { font-size: 64px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }

  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); align-self: center; }

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

  .footer-simple { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ── Mobile (≤768px) — hide sidenav, show topbar ── */
@media (max-width: 768px) {
  .sidenav { display: none; }
  .mobile-topbar { display: flex; }
  .main-content { margin-left: 0; padding-top: 64px; }

  .hero { padding: 60px 20px; }
  .hero-title { font-size: clamp(28px, 8vw, 44px); }
  .hero-badge { font-size: 12px; padding: 5px 14px; }

  section:not(.hero):not(.trusted) { padding: 52px 20px; }
  .stats-section { padding: 52px 20px; }
  .trending { padding: 52px 20px; }
  .contact { padding: 52px 20px !important; }
  .change-banner { padding: 0 20px; }
  .change-banner-inner { padding: 18px 20px; gap: 10px; flex-wrap: wrap; text-align: center; }
  .change-banner-inner p { font-size: 16px; }
  .footer { padding: 32px 20px 20px; }

  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 36px); }
  .section-header p { font-size: 15px; }

  .stats-grid { grid-template-columns: 1fr; }
  .pie-wrap { width: 160px; height: 160px; }
  .pie-pct { font-size: 30px; }
  .money-num { font-size: 56px; }
  .money-prefix { font-size: 24px; }
  .money-suffix { font-size: 28px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 20px; }

  .contact-form { padding: 24px 20px; }
  .contact-form h3 { font-size: 18px; }
  .perk-highlight { padding: 20px; gap: 14px; flex-direction: column; align-items: center; text-align: center;}
  .perk-icon { width: 44px; height: 44px; font-size: 18px; }

  .toast { bottom: 16px; right: 16px; left: 16px; font-size: 13px; padding: 12px 16px; }

  .footer-simple { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-logo { height: 48px; }
  .footer-left p { text-align: center; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(26px, 9vw, 38px); }
  .hero-sub { font-size: 14px; }
  .btn-hero-cta { padding: 12px 24px; font-size: 13px; width: 100%; justify-content: center; }

  /* Break the search pill into stacked elements so it doesn't overflow */
  .hero-search { 
    flex-direction: column; 
    border-radius: 16px; 
    background: transparent; 
    border: none; 
    padding: 0; 
    gap: 12px; 
  }
  .hero-search input { 
    width: 100%; 
    background: rgba(255,255,255,0.06); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 14px 16px; 
  }
  .hero-search .search-icon { display: none; } /* Hide icon to save space */
  .btn-search { width: 100%; padding: 14px; border-radius: 12px; }

  .stats-section { padding: 40px 16px; }
  section:not(.hero):not(.trusted) { padding: 40px 16px; }
  .trending { padding: 40px 16px; }
  .contact { padding: 40px 16px !important; }
  .change-banner { padding: 0 16px; }
  .footer { padding: 28px 16px 16px; }

  .stat-card { padding: 24px 18px; }
  .pie-wrap { width: 140px; height: 140px; }
  .pie-pct { font-size: 26px; }
  .money-num { font-size: 48px; }

  .contact-form { padding: 20px 16px; }
  .input-wrap { padding: 10px 12px; }
  .input-wrap input { font-size: 14px; }
  .btn-full { padding: 13px; font-size: 14px; }

  .step { padding: 24px 16px; }
  .step-num { font-size: 36px; }

  .modal { padding: 24px 16px; }

  .loader-brand { font-size: 22px; letter-spacing: 2px; }
  .loader-ring { width: 110px; height: 110px; }
  .loader-logo { width: 60px; height: 60px; }
  .loader-orbit { inset: -20px; }
}

/* ── Very small (≤360px) ── */
@media (max-width: 360px) {
  .hero-title { font-size: 24px; }
  .money-num { font-size: 40px; }
  .loader-brand { font-size: 18px; }
  .loader-ring { width: 90px; height: 90px; }
  .loader-logo { width: 50px; height: 50px; }
}