/* ============================================
   Rivo CRM — Main Stylesheet
   ============================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  /* Backgrounds — light water tones */
  --bg: #F7FBFD;
  --bg-alt: #E8F4FA;
  --bg-blue-tint: #EDF7FC;
  --bg-dark: #0A2540;
  --bg-darker: #041729;
  --white: #FFFFFF;

  /* Text */
  --ink: #0A1628;
  --ink-2: #1E293B;
  --body: #475569;
  --muted: #64748B;
  --dim: #94A3B8;
  --line: #DDE9F0;
  --line-2: #C7DBE8;

  /* Brand — River Blue (like Cube Furniture) */
  --primary: #2094C7;
  --primary-dark: #17739A;
  --primary-darker: #0F5975;
  --primary-light: #C7E6F3;
  --primary-tint: #EDF7FC;
  --primary-glow: rgba(32, 148, 199, 0.4);

  /* Accent — Fresh teal (like Cube's 3D shape) */
  --accent: #4EBBB8;
  --accent-dark: #35A29F;
  --accent-light: #CCECEB;

  /* Utility */
  --success: #10B981;
  --success-light: #D1FAE5;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 15, 25, 0.06);
  --shadow: 0 4px 12px rgba(11, 15, 25, 0.08);
  --shadow-lg: 0 20px 50px -12px rgba(11, 15, 25, 0.15);
  --shadow-xl: 0 30px 70px -20px rgba(11, 15, 25, 0.25);

  /* Radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Fonts */
  --f-display: "Cairo", "Tajawal", system-ui, sans-serif;
  --f-body: "Tajawal", "Cairo", system-ui, sans-serif;
  --f-latin: "Space Grotesk", "Cairo", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "Space Grotesk", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* ============ CONTAINERS ============ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ============ EYEBROW LABELS ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--primary-light);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}
.eyebrow.danger {
  background: var(--danger-light);
  color: var(--danger);
  border-color: #FECACA;
}
.eyebrow.dark {
  background: rgba(5, 150, 105, 0.15);
  color: var(--primary-light);
  border-color: rgba(5, 150, 105, 0.3);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #4EBBB8 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 24px -8px rgba(32, 148, 199, 0.55);
  border: 1px solid rgba(32, 148, 199, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 55%, var(--primary-darker) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(32, 148, 199, 0.65);
}
.btn-primary .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #B4F7F1;
  box-shadow: 0 0 10px #B4F7F1;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }

/* ============ NAV — White premium ============ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
nav.top .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Brand — Gold mark + dark text, blends with white nav */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--f-latin);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.85; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #4AB5E0 0%, #2094C7 45%, #17739A 100%);
  display: grid;
  place-items: center;
  box-shadow:
    0 6px 14px -4px rgba(32, 148, 199, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.brand-mark::before {
  /* Subtle water sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%
  );
}
.brand-mark svg { position: relative; z-index: 2; }
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.03em;
}
.brand-slogan {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  line-height: 1;
}
@media (max-width: 500px) {
  .brand-slogan { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 20px; }
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-actions .btn { padding: 11px 20px; font-size: 14px; }
.nav-actions .btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-2);
}
.nav-actions .btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
}

/* ============ HERO — Light & airy, water-inspired ============ */
.hero {
  position: relative;
  padding: 60px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--primary-tint) 100%);
  color: var(--ink-2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(32, 148, 199, 0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 70%, rgba(78, 187, 184, 0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* Subtle grid overlay for depth */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 148, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 148, 199, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 700px 500px at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 700px 500px at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

/* Decorative wave at bottom of hero — the "river" motif */
.hero-wave {
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 40px 0 80px; }
}
.hero-tag-en {
  font-family: var(--f-latin);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-tag-en::before,
.hero-tag-en::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
  opacity: 0.5;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 900;
}
.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #4EBBB8 0%, #2094C7 50%, #17739A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px dashed var(--line-2);
}
.hero-badges .b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 600;
}
.hero-badges .b svg { color: var(--primary); flex-shrink: 0; }

/* ============ HERO DASHBOARD MOCKUP — Card on light bg ============ */
.hero-mock { position: relative; }
.hero-mock::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  left: -30px;
  bottom: -30px;
  background: radial-gradient(closest-side, rgba(78, 187, 184, 0.20), transparent 70%);
  border-radius: 40px;
  z-index: -1;
}
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow:
    0 30px 60px -20px rgba(15, 89, 117, 0.25),
    0 8px 24px -8px rgba(15, 89, 117, 0.12);
  transform: perspective(2000px) rotateY(-2deg) rotateX(1deg);
}
.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.mock-head .title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.mock-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--f-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mock-head .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
  animation: pulse 1.8s ease-in-out infinite;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mock-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px;
}
.mock-stat .k {
  font-family: var(--f-latin);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.mock-stat .k.up { color: var(--primary); }
.mock-stat .l { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.mock-pipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mock-col {
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  padding: 10px 8px;
  min-height: 180px;
}
.mock-col .h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 2px;
}
.mock-col .n { font-size: 10.5px; font-weight: 700; color: var(--ink); }
.mock-col .c {
  font-family: var(--f-latin);
  font-size: 10px;
  color: var(--muted);
  background: var(--white);
  padding: 1px 6px;
  border-radius: 999px;
}
.mock-card {
  background: var(--white);
  border-radius: 6px;
  padding: 8px 9px;
  margin-bottom: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mock-card.hot {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff, var(--accent-light));
}
.mock-card.done {
  background: linear-gradient(135deg, #fff, var(--success-light));
  border-color: rgba(5, 150, 105, 0.25);
}
.mock-card .cn { font-size: 10.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.mock-card .cv { font-family: var(--f-latin); font-size: 10px; color: var(--primary-darker); font-weight: 700; }
.mock-card.done .cv { color: var(--success); }
.mock-card .cf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 9px;
  color: var(--muted);
}
.mock-card .av {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}
.mock-card.moving { animation: cardMove 4s ease-in-out infinite; }
@keyframes cardMove {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow-sm); }
  50% { transform: translateY(-4px); box-shadow: 0 8px 20px -6px rgba(11, 15, 25, 0.15); }
}
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.float-badge.tl { top: -18px; right: -18px; transform: rotate(-3deg); }
.float-badge.br { bottom: -20px; left: -18px; transform: rotate(2deg); }
.float-badge svg { color: var(--success); flex-shrink: 0; }
.float-badge.br svg { color: var(--primary); }
.float-badge .t { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.float-badge .s { font-size: 10.5px; color: var(--muted); }
@media (max-width: 500px) {
  .mock-pipe { grid-template-columns: repeat(2, 1fr); }
  .mock { transform: none; }
  .float-badge.tl { top: -14px; right: -8px; }
  .float-badge.br { bottom: -14px; left: -8px; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar .head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.trust-bar h4 { font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.trust-bar p { color: var(--muted); font-size: 14.5px; }
.logos-strip {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-item {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  background: var(--white);
}
.logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .logo-item { width: 170px; height: 170px; }
  .logos-strip { gap: 18px; }
}
@media (max-width: 600px) {
  .logo-item { width: 140px; height: 140px; }
  .logos-strip { gap: 14px; }
}

/* ============ SECTION BASE ============ */
section.block { padding: 110px 0; position: relative; }
@media (max-width: 700px) { section.block { padding: 70px 0; } }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  margin-top: 20px;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.8;
}

/* ============ STATS ============ */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 400px at 20% 30%, rgba(32, 148, 199, 0.25), transparent 60%),
    radial-gradient(500px 400px at 80% 70%, rgba(78, 187, 184, 0.18), transparent 60%);
}
.stats-section .wrap { position: relative; }
.stats-section h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 12px;
}
.stats-section .lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16.5px;
  max-width: 600px;
  margin: 0 auto 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-card:first-child::before { display: none; }
@media (max-width: 800px) { .stat-card::before { display: none; } }
.stat-num {
  font-family: var(--f-latin);
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .plus { color: var(--primary); }
.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
}

/* ============ PROBLEM SECTION ============ */
.problem { background: var(--bg-alt); }
.problem h2 .strike {
  color: var(--danger);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  opacity: 0.7;
}
.problem h2 .fix { color: var(--primary); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }
.pain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pain:hover {
  transform: translateY(-3px);
  border-color: var(--danger-light);
}
.pain .ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--danger-light);
  color: var(--danger);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 20px;
}
.pain .text {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 500;
}

.cost-callout {
  margin-top: 48px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cost-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 300px at 85% 30%, rgba(78, 187, 184, 0.20), transparent 60%);
}
.cost-callout > * { position: relative; }
.cost-callout h3 { color: #fff; font-size: 28px; margin-bottom: 16px; }
.cost-callout p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
  line-height: 1.8;
}
.cost-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cost-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.cost-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 800px) {
  .cost-callout { grid-template-columns: 1fr; padding: 32px 28px; }
}

/* ============ STEPS ============ */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 1100px) { .steps-flow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .steps-flow { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  font-family: var(--f-latin);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.step h3 { font-size: 17.5px; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.step .visual {
  margin-top: 18px;
  height: 60px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Step visuals */
.channels { display: flex; gap: 6px; align-items: center; }
.ch {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  font-family: var(--f-latin);
}
.mini-profile { display: flex; gap: 8px; align-items: center; padding: 0 12px; width: 100%; }
.mini-profile .av {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.mini-profile .lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mini-profile .lines span {
  display: block;
  height: 6px;
  background: var(--line-2);
  border-radius: 999px;
}
.mini-profile .lines span:first-child { width: 60%; }
.mini-profile .lines span:last-child { width: 40%; background: var(--primary-light); }
.mini-distribute { display: flex; gap: 8px; align-items: center; }
.mini-distribute .from {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}
.mini-distribute .arrow { color: var(--muted); font-family: var(--f-latin); }
.mini-distribute .to { display: flex; }
.mini-distribute .to div {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  border: 2px solid var(--bg);
  margin-inline-start: -6px;
}
.mini-pipe { display: flex; gap: 4px; align-items: center; }
.mini-pipe .box {
  width: 22px;
  height: 30px;
  border-radius: 5px;
  background: var(--primary-tint);
  border: 1.5px solid var(--primary-light);
}
.mini-pipe .box.active { background: var(--primary); border-color: var(--primary); }
.mini-pipe .box.done {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  position: relative;
}
.mini-pipe .box.done::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.mini-pipe .a { color: var(--muted); font-family: var(--f-latin); }
.mini-dash {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 100%;
  padding: 8px;
}
.mini-dash div {
  width: 8px;
  background: linear-gradient(to top, var(--primary), var(--primary-light));
  border-radius: 2px 2px 0 0;
}

/* ============ IMAGINE SECTION ============ */
.imagine {
  background: var(--primary-tint);
  border-top: 1px solid var(--primary-light);
  border-bottom: 1px solid var(--primary-light);
}
.imagine .head { text-align: right; max-width: 640px; margin-bottom: 40px; }
.imagine .head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 20px; margin-bottom: 16px; }
.imagine .head p { color: var(--body); font-size: 17px; }
.day-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .day-grid { grid-template-columns: 1fr; } }
.day-list { display: flex; flex-direction: column; gap: 14px; }
.day-item {
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}
.day-item:hover { transform: translateX(-5px); }
.day-item .ch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.day-item .text { font-size: 15.5px; color: var(--ink); font-weight: 600; }
.day-item .metric {
  font-family: var(--f-latin);
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-tint);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-inline-start: auto;
}
.day-widget {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.day-widget .greeting {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 6px;
}
.day-widget .h {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 24px;
}
.day-widget .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.day-widget .row:last-child { border-bottom: none; }
.day-widget .row .l { color: var(--muted); }
.day-widget .row .v {
  font-family: var(--f-latin);
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
}
.day-widget .row .v.up { color: var(--primary); }
.day-widget .row .v.up::before { content: "↑ "; }
.day-widget .row .v.warn { color: var(--accent); }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.feature-card .fico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}
.feature-card:hover .fico {
  background: var(--primary);
  color: #fff;
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* ============ WHY RIVO ============ */
.why {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 90% 20%, rgba(32, 148, 199, 0.20), transparent 60%),
    radial-gradient(500px 400px at 10% 80%, rgba(78, 187, 184, 0.12), transparent 60%);
}
.why .wrap { position: relative; }
.why h2 { color: #fff; font-size: clamp(30px, 4.2vw, 50px); }
.why h2 .accent { color: var(--primary-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-titles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  transition: background 0.2s ease;
}
.why-title:hover { background: rgba(255, 255, 255, 0.07); }
.why-title .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-title .t {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16.5px;
  color: #fff;
  margin-bottom: 4px;
}
.why-title .d {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.why-checklist {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 36px 34px;
  backdrop-filter: blur(10px);
}
.why-checklist h3 { color: #fff; font-size: 22px; margin-bottom: 24px; }
.why-checklist ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .why-checklist ul { grid-template-columns: 1fr; } }
.why-checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.why-checklist ul li svg {
  color: var(--primary);
  background: rgba(5, 150, 105, 0.15);
  padding: 2px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.pop {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-tint), var(--white) 50%);
}
.price-card.pop::before {
  content: "✨ الأكثر توفيرًا · وفّر ٢٠٪";
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(5, 150, 105, 0.5);
}
.price-card h3 { font-size: 26px; margin-bottom: 6px; color: var(--ink); }
.price-card .plan-tag { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.price-amt {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price-amt .num {
  font-family: var(--f-latin);
  font-weight: 700;
  font-size: 52px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-amt .cur { font-size: 18px; color: var(--muted); font-weight: 600; }
.price-per { color: var(--muted); font-size: 13.5px; margin-bottom: 6px; }
.price-strike { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.price-strike s { color: var(--dim); font-family: var(--f-latin); }
.price-strike strong { color: var(--primary-dark); font-family: var(--f-latin); }
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.price-card ul li svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ============ FINAL CTA ============ */
.final {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 20% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
    radial-gradient(600px 400px at 80% 70%, rgba(78, 187, 184, 0.25), transparent 60%);
}
.final .wrap { position: relative; }
.final h2 { color: #fff; font-size: clamp(32px, 4.5vw, 54px); margin-bottom: 18px; }
.final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
}
.final .actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final .btn-primary { background: var(--white); color: var(--primary-dark); box-shadow: none; }
.final .btn-primary:hover { background: var(--bg); color: var(--primary-darker); }
.final .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.final .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.final .tiny {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}
footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 800px) { footer .grid { grid-template-columns: 1fr 1fr; } }
footer h5 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 0.02em;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
footer ul a:hover { color: var(--primary-light); }
footer .about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 320px;
}
footer .brand { color: #fff; }
footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
footer .bottom .dom { font-family: var(--f-mono); color: var(--primary-light); }

/* ============ FADE-IN ANIMATIONS ============ */
.feature-card,
.step,
.pain,
.price-card,
.stat-card,
.day-item,
.why-title,
.logo-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.in-view,
.step.in-view,
.pain.in-view,
.price-card.in-view,
.stat-card.in-view,
.day-item.in-view,
.why-title.in-view,
.logo-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAV SCROLLED STATE ============ */
nav.top.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(11, 15, 25, 0.06);
  border-bottom-color: var(--line);
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .feature-card, .step, .pain, .price-card,
  .stat-card, .day-item, .why-title, .logo-item {
    opacity: 1;
    transform: none;
  }
}

/* ============ FOOTER LOGO ============ */
footer .footer-logo {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 6px;
}
footer .slogan {
  font-family: var(--f-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-top: 12px;
}
@media (max-width: 800px) {
  footer .footer-logo { height: 80px; }
}

/* ============ FOOTER — updated for new brand ============ */
footer .footer-brand { margin-bottom: 6px; }
footer .footer-brand .brand-name { color: #fff; }
footer .footer-brand .brand-slogan { color: var(--primary); }
footer .footer-brand .brand-mark {
  background: linear-gradient(135deg, #E8CB7A, #A8894E);
}
footer .about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 320px;
}
footer .footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 999px;
  font-family: var(--f-latin);
  font-weight: 700;
  font-size: 14px;
  direction: ltr;
  transition: background 0.2s ease;
}
footer .footer-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow:
    0 10px 30px -8px rgba(37, 211, 102, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px -8px rgba(37, 211, 102, 0.7),
    0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-float .wf-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.whatsapp-float .wf-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 3px solid #25D366;
  animation: wf-pulse 2s cubic-bezier(0.66, 0, 0, 1) infinite;
  pointer-events: none;
  opacity: 0;
}
@keyframes wf-pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    padding: 12px 16px 12px 14px;
    font-size: 13.5px;
  }
  .whatsapp-float .wf-icon { width: 30px; height: 30px; }
  .whatsapp-float .wf-icon svg { width: 22px; height: 22px; }
  .whatsapp-float .wf-label { display: none; }
  .whatsapp-float { padding: 14px; }
}

/* ============ MODAL ============ */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: modal-in 0.25s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px 36px 32px;
  animation: modal-slide-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover {
  background: var(--danger-light);
  color: var(--danger);
  border-color: var(--danger-light);
}
.modal-head {
  text-align: right;
  margin-bottom: 28px;
}
.modal-head h2 {
  font-size: 26px;
  margin-top: 12px;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.25;
}
.modal-head p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ BOOKING FORM ============ */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.booking-form label .req { color: var(--danger); }
.booking-form input,
.booking-form select {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.booking-form input::placeholder { color: var(--dim); }
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
}
.booking-form input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
  cursor: pointer;
}
.input-with-prefix {
  position: relative;
}
.input-with-prefix .prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-family: var(--f-latin);
  font-weight: 700;
  font-size: 14.5px;
  pointer-events: none;
}
.input-with-prefix input {
  padding-left: 32px;
}
.booking-form .btn-submit {
  margin-top: 8px;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
}
.form-note {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.form-note svg { color: var(--primary); }

/* Success state after form submit */
.booking-form.sent .btn-submit {
  background: #25D366;
  color: #fff;
}
.booking-form.sent .btn-submit .dot { display: none; }

@media (max-width: 500px) {
  .modal-panel {
    padding: 32px 22px 24px;
    max-width: 100%;
    border-radius: var(--r-lg);
  }
  .modal-head h2 { font-size: 22px; }
}

/* ============ RESPECT SCROLLBAR WHEN MODAL OPEN ============ */
body.modal-open {
  overflow: hidden;
}
