:root {
  --bg: #f7f5ff;
  --bg-soft: #f3efff;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --purple: #7c3aed;
  --purple-2: #a855f7;
  --purple-3: #6d28d9;
  --purple-soft: #efe7ff;
  --teal: #14b8a6;
  --red: #f43f5e;
  --blue: #3b82f6;
  --border: rgba(124, 58, 237, 0.12);
  --shadow: 0 18px 50px rgba(88, 28, 180, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
  --header-h: 84px;
  --font: "Cairo", sans-serif;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #8b5cf6 100%);
  --grad-text: linear-gradient(90deg, #7c3aed 0%, #6366f1 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(700px 420px at 10% 30%, rgba(99, 102, 241, 0.12), transparent 55%),
    var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.55;
}

.bg-glow--1 {
  width: 380px;
  height: 380px;
  background: #c4b5fd;
  top: -80px;
  left: -60px;
}

.bg-glow--2 {
  width: 420px;
  height: 420px;
  background: #ddd6fe;
  top: 180px;
  right: -120px;
}

.bg-dots {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(124, 58, 237, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(124, 58, 237, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.logo__text small {
  margin-top: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  position: relative;
  font-weight: 600;
  color: #4b5563;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--purple);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(124, 58, 237, 0.42);
}

.btn--outline {
  color: var(--purple);
  background: #fff;
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  box-shadow: var(--shadow-soft);
}

.btn--outline:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}

.btn--sm {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.btn--light {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.btn--ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  padding: 36px 0 20px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero__content {
  padding-block: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero__title-dark {
  color: #151528;
}

.text-gradient {
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 55%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.05rem;
  padding-right: 16px;
  border-right: 3px solid rgba(124, 58, 237, 0.55);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.hero__orb {
  display: none; /* الصورة الأصلية تحتوي الإضاءة بالفعل */
}

.hero__image {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-width: 100%;
  height: auto;
  margin-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  /* يدمج الخلفية الفاتحة للصورة مع خلفية الصفحة */
  mix-blend-mode: multiply;
  animation: float-soft 6s ease-in-out infinite;
  filter: contrast(1.03) saturate(1.04);
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@supports not (mix-blend-mode: multiply) {
  .hero__image {
    -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 48%, #000 55%, transparent 78%);
    mask-image: radial-gradient(ellipse 72% 68% at 50% 48%, #000 55%, transparent 78%);
  }
}

.scene__monitor {
  position: absolute;
  inset: 12% 18% 28% 18%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 22px;
  border: 8px solid #eef2ff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scene__screen {
  height: 100%;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.18), transparent 40%),
    linear-gradient(160deg, #faf5ff, #eef2ff 55%, #f8fafc);
}

.scene__screen h3 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.scene__charts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  height: calc(100% - 42px);
}

.scene__line,
.scene__donut {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.scene__line {
  position: relative;
  overflow: hidden;
}

.scene__line::before {
  content: "";
  position: absolute;
  inset: 22% 12% 18% 12%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, transparent),
    radial-gradient(circle at 10% 70%, #a855f7 3px, transparent 4px),
    radial-gradient(circle at 35% 45%, #8b5cf6 3px, transparent 4px),
    radial-gradient(circle at 58% 55%, #6366f1 3px, transparent 4px),
    radial-gradient(circle at 82% 28%, #7c3aed 3px, transparent 4px);
  box-shadow: inset 0 0 0 2px transparent;
  background-repeat: no-repeat;
  border-top: 3px solid #a855f7;
  transform: rotate(-8deg);
}

.scene__donut {
  display: grid;
  place-items: center;
}

.scene__donut span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--purple);
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(#7c3aed 0 78%, #e9d5ff 78% 100%);
}

.scene__stand {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #e5e7eb;
  border-radius: 0 0 10px 10px;
}

.scene__base {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 10px;
  background: #d1d5db;
  border-radius: 999px;
}

.float-card {
  position: absolute;
  min-width: 58px;
  height: 58px;
  padding: 0 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1f2937;
  animation: float 4.5s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}

.float-card .brand-icon {
  flex-shrink: 0;
  display: block;
}

.float-card span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #374151;
}

.float-card--wide {
  min-width: auto;
  height: 56px;
  padding: 0 12px;
  border-radius: 18px;
}

.float-card--1 { top: 7%; right: 2%; animation-delay: 0s; }
.float-card--2 { top: 16%; left: 2%; animation-delay: 0.4s; }
.float-card--3 { top: 36%; right: 0; animation-delay: 0.8s; width: 58px; padding: 0; }
.float-card--4 { bottom: 28%; left: 1%; animation-delay: 1.1s; width: 58px; padding: 0; }
.float-card--5 { bottom: 18%; right: 4%; animation-delay: 1.5s; }
.float-card--6 { top: 52%; left: 10%; animation-delay: 1.8s; }
.float-card--7 { top: 4%; left: 30%; animation-delay: 0.6s; width: 58px; padding: 0; }

.scene__robot {
  position: absolute;
  bottom: 6%;
  right: 22%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 72%, rgba(124, 58, 237, 0.15) 0 12px, transparent 13px),
    linear-gradient(180deg, #ffffff, #f3e8ff);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.25);
  display: grid;
  place-items: center;
  animation: float 3.8s ease-in-out infinite;
  z-index: 3;
}

.scene__robot::before,
.scene__robot::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7c3aed;
  box-shadow: 0 0 12px #a855f7;
}

.scene__robot::before { right: 22px; }
.scene__robot::after { left: 22px; }

.scene__plant {
  position: absolute;
  bottom: 8%;
  left: 24%;
  width: 34px;
  height: 54px;
  z-index: 2;
}

.scene__plant::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
  border-radius: 0 0 10px 10px;
  background: #d6d3d1;
}

.scene__plant::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 30px;
  border-radius: 40% 40% 45% 45%;
  background: linear-gradient(180deg, #a855f7, #7c3aed);
}

.scene__students {
  position: absolute;
  top: 42%;
  left: 2%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.9s;
}

.scene__students strong {
  display: block;
  font-size: 1.1rem;
  color: var(--purple);
  line-height: 1.1;
}

.scene__students span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Stats */
.stats {
  padding: 10px 0 40px;
}

.stats__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.stats__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stats__icon--purple { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.stats__icon--teal { background: rgba(20, 184, 166, 0.12); color: #0d9488; }
.stats__icon--red { background: rgba(244, 63, 94, 0.12); color: #e11d48; }
.stats__icon--blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }

.stats__item strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 900;
}

.stats__item strong[data-count] {
  font-size: 1.55rem;
  line-height: 1.1;
}

.stats__item span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(243, 239, 255, 0.55), transparent);
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about {
  max-width: 820px;
}

.about__content {
  text-align: right;
}

.about__role {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

.about__text {
  max-width: 720px;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section__head .section__text {
  margin-inline: auto;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 14px;
}

.section__text {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 22px;
}

.features {
  display: grid;
  gap: 14px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1000px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  transform: scale(1) translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  transform-origin: center center;
  will-change: transform;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.07) translateY(-10px);
  box-shadow: 0 24px 48px rgba(88, 28, 180, 0.18);
  border-color: rgba(124, 58, 237, 0.28);
  z-index: 2;
}

.card:active {
  transform: scale(0.97) translateY(-2px);
  transition-duration: 0.18s;
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card__icon {
  transform: scale(1.12) rotate(-4deg);
}

.card__icon--purple { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.card__icon--teal { background: rgba(20, 184, 166, 0.12); color: #0d9488; }
.card__icon--blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.card__icon--red { background: rgba(244, 63, 94, 0.12); color: #e11d48; }

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.service-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.service-list li {
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 700;
  color: #374151;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-list li + li {
  margin-top: 4px;
}

.service-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  margin-left: 10px;
  vertical-align: middle;
}

.service-list li:hover {
  background: var(--purple-soft);
  color: var(--purple);
  transform: translateX(-4px);
}

.cta {
  padding: 20px 0 80px;
}

.cta__box {
  text-align: center;
  padding: 56px 28px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    var(--grad);
  box-shadow: 0 24px 50px rgba(124, 58, 237, 0.35);
}

.cta__box h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.cta__box p {
  max-width: 620px;
  margin: 0 auto 24px;
  opacity: 0.95;
}

.cta__box .hero__actions {
  justify-content: center;
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-animate="fade-down"] {
  transform: translateY(-24px);
}

[data-animate="fade-left"] {
  transform: translateX(-36px);
}

[data-animate="fade-right"] {
  transform: translateX(36px);
}

[data-animate="zoom-in"] {
  transform: scale(0.94);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate],
  .float-card,
  .scene__robot,
  .hero__image,
  .hero__orb,
  .card,
  .card__icon {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }
}

@media (max-width: 960px) {
  .nav,
  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(var(--header-h) + 8px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav__link {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav.is-open .nav__link:hover,
  .nav.is-open .nav__link.is-active {
    background: var(--purple-soft);
  }

  .hero__grid,
  .section__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 420px;
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .hero__desc {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .stats__bar,
  .cards {
    grid-template-columns: 1fr;
  }

  .stats__bar {
    border-radius: 24px;
    padding: 14px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__visual {
    min-height: 340px;
  }

  .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .logo--footer {
    justify-content: center;
  }
}
