/* ==========================================================================
   sections.css — Page-specific composition
   Each block styles one region of the home page and composes the reusable
   components/utilities. Ordered top-to-bottom as they appear on the page.
   ========================================================================== */

/* --- Scroll progress bar -------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: var(--z-progress);
  background: var(--gradient-brand);
  transition: width 0.1s linear;
}

/* --- Header --------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -14px rgba(11, 31, 51, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: 18px;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 34px;
}

.header__logo img {
  height: 30px;
  width: auto;
  transition: filter 0.4s ease;
}

/* Over the dark hero the logo is white; once the glass header appears it
   reverts to its brand colors. */
.header:not(.header--scrolled) .header__logo img {
  filter: brightness(0) invert(1);
}

/* --- Primary navigation --------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  white-space: nowrap;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--color-cyan);
}

.header--scrolled .nav__link {
  color: var(--color-text);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link[aria-current="page"] {
  color: var(--color-blue);
}

/* Hamburger toggle — hidden on desktop, revealed in responsive.css. */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
}

.header--scrolled .nav-toggle {
  color: var(--color-navy);
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 150px 0 90px;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 24, 39, 0.95) 20%,
    rgba(11, 31, 51, 0.72) 55%,
    rgba(11, 31, 51, 0.35)
  );
}

.hero__orb {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 183, 217, 0.35), transparent 70%);
  filter: blur(30px);
}

/* Second, smaller cyan orb for depth. */
.hero__orb-2 {
  position: absolute;
  top: 18%;
  right: 24%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 183, 217, 0.26), transparent 70%);
  filter: blur(42px);
}

/* Faint tech grid, concentrated over the right of the hero. */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 65% 75% at 78% 42%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 65% 75% at 78% 42%, #000, transparent 75%);
}

/* Ambient ECG trace sweeping low across the hero. */
.hero__ecg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  display: block;
  height: 92px;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.hero__ecg-base {
  fill: none;
  stroke: rgba(127, 211, 232, 0.16);
  stroke-width: 2;
}

.hero__ecg-trace {
  fill: none;
  stroke: rgba(127, 211, 232, 0.75);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120 1000;
  filter: drop-shadow(0 0 5px rgba(35, 183, 217, 0.7));
}

/* Floating decor shapes (ring, plus, dot). */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__ring,
.hero__dot,
.hero__plus {
  position: absolute;
  will-change: transform;
}

.hero__ring {
  top: 22%;
  right: 12%;
  width: 76px;
  height: 76px;
  border: 1.5px dashed rgba(127, 211, 232, 0.32);
  border-radius: 50%;
}

.hero__dot {
  top: 47%;
  right: 7%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(35, 183, 217, 0.6);
  box-shadow: 0 0 12px rgba(35, 183, 217, 0.85);
}

.hero__plus {
  bottom: 24%;
  right: 23%;
  color: rgba(127, 211, 232, 0.42);
}

.hero__inner {
  position: relative;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.hero__title {
  max-width: 880px;
  margin-top: var(--space-5);
  color: #fff;
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  line-height: 1.05;
  letter-spacing: -0.022em;
}

.hero__title-accent {
  background: linear-gradient(135deg, #5AB0FF, var(--color-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: var(--measure);
  margin-top: var(--space-6);
  color: var(--color-on-dark-body);
  font-size: var(--fs-body-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 640px;
  margin-top: var(--space-9);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* --- Stat (shared: hero + stats band) ------------------------------------- */
.stat__value {
  display: block;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  line-height: 1;
}

.stat__label {
  display: block;
  margin: 0;
}

.hero__stats .stat__value {
  font-size: 2.125rem;
}

.hero__stats .stat__label {
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--color-on-dark-muted);
}

/* --- Trust marquee -------------------------------------------------------- */
.trust {
  padding-block: 40px;
  border-bottom: 1px solid var(--color-border-soft);
  overflow: hidden;
}

.trust__eyebrow {
  margin-bottom: var(--space-6);
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.trust__viewport {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.trust__track {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  width: max-content;
}

/* Partner logos: greyscale by default, true colours on hover. */
.trust__logo {
  flex: none;
  height: 34px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter var(--transition-base) ease, opacity var(--transition-base) ease;
}

.trust__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.trust__note {
  margin-top: var(--space-5);
  text-align: center;
  font-size: var(--fs-caption);
  color: #B6C0C9;
}

/* --- Product categories --------------------------------------------------- */
.categories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: var(--space-9);
}

.categories__head .section-title {
  max-width: 620px;
}

.category-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition-slow) var(--ease-out-expo),
    box-shadow var(--transition-slow) ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.category-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: var(--color-surface-well);
}

.category-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 31, 51, 0.28));
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.category-card:hover .category-card__img {
  transform: scale(1.06);
}

.category-card__body {
  padding: 22px 22px 24px;
}

.category-card__title {
  font-size: 1.16rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.category-card__text {
  margin: 9px 0 16px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Distinctive final card — links to the full categories page. */
.category-card--all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 30px 26px;
  border: none;
  background: var(--gradient-brand);
  color: #fff;
}

.category-card--all__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card--all__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.category-card--all__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-card--all__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
}

.category-card--all__link svg {
  transition: transform var(--transition-base) var(--ease-out-expo);
}

.category-card--all:hover .category-card--all__link svg {
  transform: translateX(4px);
}

/* --- Process (how inquiries work) ----------------------------------------- */
.process__head {
  margin: 0 auto var(--space-9);
}

.vitals__head .section-subtitle {
  max-width: 620px;
  margin-inline: auto;
}

.step-card {
  padding: 32px 28px;
}

.step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.94rem;
  box-shadow: 0 10px 22px -8px rgba(31, 122, 224, 0.6);
}

.step-card__title {
  margin: 20px 0 8px;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.19rem;
  color: var(--color-navy);
}

.step-card__text {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Vitals / ECG band ---------------------------------------------------- */
.vitals {
  padding-block: 96px;
}

.vitals__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(35, 183, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 183, 217, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000, transparent);
}

.vitals__orb {
  position: absolute;
  top: -90px;
  left: -40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 181, 201, 0.3), transparent 70%);
  filter: blur(34px);
}

.vitals__head {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.vitals__monitor {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 1080px;
  margin: 44px auto 0;
}

/* Square tile, same height as the monitor bar so the two align top and bottom. */
.vitals__heart {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  background: rgba(35, 183, 217, 0.12);
  border: 1px solid rgba(35, 183, 217, 0.25);
  color: var(--color-cyan);
}

.ecg {
  position: relative;
  flex: 1;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ecg__svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Dim ghost of the full waveform — always visible so the shape reads. */
.ecg__base {
  fill: none;
  stroke: rgba(35, 183, 217, 0.22);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bright "comet" segment that sweeps along and lights up the trace. */
.ecg__pulse {
  fill: none;
  stroke: #5FE0F5;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120 1000;
  filter: drop-shadow(0 0 6px rgba(35, 183, 217, 0.9));
}

/* Leading cursor dot that rides the front of the sweep. */
.ecg__dot {
  fill: #EAFBFF;
  filter: drop-shadow(0 0 7px rgba(95, 224, 245, 0.95));
}

/* --- About ---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--space-10);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media-frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-surface-well), var(--color-surface-alt));
}

.about__media-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
}

.about__img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about__title {
  max-width: 520px;
  margin: 12px 0 18px;
}

.about__text {
  max-width: 520px;
  color: var(--color-text-secondary);
}

.about__text + .about__text {
  margin-top: 14px;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* --- Stats band ----------------------------------------------------------- */
.stats-band {
  padding-block: 72px;
}

.stats-band__orb {
  position: absolute;
  top: -80px;
  left: 10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(20px);
}

.stats-band__grid {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-band .stat__value {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.stats-band .stat__label {
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Sectors we serve ----------------------------------------------------- */
.sectors__orb {
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 183, 217, 0.28), transparent 70%);
  filter: blur(34px);
}

.sectors__inner {
  position: relative;
}

.sectors__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow) var(--ease-out-expo),
    background 0.4s ease, box-shadow var(--transition-slow) ease;
}

.sector-card:hover {
  transform: translateY(-8px);
}

/* Dark buyer cards deepen their fill; light ones lift with a shadow. */
.card--dark.sector-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.card.sector-card:hover {
  box-shadow: var(--shadow-lift);
}

.sector-card__icon {
  margin-bottom: var(--space-4);
}

.sector-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  color: var(--color-navy);
}

.section--dark .sector-card__title {
  color: #fff;
}

/* --- Supply coverage ------------------------------------------------------ */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage__title {
  max-width: 480px;
  margin: 12px 0 18px;
}

.coverage__text {
  max-width: 480px;
  color: var(--color-text-secondary);
}

.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 500px;
  margin-top: var(--space-6);
}

.coverage__panel {
  position: relative;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--color-surface-alt);
}

/* Coverage map image (Egypt governorates). */
.coverage__map-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius-md);
}

.coverage__badge {
  position: absolute;
  right: 28px;
  bottom: 26px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px -16px rgba(11, 31, 51, 0.3);
}

.coverage__badge-value {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.375rem;
  line-height: 1;
  color: var(--color-navy);
}

.coverage__badge-label {
  margin-top: 3px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

/* --- Why Five Share ------------------------------------------------------- */
.why__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px 26px;
  transition: transform var(--transition-slow) var(--ease-out-expo),
    box-shadow var(--transition-slow) ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.feature-card__icon {
  margin-bottom: 18px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.09rem;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.feature-card__text {
  margin-top: 9px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Final CTA ------------------------------------------------------------ */
.cta {
  padding-block: 110px;
}

.cta__orb {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 224, 0.3), transparent 68%);
  filter: blur(30px);
}

.cta__inner {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.cta__title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

.cta__text {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* --- Footer --------------------------------------------------------------- */
.footer {
  padding: 64px 0 34px;
  background: var(--color-navy-deep);
  color: var(--color-on-dark-body);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer__logo {
  height: 30px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.footer__about {
  max-width: 280px;
  margin-top: 18px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-on-dark-muted);
}

.footer__heading {
  margin-bottom: var(--space-4);
  font-size: 0.81rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.9rem;
}

.footer__link {
  color: var(--color-on-dark-body);
}

.footer__link:hover {
  color: #fff;
}

.footer__contact-phone {
  color: #fff;
  font-weight: var(--fw-semibold);
}

.footer__address {
  color: var(--color-on-dark-muted);
  line-height: 1.5;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Interior page hero (compact dark banner) ----------------------------- */
.page-hero {
  position: relative;
  padding: 160px 0 84px;
  background: var(--gradient-dark);
  color: #fff;
  overflow: hidden;
}

.page-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 40% 30%, #000, transparent);
  mask-image: radial-gradient(ellipse 80% 80% at 40% 30%, #000, transparent);
}

.page-hero__orb-1 {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 224, 0.4), transparent 70%);
  filter: blur(32px);
}

.page-hero__orb-2 {
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 183, 217, 0.34), transparent 70%);
  filter: blur(34px);
}

.page-hero__inner {
  position: relative;
}

.page-hero__title {
  max-width: 820px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero__lead {
  max-width: 620px;
  margin-top: 20px;
  color: var(--color-on-dark-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

/* --- Contact: call + info cards ------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.call-card {
  display: block;
  padding: 34px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  color: #fff;
  text-decoration: none;
  transition: transform var(--transition-slow) var(--ease-out-expo),
    box-shadow var(--transition-slow) ease;
}

.call-card:hover {
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.call-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.18);
}

.call-card__eyebrow {
  font-size: 0.81rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.call-card__number {
  margin-top: 6px;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.6rem;
}

.call-card__note {
  margin-top: var(--space-2);
  font-size: 0.875rem;
  opacity: 0.85;
}

.info-stack {
  display: grid;
  gap: 20px;
}

.info-card {
  display: block;
  padding: 26px 28px;
  text-decoration: none;
}

a.info-card {
  transition: transform var(--transition-slow) var(--ease-out-expo),
    box-shadow var(--transition-slow) ease;
}

a.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.info-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.06rem;
  color: var(--color-navy);
}

.info-card__text {
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Contact: "what to mention" numbered cards ---------------------------- */
.mention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.mention-card {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
}

.mention-card__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.94rem;
}

.mention-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.06rem;
  color: var(--color-navy);
}

.mention-card__text {
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Floating helpers ----------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow: var(--shadow-float);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 75px;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 0 10px 26px -8px rgba(11, 31, 51, 0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
