/* ============================================================
   home.css — Full Professional Redesign
   ============================================================ */

/* ── Base ── */
.home-page {
  background: var(--bg-primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-header {
  position: relative;
  text-align: center;
  padding: 7rem 2rem 9rem;
  background: linear-gradient(160deg, #0d1b35 0%, #0f172a 60%, #0a1628 100%);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  overflow: hidden;
}

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

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(96,165,250,0.75) 40%, rgba(96,165,250,0) 75%);
  opacity: 0.45;
  filter: blur(0.2px);
  box-shadow: 0 0 14px rgba(96,165,250,0.45);
  animation: particleFloat 14s linear infinite;
}

.hero-particle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 90px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(96,165,250,0), rgba(96,165,250,0.35), rgba(255,255,255,0.75));
  opacity: 0.55;
  border-radius: 999px;
}

.hero-particle--1 { top: 14%; left: 6%; animation-duration: 12s; animation-delay: -1s; --particle-scale: 0.7; }
.hero-particle--2 { top: 22%; left: 24%; animation-duration: 15s; animation-delay: -5s; --particle-scale: 0.55; }
.hero-particle--3 { top: 12%; left: 46%; animation-duration: 13s; animation-delay: -8s; --particle-scale: 0.65; }
.hero-particle--4 { top: 28%; left: 72%; animation-duration: 16s; animation-delay: -3s; --particle-scale: 0.85; }
.hero-particle--5 { top: 40%; left: 14%; animation-duration: 18s; animation-delay: -7s; --particle-scale: 0.5; }
.hero-particle--6 { top: 36%; left: 34%; animation-duration: 11s; animation-delay: -4s; --particle-scale: 0.9; }
.hero-particle--7 { top: 48%; left: 58%; animation-duration: 17s; animation-delay: -11s; --particle-scale: 0.6; }
.hero-particle--8 { top: 52%; left: 84%; animation-duration: 14s; animation-delay: -2s; --particle-scale: 0.75; }
.hero-particle--9 { top: 64%; left: 10%; animation-duration: 19s; animation-delay: -13s; --particle-scale: 0.5; }
.hero-particle--10 { top: 68%; left: 28%; animation-duration: 12.5s; animation-delay: -9s; --particle-scale: 0.7; }
.hero-particle--11 { top: 74%; left: 48%; animation-duration: 15.5s; animation-delay: -6s; --particle-scale: 0.62; }
.hero-particle--12 { top: 70%; left: 68%; animation-duration: 13.5s; animation-delay: -10s; --particle-scale: 0.8; }
.hero-particle--13 { top: 18%; left: 88%; animation-duration: 20s; animation-delay: -12s; --particle-scale: 0.5; }
.hero-particle--14 { top: 82%; left: 18%; animation-duration: 16.5s; animation-delay: -14s; --particle-scale: 0.7; }
.hero-particle--15 { top: 84%; left: 56%; animation-duration: 14.5s; animation-delay: -15s; --particle-scale: 0.55; }
.hero-particle--16 { top: 80%; left: 86%; animation-duration: 18.5s; animation-delay: -16s; --particle-scale: 0.9; }

@keyframes particleFloat {
  0% {
    transform: translate3d(-18px, 10px, 0) scale(var(--particle-scale, 1));
    opacity: 0;
  }
  12% {
    opacity: 0.5;
  }
  50% {
    transform: translate3d(28px, -16px, 0) scale(var(--particle-scale, 1));
    opacity: 0.8;
  }
  100% {
    transform: translate3d(76px, -34px, 0) scale(var(--particle-scale, 1));
    opacity: 0;
  }
}

/* animated glow orbs */
.hero-header::before,
.hero-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-header::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orbDrift1 12s ease-in-out infinite alternate;
}
.hero-header::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbDrift2 14s ease-in-out infinite alternate;
}
@keyframes orbDrift1 { from { transform: translate(0,0); } to { transform: translate(60px, 40px); } }
@keyframes orbDrift2 { from { transform: translate(0,0); } to { transform: translate(-50px, -30px); } }

.hero-header .logo {
  width: 90px; height: 90px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  animation: logoFloat 4s ease-in-out infinite;
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 40px rgba(59,130,246,0.25);
}
.brandmark { width: 64px; height: 64px; object-fit: contain; }
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-header h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #e2e8f0;
  max-width: 660px;
  margin: 0 auto 1rem;
  line-height: 1.5;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease both 0.2s;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  max-width: 580px;
  margin: 0 auto 0.5rem;
  line-height: 1.75;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease both 0.4s;
}

.hero-buttons {
  display: flex; gap: 0.875rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 2.25rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease both 0.6s;
}

.hero-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.hero-btn--primary {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 18px rgba(59,130,246,0.4);
}
.hero-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.55); }

.hero-btn--secondary {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 18px rgba(6,182,212,0.35);
}
.hero-btn--secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,182,212,0.5); }

.hero-btn--outline {
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.hero-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

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

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

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 3.5rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
}
.section:nth-child(1)  { animation-delay: 0.05s; }
.section:nth-child(2)  { animation-delay: 0.10s; }
.section:nth-child(3)  { animation-delay: 0.15s; }
.section:nth-child(4)  { animation-delay: 0.20s; }
.section:nth-child(5)  { animation-delay: 0.25s; }
.section:nth-child(6)  { animation-delay: 0.30s; }
.section:nth-child(7)  { animation-delay: 0.35s; }
.section:nth-child(8)  { animation-delay: 0.40s; }

/* top accent line */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.section:hover {
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b82f6;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.home-container .section:first-child h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.section-intro {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(4deg); }

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.6rem;
}

.feature-description {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
}
.highlight-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
}
.highlight-box p + p { margin-top: 0.75rem; }

/* ============================================================
   EXPLORE CREATORS CTA
   ============================================================ */
.section.cta-section {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(6,182,212,0.04));
}

.submit-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(59,130,246,0.35);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.5);
}

/* ============================================================
   ABOUT US — disclaimer badges
   ============================================================ */
.about-disclaimers {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.75rem;
}
.disclaimer-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600;
  color: #fca5a5;
}

/* ============================================================
   SOCIAL + NOTIFY
   ============================================================ */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.social-section { }
.social-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
.social-link:hover { transform: translateY(-3px); }
.social-link.youtube:hover  { background: #ff0000; border-color: #ff0000; color: #fff; }
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.social-link.twitter:hover  { background: #000; border-color: #555; color: #fff; }
.social-link.instagram:hover{ background: linear-gradient(135deg,#e4405f,#833ab4); border-color: #e4405f; color: #fff; }
.social-link.telegram:hover { background: #0088cc; border-color: #0088cc; color: #fff; }
.social-link.tiktok:hover   { background: #010101; border-color: #25F4EE; color: #25F4EE; }

/* Notify form */
.form-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.form-container h2 {
  font-size: 1.1rem; font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
}
.form-container form {
  display: flex; flex-direction: column; gap: 0.875rem;
}
.form-group { position: relative; }

.form-container input,
.form-container select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-container input:focus,
.form-container select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
  background: rgba(255,255,255,0.07);
}
.form-container input::placeholder { color: #475569; }
.form-container select option { background: #1e293b; }

.form-container .submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .connect-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-header { padding: 5rem 1.5rem 6rem; }
  .hero-header h1 { font-size: 2.4rem; }
  .section { padding: 2rem 1.5rem; margin: 1.75rem 0; }
  .features-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .feature-card { padding: 1.5rem; }
  .about-disclaimers { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-header { padding: 4rem 1rem 5rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; justify-content: center; }
  .section { padding: 1.5rem 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .social-links { gap: 0.6rem; }
  .social-link { width: 44px; height: 44px; }
  .social-link svg { width: 20px; height: 20px; }
}

/* Homepage polish override */
.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  margin: 0 auto 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(15, 23, 42, 0.55);
  color: #bfdbfe;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-header {
  padding: 5.5rem 1.25rem 6.5rem;
}

.hero-header .logo {
  width: 74px;
  height: 74px;
  margin-bottom: 1.35rem;
  border-radius: 999px;
}

.brandmark {
  width: 50px;
  height: 50px;
}

.hero-header h1 {
  max-width: 14ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.hero-sub {
  max-width: 640px;
  color: #9fb0c9;
  font-size: 1rem;
  line-height: 1.72;
}

.home-container {
  max-width: 1120px;
  padding: 0 1rem 4rem;
  margin-top: -2.75rem;
  position: relative;
  z-index: 2;
}

.section {
  background: linear-gradient(180deg, rgba(18, 27, 48, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 24px;
  padding: 2.4rem;
  margin: 1.35rem 0;
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.22);
}

.section::before {
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.05), rgba(96, 165, 250, 0.55), rgba(34, 211, 238, 0.08));
}

.section-intro,
.section p,
.feature-description,
.progress-details {
  color: #9fb0c9;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-card {
  text-align: left;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
}

.feature-icon {
  margin: 0 0 1rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.2rem;
}

.feature-title {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.highlight-box {
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem;
  background: rgba(37, 99, 235, 0.08);
  border-left-width: 3px;
}

.cta-section {
  padding: 1.6rem;
}

.submit-btn {
  min-width: 220px;
}

.progress-container,
.form-container {
  background: rgba(255,255,255,0.025);
}

@media (max-width: 768px) {
  .hero-header {
    padding: 4.5rem 1rem 5rem;
  }

  .hero-shell {
    padding: 0;
  }

  .hero-header h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 8.2vw, 3rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 31rem;
  }

  .home-container {
    margin-top: -1.8rem;
    padding: 0 0.85rem 3rem;
  }

  .section {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .section h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .section-intro {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

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

  .feature-card {
    padding: 1.1rem;
  }

  .connect-grid {
    gap: 1.35rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .hero-buttons {
    gap: 0.7rem;
    margin-top: 1.6rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.82rem 1rem;
  }

  .section-label {
    margin-bottom: 0.75rem;
  }

  .social-title {
    margin-bottom: 0.85rem;
  }
}

/* Hero and first-section refinement */
.hero-header {
  padding: 1.15rem 1.25rem 2.4rem;
}

.hero-shell {
  padding-top: 0.35rem;
}

.hero-badge {
  margin-bottom: 0.75rem;
}

.hero-header .logo {
  width: 82px;
  height: 82px;
  margin-bottom: 0.3rem;
  border-radius: 999px;
}

.brandmark {
  width: 56px;
  height: 56px;
}

.hero-header h1 {
  max-width: 30ch;
  font-size: clamp(1.55rem, 3.5vw, 2.75rem);
  line-height: 0.98;
  margin-bottom: 0.45rem;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.hero-sub {
  max-width: 920px;
  font-size: 0.92rem;
  color: #e2e8f0;
  margin-bottom: 0;
}

.hero-buttons {
  margin-top: 1rem;
  justify-content: center;
}

.primary-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.primary-features .feature-card {
  min-height: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbeafe;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd;
  font-size: 0.63rem;
  font-weight: 800;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .primary-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-header h1 {
    max-width: 22ch;
    font-size: clamp(1.65rem, 4.8vw, 2.25rem);
  }

  .hero-sub {
    max-width: 32rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .primary-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .primary-features .feature-card {
    padding: 1rem;
  }

  .primary-features .feature-description {
    font-size: 0.84rem;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .hero-header {
    padding: 1.1rem 1rem 2.1rem;
  }

  .hero-header h1 {
    max-width: 17ch;
    font-size: 1.75rem;
  }

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

  .section {
    padding: 1.2rem;
  }
}
