﻿:root {
  --bg: #f4f7ff;
  --bg-soft: #eef3ff;
  --surface: #ffffff;
  --surface-alt: #f4f7ff;
  --text: #111111;
  --muted: #5a6a85;
  --line: rgba(17, 17, 17, 0.08);
  --primary-blue: #1462fa;
  --primary-blue-dark: #0a3fb0;
  --primary-blue-soft: #eaf1ff;
  --violet: var(--primary-blue);
  --violet-dark: var(--primary-blue-dark);
  --violet-soft: var(--primary-blue-soft);
  --gold: #d4a44a;
  --gold-deep: #111111;
  --shadow: 0 30px 80px rgba(20, 98, 250, 0.12);
  --shadow-soft: 0 18px 50px rgba(17, 17, 17, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f4f7ff;
  color: var(--text);
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--violet);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0f1e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1462fa 0%, #6b3cdc 100%);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1a6fff 0%, #7c4de8 100%);
}

.container {
  width: min(100% - 32px, var(--container));
}

.samtix-home {
  position: relative;
}

.section-shell {
  position: relative;
  padding: 110px 0;
}

.section-head {
  margin-bottom: 38px;
  text-align: center;
}

.section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  text-align: right;
}

.section-kicker,
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-kicker::before,
.eyebrow-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.section-head h2,
.hero-heading,
.contact-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111111;
}

.section-head h2 span,
.hero-heading span,
.contact-copy h2 span {
  color: #111111;
}

.section-head p,
.hero-summary,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}

.inline-link {
  color: var(--violet);
  font-weight: 800;
  white-space: nowrap;
}

.button-primary,
.button-secondary,
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.35s ease, color 0.25s ease, border-color 0.25s ease;
}

.button-primary,
.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #3a7bff 55%, #71a4ff 100%);
  background-size: 220% 220%;
  color: #fff;
  box-shadow: 0 20px 40px rgba(15, 76, 129, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 76, 129, 0.14);
  color: var(--violet-dark);
  background-size: 220% 220%;
}

.button-primary::before,
.button-secondary::before,
.btn-primary::before,
.btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.button-primary::after,
.button-secondary::after,
.btn-primary::after,
.btn-nav-cta::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.34) 46%, transparent 70%);
  transform: translateX(120%) rotate(12deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.button-primary:hover,
.button-secondary:hover,
.btn-primary:hover,
.btn-nav-cta:hover,
.soc-btn:hover,
.footer-social a:hover,
.drawer-social a:hover {
  transform: translateY(-3px);
}

.button-primary:hover,
.btn-primary:hover,
.btn-nav-cta:hover {
  background-position: 100% 50%;
  box-shadow: 0 24px 42px rgba(15, 76, 129, 0.28);
}

.button-secondary:hover {
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(212, 164, 74, 0.16), rgba(255, 255, 255, 0.9));
  border-color: rgba(15, 76, 129, 0.22);
  background-position: 100% 50%;
}

.button-primary:hover::before,
.button-secondary:hover::before,
.btn-primary:hover::before,
.btn-nav-cta:hover::before {
  opacity: 1;
}

.button-primary:hover::after,
.button-secondary:hover::after,
.btn-primary:hover::after,
.btn-nav-cta:hover::after {
  transform: translateX(-20%) rotate(12deg);
}

#mainNav {
  border-bottom: 0;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease;
}

#mainNav .nav-container {
  position: relative;
  border-radius: 28px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#mainNav:hover .nav-container,
#mainNav.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.08);
  transform: translateY(8px);
}

#mainNav.scrolled {
  background: transparent;
  box-shadow: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.nav-logo,
.drawer-logo,
.footer-logo {
  width: auto;
  object-fit: contain;
}

.nav-logo {
  height: 50px;
}

.navbar-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

#mainNav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1d1b1b;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

/* dot indicator under active link */
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary-blue);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  opacity: 0;
}

#mainNav .nav-link:hover {
  color: var(--primary-blue);
  background: rgba(20, 98, 250, 0.06);
}

#mainNav .nav-link.active {
  color: var(--primary-blue);
  background: rgba(20, 98, 250, 0.08);
  font-weight: 800;
}

#mainNav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1462fa 0%, #1462fa 100%);
  background-size: 180% 180%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 20px 36px rgba(15, 76, 129, 0.22);
}

.nav-link-caret {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.nav-item--has-panel:hover .nav-link-caret {
  transform: rotate(180deg);
}

.nav-services-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 370px;
  padding: 18px 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(15, 23, 32, 0.12);
  border: 1px solid rgba(15, 76, 129, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 20;
}

.nav-item--has-panel:hover .nav-services-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-service-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 12px;
  border-radius: 18px;
  color: #111111;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease, padding 0.25s ease;
}

.nav-service-link:hover {
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.06), rgba(212, 164, 74, 0.12));
  transform: translateX(-4px);
  padding-inline: 18px 12px;
}

.nav-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(15, 76, 129, 0.08);
  color: #1462fa;
}

.nav-service-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(79, 63, 230, 0.08);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--violet-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.25s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile Menu (Drawer) ── */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  background: rgba(2, 21, 51, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.mob-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  width: min(100vw, 360px);
  height: 100dvh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -20px 0 60px rgba(2, 21, 51, 0.15);
}

.mob-menu.open {
  transform: translateX(0);
}

/* Head */
.mob-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.mob-menu__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mob-menu__close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: #f4f6fa;
  color: #0f1c3f;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.mob-menu__close:hover {
  background: #e8ecf5;
  transform: rotate(90deg);
}

/* Nav */
.mob-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px;
  flex: 1;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  color: #1a1a2e;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
  opacity: 1;
}

.mob-nav-link:hover,
.mob-nav-link.active {
  background: rgba(20, 98, 250, 0.07);
  color: #1462fa;
  transform: translateX(-4px);
}

.mob-nav-link.active {
  background: rgba(20, 98, 250, 0.1);
  font-weight: 700;
}

.mob-nav-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #1462fa;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mob-nav-link:hover .mob-nav-link__icon,
.mob-nav-link.active .mob-nav-link__icon {
  background: rgba(20, 98, 250, 0.12);
}

.mob-nav-link__label {
  flex: 1;
}

.mob-nav-link__arrow {
  font-size: 0.6rem;
  color: #b0b8cc;
  transition: transform 0.2s, color 0.2s;
}

.mob-nav-link:hover .mob-nav-link__arrow,
.mob-nav-link.active .mob-nav-link__arrow {
  transform: translateX(-3px);
  color: #1462fa;
}

/* CTA */
.mob-menu__cta {
  padding: 0 12px 12px;
  flex-shrink: 0;
}

.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1462fa 0%, #1a6fff 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(20, 98, 250, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.mob-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

/* Contact */
.mob-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px 12px;
  flex-shrink: 0;
}

.mob-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #f8f9fc;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mob-contact-item:hover {
  background: #eef2ff;
  color: #1462fa;
}

.mob-contact-item--wa:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #16a34a;
}

.mob-contact-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(20, 98, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #1462fa;
  flex-shrink: 0;
}

.mob-contact-item--wa .mob-contact-item__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #16a34a;
}

/* Social */
.mob-menu__social {
  display: flex;
  gap: 8px;
  padding: 0 12px 24px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.mob-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f6fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mob-social-btn:hover {
  background: #1462fa;
  color: #fff;
  transform: translateY(-2px);
}

/* Legacy drawer classes (keep for JS compat) */
.side-drawer { display: none; }

.drawer-social a,
.soc-btn,
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(79, 63, 230, 0.08);
  color: var(--violet);
}

/* ── Shared icon boxes ── */
.fit-icon,
.process-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  font-size: 1.2rem;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 150px 0 120px;
  background:
    radial-gradient(circle at 12% 15%, rgba(20, 98, 250, 0.08), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(20, 98, 250, 0.06), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero-shell::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -76px;
  width: 124%;
  height: 138px;
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-container,
.hero-grid,
.hero-copy,
.hero-visual,
.hero-dashboard {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
}

.hero-summary {
  max-width: 620px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.metric-card {
  padding: 26px 18px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 76, 129, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  text-align: center;
}

.metric-card strong,
.impact-card strong {
  display: block;
  color: var(--violet);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  min-height: 540px;
  perspective: 1200px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: floatY 8s ease-in-out infinite;
}

.hero-orb--violet {
  top: 10px;
  right: 30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(79, 63, 230, 0.22), transparent 68%);
}

.hero-orb--gold {
  bottom: 10px;
  left: 10px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(244, 190, 24, 0.28), transparent 70%);
  animation-delay: -2s;
}

.hero-dashboard {
  position: absolute;
  inset: 20px 0 0 0;
}

.dashboard-card {
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 63, 230, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-card--primary {
  top: 30px;
  left: 50px;
  width: 310px;
  height: 200px;
  padding: 28px;
}

.dashboard-card--bars {
  right: 0;
  bottom: 50px;
  width: 360px;
  height: 220px;
  padding: 26px;
}

.dashboard-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  height: 100%;
}

.dashboard-line span,
.dashboard-bars span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(20, 98, 250, 0.18) 0%, var(--violet) 100%);
  animation: chartRise 4.8s ease-in-out infinite;
}

.dashboard-line span:nth-child(1) { height: 32%; }
.dashboard-line span:nth-child(2) { height: 45%; animation-delay: -0.2s; }
.dashboard-line span:nth-child(3) { height: 58%; animation-delay: -0.4s; }
.dashboard-line span:nth-child(4) { height: 48%; animation-delay: -0.6s; }
.dashboard-line span:nth-child(5) { height: 70%; animation-delay: -0.8s; }
.dashboard-line span:nth-child(6) { height: 88%; animation-delay: -1s; }

.dashboard-mini {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(79, 63, 230, 0.14);
  box-shadow: var(--shadow-soft);
}

.dashboard-mini strong,
.dashboard-kpis strong,
.dashboard-glass strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--violet);
}

.dashboard-mini span,
.dashboard-kpis span,
.dashboard-glass span {
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard-mini--floating {
  top: -26px;
  right: -26px;
  animation: floatY 5.5s ease-in-out infinite;
}

.dashboard-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
  height: 120px;
}

.dashboard-bars span:nth-child(1) { height: 32%; background: linear-gradient(180deg, rgba(244, 190, 24, 0.3), var(--gold)); }
.dashboard-bars span:nth-child(2) { height: 64%; animation-delay: -0.25s; }
.dashboard-bars span:nth-child(3) { height: 82%; background: linear-gradient(180deg, rgba(244, 190, 24, 0.3), var(--gold)); animation-delay: -0.5s; }
.dashboard-bars span:nth-child(4) { height: 54%; animation-delay: -0.75s; }
.dashboard-bars span:nth-child(5) { height: 94%; background: linear-gradient(180deg, rgba(244, 190, 24, 0.3), var(--gold)); animation-delay: -1s; }

.dashboard-kpis {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.dashboard-kpis div {
  flex: 1;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(79, 63, 230, 0.05);
}

.dashboard-glass {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.dashboard-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.1), rgba(212, 164, 74, 0.18));
  color: var(--violet);
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.1);
}

.dashboard-glass--top {
  top: 8px;
  left: 12px;
}

.dashboard-glass--bottom {
  bottom: 12px;
  right: 42px;
}

.section-process {
  background: #fff;
}

.process-grid,
.impact-grid,
.fit-grid,
.review-grid,
.partner-grid {
  display: grid;
  gap: 24px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.impact-card,
.fit-card,
.review-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-index {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(79, 63, 230, 0.12);
}

.process-icon {
  margin-bottom: 18px;
  background: rgba(79, 63, 230, 0.1);
  color: var(--violet);
}

.process-card h3,
.impact-card h3,
.fit-card h3,
.service-card__content h3,
.story-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  font-weight: 800;
}

.process-card p,
.impact-card p,
.fit-card p,
.service-card__content p,
.story-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.section-services {
  background: linear-gradient(180deg, #f7f3e8 0%, #f3ede0 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 72px;
  align-items: start;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  min-height: 286px;
  padding: 34px 14px 34px 0;
  border-radius: 28px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  box-shadow: 0 22px 48px rgba(15, 23, 32, 0.08);
  overflow: visible;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-position 0.5s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card--raised {
  transform: translateY(-20px);
}

.service-card--soft {
  background: #fff;
  color: var(--text);
}

.service-card--blue {
  background: linear-gradient(135deg, #1462fa 0%, #0f58eb 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card--gold {
  background: linear-gradient(135deg, #f4be18 0%, #e8ac00 100%);
  color: #111827;
}

.service-card--custom {
  background: linear-gradient(135deg, var(--service-card-custom, #1462fa) 0%, var(--service-card-custom, #1462fa) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -18px;
  min-height: 100%;
  z-index: 1;
}

.service-card__media-shell {
  width: min(270px, 100%);
  height: 248px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 26px;
  box-shadow: 0 24px 56px rgba(15, 23, 32, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center center;
  transform: translate3d(-30px, -50%, 0);
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 26px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: none;
}

.service-card__content {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding-right: 20px;
  text-align: start;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #1462fa;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.service-card--blue .service-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.service-card--custom .service-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.service-card--soft .service-card__icon {
  background: rgba(15, 76, 129, 0.08);
}

.service-card__content h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 1.5vw, 1.56rem);
  line-height: 1.42;
}

.service-card__content p {
  margin: 0;
  max-width: 31ch;
  font-size: 0.98rem;
  line-height: 1.88;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__content > * {
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.service-card--blue .service-card__content h3,
.service-card--blue .service-card__content p,
.service-card--blue .service-link,
.service-card--custom .service-card__content h3,
.service-card--custom .service-card__content p,
.service-card--custom .service-link {
  color: #fff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #0f1720;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(15, 23, 32, 0.14);
  border-color: rgba(15, 76, 129, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--raised:hover {
  transform: translateY(-36px);
}

.service-card--blue:hover {
  box-shadow: 0 34px 76px rgba(15, 76, 129, 0.26);
}

.service-card--gold:hover {
  box-shadow: 0 34px 76px rgba(200, 155, 60, 0.24);
}

.service-card:hover .service-card__media-shell {
  transform: translate3d(-24px, calc(-50% - 8px), 0) rotate(-1deg);
  box-shadow: 0 30px 68px rgba(15, 23, 32, 0.18);
}

.service-card:hover .service-card__image {
  transform: none;
}

.service-card:hover .service-link {
  transform: translateY(-4px);
}

.service-card:hover .service-card__icon,
.service-card:hover .service-card__content h3,
.service-card:hover .service-card__content p,
.service-card:hover .service-link {
  transform: translateY(-6px);
}

.section-impact {
  background: #fff;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-card {
  text-align: center;
}

.impact-card strong {
  margin-bottom: 10px;
}

.section-fit {
  background: linear-gradient(180deg, #f6f1e4 0%, #f2ecdf 100%);
}


.section-stories {
  background: #fff;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.story-card {
  min-height: 320px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, #fff 0%, #faf7ef 100%);
}

.story-card:nth-child(2) {
  background: linear-gradient(180deg, var(--violet) 0%, #2d73ff 100%);
  border-color: transparent;
  color: #fff;
}

.story-card:nth-child(2) p,
.story-card:nth-child(2) .story-meta span,
.story-card:nth-child(2) .story-badge,
.story-card:nth-child(2) .story-meta strong {
  color: #fff;
}

.story-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(244, 190, 24, 0.16);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.story-meta {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.story-meta strong {
  font-size: 0.96rem;
}

.story-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-clients {
  background: linear-gradient(180deg, #0a0f1e 0%, #060c1a 100%);
}


.section-why {
  background: #fff;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-stars {
  color: var(--gold);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-author {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.review-author span {
  color: var(--muted);
  font-size: 0.84rem;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.reviews-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee__fade--start {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #ffffff) 0%, transparent 100%);
}

.reviews-marquee__fade--end {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #ffffff) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeMoveRTL 36s linear infinite;
  padding: 16px 0 24px;
}

/* ---- Review Card ---- */
.review-card {
  min-width: 380px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(20, 98, 250, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 12px 32px rgba(20, 98, 250, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(20, 98, 250, 0.12);
}

/* Header: avatar + name + quote icon */
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1462fa 0%, #6b3cdc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  border: 2px solid rgba(20, 98, 250, 0.15);
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__meta strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1c3f;
  line-height: 1.3;
}

.review-card__meta span {
  font-size: 0.8rem;
  color: #8a96b0;
  font-weight: 400;
}

.review-card__quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20, 98, 250, 0.08) 0%, rgba(107, 60, 220, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__quote-icon i {
  font-size: 0.85rem;
  color: #1462fa;
  opacity: 0.7;
}

/* Stars */
.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__stars i {
  font-size: 0.85rem;
  color: #f59e0b;
}

.review-card__stars i.far {
  color: #d1d5db;
}

/* Text */
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #374151;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer badge */
.review-card__footer {
  padding-top: 14px;
  border-top: 1px solid rgba(20, 98, 250, 0.07);
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1462fa;
  background: rgba(20, 98, 250, 0.07);
  padding: 4px 10px;
  border-radius: 20px;
}

.review-card__badge i {
  font-size: 0.75rem;
  color: #22c55e;
}

.section-contact {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f0fe 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
  padding: 42px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.64) 100%);
  border: 1px solid rgba(79, 63, 230, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-visual {
  position: relative;
  min-height: 420px;
}

.contact-avatar {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 50% 82%, rgba(20, 98, 250, 0.18), transparent 36%),
    linear-gradient(180deg, #ede6ff 0%, #f7f2e2 100%);
  overflow: hidden;
}

.contact-avatar::before {
  content: '';
  position: absolute;
  inset: 48px 70px 0;
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 20%, #d1b091 0 14%, transparent 14%),
    radial-gradient(circle at 50% 28%, #ffffff 0 20%, transparent 20%),
    linear-gradient(180deg, #ffffff 0 56%, #d9d7df 56% 100%);
}

.contact-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--violet-dark);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.contact-chip--top {
  top: 32px;
  right: 16px;
}

.contact-chip--bottom {
  left: 16px;
  bottom: 26px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-embed {
  margin-top: 24px;
}

.contact-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.partner-strip {
  padding: 26px 0 0;
  background: #e8f0fe;
}

.partner-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.partner-badge {
  min-height: 64px;
  padding: 0 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 63, 230, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-dark);
  font-weight: 800;
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
  background: #021533;
  color: #fff;
}

/* ── Main ── */
.footer-main {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 98, 250, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  pointer-events: none;
}

.footer-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 98, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 98, 250, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.footer-main .row {
  position: relative;
  z-index: 1;
}

/* ── Logo ── */
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ── Description ── */
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  white-space: pre-line;
  margin: 0;
}

/* ── Contact list ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fci {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(20, 98, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #4d8fff;
  flex-shrink: 0;
}

.fci--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.footer-contact-list a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: #fff;
}

/* ── Social ── */
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.footer-social a:hover {
  background: #1462fa;
  border-color: #1462fa;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Column title ── */
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 28px;
  height: 2px;
  background: #1462fa;
  border-radius: 2px;
}

/* ── Links list ── */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s, gap 0.2s;
}

.footer-links-list a i {
  font-size: 0.6rem;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.footer-links-list a:hover {
  color: #fff;
  gap: 12px;
}

.footer-links-list a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* ── Newsletter ── */
.footer-newsletter-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0 0 16px;
}

.footer-newsletter-input-wrap {
  position: relative;
  margin-bottom: 10px;
}

.footer-newsletter-ico {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  pointer-events: none;
}

.footer-newsletter-form {
  direction: rtl;
}

.footer-newsletter-form input[type="email"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  padding: 11px 42px 11px 16px;
  font-size: 0.92rem;
  color: #fff;
  font-family: inherit;
  direction: rtl;
  text-align: right;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

.footer-newsletter-form input[type="email"]:focus {
  border-color: rgba(20, 98, 250, 0.6);
  background: rgba(20, 98, 250, 0.08);
}

.footer-newsletter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1462fa 0%, #1a6fff 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(20, 98, 250, 0.35);
  direction: rtl;
}

.footer-newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Bottom Bar ── */
.footer-bar {
  padding: 20px 0;
  background: #010e22;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar-copy {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bar-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-bar-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  vertical-align: middle;
}

.footer-bar-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bar-links a:hover {
  color: #fff;
}

.footer-legal {
  padding: 0 0 30px;
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-qr-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-qr-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(244, 190, 24, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.legal-qr-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.legal-qr-media {
  padding: 8px;
  border-radius: 20px;
  background: #fff;
}

.legal-qr-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
}

.breadcrumb-area {
  position: relative;
  overflow: hidden;
  padding: 130px 0 60px;
  background:
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(20, 98, 250, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(20, 98, 250, 0.05) 0%, transparent 60%),
    linear-gradient(160deg, #eef3ff 0%, #f4f7ff 60%, #ffffff 100%);
  border-bottom: 1px solid rgba(20, 98, 250, 0.07);
}

.breadcrumb-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 98, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 98, 250, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.breadcrumb-shell {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumb-head {
  margin-bottom: 20px;
}

.page-tit {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 900;
  color: #0a1628;
  letter-spacing: -0.02em;
}

.breadcrumb-trail-wrap {
  display: flex;
  justify-content: center;
}

.breadcrumb-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 98, 250, 0.1);
  color: #5a6a85;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(20, 98, 250, 0.06);
  backdrop-filter: blur(8px);
}

.breadcrumb-links a {
  color: #1462fa;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-links a:hover {
  color: #0f4fd0;
}

.breadcrumb-links span {
  color: #b0b8cc;
}

/* ── Page Shell ── */
.page-shell {
  padding: 0 0 100px;
  background: #ffffff;
}

.contact-page-shell {
  background:
    radial-gradient(circle at top right, rgba(20, 98, 250, 0.08), transparent 22%),
    radial-gradient(circle at 0 30%, rgba(11, 31, 58, 0.05), transparent 20%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 30%);
}

/* ── Inner content section (no big padding) ── */
.inner-content-section {
  padding: 48px 0 80px;
  background: #ffffff;
}

/* ── Page Article ── */
.page-article {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Hero Media ── */
.page-hero-media {
  margin: 48px 0 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(20, 98, 250, 0.1);
}

.page-hero-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ── Content Wrap ── */
.page-content-wrap {
  margin-top: 40px;
  padding: 48px 52px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(20, 98, 250, 0.07);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 12px 40px rgba(20, 98, 250, 0.06);
}

.page-content-wrap.is-full {
  margin-top: 48px;
}

.contact-page-hero {
  padding: 36px 0 18px;
}

.contact-page-card {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 46px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(20, 98, 250, 0.1), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.contact-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(11, 31, 58, 0.06);
  color: #0b1f3a;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-page-title {
  margin: 0 0 14px;
  color: #08162a;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.18;
  font-weight: 900;
}

.contact-page-subtitle {
  margin: 0;
  max-width: 56ch;
  color: #5a6a85;
  font-size: 1.05rem;
  line-height: 1.9;
}

.contact-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-page-primary,
.contact-page-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-page-primary {
  background: #0b1f3a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.18);
}

.contact-page-primary:hover,
.contact-page-secondary:hover {
  transform: translateY(-1px);
}

.contact-page-primary:hover {
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 31, 58, 0.22);
}

.contact-page-secondary {
  background: #fff;
  color: #0b1f3a;
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.contact-page-secondary:hover {
  color: #0b1f3a;
  border-color: rgba(11, 31, 58, 0.18);
}

.contact-page-metrics {
  display: grid;
  gap: 14px;
}

.contact-page-metric {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.contact-page-metric strong {
  display: block;
  margin-bottom: 6px;
  color: #08162a;
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-page-metric span {
  display: block;
  color: #5a6a85;
  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-page-workspace {
  padding: 8px 0 84px;
}

.contact-page-sidebar {
  position: sticky;
  top: 118px;
}

.contact-page-sidebar-card,
.contact-page-form-panel,
.contact-page-info-card,
.contact-page-wa-card {
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.contact-page-sidebar-card {
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 16px;
}

.contact-page-sidebar-label,
.contact-page-form-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(11, 31, 58, 0.06);
  color: #0b1f3a;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-page-sidebar-card h2,
.contact-page-form-head h2 {
  margin: 0 0 10px;
  color: #08162a;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.35;
  font-weight: 900;
}

.contact-page-sidebar-card p,
.contact-page-form-head p,
.contact-page-note {
  margin: 0;
  color: #5a6a85;
  font-size: 0.96rem;
  line-height: 1.9;
}

.contact-page-wa-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  margin-bottom: 16px;
  text-decoration: none;
}

.contact-page-wa-card:hover {
  color: inherit;
}

.contact-page-wa-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1fb85b 0%, #25d366 100%);
  color: #fff;
  font-size: 1.35rem;
  flex: 0 0 48px;
}

.contact-page-wa-copy {
  display: grid;
  gap: 3px;
}

.contact-page-wa-copy strong {
  color: #08162a;
  font-size: 1rem;
  font-weight: 800;
}

.contact-page-wa-copy small {
  color: #5a6a85;
  font-size: 0.88rem;
}

.contact-page-info-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-page-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
}

.contact-page-info-card:hover {
  color: inherit;
}

.contact-page-info-card i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 98, 250, 0.08);
  color: #1462fa;
  flex: 0 0 40px;
}

.contact-page-info-card strong {
  display: block;
  margin-bottom: 4px;
  color: #08162a;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-page-info-card span {
  display: block;
  color: #5a6a85;
  font-size: 0.9rem;
  line-height: 1.7;
  word-break: break-word;
}

.contact-page-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-page-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24324a;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.7;
}

.contact-page-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #1462fa;
}

.contact-page-form-panel {
  padding: 28px;
  border-radius: 28px;
}

.contact-page-form-head {
  margin-bottom: 18px;
}

.contact-page-inline-content {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(20, 98, 250, 0.08);
}

.contact-page-inline-content > *:last-child {
  margin-bottom: 0;
}

.contact-page-form-wrap .wpcf7 {
  direction: rtl;
}

.contact-page-form-wrap p {
  margin: 0 0 12px;
}

.contact-page-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-page-form-wrap label {
  display: block;
  color: #24324a;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.7;
}

.contact-page-form-wrap input,
.contact-page-form-wrap select,
.contact-page-form-wrap textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9e2f2;
  border-radius: 14px;
  background: #fbfdff;
  color: #08162a;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: start;
  direction: rtl;
  unicode-bidi: plaintext;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-page-form-wrap input::placeholder,
.contact-page-form-wrap textarea::placeholder {
  color: #93a0b5;
  font-weight: 400;
  text-align: right;
  direction: rtl;
  opacity: 1;
}

.contact-page-form-wrap .wpcf7-not-valid-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
}

.contact-page-form-wrap .wpcf7-not-valid-tip::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  flex: 0 0 18px;
}

.contact-page-form-wrap .wpcf7-not-valid {
  border-color: rgba(220, 38, 38, 0.52) !important;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.contact-page-form-wrap input:focus,
.contact-page-form-wrap select:focus,
.contact-page-form-wrap textarea:focus {
  outline: none;
  border-color: #1462fa;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 98, 250, 0.12);
}

.contact-page-form-wrap .wpcf7-submit {
  width: min(100%, 320px);
  min-height: 54px;
  border: 0;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, #0b1f3a 0%, #123763 100%);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.16);
  display: block;
  margin: 8px auto 0;
  padding: 0 18px;
  opacity: 1;
}

.contact-page-form-wrap .wpcf7-submit:hover,
.contact-page-form-wrap .wpcf7-submit:focus,
.contact-page-form-wrap .wpcf7-submit:active,
.contact-page-form-wrap .wpcf7-submit:disabled {
  background: linear-gradient(135deg, #0b1f3a 0%, #123763 100%);
  color: #fff;
  border: 0;
  outline: none;
  text-decoration: none;
}

.contact-page-form-wrap .wpcf7-submit:focus,
.contact-page-form-wrap .wpcf7-submit:active {
  box-shadow: 0 0 0 4px rgba(11, 31, 58, 0.14), 0 14px 28px rgba(11, 31, 58, 0.16);
}

.contact-page-form-wrap .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 14px;
  padding: 14px 16px;
  border: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.8;
}

.contact-page-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.contact-page-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-page-form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(248, 113, 113, 0.08) 100%);
  color: #991b1b;
}

.contact-page-form-wrap .wpcf7 form.sent .wpcf7-response-output {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
  color: #166534;
}

.contact-page-form-wrap .wpcf7 form.submitting .wpcf7-submit {
  opacity: 0.88;
  cursor: wait;
}

.contact-page-form-wrap .wpcf7-spinner {
  margin: 10px 0 0;
}

.contact-page-note {
  margin-top: 16px;
}

/* ── Content Body ── */
.page-content-body {
  line-height: 1.95;
  color: #374151;
  font-size: 1.02rem;
}

.page-content-body > *:first-child { margin-top: 0; }
.page-content-body > *:last-child  { margin-bottom: 0; }

.page-content-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0a1628;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(20, 98, 250, 0.1);
}

.page-content-body h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #0f1c3f;
  margin: 32px 0 12px;
}

.page-content-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a4a;
  margin: 24px 0 10px;
}

.page-content-body p {
  margin: 0 0 18px;
}

.page-content-body a {
  color: #1462fa;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(20, 98, 250, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.page-content-body a:hover {
  color: #0f4fd0;
  text-decoration-color: rgba(20, 98, 250, 0.7);
}

.page-content-body ul,
.page-content-body ol {
  padding-right: 24px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-content-body ul li::marker {
  color: #1462fa;
}

.page-content-body ol li::marker {
  color: #1462fa;
  font-weight: 700;
}

.page-content-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-right: 4px solid #1462fa;
  background: rgba(20, 98, 250, 0.04);
  border-radius: 0 12px 12px 0;
  color: #374151;
  font-style: italic;
}

.page-content-body img {
  max-width: 100%;
  border-radius: 16px;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.page-content-body th {
  background: rgba(20, 98, 250, 0.06);
  color: #0f1c3f;
  font-weight: 700;
  padding: 12px 16px;
  text-align: right;
  border-bottom: 2px solid rgba(20, 98, 250, 0.12);
}

.page-content-body td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #374151;
}

.page-content-body tr:last-child td { border-bottom: none; }
.page-content-body tr:hover td { background: rgba(20, 98, 250, 0.02); }

/* ── Single Services ── */
.single-services .page-content-wrap img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 480px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .breadcrumb-area { padding: 100px 0 44px; }
  .page-content-wrap { padding: 28px 22px; margin-top: 28px; border-radius: 18px; }
  .page-content-body { font-size: 0.96rem; }
  .page-content-body h2 { font-size: 1.3rem; }
  .page-content-body h3 { font-size: 1.1rem; }
}

/* ── Page subtitle ── */
.page-tit-sub {
  font-size: 1rem;
  color: #5a6a85;
  margin: 14px auto 0;
  max-width: 640px;
  line-height: 1.7;
}

/* ── Blog meta ── */
.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #5a6a85;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: #1462fa;
  font-size: 0.8rem;
}

/* ── Author card ── */
.author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(20, 98, 250, 0.08);
  box-shadow: 0 4px 20px rgba(20, 98, 250, 0.06);
  margin-bottom: 8px;
}

.author-card__img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card__info h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 6px;
}

.author-card__info p {
  font-size: 0.9rem;
  color: #5a6a85;
  margin: 0;
  line-height: 1.6;
}

/* ── Search ── */
.search-bar-wrap {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.search-count {
  font-size: 0.9rem;
  color: #5a6a85;
  margin: 0;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-result-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(20, 98, 250, 0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-result-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 98, 250, 0.1);
}

.search-result-item__thumb {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.search-result-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
}

.search-result-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.search-result-item__title a:hover { color: #1462fa; }

.search-result-item__excerpt {
  font-size: 0.86rem;
  color: #5a6a85;
  margin: 0;
  line-height: 1.6;
}

.search-result-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: #8a96b0;
  margin-top: auto;
}

.search-result-item__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Search bar form ── */
.search-bar-wrap .search-form {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 98, 250, 0.15);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(20, 98, 250, 0.06);
}

.search-bar-wrap .search-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  direction: rtl;
  background: transparent;
  color: #0a1628;
}

.search-bar-wrap .search-submit {
  background: #1462fa;
  border: none;
  padding: 0 20px;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.search-bar-wrap .search-submit:hover { background: #0f4fd0; }

@media (max-width: 640px) {
  .search-result-item { flex-direction: column; }
  .search-result-item__thumb { width: 100%; height: 160px; }
  .author-card { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════
   BLOG ARCHIVE
════════════════════════════════════════════ */

/* ── Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured post takes full width */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.blog-card--featured .blog-card__thumb {
  border-radius: 20px 0 0 20px;
  aspect-ratio: 16 / 10;
}

.blog-card--featured .blog-card__body {
  border-radius: 0 20px 20px 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--featured .blog-card__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.blog-card--featured .blog-card__excerpt {
  -webkit-line-clamp: 4;
}

/* ── Card ── */
.blog-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(20, 98, 250, 0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(20, 98, 250, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(20, 98, 250, 0.12);
}

/* ── Thumb ── */
.blog-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef3ff;
  flex-shrink: 0;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.05);
}

.blog-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card__thumb {
  position: relative;
}

.blog-card:hover .blog-card__thumb-overlay {
  opacity: 1;
}

.blog-card__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef3ff 0%, #e0eaff 100%);
}

.blog-card__thumb--empty i {
  font-size: 2.5rem;
  color: rgba(20, 98, 250, 0.25);
}

/* ── Body ── */
.blog-card__body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* ── Meta ── */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(20, 98, 250, 0.08);
  color: #1462fa;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.blog-card__cat:hover {
  background: rgba(20, 98, 250, 0.15);
  color: #1462fa;
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #8a96b0;
}

.blog-card__date i {
  font-size: 0.7rem;
  color: #1462fa;
}

/* ── Title ── */
.blog-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: #0a1628;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: #1462fa;
}

/* ── Excerpt ── */
.blog-card__excerpt {
  font-size: 0.88rem;
  color: #5a6a85;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Footer ── */
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 98, 250, 0.07);
  margin-top: auto;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #5a6a85;
  font-weight: 600;
}

.blog-card__avatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1462fa;
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-card__read-more:hover {
  gap: 10px;
  color: #1462fa;
}

.blog-card__read-more i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.blog-card__read-more:hover i {
  transform: translateX(-3px);
}

/* ── Pagination ── */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  background: #ffffff;
  border: 1px solid rgba(20, 98, 250, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}

.blog-pagination .page-numbers li a:hover {
  background: rgba(20, 98, 250, 0.08);
  color: #1462fa;
  border-color: rgba(20, 98, 250, 0.2);
}

.blog-pagination .page-numbers li span.current {
  background: #1462fa;
  color: #ffffff;
  border-color: #1462fa;
}

/* ── Empty state ── */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blog-empty i {
  font-size: 3rem;
  color: rgba(20, 98, 250, 0.2);
}

.blog-empty h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0;
}

.blog-empty p {
  color: #5a6a85;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__thumb { border-radius: 20px 20px 0 0; aspect-ratio: 16 / 8; }
  .blog-card--featured .blog-card__body { border-radius: 0 0 20px 20px; padding: 28px 24px; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card--featured { grid-column: auto; }
}


.back-to-top,
.whatsapp-fab {
  position: fixed;
  left: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateY(12px);
  cursor: pointer;
  text-decoration: none;
}

.back-to-top {
  bottom: 20px;
  border: none;
  background: linear-gradient(135deg, #1462fa 0%, #2d73ff 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 98, 250, 0.35);
}

.whatsapp-fab {
  bottom: 74px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.back-to-top.visible,
.whatsapp-fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 98, 250, 0.45);
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab--sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lead-capture-section {
  position: relative;
  padding: 72px 0 104px;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 98, 250, 0.06), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(37, 211, 102, 0.05), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.lead-capture-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.4));
}

.lead-capture {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.lead-capture__intro,
.lead-capture__form-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(20, 98, 250, 0.12);
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(8px);
}

.lead-capture__intro {
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.12), transparent 30%),
    radial-gradient(circle at left center, rgba(20, 98, 250, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.lead-capture__intro::after,
.lead-capture__form-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
}

.lead-capture__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(20, 98, 250, 0.1);
  color: #1462fa;
  font-size: 0.82rem;
  font-weight: 700;
}

.lead-capture__title {
  margin: 0 0 12px;
  color: #0a1628;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lead-capture__subtitle,
.lead-capture__privacy,
.lead-capture__form-placeholder {
  color: #5a6a85;
  font-size: 0.98rem;
  line-height: 1.85;
}

.lead-capture__subtitle {
  margin: 0 0 20px;
  max-width: 54ch;
}

.lead-capture__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  max-width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1fb85b 0%, #25d366 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-capture__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
  color: #fff;
}

.lead-capture__whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.2rem;
}

.lead-capture__whatsapp-text {
  white-space: nowrap;
}

.lead-capture__trust {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-capture__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a1628;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
}

.lead-capture__trust li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1462fa 0%, #25d366 100%);
  box-shadow: 0 0 0 6px rgba(20, 98, 250, 0.08);
}

.lead-capture__form-shell {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(20, 98, 250, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.lead-capture__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #7b89a1;
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-capture__divider::before,
.lead-capture__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 98, 250, 0), rgba(20, 98, 250, 0.18), rgba(20, 98, 250, 0));
}

.lead-capture__form-title {
  margin: 0 0 16px;
  color: #0a1628;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.65;
}

.lead-capture__form .wpcf7 {
  direction: rtl;
}

.lead-capture__form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.lead-capture__form .wpcf7 br,
.contact-page-form-wrap .wpcf7 br {
  display: none;
}

.lead-capture__form p {
  margin: 0 0 12px;
}

.lead-capture__form label {
  display: block;
  color: #24324a;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.7;
}

.lead-capture__form input,
.lead-capture__form select,
.lead-capture__form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9e2f2;
  border-radius: 14px;
  background: #f9fbff;
  color: #0a1628;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-capture__form textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-capture__form input::placeholder,
.lead-capture__form textarea::placeholder {
  color: #93a0b5;
  font-weight: 400;
  text-align: right;
  direction: rtl;
  opacity: 1;
}

.lead-capture__form select {
  font-weight: 500;
}

.lead-capture__form .wpcf7-not-valid-tip,
.contact-page-form-wrap .wpcf7-not-valid-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(248, 113, 113, 0.08) 100%);
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
}

.lead-capture__form .wpcf7-not-valid-tip::before,
.contact-page-form-wrap .wpcf7-not-valid-tip::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  flex: 0 0 18px;
}

.lead-capture__form .wpcf7-not-valid,
.contact-page-form-wrap .wpcf7-not-valid {
  border-color: rgba(220, 38, 38, 0.52) !important;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.lead-capture__form input:focus,
.lead-capture__form select:focus,
.lead-capture__form textarea:focus {
  border-color: #1462fa;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 98, 250, 0.12);
  outline: none;
}

.lead-capture__form .wpcf7-submit {
  width: min(100%, 320px);
  min-height: 52px;
  border: 0;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, #1462fa 0%, #2d73ff 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(20, 98, 250, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  margin: 8px auto 0;
  padding: 0 18px;
  line-height: 1.2;
  opacity: 1;
}

.lead-capture__form .wpcf7-submit:hover,
.lead-capture__form .wpcf7-submit:focus,
.lead-capture__form .wpcf7-submit:active,
.lead-capture__form .wpcf7-submit:disabled {
  background: linear-gradient(135deg, #1462fa 0%, #2d73ff 100%);
  color: #fff;
  border: 0;
  outline: none;
  text-decoration: none;
}

.lead-capture__form .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(20, 98, 250, 0.28);
}

.lead-capture__form .wpcf7-submit:focus,
.lead-capture__form .wpcf7-submit:active {
  box-shadow: 0 0 0 4px rgba(20, 98, 250, 0.14), 0 12px 24px rgba(20, 98, 250, 0.2);
}

.lead-capture__form .wpcf7-spinner {
  margin: 14px 0 0;
}

.lead-capture__form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  border: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.lead-capture__form .wpcf7 form.invalid .wpcf7-response-output,
.lead-capture__form .wpcf7 form.unaccepted .wpcf7-response-output,
.lead-capture__form .wpcf7 form.payment-required .wpcf7-response-output {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(248, 113, 113, 0.08) 100%);
  color: #991b1b;
}

.lead-capture__form .wpcf7 form.sent .wpcf7-response-output {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
  color: #166534;
}

.lead-capture__form .wpcf7 form.submitting .wpcf7-submit {
  opacity: 0.88;
  cursor: wait;
}

.lead-capture__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(11, 31, 58, 0.04);
  color: #43526b;
}

.lead-capture__privacy::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1462fa;
}

.lead-capture__form-placeholder {
  padding: 18px;
  border: 1px dashed rgba(20, 98, 250, 0.28);
  border-radius: 16px;
  background: #f8fbff;
}

.reveal-up,
.reveal-fade {
  opacity: 0;
}

.hero-shell {
  background:
    radial-gradient(circle at 14% 20%, rgba(20, 98, 250, 0.07), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(20, 98, 250, 0.05), transparent 26%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero-dashboard--image {
  position: relative;
  min-height: 620px;
}

.dashboard-photo-shell,
.contact-visual-shell,
.stories-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 72px rgba(15, 23, 32, 0.15);
}

.dashboard-photo-shell {
  width: min(100%, 560px);
  margin-inline: auto;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.dashboard-photo,
.stories-image,
.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-photo {
  aspect-ratio: 0.98;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.dashboard-glass--floating {
  top: 56px;
  right: -8px;
}

.dashboard-mini-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.dashboard-mini-card .dashboard-badge-icon,
.dashboard-glass .dashboard-badge-icon {
  justify-self: start;
}

.dashboard-mini-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-mini-card strong {
  color: var(--violet);
  font-size: 1.72rem;
  line-height: 1.2;
}

.dashboard-mini-card--bottom {
  bottom: 26px;
  left: 22px;
}

.dashboard-mini-card--center {
  right: 42px;
  bottom: 74px;
}

.hero-dashboard:hover .dashboard-photo-shell {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 40px 90px rgba(15, 23, 32, 0.18);
}

.hero-dashboard:hover .dashboard-photo {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes marqueeMoveRTL {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@keyframes marqueeMoveLTR {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
  33% { transform: translateX(-50%) translateY(-30px) scale(1.05); }
  66% { transform: translateX(-50%) translateY(20px) scale(0.97); }
}

@keyframes laneReveal {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── Custom Animations ── */

@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes fadeSlideIn {
  0%   { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.7) translateY(20px); }
  70%  { transform: scale(1.06) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 98, 250, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(20, 98, 250, 0.12); }
}

@keyframes borderDraw {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}

@keyframes countUp {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.08); opacity: 1; }
}

@keyframes slideInRight {
  0%   { opacity: 0; transform: translateX(-32px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0); }
  40%           { transform: scale(1); }
}

/* ── Utility animation classes ── */

.anim-fade-up {
  animation: fadeSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-pop {
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.anim-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
}

.anim-pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.anim-breathe {
  animation: breathe 3s ease-in-out infinite;
}

/* ── Stagger delays ── */
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* ── Section kicker pill ── */
.section-kicker,
.eyebrow-pill {
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  transition: width 0.08s linear !important;
}

/* ── Nav underline draw ── */
.nav-underline {
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ── Button shimmer on hover ── */
.button-primary::after,
.btn-nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.button-primary:hover::after,
.btn-nav-cta:hover::after {
  opacity: 1;
  animation: shimmer 0.8s linear;
}

/* ── Platform chip float ── */
.platform-chip {
  animation: chipFloat calc(4s + var(--i, 0) * 0.4s) ease-in-out infinite alternate;
}

@keyframes chipFloat {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

/* ── Logo pill hover glow ── */
.logo-pill:hover {
  animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes chartRise {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

.section-process {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 98, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 98, 250, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Grid ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-top: 56px;
}

/* ── Card ── */
.process-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(20, 98, 250, 0.08);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 12px 32px rgba(20, 98, 250, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(20, 98, 250, 0.14);
  border-color: rgba(20, 98, 250, 0.2);
}

/* ── Shine effect on hover ── */
.process-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.process-card:hover .process-card__shine { opacity: 1; }

/* ── Step badge ── */
.process-step-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(20, 98, 250, 0.06);
  border: 1px solid rgba(20, 98, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.process-step-badge span {
  font-size: 0.72rem;
  font-weight: 900;
  color: #1462fa;
  letter-spacing: 0.02em;
  line-height: 1;
}

.process-card:hover .process-step-badge {
  background: rgba(20, 98, 250, 0.12);
  border-color: rgba(20, 98, 250, 0.25);
}

/* ── Icon ── */
.process-icon {
  position: relative;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 98, 250, 0.1) 0%, rgba(20, 98, 250, 0.05) 100%);
  border: 1px solid rgba(20, 98, 250, 0.12);
  color: #1462fa;
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  z-index: 1;
}

.process-icon__glow {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(20, 98, 250, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #1462fa 0%, #1a6fff 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(20, 98, 250, 0.35);
}

.process-card:hover .process-icon__glow { opacity: 1; }

/* ── Content ── */
.process-card__content { position: relative; z-index: 1; }

.process-card h3,
.process-card__content h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0a1628;
  transition: color 0.3s ease;
}

.process-card:hover h3,
.process-card:hover .process-card__content h3 { color: #1462fa; }

.process-card p,
.process-card__content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #5a6a85;
}

/* ── Connector line between cards ── */
.process-connector {
  position: absolute;
  top: 52px;
  left: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 98, 250, 0.15), rgba(20, 98, 250, 0.4));
  z-index: 2;
  pointer-events: none;
}

.process-connector::before,
.process-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1462fa;
}

.process-connector::before { right: 0; opacity: 0.4; }
.process-connector::after  { left: 0; opacity: 0.2; }

.section-services {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f0f6ff 100%);
}

.service-card {
  direction: ltr;
  grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  background-size: 140% 140%;
}

.service-card__media {
  order: 1;
  justify-content: flex-start;
  margin-left: -18px;
  margin-right: 0;
}

.service-card__content {
  order: 2;
  direction: rtl;
  justify-items: start;
  padding-right: 20px;
  padding-left: 0;
  text-align: start;
}

.service-link {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
}

.service-card--blue .service-link {
  background: rgba(255, 255, 255, 0.12);
}

.service-card--gold .service-link {
  background: rgba(9, 50, 85, 0.08);
}

.service-card:hover .service-link {
  background: rgba(15, 76, 129, 0.14);
}

.service-card--blue:hover .service-link {
  background: rgba(255, 255, 255, 0.18);
}

.section-fit {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 22%, rgba(20, 98, 250, 0.08), transparent 20%),
    radial-gradient(circle at 88% 80%, rgba(20, 98, 250, 0.06), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.section-fit::before,
.section-fit::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.section-fit::before {
  top: 42px;
  right: min(8vw, 72px);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(20, 98, 250, 0.1) 0%, rgba(20, 98, 250, 0) 72%);
}

.section-fit::after {
  bottom: 12px;
  left: min(6vw, 56px);
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.05) 0%, rgba(17, 17, 17, 0) 74%);
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.fit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 252px;
  padding: 28px 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(20, 98, 250, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  justify-content: flex-start;
  transform-style: preserve-3d;
  transition:
    transform 0.42s ease,
    box-shadow 0.42s ease,
    border-color 0.42s ease,
    background 0.42s ease;
}

.fit-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1462fa 0%, rgba(20, 98, 250, 0.18) 100%);
  transform: scaleX(0.24);
  transform-origin: right center;
  transition: transform 0.42s ease;
}

.fit-card::after {
  content: '';
  position: absolute;
  top: -56px;
  left: -36px;
  width: 136px;
  height: 136px;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 50%, rgba(20, 98, 250, 0.13) 0%, rgba(20, 98, 250, 0) 72%);
  opacity: 0;
  transform: translate3d(-12px, 10px, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fit-card__body {
  display: grid;
  gap: 12px;
  text-align: start;
}

.fit-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.24rem, 1.8vw, 1.46rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.fit-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 98, 250, 0.08);
  color: #1462fa;
  border: 1px solid rgba(20, 98, 250, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.fit-card p {
  margin: 0;
  color: #5f6b76;
  font-size: 0.98rem;
  line-height: 1.92;
  max-width: 34ch;
}

.fit-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 98, 250, 0.12) 0%, rgba(20, 98, 250, 0.05) 100%);
  color: #1462fa;
  border: 1px solid rgba(20, 98, 250, 0.08);
  box-shadow: 0 14px 26px rgba(20, 98, 250, 0.1);
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}

.fit-icon i {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.4s ease;
}

.fit-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.page-shell .section-shell {
  background: #ffffff;
}

.fit-card__top,
.fit-card__body,
.fit-card h3,
.fit-card p,
.fit-tag,
.fit-icon {
  position: relative;
  z-index: 1;
}

.fit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(20, 98, 250, 0.18);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, 0.92) 100%);
}

.fit-card:hover::before {
  transform: scaleX(1);
}

.fit-card:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fit-card:hover .fit-card__top,
.fit-card:hover .fit-card__body {
  transform: translateY(-2px);
}

.fit-card:hover .fit-tag {
  background: #1462fa;
  color: #fff;
  border-color: #1462fa;
}

.fit-card:hover .fit-icon {
  background: linear-gradient(135deg, #1462fa 0%, #0f56dc 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(20, 98, 250, 0.24);
  transform: translateY(-4px);
}

.fit-card:hover .fit-icon i {
  transform: scale(1.08) rotate(-6deg);
}

.fit-card:hover .fit-icon img {
  transform: scale(1.08);
}

.fit-card:hover h3,
.fit-card:hover p {
  transform: translateY(-3px);
}

.fit-card__top,
.fit-card__body,
.fit-card h3,
.fit-card p,
.fit-tag {
  transition: transform 0.36s ease, color 0.36s ease, background 0.36s ease, border-color 0.36s ease;
}

.section-stories {
  background: #fff;
}

.stories-showcase {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 32px;
  align-items: center;
}

.stories-visual {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 22%, rgba(20, 98, 250, 0.07), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(20, 98, 250, 0.05), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid rgba(15, 76, 129, 0.08);
  overflow: hidden;
}

.stories-image-shell {
  height: 100%;
  min-height: 560px;
  width: 100%;
}

.story-float-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  animation: floatY 7s ease-in-out infinite;
}

.story-float-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.story-float-card strong {
  color: var(--violet);
  font-size: 1.8rem;
}

.story-float-card--top {
  top: 34px;
  right: 24px;
}

.story-float-card--bottom {
  bottom: 26px;
  left: 24px;
  animation-delay: 1.6s;
}

.stories-copy {
  display: grid;
  gap: 18px;
}

.story-card {
  min-height: unset;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 76, 129, 0.1);
  border-color: rgba(15, 76, 129, 0.12);
}

/* =============================================
   SECTION CLIENTS — TRUST BRANDS SLIDER
   ============================================= */
.section-clients {
  position: relative;
  overflow: clip;
  padding-top: 80px;
  padding-bottom: 100px;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(20, 98, 250, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(20, 98, 250, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(99, 60, 220, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0a0f1e 0%, #060c1a 100%);
}

/* Animated background grid */
.section-clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 98, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 98, 250, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: gridPulse 8s ease-in-out infinite;
}

/* Floating orbs */
.section-clients::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 98, 250, 0.12) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.section-clients .container {
  position: relative;
  z-index: 2;
}

/* Override section-head text colors for dark background */
.section-clients .section-head .section-kicker {
  background: rgba(20, 98, 250, 0.18);
  border: 1px solid rgba(20, 98, 250, 0.35);
  color: #7eb3ff;
}

.section-clients .section-head h2 {
  color: #ffffff;
}

.section-clients .section-head h2 span {
  background: linear-gradient(135deg, #4d8fff 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ---- Clients Works Wrapper ---- */
.clients-works {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  margin-top: 32px;
  padding: 16px 0;
  z-index: 2;
}

.clients-works--top {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}

/* ---- Clients Swiper ---- */
.clients-swiper-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 12px 0;
}

.clients-swiper-wrap + .clients-swiper-wrap {
  margin-top: 20px;
}

.clients-swiper-wrap .swiper {
  overflow: visible;
}

.clients-swiper-wrap .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.clients-swiper-wrap .swiper-slide {
  width: 340px;
  height: 240px;
  flex-shrink: 0;
}

.clients-swiper__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  z-index: 10;
  pointer-events: none;
}

.clients-swiper__fade--start {
  left: 0;
  background: linear-gradient(90deg, #060c1a 0%, rgba(6, 12, 26, 0) 100%);
}

.clients-swiper__fade--end {
  right: 0;
  background: linear-gradient(270deg, #060c1a 0%, rgba(6, 12, 26, 0) 100%);
}

/* Fade edges */
.clients-works__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}

.clients-works__fade--start {
  left: 0;
  background: linear-gradient(90deg, #060c1a 0%, rgba(6, 12, 26, 0) 100%);
}

.clients-works__fade--end {
  right: 0;
  background: linear-gradient(270deg, #060c1a 0%, rgba(6, 12, 26, 0) 100%);
}

/* ---- Logo Lanes ---- */
.logo-lane {
  overflow: hidden;
  padding: 14px 0;
  width: 100%;
  display: block;
}

.logo-lane + .logo-lane {
  margin-top: 24px;
}

/* ---- Logo Track (Marquee Container) ---- */
.logo-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  user-select: none;
  animation: marquee-left 34s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
  padding-right: 22px;
}

.logo-track--ltr {
  animation: marquee-left 34s linear infinite;
}

.logo-track--rtl {
  animation: marquee-right 34s linear infinite;
}

/* ---- Logo Pill Card ---- */
.logo-pill {
  position: relative;
  min-width: 340px;
  max-width: 340px;
  height: 240px;
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(145deg, #0d1a3a 0%, #0a1428 60%, #071020 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(20, 98, 250, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* Shimmer sweep on hover */
.logo-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 75%, rgba(20, 98, 250, 0.85) 0%, rgba(20, 98, 250, 0.85) 14%, rgba(20, 98, 250, 0.15) 14%, rgba(20, 98, 250, 0) 32%),
    radial-gradient(circle at 82% 22%, rgba(99, 60, 220, 0.7) 0%, rgba(99, 60, 220, 0.7) 3%, rgba(99, 60, 220, 0) 3.4%),
    linear-gradient(180deg, rgba(4, 11, 31, 0.0) 0%, rgba(4, 11, 31, 0.5) 100%);
  opacity: 0.9;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

/* Dark overlay gradient */
.logo-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 35, 0.04) 0%, rgba(5, 13, 35, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 13, 35, 0.38) 0%, rgba(5, 13, 35, 0.06) 50%, rgba(5, 13, 35, 0.72) 100%);
  opacity: 1;
  transition: opacity 0.42s ease;
  pointer-events: none;
  z-index: 1;
}

/* Glowing border on hover */
.logo-pill__glow {
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: linear-gradient(135deg, rgba(20, 98, 250, 0.6), rgba(99, 60, 220, 0.4), rgba(20, 98, 250, 0.6));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.logo-pill:hover .logo-pill__glow {
  opacity: 1;
}

/* Media / image */
.logo-pill__media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.9) brightness(0.85) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

/* Text copy */
.logo-pill__copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: 0;
  text-align: start;
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-pill__copy strong {
  font-size: 1.3rem;
  line-height: 1.24;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

.logo-pill__copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 98, 250, 0.20);
  border: 1px solid rgba(20, 98, 250, 0.30);
  color: #a8c8ff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(20, 98, 250, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Hover states */
.logo-pill:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(20, 98, 250, 0.25);
  box-shadow:
    0 0 0 1px rgba(20, 98, 250, 0.2),
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 16px 32px rgba(20, 98, 250, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo-pill:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.logo-pill:hover::after {
  opacity: 0.85;
}

.logo-pill:hover .logo-pill__media {
  transform: scale(1.06);
}

.logo-pill:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(0.95) contrast(1.06);
}

.logo-pill:hover .logo-pill__copy {
  transform: translateY(0);
}

.logo-pill:hover .logo-pill__copy span {
  background: rgba(20, 98, 250, 0.30);
  border-color: rgba(20, 98, 250, 0.50);
}

/* ====================================================
   SECTION PLATFORMS — redesigned
   ==================================================== */
.section-platforms {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #f0f4ff 0%, #f8faff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle dot grid */
.section-platforms::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(20, 98, 250, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

/* big ambient glow */
.section-platforms::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 98, 250, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* ---- Two-column layout ---- */
.platforms-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Copy side ---- */
.platforms-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platforms-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0a1628;
}

.platforms-copy h2 span {
  background: linear-gradient(135deg, #1462fa 0%, #6b3cdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platforms-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a6a85;
  max-width: 380px;
}

/* Stats row */
.platforms-stats {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(20, 98, 250, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(20, 98, 250, 0.06);
}

.platforms-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  position: relative;
}

.platforms-stat + .platforms-stat::before {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(20, 98, 250, 0.1);
}

.platforms-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1462fa;
  line-height: 1;
}

.platforms-stat span {
  font-size: 0.75rem;
  color: #8a96b0;
  font-weight: 500;
  text-align: center;
}

/* ---- Chips grid ---- */
.platforms-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-content: flex-start;
}

/* ---- Single chip ---- */
.platform-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(20, 98, 250, 0.09);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(20, 98, 250, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  animation: chipFloat calc(4s + var(--i, 0) * 0.4s) ease-in-out infinite alternate;
  overflow: hidden;
}

.platform-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(20, 98, 250, 0.14);
  border-color: rgba(20, 98, 250, 0.25);
}

/* Logo — full width image area */
.platform-chip__logo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #FFF;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 98, 250, 0.07);
  transition: background 0.3s ease;
}

.platform-chip:hover .platform-chip__logo {
  background: #eef2ff;
}

.platform-chip__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: none;
}

.platform-chip:hover .platform-chip__logo img {
  transform: none;
}

.news-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.news-card__thumb img,
.news-card__thumb .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: none;
}

/* Text */
.platform-chip__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px 16px;
  width: 100%;
  text-align: center;
}

.platform-chip__text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f1c3f;
  line-height: 1.2;
}

.platform-chip__text span {
  font-size: 0.7rem;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, #1462fa 0%, #6b3cdc 100%);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Float animation */
@keyframes chipFloat {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .platforms-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .platforms-copy p {
    max-width: 100%;
  }

  .platforms-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .section-platforms {
    padding: 70px 0 80px;
  }

  .platforms-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-chip__logo img {
    width: 40px;
    height: 40px;
  }

  .platform-chip__text {
    padding: 10px 8px 12px;
  }

  .platform-chip__text strong {
    font-size: 0.82rem;
  }
}

.section-contact {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f0fe 100%);
}

.contact-panel {
  border-color: rgba(15, 76, 129, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 100%);
}

.contact-visual {
  min-height: 480px;
}

.contact-visual-shell {
  position: absolute;
  inset: 0;
}

.contact-photo {
  aspect-ratio: 1 / 1.12;
}

.contact-chip {
  color: var(--violet-dark);
}

.partner-strip {
  display: none;
}

.footer-newsletter-card {
  padding: 28px 26px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(8, 27, 45, 0.14);
}

.footer-newsletter-card .footer-heading {
  margin-bottom: 16px;
}

.footer-newsletter-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 0.98rem;
}

.newsletter-form {
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-width: 100%;
}

.newsletter-form--footer {
  display: block;
  border-bottom: none;
}

.newsletter-form--footer input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.newsletter-form--footer input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.newsletter-submit {
  width: 74px;
  height: 50px;
  border: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
  color: var(--violet);
  font-size: 1.1rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.newsletter-submit:hover {
  transform: translateY(-4px);
  background: #fef6df;
  color: var(--gold-deep);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Professional Mobile-First
   ════════════════════════════════════════════════════ */

/* ── 1200px: Large tablets / small laptops ── */
@media (max-width: 1199px) {

  .hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .platforms-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .platforms-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── 991px: Tablets ── */
@media (max-width: 991px) {

  /* Nav */
  .nav-container { min-height: 70px; }
  .navbar-nav-list,
  .btn-nav-cta { display: none; }
  .hamburger { display: block; }

  /* Sections */
  .section-shell { padding: 80px 0; }
  .hero-shell { padding-top: 120px; padding-bottom: 80px; }

  /* Grids */
  .hero-grid,
  .process-grid,
  .services-grid,
  .fit-grid { grid-template-columns: 1fr; }

  .process-grid { gap: 20px; }

  .service-card {
    grid-template-columns: minmax(0, 32%) minmax(0, 1fr);
  }

  .service-card--raised { transform: translateY(-16px); }

  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .platforms-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .contact-visual { min-height: 360px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: 1 / -1; }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    min-width: 100%;
  }
}

/* ── 767px: Mobile ── */
@media (max-width: 767px) {

  /* Base */
  .container { width: min(100% - 20px, var(--container)); }

  /* Typography */
  .section-head h2,
  .hero-heading,
  .contact-copy h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Sections */
  .section-shell { padding: 64px 0; }
  .hero-shell { padding-top: 100px; padding-bottom: 56px; }

  /* Hero */
  .hero-visual { min-height: 360px; }
  .hero-dashboard--image { min-height: 380px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a { width: 100%; justify-content: center; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-card { padding: 28px 22px; }
  .process-connector { display: none; }

  /* Services */
  .services-grid { gap: 24px; }

  .service-card,
  .service-card--raised {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 20px;
    transform: none !important;
    overflow: visible;
  }

  .service-card__media {
    margin: 0 0 16px 0;
    min-height: auto;
    justify-content: center;
    order: -1;
  }

  .service-card__media-shell {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 100%;
    height: 200px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 32, 0.1);
  }

  .service-card:hover .service-card__media-shell {
    transform: none !important;
  }

  .service-card__content {
    padding-right: 0;
    justify-items: start;
  }

  .service-card__content h3 { font-size: 1.2rem; }

  /* Fit */
  .fit-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fit-card { padding: 20px; }

  /* Clients */
  .logo-pill {
    min-width: 220px;
    max-width: 220px;
    height: 160px;
    border-radius: 18px;
  }
  .clients-swiper__fade { width: 60px; }

  /* Reviews */
  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px 18px 16px;
  }
  .review-card__text {
    font-size: 0.86rem;
    -webkit-line-clamp: 3;
  }

  /* Platforms */
  .platforms-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .platform-chip { animation: none; }
  .platforms-stats { flex-direction: row; }
  .platforms-copy h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Contact */
  .contact-panel { padding: 22px; border-radius: 22px; }
  .contact-visual { min-height: 280px; }

  /* Footer */
  .footer-main { padding: 56px 0 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bar-copy,
  .footer-bar-links { text-align: center; }
  .footer-bar__inner { flex-direction: column; gap: 8px; }

  /* Dashboard cards */
  .dashboard-glass { min-width: 140px; padding: 10px 12px; }
  .dashboard-mini-card { padding: 10px 12px; }
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px) {

  .container { width: min(100% - 16px, var(--container)); }

  .section-shell { padding: 52px 0; }
  .hero-shell { padding-top: 90px; padding-bottom: 48px; }

  .section-head h2,
  .hero-heading { font-size: clamp(1.4rem, 7vw, 2rem); }

  .section-kicker,
  .eyebrow-pill { font-size: 0.78rem; padding: 6px 12px; min-height: 32px; }

  /* Hero */
  .hero-visual { min-height: 300px; }
  .hero-dashboard--image { min-height: 320px; }

  /* Process */
  .process-card { padding: 20px 16px; }
  .process-card h3 { font-size: 1rem; }

  /* Services */
  .service-card__media-shell { width: min(200px, 75%); height: 190px; }

  /* Clients */
  .logo-pill {
    min-width: 180px;
    max-width: 180px;
    height: 140px;
    border-radius: 14px;
  }

  /* Reviews */
  .review-card { min-width: 260px; max-width: 260px; }

  /* Platforms */
  .platforms-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .platform-chip__inner { padding: 14px 12px; gap: 10px; }
  .platform-chip__logo { width: 40px; height: 40px; }

  /* Footer */
  .footer-logo { height: 36px; }
  .footer-col-title { font-size: 0.72rem; }
  .footer-links-list a { font-size: 0.86rem; }

  /* Scroll progress */
  #scroll-progress { height: 2px; }
}

/* ── 360px: Very small ── */
@media (max-width: 360px) {
  .hero-actions a { font-size: 0.88rem; padding: 12px 18px; }
  .mob-menu { width: 100vw; }
  .platforms-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Landscape mobile ── */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-shell { padding-top: 80px; padding-bottom: 40px; }
  .hero-visual { min-height: 260px; }
  .mob-menu { width: min(100vw, 320px); }
}

/* ── High DPI / Retina ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .nav-logo,
  .footer-logo,
  .mob-menu__logo img { image-rendering: -webkit-optimize-contrast; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo-track--ltr,
  .logo-track--rtl,
  .reviews-track { animation: none; }

  .platform-chip { animation: none; }
}

/* ── Print ── */
@media (max-width: 991px) {
  .contact-page-card {
    padding: 28px;
    border-radius: 26px;
  }

  .contact-page-sidebar {
    position: static;
    top: auto;
  }

  .contact-page-workspace {
    padding-top: 0;
  }

  .lead-capture {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page-hero {
    padding-top: 24px;
  }

  .contact-page-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-page-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .contact-page-subtitle {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .contact-page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-page-primary,
  .contact-page-secondary {
    width: 100%;
  }

  .contact-page-form-panel {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .contact-page-sidebar-card,
  .contact-page-wa-card,
  .contact-page-info-card {
    border-radius: 18px;
  }

  .lead-capture-section {
    padding: 54px 0 84px;
  }

  .lead-capture {
    gap: 18px;
  }

  .lead-capture__intro,
  .lead-capture__form-shell {
    border-radius: 24px;
    padding: 22px;
  }

  .lead-capture__whatsapp {
    max-width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .lead-capture__title {
    font-size: 1.45rem;
    line-height: 1.45;
  }

  .lead-capture__subtitle {
    font-size: 0.93rem;
  }

  .whatsapp-fab {
    left: 14px;
    bottom: 14px;
  }

  .back-to-top {
    left: 14px;
    bottom: 68px;
  }
}

/* ── Print ── */
@media print {
  .hamburger,
  .mob-menu,
  .mob-overlay,
  .whatsapp-fab,
  .back-to-top,
  #scroll-progress,
  #mainNav { display: none !important; }

  .section-shell { padding: 32px 0; }
  #footer { background: #fff !important; color: #000 !important; }
}

/* ── Hero image legacy ── */
.hero-img-col { opacity: 0; }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.hero-img-shape {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 70px rgba(13,19,89,.14);
  border: 1px solid rgba(13,19,89,.09);
  aspect-ratio: 4 / 5;
  min-height: 420px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.hero-img:hover { transform: scale(1.04); }

.hero-img-card {
  position: absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(13,19,89,.09);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(13,19,89,.12);
  z-index: 3;
  backdrop-filter: blur(8px);
}

.hero-img-card i { font-size: 1.4rem; color: #d52230; }
.hero-img-card div { display: flex; flex-direction: column; }
.hero-img-card strong { font-size: .88rem; font-weight: 800; color: #0d1359; }
.hero-img-card span { font-size: .72rem; color: #6b7280; }
.card-a { top: 8%; right: -18px; animation: fc1 4s ease-in-out infinite; }
.card-b { bottom: 12%; left: -18px; animation: fc2 5s ease-in-out infinite; }

@keyframes fc1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fc2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.hero-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(213,34,48,.12);
  animation: ring-pulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.ring-1 { width: 115%; aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ring-2 { width: 135%; aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1s; }

@keyframes ring-pulse {
  0%,100%{opacity:.2;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:.07;transform:translate(-50%,-50%) scale(1.04)}
}

@media (max-width: 991px) {
  .hero-img-shape { min-height: 320px; max-width: 100%; }
  .card-a { right: -8px; }
  .card-b { left: -8px; }
}

@media (max-width: 767px) {
  .hero-img-shape { min-height: 220px; border-radius: 14px; }
  .hero-img-card { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   SAMTIX v2.0 — PROFESSIONAL ENHANCEMENTS
   Clean, modern, high-performance additions
   ═══════════════════════════════════════════════════════════════ */

/* ── Focus visible accessibility ── */
:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Smooth image loading ── */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ── Selection color ── */
::selection {
  background: rgba(20, 98, 250, 0.18);
  color: #0a1628;
}

/* ── Hero section enhancements ── */
.hero-shell {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-heading {
  margin-top: 18px;
  margin-bottom: 0;
}

/* ── Metric cards enhanced ── */
.metric-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(20, 98, 250, 0.14);
}

/* ── Button enhancements ── */
.button-primary,
.button-secondary,
.btn-primary,
.btn-nav-cta {
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.btn-nav-cta:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}

/* ── Navbar enhancements ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 12px 0;
  transition: padding 0.3s ease, transform 0.3s ease;
}

#mainNav.scrolled {
  padding: 6px 0;
}

/* Hide navbar on scroll down, show on scroll up */
#mainNav.nav-hidden {
  transform: translateY(-100%);
}

/* ── Nav container width fix ── */
#mainNav .container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ── Services panel RTL fix ── */
.nav-services-panel {
  right: auto;
  left: 0;
}

[dir="rtl"] .nav-services-panel {
  right: 0;
  left: auto;
}

/* ── Process section enhancements ── */
.process-card {
  counter-increment: process-step;
}

/* ── Service card image fix ── */
.service-card__image {
  object-fit: cover;
}

/* ── Fit grid responsive fix ── */
@media (min-width: 768px) {
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .fit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Reviews marquee pause on hover ── */
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* ── Logo pill image fix ── */
.logo-pill__media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ── Platform chip hover fix ── */
.platform-chip:hover {
  animation-play-state: paused;
}

/* ── Contact section enhancements ── */
.contact-panel {
  transition: box-shadow 0.3s ease;
}

.contact-panel:hover {
  box-shadow: 0 40px 100px rgba(20, 98, 250, 0.14);
}

/* ── Footer enhancements ── */
.footer-main .row {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* ── Back to top button enhancement ── */
.back-to-top {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* ── WhatsApp FAB pulse animation ── */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.3);
  animation: waPulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ── Scroll progress bar enhancement ── */
#scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1462fa 0%, #6b3cdc 50%, #1462fa 100%);
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
  z-index: 9999;
  pointer-events: none;
  border-radius: 0 0 0 3px;
  transition: width 0.1s linear;
}

@keyframes progressShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Section transitions ── */
.section-shell {
  transition: background 0.3s ease;
}

/* ── Card hover states — unified ── */
.process-card,
.fit-card,
.review-card,
.service-card,
.blog-card,
.story-card {
  will-change: transform;
}

/* ── Typography improvements ── */
.section-head h2 {
  letter-spacing: -0.025em;
}

.section-head p {
  max-width: 60ch;
  margin-inline: auto;
}

.section-head--split .section-head p {
  margin-inline: 0;
}

/* ── Eyebrow pill animation fix ── */
.section-kicker,
.eyebrow-pill {
  animation: none;
}

/* ── Swiper slide fix ── */
.swiper-slide {
  height: auto;
}

/* ── Image error fallback ── */
img[src=""],
img:not([src]) {
  visibility: hidden;
}

/* ── Form improvements ── */
.lead-capture__form input,
.lead-capture__form select,
.lead-capture__form textarea,
.contact-page-form-wrap input,
.contact-page-form-wrap select,
.contact-page-form-wrap textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* ── Select arrow RTL fix ── */
.lead-capture__form select,
.contact-page-form-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

/* ── Textarea resize handle ── */
.lead-capture__form textarea,
.contact-page-form-wrap textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── CF7 spinner fix ── */
.wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

/* ── Breadcrumb enhancement ── */
.breadcrumb-area {
  isolation: isolate;
}

/* ── Page content body link underline ── */
.page-content-body a {
  text-underline-offset: 4px;
}

/* ── Blog card image aspect ratio fix ── */
.blog-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Search result item fix ── */
.search-result-item__thumb {
  flex-shrink: 0;
  overflow: hidden;
}

/* ── 404 page ── */
.error-404-shell {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.error-404-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1462fa 0%, #6b3cdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
}

.error-404-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 12px;
}

.error-404-desc {
  color: #5a6a85;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 44ch;
  margin: 0 auto 28px;
}

/* ── Sticky sidebar fix ── */
@supports (position: sticky) {
  .contact-page-sidebar {
    position: sticky;
    top: 118px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(20, 98, 250, 0.2) transparent;
  }
}

/* ── Reduced motion: disable all animations ── */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .dashboard-glass--floating,
  .dashboard-mini-card,
  .story-float-card,
  .platform-chip,
  .whatsapp-fab::before {
    animation: none !important;
  }

  .logo-track--ltr,
  .logo-track--rtl,
  .reviews-track {
    animation: none !important;
  }

  .gsap-animated {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── High contrast mode ── */
@media (forced-colors: active) {
  .button-primary,
  .btn-nav-cta {
    border: 2px solid ButtonText;
  }

  .section-kicker,
  .eyebrow-pill {
    border: 1px solid ButtonText;
  }
}

/* ── Container centering fix ── */
.container {
  margin-inline: auto;
}

/* ── Z-index management ── */
#mainNav { z-index: 1100; }
.mob-overlay { z-index: 1200; }
.mob-menu { z-index: 1300; }
.back-to-top,
.whatsapp-fab { z-index: 999; }
#scroll-progress { z-index: 9999; }

/* ── Smooth scroll offset for fixed nav ── */
:target {
  scroll-margin-top: 100px;
}

/* ── Print improvements ── */
@media print {
  .hero-shell {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-visual,
  .hero-orb,
  .hero-dashboard {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 24px 0;
    break-inside: avoid;
  }

  .service-card,
  .process-card,
  .fit-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
