/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --bg:        #08080F;
  --bg-2:      #0F0F1A;
  --bg-card:   #13131E;
  --bg-card-2: #1A1A28;
  --border:    rgba(255,255,255,0.07);
  --accent:    #4F8EFF;
  --accent-glow: rgba(79,142,255,0.25);
  --accent-dim:  rgba(79,142,255,0.12);
  --text:      #EEEEF5;
  --text-2:    #8888A8;
  --text-3:    #5555708;
  --radius:    14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: clamp(5rem, 10vw, 8rem); }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { color: var(--text-2); font-size: 1.05rem; }

.accent {
  background: linear-gradient(135deg, #4F8EFF, #7BB8FF, #4F8EFF);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(79,142,255,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.2rem;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__header p { margin-top: 1rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn--primary:hover {
  background: #6B9FFF;
  box-shadow: 0 0 40px rgba(79,142,255,0.45);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(79,142,255,0.35);
}
.btn--outline:hover {
  background: var(--accent-dim);
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,15,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  transition: transform var(--transition), filter var(--transition);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
  filter: brightness(1.3) drop-shadow(0 0 12px var(--accent-glow));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.15rem;
  border-radius: 8px;
}
.nav__cta:hover { opacity: 0.88; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,8,15,0.97);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 1.2rem;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--text); }
.nav__mobile.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 120px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(79,142,255,0.15);
  top: -100px; left: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(79,142,255,0.08);
  bottom: 0; right: 10%;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero__inner {
  position: relative;
  max-width: 100%;
}

/* Hero floating logo */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-orbit {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-img {
  width: 160px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 60px rgba(79,142,255,0.15);
  animation: floatLogo 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero__logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79,142,255,0.15);
}
.hero__logo-ring--1 {
  width: 220px; height: 220px;
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__logo-ring--2 {
  width: 290px; height: 290px;
  border-style: dashed;
  border-color: rgba(79,142,255,0.1);
  animation: ringRotate 20s linear infinite;
}
.hero__logo-ring--3 {
  width: 340px; height: 340px;
  border-color: rgba(79,142,255,0.06);
  animation: ringPulse 5s ease-in-out infinite reverse;
}
.hero__orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  z-index: 3;
}
.hero__orbit-dot--1 {
  animation: orbitDot1 8s linear infinite;
}
.hero__orbit-dot--2 {
  animation: orbitDot2 12s linear infinite;
  width: 6px; height: 6px;
  opacity: 0.7;
}
.hero__orbit-dot--3 {
  animation: orbitDot3 10s linear infinite reverse;
  width: 5px; height: 5px;
  opacity: 0.5;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
@keyframes orbitDot1 {
  from { transform: rotate(0deg) translateX(145px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(145px) rotate(-360deg); }
}
@keyframes orbitDot2 {
  from { transform: rotate(120deg) translateX(110px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(110px) rotate(-480deg); }
}
@keyframes orbitDot3 {
  from { transform: rotate(240deg) translateX(170px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(170px) rotate(-600deg); }
}

/* Button shine effect */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn__shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(79,142,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
}
.hero__title { max-width: 720px; }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat__num { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.stat__label { font-size: 0.8rem; color: var(--text-2); }
.stat__divider { width: 1px; height: 40px; background: var(--border); }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--bg-2); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__content { display: flex; flex-direction: column; gap: 1.25rem; }
.about__content h2 { margin-bottom: 0.25rem; }

.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 60px rgba(79,142,255,0.06);
}
.about__card-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.25rem;
}
.about__card-icon svg { width: 100%; height: 100%; }
.about__card-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.about__card-list { display: flex; flex-direction: column; gap: 0.75rem; }
.about__card-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: #3DDA84; box-shadow: 0 0 8px rgba(61,218,132,0.5); }
.dot--blue  { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); animation: pulse 2s infinite; }
.dot--grey  { background: #44445A; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-card:hover {
  border-color: rgba(79,142,255,0.3);
  box-shadow: 0 0 40px rgba(79,142,255,0.08);
  transform: translateY(-4px);
}
.service-card--accent {
  background: var(--accent-dim);
  border-color: rgba(79,142,255,0.3);
}
.service-card__icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card p { font-size: 0.93rem; line-height: 1.6; }
.service-card__tag {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  width: fit-content;
}

/* ===========================
   FOR WHO
   =========================== */
.for-who { background: var(--bg-2); }
.for-who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.who-card:hover {
  border-color: rgba(79,142,255,0.3);
  transform: translateY(-4px);
}
.who-card__icon {
  width: 64px; height: 64px;
  margin-bottom: 1.25rem;
}
.who-card__icon svg { width: 100%; height: 100%; }
.who-card h3 { margin-bottom: 0.65rem; }
.who-card p { font-size: 0.93rem; margin-bottom: 1.25rem; }
.who-card__list { display: flex; flex-direction: column; gap: 0.5rem; }
.who-card__list li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1rem;
  position: relative;
}
.who-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ===========================
   WHY US
   =========================== */
.why-us { background: var(--bg); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(79,142,255,0.3);
  transform: translateY(-4px);
}
.why-card__num {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(79,142,255,0.1);
  letter-spacing: -0.05em;
  line-height: 1;
}
.why-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
}
.why-card__icon svg { width: 100%; height: 100%; }
.why-card h3 { margin-bottom: 0.65rem; }
.why-card p { font-size: 0.9rem; line-height: 1.65; }

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #0D1828 0%, #0A0F20 50%, #0D1828 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.cta-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(79,142,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__inner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-band__inner p { color: var(--text-2); margin-top: 0.5rem; }

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--bg-2); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__info h2 { margin-bottom: 0; }
.contact__details { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-2);
  font-size: 0.95rem;
}
.contact__detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238888A8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__group select option { background: var(--bg-card-2); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: #44445A; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: rgba(79,142,255,0.5);
  box-shadow: 0 0 0 3px rgba(79,142,255,0.1);
}
.form__group textarea { resize: vertical; min-height: 110px; }
.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: -0.25rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__brand p { font-size: 0.85rem; color: var(--text-2); }
.footer__brand .nav__logo-img { height: 32px; }
.footer__links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer__links a { font-size: 0.88rem; color: var(--text-2); transition: color var(--transition); }
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 0.82rem; color: var(--text-2); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.services__grid   .reveal:nth-child(2) { transition-delay: 0.08s; }
.services__grid   .reveal:nth-child(3) { transition-delay: 0.16s; }
.services__grid   .reveal:nth-child(4) { transition-delay: 0.24s; }
.services__grid   .reveal:nth-child(5) { transition-delay: 0.32s; }
.services__grid   .reveal:nth-child(6) { transition-delay: 0.40s; }
.for-who__grid    .reveal:nth-child(2) { transition-delay: 0.1s; }
.for-who__grid    .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-us__grid     .reveal:nth-child(2) { transition-delay: 0.08s; }
.why-us__grid     .reveal:nth-child(3) { transition-delay: 0.16s; }
.why-us__grid     .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .hero__split { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__logo-orbit { width: 260px; height: 260px; }
  .hero__logo-img { width: 120px; }
  .hero__logo-ring--1 { width: 170px; height: 170px; }
  .hero__logo-ring--2 { width: 220px; height: 220px; }
  .hero__logo-ring--3 { width: 260px; height: 260px; }
  .hero__content { align-items: center; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .for-who__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .cta-band__inner { text-align: center; justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat__divider { display: none; }
}
