:root {
  --orange: #ff6a00;
  --orange-dark: #d95500;
  --orange-soft: #fff2e8;
  --black: #0f0f0f;
  --dark: #161616;
  --muted: #6d6d6d;
  --white: #ffffff;
  --line: rgba(255, 106, 0, 0.14);
  --shadow: 0 18px 46px rgba(255, 106, 0, 0.14);
  --shadow-dark: 0 22px 60px rgba(0, 0, 0, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --nav-height: 86px;
  --shell: 1380px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--orange);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.navbar.nav-transparent {
  background: rgba(255, 106, 0, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.10);
}

.navbar.nav-top {
  background: var(--orange);
  box-shadow: none;
}

.nav-container {
  width: min(var(--shell), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-links a {
  position: relative;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--white);
}

/* =========================
   HERO - NEW STRUCTURE
========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 58px) 34px 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #171717 45%, #2a1206 100%);
}

.hero-bg-tech,
.hero-overlay,
.hero-grid,
.tech-network {
  position: absolute;
  inset: 0;
}

.hero-bg-tech {
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,106,0,0.22), transparent 30%),
    radial-gradient(circle at 82% 36%, rgba(255,255,255,0.07), transparent 24%),
    radial-gradient(circle at 62% 78%, rgba(255,106,0,0.15), transparent 25%),
    linear-gradient(120deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.48) 48%, rgba(255,106,0,0.16) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,106,0,0.13), transparent);
  animation: sweepLight 8s linear infinite;
}

.hero-grid {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25));
}

.tech-network {
  z-index: 3;
  overflow: hidden;
}

.tech-network::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,106,0,0.18), transparent 16%),
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.08), transparent 12%),
    radial-gradient(circle at 78% 64%, rgba(255,106,0,0.16), transparent 18%);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 5;
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.hero-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-tag {
  margin-bottom: 18px;
  color: #ffd2b3;
}

.hero-content h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.hero-subtitle {
  max-width: 820px;
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.35);
}

.btn-outline {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}

.btn-light {
  color: var(--orange);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  background: transparent;
}

.hero-stats {
  display: grid;
  gap: 18px;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-dark);
}

.glass-card::before {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.23), transparent 68%);
}

.stat-card h3 {
  position: relative;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  margin-bottom: 8px;
}

.stat-card p {
  position: relative;
  color: rgba(255,255,255,0.82);
  line-height: 1.62;
  font-size: 0.95rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 6;
  transform: translateX(-50%);
  width: 34px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.56);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.6s infinite;
}

/* Hero network animation */
.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.95;
  box-shadow:
    0 0 8px rgba(255,255,255,0.95),
    0 0 18px rgba(255,255,255,0.55),
    0 0 28px rgba(255,106,0,0.65),
    0 0 48px rgba(255,106,0,0.28);
  animation: pulseNode 3.2s ease-in-out infinite, floatNode 12s ease-in-out infinite alternate;
}

.link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,106,0,0.95), rgba(255,255,255,0.02));
  background-size: 200% 100%;
  transform-origin: left center;
  box-shadow: 0 0 10px rgba(255,106,0,0.22);
  animation: flowLine 4s linear infinite;
  opacity: 0.38;
}

.node-1 { top: 18%; left: 10%; animation-delay: 0s; }
.node-2 { top: 28%; left: 72%; animation-delay: 0.7s; }
.node-3 { top: 48%; left: 22%; animation-delay: 1.4s; }
.node-4 { top: 64%; left: 82%; animation-delay: 2s; }
.node-5 { top: 36%; left: 50%; animation-delay: 1s; }
.node-6 { top: 74%; left: 38%; animation-delay: 2.4s; }
.link-1 { top: 20%; left: 11%; width: 300px; transform: rotate(15deg); }
.link-2 { top: 38%; left: 23%; width: 360px; transform: rotate(-8deg); animation-delay: 1s; }
.link-3 { top: 52%; left: 22%; width: 430px; transform: rotate(11deg); animation-delay: 2s; }
.link-4 { top: 34%; left: 50%; width: 240px; transform: rotate(30deg); animation-delay: 1.4s; }
.link-5 { top: 66%; left: 38%; width: 300px; transform: rotate(-12deg); animation-delay: 2.2s; }

/* =========================
   GENERAL SECTIONS
========================= */
.section {
  position: relative;
  padding: 110px 34px;
}

.section-shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center,
.cta-shell {
  text-align: center;
}

.section h2,
.section-heading h2,
.feature-panel h2,
.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.section-copy p,
.section-heading p,
.feature-panel p,
.info-card p,
.service-card p,
.timeline-card p,
.roadmap-card p,
.cta-shell p {
  color: var(--muted);
  line-height: 1.8;
}

.section-tag {
  color: var(--orange);
  margin-bottom: 14px;
}

.section-tag.light {
  color: rgba(255,255,255,0.86);
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(255,106,0,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.problem-section,
.audience-section {
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.services-section,
.features-section {
  background: #ffffff;
}

.process-section {
  background:
    radial-gradient(circle at bottom right, rgba(255,106,0,0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
}

.cards-3,
.cards-4,
.service-grid,
.timeline-grid,
.roadmap-grid,
.audience-grid {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.cards-4,
.service-grid,
.timeline-grid,
.roadmap-grid,
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.service-card,
.timeline-card,
.roadmap-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.info-card:hover,
.service-card:hover,
.timeline-card:hover,
.roadmap-card:hover,
.audience-pill:hover,
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(255, 106, 0, 0.18);
}

.info-card::before,
.service-card::before,
.timeline-card::before,
.roadmap-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 68%);
}

.card-line {
  width: 58px;
  height: 4px;
  border-radius: 10px;
  display: inline-block;
  background: var(--orange);
  margin-bottom: 18px;
}

.info-card h3,
.service-card h3,
.timeline-card h3,
.roadmap-card h3 {
  position: relative;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 16px 30px rgba(255, 106, 0, 0.24);
}

.timeline-card span,
.roadmap-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.features-layout {
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.feature-item strong {
  color: var(--orange);
}

.audience-pill {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.cta-section {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8b33 100%);
}

.cta-shell {
  padding: 28px 0;
}

.cta-shell h2,
.cta-shell p {
  color: var(--white);
}

/* =========================
   PROMO VIDEO
========================= */
.promo-video-section {
  background: #ff7000;
  padding: 110px 40px;
  overflow: hidden;
}

.promo-video-shell {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.promo-video-left h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--white);
}

.promo-video-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
}

.promo-tag {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
}

.promo-video-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.promo-switch-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.promo-switch-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.promo-switch-btn.active {
  background: var(--white);
  color: #ff7000;
  border-color: var(--white);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.promo-video-frame {
  position: relative;
  width: 100%;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
}

.promo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background: #000;
}

.promo-video.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* =========================
   KEYFRAMES
========================= */
@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.7; }
  100% { transform: translate(12px, -14px); opacity: 1; }
}

@keyframes sweepLight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes floatNode {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -25px); }
}

@keyframes pulseNode {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes flowLine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .hero-shell {
    grid-template-columns: 1fr 360px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }
}

@media (max-width: 1100px) {
  .two-col,
  .cards-3,
  .cards-4,
  .service-grid,
  .timeline-grid,
  .roadmap-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-logo {
    height: 62px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 106, 0, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    min-height: auto;
    padding: calc(var(--nav-height) + 44px) 24px 64px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .glass-card {
    padding: 18px;
  }

  .scroll-indicator {
    display: none;
  }

  .promo-video-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .promo-video-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-video-left p {
    max-width: 100%;
  }

  .promo-video-buttons {
    justify-content: center;
  }

  .promo-video-frame {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 72px;
  }

  .nav-container {
    width: calc(100% - 28px);
  }

  .brand-logo {
    height: 54px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    border-radius: 16px;
  }

  .hero-section {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 28px) 18px 42px;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 18vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
  }

  .hero-subtitle {
    font-size: clamp(1.04rem, 5.2vw, 1.38rem);
    line-height: 1.24;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding: 13px 18px;
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .glass-card {
    padding: 12px 9px;
    border-radius: 14px;
    min-height: 104px;
  }

  .stat-card h3 {
    font-size: 0.9rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .stat-card p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .node {
    width: 8px;
    height: 8px;
  }

  .node-4,
  .node-5,
  .node-6,
  .link-3,
  .link-4,
  .link-5 {
    display: none;
  }

  .link-1 { width: 95px; top: 23%; left: 13%; transform: rotate(12deg); }
  .link-2 { width: 115px; top: 39%; left: 24%; transform: rotate(-10deg); }

  .section {
    padding: 74px 18px;
  }

  .two-col,
  .cards-3,
  .cards-4,
  .service-grid,
  .timeline-grid,
  .roadmap-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .section h2,
  .section-heading h2,
  .feature-panel h2,
  .section-intro h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .info-card,
  .service-card,
  .timeline-card,
  .roadmap-card {
    padding: 22px;
    border-radius: 20px;
  }

  .feature-item {
    padding: 18px;
  }

  .promo-video-section {
    padding: 76px 18px;
  }

  .promo-video-left h2 {
    font-size: 1.8rem;
  }

  .promo-video-left p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .promo-video-frame {
    min-height: 240px;
    border-radius: 18px;
  }

  .promo-switch-btn {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .hero-section {
    padding: calc(var(--nav-height) + 22px) 14px 34px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-content p {
    font-size: 0.84rem;
  }

  .hero-stats {
    gap: 6px;
  }

  .glass-card {
    min-height: 98px;
    padding: 10px 7px;
  }

  .stat-card h3 {
    font-size: 0.78rem;
  }

  .stat-card p {
    font-size: 0.62rem;
  }
}
