/* #region VARIABLES */
:root {
  --blue: #75b8ea;
  --blue-strong: #4a97df;
  --green: #74c88e;
  --green-strong: #2f9f68;
  --green-soft: rgba(47, 159, 104, 0.12);
  --text: #20242b;
  --muted: #5f6670;
  --bg: #ffffff;
  --section-gray: #f5f5f5;
  --section-white: #ffffff;
  --border: #dbe3ea;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 16px 34px rgba(16, 24, 32, 0.075);
  --shadow-deep: 0 28px 62px rgba(16, 24, 32, 0.14);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --focus-ring: 0 0 0 4px rgba(74, 151, 223, 0.22);
  --container: 1180px;
  --nav-max: 1360px;
  --about-content-max: 1180px;
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --reveal-distance: 42px;
}
/* #endregion */

/* #region RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color-scheme: light;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
.container { width: min(calc(100% - 56px), var(--container)); margin: 0 auto; }
h1, h2, h3, .section-title, .nav-contact, .hero-btn, .pill-btn { font-family: "Sora", sans-serif; }
.section-white {
  background:
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
.section-gray {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #f2f5f7 100%);
}
::selection {
  color: #ffffff;
  background: rgba(74, 151, 223, 0.82);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* #endregion */

/* #region REVEAL */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  transition:
    opacity 0.86s var(--ease-out-soft),
    transform 0.86s var(--ease-out-soft);
  backface-visibility: hidden;
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}
.reveal-left { transform: translate3d(-42px, 0, 0) scale(0.985); }
.reveal-left.is-visible { transform: translate3d(0, 0, 0) scale(1); }
.reveal-right { transform: translate3d(42px, 0, 0) scale(0.985); }
.reveal-right.is-visible { transform: translate3d(0, 0, 0) scale(1); }
.reveal-zoom { transform: translate3d(0, 24px, 0) scale(0.96); }
.reveal-zoom.is-visible { transform: translate3d(0, 0, 0) scale(1); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
/* #endregion */

/* #region GLOBAL SECTIONS */
section { padding: 136px 0; }
section[id] { scroll-margin-top: 126px; }
.hero + section { padding-top: 144px; }
@supports (content-visibility: auto) {
  main > section:not(.hero):not(.means-hero):not(.services) {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

@media (max-width: 991px) {
  section[id] { scroll-margin-top: 96px; }
}
.section-title {
  position: relative;
  max-width: 820px;
  text-align: left;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 78px;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
  box-shadow: 0 8px 18px rgba(74, 151, 223, 0.2);
}
.section-title span { color: var(--blue-strong); }
.pill-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 180px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(72, 145, 208, 0.2);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.pill-btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -58%;
  z-index: 0;
  width: 46%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transition: transform 0.55s var(--ease-out-soft);
  pointer-events: none;
}
.pill-btn:hover {
  background: #ffffff;
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 28px rgba(72, 145, 208, 0.2);
}
.pill-btn:hover::before {
  transform: translateX(350%) skewX(-18deg);
}
/* #endregion */
