:root {
  --bg: #f1f5f9;
  --bg-alt: #e5edf5;
  --card: #ffffff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-2: #0ea5e9;
  --accent-3: #16a34a;
  --danger: #dc2626;
  --warning: #ea580c;
  --text: #0f172a;
  --muted: #4b5563;
  --border: rgba(148, 163, 184, 0.6);
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --blur: 18px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e5edf5 0, #f8fafc 45%, #f8fafc 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

.page-wrapper {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.16) 0, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.14) 0, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(45, 212, 191, 0.1) 0, transparent 50%);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
.hero {
  position: relative;
  padding: 20px clamp(18px, 4vw, 32px) 64px;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 12px;
  z-index: 50;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 10%, #2563eb, #0ea5e9 40%, #0369a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.6);
}

.nav__logo-text span {
  font-weight: 700;
  font-size: 14px;
}

.nav__logo-text small {
  font-size: 11px;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.nav__links a {
  padding: 6px 12px;
  border-radius: 999px;
  color: #4b5563;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform 0.15s ease-out;
}

.nav__links a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
}

/* HERO */
.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 40px);
  align-items: center;
  padding-top: 40px;
}

.hero__text {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  margin-bottom: 12px;
}

.hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.25);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 12px;
}

.hero__highlight {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero__highlight-outline {
  position: relative;
}

.hero__highlight-outline::before {
  content: "";
  position: absolute;
  inset: -4px -8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.6);
  opacity: 0.6;
  z-index: -1;
}

.hero__subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  border-color: rgba(37, 99, 235, 0.9);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.8);
  color: #111827;
}

.btn--ghost:hover {
  background: #ffffff;
  border-color: var(--accent);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  padding: 10px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 60%);
  border: 1px solid rgba(148, 163, 184, 0.7);
  min-width: 110px;
}

.stat__number {
  font-weight: 800;
  font-size: 18px;
  display: block;
}

.stat__label {
  font-size: 11px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  backdrop-filter: blur(var(--blur));
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
}

.glass-card--main {
  width: 100%;
  max-width: 360px;
  transform: translateY(10px);
  animation: float 7s ease-in-out infinite;
}

.glass-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.glass-card__title {
  font-size: 13px;
  color: #64748b;
}

.glass-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.mini-tile {
  padding: 8px 10px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), #eff6ff);
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-tile i {
  font-size: 13px;
  color: var(--accent);
}

.glass-card__footer {
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.glass-card__footer i {
  color: var(--accent-2);
}

.hero__floating {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 11px;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
}

.hero__floating--top {
  top: 40px;
  left: 4%;
  animation: floatSide 8s ease-in-out infinite;
}

.hero__floating--bottom {
  bottom: 8px;
  right: 0;
  animation: floatSide 9s ease-in-out infinite reverse;
}

.hero__floating i {
  color: var(--accent-3);
}

.hero__wave {
  position: absolute;
  inset-inline: -40px;
  bottom: -40px;
  height: 160px;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.35), transparent 60%);
  pointer-events: none;
}

/* SECTIONS */
.section {
  padding: 40px clamp(18px, 4vw, 32px);
}

.section--overview {
  padding-top: 10px;
}

.section__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 28px;
}

.section__header h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
}

.section__header p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  margin-bottom: 10px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent);
}

.alt-bg {
  background: radial-gradient(circle at top, #e5edf5, #eef2ff);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.overview-item {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
}

.overview-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #2563eb, #0ea5e9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 8px;
}

.overview-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.overview-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* PORTAL LAYOUTS */
.section--portals {
  padding-top: 32px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.portal-layout__preview {
  min-width: 0;
}

.portal-layout__details h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.feature-list {
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.feature-list i {
  margin-top: 3px;
  color: var(--accent-3);
}

/* MOCKUP */
.mockup {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: linear-gradient(145deg, #ffffff, #e5edf5);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.mockup--light {
  background: linear-gradient(145deg, #ffffff, #eff6ff);
}

.mockup__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 60%);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot--red {
  background: #f97373;
}

.dot--yellow {
  background: #facc15;
}

.dot--green {
  background: #22c55e;
}

.mockup__title {
  font-size: 12px;
  color: var(--muted);
  margin-inline-start: auto;
}

.mockup__content {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
}

.mockup__content--form {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup__sidebar {
  padding: 10px;
  border-inline-end: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, #eef2ff, #e5edf5);
}

.mockup__sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 7px 9px;
  border-radius: 12px;
  color: #64748b;
  cursor: default;
}

.mockup__sidebar-item--active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.06));
  color: #1e293b;
}

.mockup__sidebar-item i {
  font-size: 13px;
}

.mockup__main {
  padding: 12px;
}

.mockup__cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mockup-card {
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), #eff6ff);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
}

.mockup-card__label {
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

.mockup-card__value {
  font-size: 16px;
  font-weight: 700;
}

.mockup-card__chip {
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 3px;
}

.chip--green {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.chip--blue {
  background: rgba(56, 189, 248, 0.18);
  color: #e0f2fe;
}

.chip--red {
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
}

.chip--orange {
  background: rgba(249, 115, 22, 0.18);
  color: #fed7aa;
}

.mockup__chart {
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top, #eff6ff, #e5edf5);
}

.mockup__chart-title {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.mockup__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.mockup__chart-bars span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb, rgba(148, 163, 184, 0.4));
  height: var(--h);
}

/* PORTAL GRID */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.portal-card {
  position: relative;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.06), #ffffff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
}

.portal-card--visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform var(--transition-med), opacity var(--transition-med),
    box-shadow var(--transition-med);
}

.portal-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, #2563eb, #0ea5e9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 8px;
}

.portal-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.portal-card p {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}

.portal-card ul {
  padding-inline-start: 16px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  list-style: disc;
}

/* SPLIT LAYOUT */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.96);
}

.pill--blue {
  border-color: rgba(56, 189, 248, 0.7);
  color: #e0f2fe;
}

.pill--purple {
  border-color: rgba(168, 85, 247, 0.7);
  color: #f3e8ff;
}

.pill--green {
  border-color: rgba(34, 197, 94, 0.7);
  color: #dcfce7;
}

.pill--orange {
  border-color: rgba(249, 115, 22, 0.7);
  color: #ffedd5;
}

/* PHONE MOCKUP */
.phone-mockup {
  width: 230px;
  margin-inline: auto;
  border-radius: 32px;
  padding: 10px;
  background: radial-gradient(circle at top, #e5edf5, #ffffff);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.7);
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.phone-mockup__screen {
  margin-top: 12px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #eff6ff);
  padding: 10px;
}

.phone-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 8px;
}

.phone-mockup__header span {
  color: var(--muted);
}

.phone-mockup__header i {
  color: var(--accent);
  font-size: 18px;
}

.phone-mockup__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.phone-tile {
  padding: 8px 6px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), #eff6ff);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: 10px;
}

.phone-tile--wide {
  grid-column: span 2;
}

.phone-tile i {
  font-size: 14px;
  color: #1d4ed8;
}

/* FINANCE */
.glass-card--finance {
  animation: float 7s ease-in-out infinite;
}

.finance-grid {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.finance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.finance-label {
  color: var(--muted);
  min-width: 105px;
}

.finance-value {
  font-weight: 600;
}

.glass-card__footer--split {
  justify-content: space-between;
  font-size: 10px;
  gap: 8px;
}

/* FORM MOCKUP */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row label {
  font-size: 11px;
  color: var(--muted);
}

.form-input {
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

.form-input--select {
  position: relative;
}

.form-input--select::after {
  content: "▾";
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--muted);
}

.upload-box {
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
}

.upload-box i {
  color: var(--accent);
  font-size: 16px;
}

.form-status {
  margin-top: 4px;
}

/* SUMMARY */
.section--summary {
  padding-bottom: 40px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.summary-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.06), #ffffff);
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(18px);
}

.summary-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--text);
}

.summary-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform var(--transition-med), opacity var(--transition-med);
}

/* FOOTER */
.footer {
  padding: 16px clamp(18px, 4vw, 32px) 22px;
  border-top: 1px solid rgba(203, 213, 225, 1);
  background: radial-gradient(circle at top, #e5edf5, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.footer__content {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.scroll-top {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

/* ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatSide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding-inline: 16px;
  }

  .nav {
    border-radius: 18px;
  }

  .nav__links {
    position: absolute;
    inset-inline: 16px;
    top: 58px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 10px 10px 6px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease-out, transform 0.22s ease-out;
  }

  .nav__links a {
    padding: 8px 10px;
  }

  .nav--open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 32px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__floating--top {
    top: 20px;
    left: 10%;
  }

  .hero__floating--bottom {
    right: 6%;
  }

  .section {
    padding-inline: 16px;
  }

  .portal-layout,
  .split-layout,
  .split-layout--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .mockup__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .mockup__sidebar {
    display: flex;
    overflow-x: auto;
    gap: 6px;
  }

  .mockup__sidebar-item {
    white-space: nowrap;
  }

  .mockup__main {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
  }

  .footer {
    padding-inline: 16px;
  }
}

@media (max-width: 600px) {
  .hero__badge {
    font-size: 11px;
  }

  .btn {
    font-size: 12px;
  }

  .hero__stats {
    gap: 10px;
  }

  .stat {
    padding: 8px 10px;
  }

  .hero__wave {
    height: 120px;
  }
}

