:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #0a0a0a;
  --color-text-soft: #4b5563;
  --color-body: #1e266d;
  --color-body-soft: rgba(30, 38, 109, 0.85);
  --color-primary: #f22613;
  --color-primary-dark: #cf000f;
  --color-navy: #1e266d;
  --color-navy-dark: #061c3d;
  --color-border: rgba(30, 38, 109, 0.14);
  --color-border-soft: rgba(30, 38, 109, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 28px 72px rgba(0, 0, 0, 0.16);
  --container: min(1280px, calc(100vw - 3rem));
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

::-webkit-scrollbar {
  display: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 16px 36px rgba(242, 38, 19, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-dark);
}

.button--ghost {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
}

.button--large {
  min-height: 3.5rem;
  padding-inline: 2rem;
}

.button--square {
  border-radius: 8px;
  min-height: 3rem;
  padding-inline: 2rem;
}

.button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.button--block {
  width: 100%;
}

.box-border {
  border-radius: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.badge__sparkle {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  fill: currentColor;
  color: var(--color-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.9rem;
  padding-block: 1rem;
}

.site-header__logo {
  width: 132px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.site-header__brand {
  display: inline-block;
  width: 132px;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__link {
  color: #4b5563;
  font-weight: 300;
  transition: color 200ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--color-primary);
}

.site-nav__cta {
  display: none;
}

/* Container for dropdown */
.site-nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 0;
  background: transparent;
  color: #4b5563;
  padding: 0;
  cursor: pointer;
  transition: color 200ms ease, transform 220ms ease;
}

.site-nav__dropdown-toggle svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Dropdown menu hidden by default */
.site-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0.6rem;
  overflow: hidden;
  min-width: 220px;
  z-index: 10;
  flex-direction: column;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

/* Individual dropdown links */
.site-nav__dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #0f2a5f;
  text-decoration: none;
  transition: background 0.2s ease;
}

.site-nav__dropdown-menu a:hover {
  background: rgba(242, 38, 19, 0.05);
}

.site-nav__dropdown:hover .site-nav__link--dropdown,
.site-nav__dropdown:focus-within .site-nav__link--dropdown,
.site-nav__dropdown.is-open .site-nav__link--dropdown {
  color: var(--color-primary);
}

.site-nav__dropdown:hover .site-nav__dropdown-toggle,
.site-nav__dropdown:focus-within .site-nav__dropdown-toggle,
.site-nav__dropdown.is-open .site-nav__dropdown-toggle {
  color: var(--color-primary);
}

/* Show dropdown on hover for desktop */
@media (min-width: 768px) {

  .site-nav__dropdown:hover .site-nav__dropdown-menu,
  .site-nav__dropdown:focus-within .site-nav__dropdown-menu {
    display: flex;
  }

  .site-nav__dropdown:hover .site-nav__dropdown-toggle,
  .site-nav__dropdown:focus-within .site-nav__dropdown-toggle {
    transform: rotate(180deg);
  }
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 1rem;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.22rem 0;
  background: #4b5563;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 36rem);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 7.5rem);
}

.hero__title {
  margin: 1.5rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero__line {
  display: block;
}

.button--getintouch {
  background: var(--color-primary);
  color: var(--color-white);
  border: 0;
}

.button--getintouch:hover,
.button--getintouch:focus-visible {
  background: var(--color-primary-dark);
}


.hero__line--dark {
  background: linear-gradient(90deg, #000000, #1e266d, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__line--brand {
  background: linear-gradient(90deg, #f22613, #1e266d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text,
.section-text {
  color: var(--color-body-soft);
}

.hero__text {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.hero__actions {
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
  min-height: 31rem;
  perspective: 1000px;
}

.hero__glow,
.hero__ambient,
.contact__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.hero__glow--navy {
  inset: 16% auto auto 16%;
  width: 20rem;
  height: 20rem;
  background: rgba(242, 38, 19, 0.24);
}

.hero__glow--red {
  inset: auto 12% 14% auto;
  width: 30rem;
  height: 30rem;
  background: rgba(242, 38, 19, 0.1);
}

.hero-ribbon,
.hero-chip {
  position: absolute;
  box-shadow: var(--shadow-lg);
}

.hero-ribbon {
  border: 1px solid rgba(229, 231, 235, 1);
  background: linear-gradient(135deg, #ffffff, #f3f4f6 65%, #e5e7eb);
}

.hero-ribbon--top {
  top: 2.5rem;
  left: 50%;
  width: 24rem;
  height: 8rem;
  border-radius: 3rem;
  transform: translateX(-50%) rotateX(45deg) rotateY(-15deg);
  animation: heroFloatA 8s ease-in-out infinite;
}

.hero-ribbon--middle {
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 7rem;
  border-radius: 2.5rem;
  transform: translate(-50%, -50%) rotateX(-30deg) rotateY(20deg) rotateZ(-10deg);
  animation: heroFloatB 10s ease-in-out infinite;
}

.hero-ribbon--bottom {
  bottom: 5rem;
  left: 50%;
  width: 18rem;
  height: 6rem;
  border-radius: 2rem;
  transform: translateX(-50%) rotateX(60deg) rotateY(-25deg) rotateZ(15deg);
  animation: heroFloatC 9s ease-in-out infinite;
}

.hero-ribbon--diagonal {
  top: 32%;
  right: 2rem;
  width: 16rem;
  height: 5rem;
  border-radius: 2rem;
  border-color: rgba(30, 38, 109, 0.18);
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.1), rgba(255, 255, 255, 0.9), rgba(242, 38, 19, 0.1));
  transform: rotateX(-45deg) rotateY(35deg) rotateZ(20deg);
  animation: heroFloatD 11s ease-in-out infinite;
}

.hero-ribbon--accent {
  bottom: 30%;
  left: 1.5rem;
  width: 12rem;
  height: 4rem;
  border-radius: 1.5rem;
  border-color: rgba(242, 38, 19, 0.2);
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.1), rgba(255, 255, 255, 0.9), rgba(30, 38, 109, 0.1));
  transform: rotateX(55deg) rotateY(-40deg) rotateZ(-25deg);
  animation: heroFloatE 7s ease-in-out infinite;
}

.hero-chip {
  border-radius: 1rem;
}

.hero-chip--blue {
  top: 4rem;
  right: 3.5rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #1e266d, rgba(30, 38, 109, 0.8));
  animation: heroChipBlue 6s ease-in-out infinite;
}

.hero-chip--red {
  bottom: 7rem;
  left: 3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #f22613, rgba(242, 38, 19, 0.8));
  animation: heroChipRed 7s ease-in-out infinite;
}

.hero__ambient--left {
  top: 10rem;
  left: -4rem;
  width: 24rem;
  height: 24rem;
  background: rgba(30, 38, 109, 0.1);
}

.hero__ambient--right {
  right: -4rem;
  bottom: 7rem;
  width: 24rem;
  height: 24rem;
  background: rgba(242, 38, 19, 0.1);
}

.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.section--about,
.section--services,
.section--training,
.section--tailor,
.full-shot {
  background: #ffffff;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 22rem) minmax(220px, 0.75fr);
  gap: 3rem;
  align-items: center;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
}

.section-title--about {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.section-title__nowrap {
  white-space: nowrap;
}

.section-title--center {
  font-size: clamp(2.5rem, 5vw, 3rem);
  text-align: center;
}

.section-head {
  margin-bottom: 4rem;
  text-align: center;
}

.orbital {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 1;
  margin-inline: auto;
}

.orbital__spinner,
.orbital__ring,
.orbital__core,
.orbital__particle {
  position: absolute;
}

.orbital__spinner {
  inset: 0;
  transform-style: preserve-3d;
}

.orbital__ring,
.orbital__core,
.orbital__particle {
  border-radius: 999px;
}

.orbital__ring {
  inset: 0;
  border: 3px solid rgba(242, 38, 19, 0.4);
}

.orbital__spinner--ring-red {
  animation: orbitalRingRed 20s linear infinite;
}

.orbital__ring--red {
  transform: rotateX(60deg);
  box-shadow: 0 0 40px rgba(242, 38, 19, 0.3);
}

.orbital__spinner--ring-blue {
  animation: orbitalRingBlue 15s linear infinite;
}

.orbital__ring--blue {
  border-color: rgba(30, 38, 109, 0.35);
  transform: rotateX(120deg);
  box-shadow: 0 0 40px rgba(30, 38, 109, 0.3);
}

.orbital__spinner--ring-cross {
  animation: orbitalRingCross 18s linear infinite;
}

.orbital__ring--cross {
  border-color: rgba(242, 38, 19, 0.25);
  transform: rotateY(60deg);
  box-shadow: 0 0 35px rgba(242, 38, 19, 0.25);
}

.orbital__spinner--core {
  inset: 0;
  display: grid;
  place-items: center;
  animation:
    orbitalCoreRotate 25s linear infinite,
    pulseCore 4s ease-in-out infinite;
}

.orbital__core {
  inset: auto;
  width: 6rem;
  height: 6rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    linear-gradient(135deg, #f22613 0%, #1e266d 50%, #f22613 100%);
  box-shadow:
    0 0 60px rgba(242, 38, 19, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.orbital__particle {
  width: 1rem;
  height: 1rem;
}

.orbital__particle--red {
  top: 14%;
  right: 10%;
  background: rgba(242, 38, 19, 0.7);
  animation: particleFloatRed 5s ease-in-out infinite;
}

.orbital__particle--blue {
  bottom: 18%;
  left: 14%;
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(30, 38, 109, 0.7);
  animation: particleFloatBlue 6s ease-in-out infinite;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 1px;
  background: rgba(30, 38, 109, 0.2);
}

.about-hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fc 40%, #ffffff 100%);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.about-intro__image {
  grid-column: 1 / span 7;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  min-height: 600px;
  box-shadow: var(--shadow-lg);
}

.about-intro__content {
  grid-column: 8 / span 5;
}

.about-intro__content h2 {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.about-intro__content p {
  margin-bottom: 1.25rem;
  color: rgba(30, 38, 109, 0.88);
}

.about-intro__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-intro__stat {
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(242, 38, 19, 0.08), rgba(30, 38, 109, 0.05));
  border: 1px solid rgba(30, 38, 109, 0.1);
  min-height: 13rem;
}

.about-intro__stat-value {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-primary);
  line-height: 1;
}

.about-intro__stat p {
  margin: 0;
  color: var(--color-body-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: stretch;
}

.mission-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mission-card {
  grid-column: unset;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 235px;
}

.mission-card {
  background: linear-gradient(160deg, #fff0ef 0%, #ffd6d6 100%);
}

.mission-card--vision {
  background: linear-gradient(160deg, #ffe8e6 0%, #ffcece 100%);
}

.mission-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(210, 0, 0, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 0;
}

.mission-image {
  grid-column: unset;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 460px;
  background: #9ab4e8;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .mission-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.mission-header-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.mission-header-grid > div:first-child {
  grid-column: span 5;
}

.mission-header-grid > div:last-child {
  grid-column: span 7;
}

.mission-header-grid .section-text {
  margin: 0;
  color: var(--color-body-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.mission-card,
.mission-card--vision {
  grid-column: 1 / span 5;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.mission-card {
  background: linear-gradient(180deg, #fff6f6 0%, #ffe6e6 100%);
}

.mission-card--vision {
  background: linear-gradient(180deg, #fff3f0 0%, #f9e1e1 100%);
}

.mission-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(242, 38, 19, 0.12);
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  color: var(--color-black);
}

.mission-card p {
  margin: 0;
  color: rgba(30, 38, 109, 0.88);
  line-height: 1.8;
}

.mission-image {
  grid-column: 6 / span 7;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(242, 38, 19, 0.05);
  border: 1px solid rgba(30, 38, 109, 0.12);
  box-shadow: var(--shadow-lg);
  min-height: 220px;
}

.value-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(30, 38, 109, 0.1);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--color-black);
}

.value-card p {
  margin: 0;
  color: var(--color-body-soft);
  line-height: 1.8;
}

.timeline-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  padding-top: 2rem;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 38, 19, 0.18), rgba(30, 38, 109, 0.2), rgba(242, 38, 19, 0.18));
}

.timeline-item {
  position: relative;
  width: min(18rem, 100%);
  padding: 2rem;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(30, 38, 109, 0.08);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  text-align: center;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px rgba(242, 38, 19, 0.1);
}

.timeline-item h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.75rem;
  color: var(--color-black);
}

.timeline-item p {
  margin: 0;
  color: var(--color-body-soft);
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 38, 19, 0.05));
  border: 1px solid rgba(30, 38, 109, 0.08);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(242, 38, 19, 0.12);
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--color-black);
}

.feature-card p {
  margin: 0;
  color: rgba(30, 38, 109, 0.86);
  line-height: 1.8;
}

.about-cta {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(242, 38, 19, 0.07), #ffffff 45%);
  text-align: center;
}

.about-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-black);
}

.about-cta p {
  margin: 0 auto 2rem;
  max-width: 44rem;
  color: var(--color-body-soft);
}

@media (max-width: 900px) {

  .about-intro__image,
  .about-intro__content,
  .mission-card,
  .mission-card--vision,
  .mission-image,
  .why-grid,
  .values-grid {
    grid-column: 1 / -1;
  }

  .about-intro__grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-intro__stats {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    flex-direction: column;
    align-items: center;
  }

  .timeline-grid::before {
    top: 1.5rem;
  }

  .timeline-item {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .hero__grid,
  .about-intro__grid,
  .mission-grid,
  .why-grid,
  .values-grid {
    gap: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}


.stat h3,
.metric strong,
.global__countries strong {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.stat p,
.metric p {
  margin: 0;
  color: rgba(30, 38, 109, 0.9);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  grid-auto-rows: minmax(210px, auto);
  align-items: stretch;
}

.service-card,
.product-panel,
.contact__form-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.9rem;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.service-card:hover,
.product-panel:hover,
.contact__form-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.1),
    0 4px 10px rgba(15, 23, 42, 0.05);
}

.service-card {
  padding: 2rem;
  border-radius: 1.5rem;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.service-card--small {
  grid-column: span 4;
  min-height: 248px;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.05) 0%, rgba(242, 38, 19, 0.05) 100%);
}

.service-card:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.service-card--featured {
  grid-column: 5 / span 8;
  grid-row: 1 / span 2;
  min-height: 520px;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.08) 0%, rgba(30, 38, 109, 0.08) 50%, rgba(242, 38, 19, 0.05) 100%);
}

.service-card:nth-child(3) {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.service-card--medium {
  grid-column: 1 / span 6;
  grid-row: 3;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.05) 0%, rgba(242, 38, 19, 0.03) 100%);
}

.service-card--cta {
  grid-column: 7 / span 6;
  grid-row: 3;
  padding: 2.5rem;
  min-height: 220px;
  text-align: center;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.08) 0%, rgba(30, 38, 109, 0.08) 50%, rgba(242, 38, 19, 0.06) 100%);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background-color 300ms ease;
}

.service-card__icon--navy {
  color: var(--color-navy);
}

.service-card__icon--red {
  color: var(--color-primary);
}

.service-card__icon--featured {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__icon--featured svg {
  width: 2rem;
  height: 2rem;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.service-card:hover h3 {
  color: #111111;
}

.service-card:hover p {
  color: rgba(30, 38, 109, 0.96);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
}

.service-card--featured h3 {
  font-size: clamp(1.7rem, 2vw, 1.95rem);
  max-width: 46rem;
  margin-bottom: 1rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-body-soft);
  font-size: 0.875rem;
  line-height: 1.7;
}

.service-card--featured p {
  max-width: 39rem;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.service-card__bar {
  width: 4rem;
  height: 0.25rem;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #f22613, #1e266d);
}

/* .service-card__spiral {
  position: absolute;
  left: 50%;
  top: calc(62% + 50px);
  width: clamp(16rem, 42vw, 24rem);
  opacity: 1.25;
  transform: translate(-50%, -50%);
  pointer-events: none;
} */
.service-card__spiral {
  position: absolute;
  left: 50%;
  bottom: -180px;
  /* push slightly down like screenshot */
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card--small:hover,
.service-card--medium:hover {
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.06) 0%, rgba(242, 38, 19, 0.06) 100%);
}

.service-card--featured:hover {
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.09) 0%, rgba(30, 38, 109, 0.09) 50%, rgba(242, 38, 19, 0.06) 100%);
}

.service-card--cta:hover {
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.09) 0%, rgba(30, 38, 109, 0.09) 50%, rgba(242, 38, 19, 0.07) 100%);
}

.service-card__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.service-card--cta h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.service-card--cta p {
  max-width: 16rem;
  margin-bottom: 1.5rem;
  color: rgba(30, 38, 109, 0.9);
}

.service-card__cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.service-card__cta-glow--one {
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(30, 38, 109, 0.05);
}

.service-card__cta-glow--two {
  right: -2.5rem;
  bottom: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(242, 38, 19, 0.05);
}

.products-scroll__spacer {
  position: relative;
  height: 300vh;
}

.products-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
}

.section-head--products {
  padding-top: 5rem;
}

.products-track-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 16rem;
}

.products-track {
  display: flex;
  width: 200vw;
  transform: translateX(0);
  will-change: transform;
}

.product-slide {
  display: flex;
  flex: 0 0 100vw;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
}

.product-slide--one {
  --product-scale: 1;
  --product-opacity: 1;
}

.product-slide--two {
  --product-scale: 0.98;
  --product-opacity: 0.5;
}

.product-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100vw;
  max-width: 1400px;
  height: 600px;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 2.5rem;
  transform: scale(var(--product-scale));
  opacity: var(--product-opacity);
  transition:
    transform 350ms ease,
    opacity 350ms ease,
    box-shadow 500ms ease;
}

.product-panel--reverse {
  grid-auto-flow: dense;
}

.product-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
}

.product-panel__content--reverse {
  order: 2;
}

.product-badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 999px;
  background: #f9fafb;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e266d, #f22613);
}

.product-badge--reverse .product-badge__dot {
  background: linear-gradient(90deg, #f22613, #1e266d);
}

.product-panel h3 {
  margin: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
}

.product-panel p {
  margin: 0 0 2rem;
  color: var(--color-body-soft);
  font-size: 1.125rem;
  line-height: 1.65;
}

.product-features {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(30, 38, 109, 0.9);
}

.product-features__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 38, 109, 0.3), rgba(242, 38, 19, 0.3));
}

.product-features__icon::before,
.product-features__icon::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 999px;
}

.product-features__icon::before {
  left: 0.42rem;
  top: 0.72rem;
  width: 0.24rem;
  height: 0.12rem;
  transform: rotate(45deg);
}

.product-features__icon::after {
  left: 0.58rem;
  top: 0.54rem;
  width: 0.5rem;
  height: 0.12rem;
  transform: rotate(-45deg);
}

.product-features__icon--reverse {
  background: linear-gradient(90deg, rgba(242, 38, 19, 0.3), rgba(30, 38, 109, 0.3));
}

.product-panel__cta {
  width: fit-content;
  padding-inline: 2.5rem;
}

.product-panel__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.product-panel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.1), rgba(242, 38, 19, 0.1));
}

.product-panel__media--reverse {
  order: 1;
}

.product-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-panel:hover .product-panel__media img {
  transform: scale(1.05);
}

.product-panel__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.2), transparent);
}

.product-panel__blur {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
}

.product-panel__blur--one {
  top: 2.5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.2), rgba(242, 38, 19, 0.2));
}

.product-panel__blur--two {
  bottom: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.15), rgba(242, 38, 19, 0.15));
}

.product-panel__blur--three {
  top: 2.5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.2), rgba(30, 38, 109, 0.2));
}

.product-panel__blur--four {
  bottom: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.15), rgba(30, 38, 109, 0.15));
}

.products-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  z-index: 5;
}

.products-dots {
  display: flex;
  gap: 0.75rem;
}

.products-dots__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #d1d5db;
}

.products-dots__dot.is-active {
  background: linear-gradient(90deg, #f22613, #1e266d);
}

.products-progress__bar {
  width: min(16rem, 80vw);
  height: 0.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.products-progress__fill {
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #f22613, #1e266d);
}

.products-progress__hint {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  animation: hintPulse 2s ease-in-out infinite;
}

.global {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 24rem) minmax(220px, 0.75fr);
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
}

.section-title--global {
  font-size: clamp(2.5rem, 4vw, 3rem);
}

.global__countries span {
  display: block;
  color: var(--color-navy);
  font-size: 1.5rem;
  font-weight: 600;
}

.globe-wrap {
  position: relative;
  animation: globeFloat 5s ease-in-out infinite;
}

.globe-wrap__image {
  animation: globeSpin 30s linear infinite;
}

.globe-wrap__particle {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.globe-wrap__particle--red {
  top: 8%;
  right: 18%;
  width: 0.75rem;
  height: 0.75rem;
  background: #f22613;
  animation: globeParticleA 6s ease-in-out infinite;
}

.globe-wrap__particle--blue {
  left: 10%;
  bottom: 20%;
  width: 1rem;
  height: 1rem;
  background: #1e266d;
  animation: globeParticleB 7s ease-in-out infinite;
}

.globe-wrap__particle--small {
  top: 50%;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: #f22613;
  animation: globeParticleC 5.5s ease-in-out infinite;
}

.global__stats {
  display: grid;
  gap: 2rem;
}

.metric {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.metric__line {
  width: 8rem;
  height: 2px;
  background: rgba(30, 38, 109, 0.2);
}

.metric:hover .metric__line {
  background: var(--color-primary);
}

.metric strong {
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 3rem);
}

.metric p {
  margin-top: 0.75rem;
  font-size: 1.125rem;
}

.training-shot {
  overflow: hidden;
}

.training-shot img {
  width: 100%;
  height: auto;
}

.section--tailor {
  padding-top: 5rem;
}

.tailor__frame-wrap {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto 4rem;
}

.tailor__sample-card,
.tailor__frame {
  border: 1px solid #e8e4f0;
  border-radius: 16px;
  background: #fdfcff;
  box-shadow:
    0 10px 28px rgba(30, 38, 109, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.05);
}

.tailor__sample-card {
  position: absolute;
  inset: auto 16px 0;
  min-height: 290px;
  opacity: 0.7;
  transform: translateY(12px);
  overflow: hidden;
  pointer-events: none;
}

.tailor__sample-top-bar {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(232, 228, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 252, 0.92));
}

.tailor__sample-title {
  color: rgba(10, 10, 10, 0.68);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.6;
}

.tailor__sample-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.tailor__sample-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 38, 109, 0.08), rgba(242, 38, 19, 0.1));
}

.tailor__sample-line--short {
  width: 34%;
}

.tailor__sample-line--medium {
  width: 62%;
}

.tailor__frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 260.11px;
  padding: 0 0 16px;
  font-family: "Poppins", system-ui, sans-serif;
  overflow: hidden;
  z-index: 1;
}

.tailor__top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-bottom: 1px solid #ece9f5;
}

.tailor__back {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.tailor__back svg {
  width: 14px;
  height: 14px;
  stroke: #555;
}

.tailor__header-label {
  font-size: 12px;
  line-height: 19.158px;
  color: #0a0a0a;
  font-family: "Poppins", system-ui, sans-serif;
  min-height: 19px;
}

.tailor__body {
  padding: 16px 20px 12px 20px;
}

.tailor__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.tailor__row--answer {
  align-items: flex-start;
}

.tailor__row-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tailor__row-icon svg {
  width: 15px;
  height: 15px;
}

.tailor__row-icon--answer {
  margin-top: 2px;
}

.tailor__label-text {
  font-size: 12px;
  line-height: 19.158px;
  color: #0a0a0a;
  font-family: "Poppins", system-ui, sans-serif;
  min-height: 19px;
}

.tailor__copy-text {
  font-size: 12px;
  line-height: 19.158px;
  color: #0a0a0a;
  font-family: "Poppins", system-ui, sans-serif;
  min-height: 60px;
  flex: 1;
}

.tailor__input-row {
  margin: 10px 20px 0;
  border: 1px solid #e0dcea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 8px;
}

.tailor__input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12px;
  color: #888;
  font-family: "Poppins", system-ui, sans-serif;
  background: transparent;
}

.tailor__input-row svg {
  width: 16px;
  height: 16px;
  stroke: #aaa;
  flex-shrink: 0;
}

.typing-cursor {
  display: inline-block;
  width: 1.5px;
  height: 11px;
  background: #0a0a0a;
  margin-left: 1px;
  vertical-align: middle;
  animation: blink 0.75s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.dot-wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 19px;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aaa;
  animation: dotBounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.tailor__wheel {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 57rem;
  height: 57rem;
  transform: translate(-50%, -50%) rotate(155.84deg) skewX(-0.28deg);
  opacity: 1;
  filter: blur(32px);
  pointer-events: none;
}

.tailor__heading {
  margin: 0;
  font-family: "Poppins", var(--font-heading);
  font-size: 41.263px;
  line-height: 44.211px;
  color: #061c3d;
}

.tailor__subheading {
  margin: 1rem 0 0;
  font-family: "Poppins", var(--font-body);
  font-size: 13.263px;
  line-height: 19.158px;
  color: #42526b;
}

.tailor__bottom {
  text-align: center;
}

.tailor__bottom h3 {
  margin: 0 0 1rem;
  font-family: "Poppins", var(--font-heading);
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
}

.tailor__bottom p {
  max-width: 372px;
  margin: 0 auto 2rem;
  color: #4b5563;
  font-family: "Poppins", var(--font-body);
  font-size: 16px;
  line-height: 24px;
}

.full-shot img {
  width: 100%;
  height: auto;
}

.section--contact {
  background: #ffffff;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 34rem);
  gap: 4rem;
  align-items: center;
}

.contact__blob--left {
  top: -12rem;
  left: -12rem;
  width: 37.5rem;
  height: 37.5rem;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.1), rgba(242, 38, 19, 0.05), rgba(243, 244, 246, 0.2));
}

.contact__blob--right {
  right: -8rem;
  bottom: -8rem;
  width: 31rem;
  height: 31rem;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.1), rgba(30, 38, 109, 0.05), rgba(243, 244, 246, 0.2));
}

.contact__blob--center {
  top: 50%;
  left: 50%;
  width: 25rem;
  height: 25rem;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(30, 38, 109, 0.05), rgba(242, 38, 19, 0.05));
}

.contact__heading {
  margin: 2rem 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.contact__heading span {
  background: linear-gradient(90deg, #f22613, #1e266d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__intro {
  max-width: 34rem;
  margin: 0;
  color: var(--color-body-soft);
  font-size: 1.25rem;
}

.contact__info {
  margin-top: 2rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
}

.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg,
      rgba(242, 38, 19, 0.08),
      rgba(30, 38, 109, 0.08));
  color: #ff3b2f;
  /* nice red like screenshot */
}

.contact__info-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.contact__proof {
  margin-top: 2rem;
}

.contact__avatars {
  display: inline-flex;
  margin-right: 1rem;
  vertical-align: middle;
}

.contact__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: -0.4rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact__avatar:first-child {
  margin-left: 0;
}

.contact__avatar-text {
  font-weight: 700;
  color: var(--color-primary);
}

.contact__avatar-text--pod {
  color: #22b179;
}

.contact__info p,
.contact__proof p {
  display: inline;
  color: var(--color-body-soft);
  font-size: 0.875rem;
}

.contact__proof span {
  font-weight: 600;
  color: var(--color-black);
}

.contact__form-card {
  padding: 2.7rem 2.65rem 2.45rem;
  border: 1px solid rgba(229, 231, 235, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__intro h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-form__intro p {
  margin: 0.55rem 0 0;
  color: var(--color-body-soft);
  font-size: 0.95rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: rgba(30, 38, 109, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 0.95rem;
  background: rgba(248, 250, 252, 0.72);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 3.5rem;
  max-height: 6.5rem;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(30, 38, 109, 0.12);
}

.field--hidden {
  display: none;
}

.field__error,
.contact-form__status {
  min-height: 1rem;
  margin: 0;
  font-size: 0.8rem;
}

.field__error,
.contact-form__status.is-error {
  color: var(--color-primary-dark);
}

.contact-form__status.is-success {
  color: #0d7d3c;
}

.site-header__cta {
  padding: 0.3rem 1.5rem;
}

.site-footer {
  background: linear-gradient(135deg, #1e266d, #1e266d, #000000);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.site-footer__brand {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f22613, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li+li {
  margin-top: 0.75rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: background-color 300ms ease, transform 300ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--up {
  transform: translateY(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes heroFloatA {

  0%,
  100% {
    transform: translateX(-50%) rotateX(45deg) rotateY(-15deg) rotateZ(0deg);
  }

  50% {
    transform: translateX(-50%) rotateX(50deg) rotateY(-5deg) rotateZ(2deg);
  }
}

@keyframes heroFloatB {

  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(-30deg) rotateY(20deg) rotateZ(-10deg);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(-24deg) rotateY(-10deg) rotateZ(5deg);
  }
}

@keyframes heroFloatC {

  0%,
  100% {
    transform: translateX(-50%) rotateX(60deg) rotateY(-25deg) rotateZ(15deg);
  }

  50% {
    transform: translateX(-50%) rotateX(65deg) rotateY(10deg) rotateZ(-5deg);
  }
}

@keyframes heroFloatD {

  0%,
  100% {
    transform: rotateX(-45deg) rotateY(35deg) rotateZ(20deg);
  }

  50% {
    transform: rotateX(-40deg) rotateY(-15deg) rotateZ(10deg);
  }
}

@keyframes heroFloatE {

  0%,
  100% {
    transform: rotateX(55deg) rotateY(-40deg) rotateZ(-25deg) translateY(0);
  }

  50% {
    transform: rotateX(60deg) rotateY(20deg) rotateZ(-20deg) translateY(-10px);
  }
}

@keyframes heroChipBlue {

  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  50% {
    transform: translate(10px, -20px) rotate(360deg);
  }
}

@keyframes heroChipRed {

  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  50% {
    transform: translate(-15px, 25px) rotate(-360deg);
  }
}

@keyframes spinClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCounter {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes orbitalRingRed {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes orbitalRingBlue {
  from {
    transform: rotateY(360deg);
  }

  to {
    transform: rotateY(0deg);
  }
}

@keyframes orbitalRingCross {
  from {
    transform: rotateX(0deg);
  }

  to {
    transform: rotateX(360deg);
  }
}

@keyframes orbitalCoreRotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes pulseCore {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes particleFloatRed {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -20px);
  }
}

@keyframes particleFloatBlue {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8px, 15px);
  }
}

@keyframes globeFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes globeSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes globeParticleA {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(15px, -25px);
    opacity: 0.6;
  }
}

@keyframes globeParticleB {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(-12px, 20px);
    opacity: 0.6;
  }
}

@keyframes globeParticleC {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }

  50% {
    transform: translate(8px, -15px);
    opacity: 0.5;
  }
}

@keyframes hintPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header__cta {
    display: none;
  }

  .hero__grid,
  .about,
  .global,
  .contact,
  .site-footer__grid,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .service-card--small,
  .service-card--featured,
  .service-card--medium,
  .service-card--cta,
  .service-card:nth-child(1),
  .service-card:nth-child(3) {
    grid-column: span 12;
    grid-row: auto;
  }

  .products-track-wrap {
    padding-top: 18rem;
  }

  .product-panel {
    min-height: auto;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-header__cta {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header__inner {
    position: relative;
    min-height: 4.5rem;
    padding-block: 0.75rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1rem;
    border: 1px solid rgba(229, 231, 235, 0.96);
    border-top: 0;
    border-radius: 0 0 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav__link {
    width: 100%;
    padding: 0.45rem 0;
  }

  .site-nav__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.7rem;
    padding: 0.85rem 1.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__dropdown {
    width: 100%;
    display: block;
  }

  .site-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .site-nav__dropdown-toggle {
    width: 1.7rem;
    height: 1.7rem;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-toggle {
    transform: rotate(180deg);
  }

  .site-nav__dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 0.2rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-menu {
    display: flex;
  }

  .site-nav__dropdown-menu a {
    width: 100%;
    padding: 0.45rem 0 0.45rem 0.95rem;
    font-size: 0.92rem;
  }

  .hero__visual {
    min-height: 24rem;
  }

  .products-scroll__spacer {
    height: auto;
  }

  .products-scroll__sticky {
    position: relative;
    height: auto;
    padding: 6rem 0 4rem;
  }

  .products-track-wrap {
    position: static;
    display: block;
    padding-top: 0;
  }

  .products-track {
    display: grid;
    width: auto;
    gap: 1.5rem;
    transform: none !important;
  }

  .product-slide {
    width: 100%;
    flex-basis: auto;
    padding-inline: 0;
  }

  .product-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }

  .product-panel__content,
  .product-panel__content--reverse {
    order: 1;
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .product-panel__media,
  .product-panel__media--reverse {
    order: 2;
    min-height: 18rem;
  }

  .product-panel h3 {
    font-size: clamp(2rem, 7vw, 2.4rem);
    margin: 1rem 0;
  }

  .product-panel p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .product-features {
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .product-panel__cta {
    width: 100%;
  }

  .product-slide {
    padding-inline: 0;
  }

  .product-slide--one,
  .product-slide--two {
    --product-scale: 1;
    --product-opacity: 1;
  }

  .products-progress {
    display: none;
    position: static;
    margin-top: 2rem;
  }

  .tailor__frame-wrap {
    width: min(100%, 38rem);
    padding-bottom: 10px;
  }

  .tailor__sample-card {
    inset-inline: 14px;
    min-height: 208px;
  }

  .tailor__frame {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 1.25rem), 100%);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero__title {
    font-size: 2.35rem;
  }

  .products-scroll__sticky {
    padding: 5rem 0 3rem;
  }

  .section-head--products {
    padding-top: 0;
  }

  .product-panel {
    border-radius: 1.5rem;
  }

  .product-panel__content,
  .product-panel__content--reverse {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .product-panel__media,
  .product-panel__media--reverse {
    min-height: 15rem;
  }

  .product-badge {
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .product-badge__dot {
    width: 0.45rem;
    height: 0.45rem;
    flex-basis: 0.45rem;
  }

  .product-panel h3 {
    font-size: 1.75rem;
    margin: 0.9rem 0;
  }

  .product-panel p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .product-features li {
    align-items: flex-start;
  }

  .product-features__icon {
    margin-top: 0.1rem;
  }

  .products-progress__bar {
    width: min(14rem, 78vw);
  }

  .products-progress__hint {
    font-size: 0.8rem;
  }

  .contact__heading {
    font-size: 3rem;
  }

  .contact__form-card {
    padding: 1.5rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tailor__heading {
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .tailor__subheading {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .tailor__frame-wrap {
    width: 100%;
    margin-bottom: 3rem;
    padding-bottom: 8px;
  }

  .tailor__sample-card {
    inset-inline: 10px;
    min-height: 180px;
    transform: translateY(8px);
  }

  .tailor__top-bar {
    padding: 12px 14px;
  }

  .tailor__body {
    padding: 14px 14px 10px;
  }

  .tailor__input-row {
    margin: 8px 14px 0;
    padding: 10px 12px;
  }

  .tailor__bottom h3 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .tailor__bottom p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* About Page - Figma aligned */
.about-page {
  background: #ffffff;
}

.about-page__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text);
}

.about-page__title--xl {
  font-size: clamp(2.4rem, 4.8vw, 3.95rem);
}

.about-hero {
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 250, 251, 0.65) 45%, #ffffff 100%);
}

.about-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 35rem);
  gap: 4rem;
}

.about-hero__badge {
  gap: 0.7rem;
}

.about-hero__badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(242, 38, 19, 0.4);
  animation: aboutPulse 1.8s infinite;
}

.about-hero__title {
  font-size: clamp(2.8rem, 5vw, 3.25rem);
  line-height: 1.08;
}

.about-hero__title span {
  display: block;
}

.about-hero__text {
  max-width: 36rem;
  color: rgba(30, 38, 109, 0.9);
}

.about-hero__visual {
  min-height: 34rem;
  perspective: none;
}

.about-hero__orb,
.about-hero__glass {
  position: absolute;
}

.about-hero__orb {
  border-radius: 999px;
  pointer-events: none;
}

.about-hero__orb--primary {
  inset: 8% 6% 10% 6%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.18), rgba(30, 38, 109, 0.12), rgba(229, 231, 235, 0.08));
  filter: blur(56px);
  animation: aboutHeroDriftPrimary 18s linear infinite;
}

.about-hero__orb--secondary {
  inset: 14% 12% 16% 12%;
  border-radius: 50%;
  background: linear-gradient(225deg, rgba(30, 38, 109, 0.18), rgba(242, 38, 19, 0.1), rgba(255, 255, 255, 0.05));
  filter: blur(40px);
  animation: aboutHeroDriftSecondary 14s linear infinite;
}

.about-hero__composition {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 244, 246, 0.85));
  border: 1px solid rgba(209, 213, 219, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

.about-hero__glass--main {
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
  transform: rotate(12deg);
  animation: aboutHeroCardMain 6s ease-in-out infinite;
}

.about-hero__glass--left {
  width: 8rem;
  height: 8rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(30, 38, 109, 0.08), rgba(255, 255, 255, 0.88));
  border-color: rgba(30, 38, 109, 0.16);
  transform: translate(-7rem, 5rem) rotate(-8deg);
  animation: aboutHeroCardLeft 8s ease-in-out infinite;
}

.about-hero__glass--right {
  width: 6rem;
  height: 6rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(242, 38, 19, 0.1), rgba(255, 255, 255, 0.85));
  border-color: rgba(242, 38, 19, 0.18);
  transform: translate(8rem, -4rem) rotate(15deg);
  animation: aboutHeroCardRight 7s ease-in-out infinite;
}

@keyframes aboutHeroDriftPrimary {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.12);
  }
}

@keyframes aboutHeroDriftSecondary {

  0%,
  100% {
    transform: rotate(360deg) scale(1.14);
  }

  50% {
    transform: rotate(180deg) scale(1);
  }
}

@keyframes aboutHeroCardMain {

  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }

  50% {
    transform: rotate(20deg) translateY(-1.75rem);
  }
}

@keyframes aboutHeroCardLeft {

  0%,
  100% {
    transform: translate(-7rem, 5rem) rotate(-8deg);
  }

  50% {
    transform: translate(-7rem, 6.4rem) rotate(-15deg);
  }
}

@keyframes aboutHeroCardRight {

  0%,
  100% {
    transform: translate(8rem, -4rem) rotate(15deg);
  }

  50% {
    transform: translate(8rem, -5.3rem) rotate(8deg);
  }
}

.about-story {
  padding-top: 5.5rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3.5rem;
  align-items: center;
}

.about-story__media {
  position: relative;
  width: min(100%, 33.25rem);
  aspect-ratio: 0.97;
  min-height: 0;
  justify-self: start;
  border-radius: 1.2rem;
  overflow: hidden;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.about-story__content {
  display: grid;
  gap: 3rem;
}

.about-story__copy {
  display: grid;
  gap: 1.5rem;
}

.about-story__copy p,
.mission-showcase__intro p,
.values-path__head p,
.journey-strip__head p,
.why-paexskin__intro p {
  margin: 0;
  color: var(--color-body-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-story__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-story__stat {
  display: grid;
  gap: 1rem;
}

.about-story__stat-line {
  width: 100%;
  height: 1px;
  background: rgba(30, 38, 109, 0.2);
  transition: background-color 250ms ease, opacity 250ms ease;
}

.about-story__stat:hover .about-story__stat-line {
  background: var(--color-primary);
  opacity: 1;
}

.about-story__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.about-story__stat p {
  margin: 0;
  color: rgba(30, 38, 109, 0.72);
  font-size: 0.95rem;
}

.mission-showcase {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.mission-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.mission-showcase__intro p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: #42526b;
}

.mission-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2.5rem;
  align-items: stretch;
}

.mission-showcase__cards {
  display: grid;
  gap: 1.5rem;
}

.mission-panel {
  min-height: 22rem;
  padding: 2.3rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mission-panel,
.mission-showcase__media {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-panel:hover,
.mission-showcase__media:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  background: #ffd9d9;

}

.mission-panel--soft {
  background: #ffe5e5;
}

.mission-panel__icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.15rem;
  background: #fd9090;
  margin-bottom: 3rem;
}

.mission-panel__icon svg {
  width: 2rem;
  height: 2rem;
}

.mission-panel__copy {
  display: grid;
  gap: 1.1rem;
}

.mission-panel__copy h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0a0a0a;
}

.mission-panel__copy p {
  margin: 0;
  color: #4a5565;
  font-size: 1.25rem;
  line-height: 1.6;
}

.mission-showcase__media {
  min-height: 48rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #83a6f5;
}

.mission-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-path {
  padding-top: 5.5rem;
}

.values-path__head,
.journey-strip__head {
  text-align: center;
  margin-bottom: 4rem;
}

.values-path__desktop {
  position: relative;
  display: grid;
  gap: 5.5rem;
}

.values-path__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 38, 19, 0.2), rgba(30, 38, 109, 0.4), rgba(242, 38, 19, 0.2));
  transform: translateX(-50%);
}

.values-path__item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.values-path__item--left .values-path__content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.values-path__item--right .values-path__content {
  grid-column: 2;
  justify-self: start;
  text-align: left;
}

.values-path__content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 30rem;
}

.values-path__item--left .values-path__content {
  flex-direction: row;
}

.values-path__item--left .values-path__copy {
  order: 1;
}

.values-path__item--left .values-path__icon {
  order: 2;
}

.values-path__copy h3,
.values-stack h3,
.why-point h3 {
  margin: 0 0 0.85rem;
  font-size: 1.65rem;
  color: #0a0a0a;
}

.values-path__copy p,
.values-stack p,
.why-point p,
.journey-strip__item p,
.journey-rail p {
  margin: 0;
  color: var(--color-body-soft);
  line-height: 1.75;
}

.values-path__icon,
.why-point__icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  flex: 0 0 4rem;
  transition: transform 0.3s ease;
}

.values-path__icon svg,
.why-point__icon svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.why-point:hover .why-point__icon {
  transform: scale(1.15);
}

.values-path__icon--red,
.why-point__icon--red {
  color: var(--color-primary);
}

.values-path__icon--navy,
.why-point__icon--navy {
  color: var(--color-navy);
}

.values-path__dot {
  position: absolute;
  left: 50%;
  top: 0.65rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.values-path__dot--red {
  background: var(--color-primary);
}

.values-path__dot--navy {
  background: var(--color-navy);
}

.values-path__mobile {
  display: none;
}

.values-stack {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.journey-strip {
  background: linear-gradient(135deg, rgba(249, 250, 251, 0.55), #ffffff);
}

.journey-strip__desktop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.journey-strip__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 38, 19, 0.2), rgba(30, 38, 109, 0.45), rgba(242, 38, 19, 0.2));
}

.journey-strip__item {
  position: relative;
  text-align: center;
  padding-top: 0;
}

.journey-strip__dot {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  border: 4px solid var(--color-navy);
  background: #ffffff;
  transition: border-color 250ms ease, transform 250ms ease;
}

.journey-strip__item:hover .journey-strip__dot {
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.journey-strip__item h3,
.journey-rail h3 {
  margin: 0 0 0.55rem;
  font-size: 1.8rem;
  color: #0a0a0a;
}

.journey-strip__item p,
.journey-rail p {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.journey-strip__item span,
.journey-rail span {
  display: block;
  color: rgba(30, 38, 109, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.journey-strip__mobile {
  display: none;
}

.journey-rail {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-left: 1.75rem;
}

.journey-rail::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.85rem;
  bottom: -2rem;
  width: 1px;
  background: rgba(30, 38, 109, 0.18);
}

.journey-rail:last-child::before {
  display: none;
}

.journey-rail__dot {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-navy);
}

.why-paexskin__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  gap: 4rem;
  align-items: center;
}

.why-paexskin__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.why-paexskin__list article:nth-child(odd) {
  transform: translateY(-15px);
}

.why-paexskin__list article:nth-child(even) {
  transform: translateY(15px);
}

.why-paexskin__list article:nth-child(odd):hover {
  transform: translateY(-15px) scale(1.03);
}

.why-paexskin__list article:nth-child(even):hover {
  transform: translateY(15px) scale(1.03);
}

.why-point {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 13.5rem;
  padding: 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(242, 38, 19, 0.08);
  background: linear-gradient(160deg, rgba(255, 244, 244, 0.8), rgba(255, 248, 248, 0.85));
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.why-point:hover,
.why-point:focus-within {
  transform: scale(1.03);
  border-color: rgba(242, 38, 19, 0.2);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.why-point p {
  font-size: 1rem;
}

.why-point>div:last-child {
  display: grid;
  gap: 0.65rem;
}

.why-point h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--color-navy-dark);
  font-weight: 500;
}

.why-point p {
  margin: 0;
  color: var(--color-body-soft);
  line-height: 1.5;
}

.why-point__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.7rem;
  background: rgba(242, 38, 19, 0.1);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    color 240ms ease;
}

.why-point:hover .why-point__icon,
.why-point:focus-within .why-point__icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.06);
}

@keyframes aboutPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 38, 19, 0.35);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(242, 38, 19, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 38, 19, 0);
  }
}

@media (max-width: 1100px) {

  .about-story__grid,
  .mission-showcase__intro,
  .mission-showcase__grid,
  .why-paexskin__grid {
    grid-template-columns: 1fr;
  }

  .why-paexskin__list {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    width: 100%;
    max-width: 38rem;
    aspect-ratio: 1 / 1;
    min-height: 24rem;
  }

  .mission-showcase__media {
    min-height: 34rem;
  }

  .values-path__desktop,
  .journey-strip__desktop {
    display: none;
  }

  .values-path__mobile,
  .journey-strip__mobile {
    display: grid;
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero__visual {
    min-height: 24rem;
  }

  .about-story__media,
  .mission-showcase__media {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {

  .about-page__title,
  .about-page__title--xl {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .about-story__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mission-panel {
    min-height: 0;
    padding: 1.75rem;
  }

  .mission-panel__icon {
    margin-bottom: 1.75rem;
  }

  .mission-panel__copy p {
    font-size: 1.05rem;
  }

  .values-stack,
  .why-point {
    gap: 1rem;
  }

  .values-path__icon,
  .why-point__icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-basis: 3.5rem;
  }

  .values-path__copy h3,
  .values-stack h3,
  .why-point h3 {
    font-size: 1.35rem;
  }
}


.coming-soon-hero {
  position: relative;
  padding: 10.5rem 0 7rem;
  overflow: hidden;
}

.coming-soon-hero h1 {
  margin: 1.75rem 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.2vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

/* Services Page */
.services-page {
  background: var(--color-white);
}

.services-hero {
  position: relative;
  padding: 10.5rem 0 7rem;
  overflow: hidden;
}

.services-hero__bg,
.services-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero__blob,
.services-cta__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.services-hero__blob--one {
  top: 5rem;
  right: 5%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), rgba(168, 85, 247, 0.15), transparent 68%);
}

.services-hero__blob--two {
  bottom: -4rem;
  left: 3%;
  width: 23rem;
  height: 23rem;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.3), rgba(59, 130, 246, 0.14), transparent 70%);
}

.services-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(30, 64, 175, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 64, 175, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.2;
}

.services-hero__container {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  text-align: center;
}

.services-hero__badge,
.services-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.services-hero__badge {
  border: 1px solid rgba(147, 197, 253, 0.6);
  background: linear-gradient(90deg, rgba(219, 234, 254, 0.9), rgba(233, 213, 255, 0.75));
  color: #1e3a8a;
}

.services-hero__badge svg,
.services-cta__badge svg {
  width: 1rem;
  height: 1rem;
}

.services-hero h1 {
  margin: 1.75rem 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.2vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111827;
}

.services-hero p {
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(55, 65, 81, 0.92);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.services-hero__actions {
  margin-top: 2rem;
}

.services-hero__cta {
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  padding: 0.9rem 1.7rem;
  border: 0;
}

.services-hero__cta:hover,
.services-hero__cta:focus-visible {
  background: #1f2937;
}

.services-cards {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.services-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.services-card {
  position: relative;
  padding: 2.4rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.45), rgba(237, 233, 254, 0.35), rgba(224, 242, 254, 0.4));
  opacity: 0;
  transition: opacity 260ms ease;
}

.services-card:hover,
.services-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(147, 197, 253, 0.9);
  box-shadow: 0 28px 56px rgba(59, 130, 246, 0.16);
}

.services-card:hover::before,
.services-card:focus-within::before {
  opacity: 1;
}

.services-card>* {
  position: relative;
  z-index: 1;
}

.services-card__icon {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  color: #2563eb;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(233, 213, 255, 0.8));
}

.services-card__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.services-card h2 {
  margin: 0 0 0.95rem;
  color: #111827;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.3;
}

.services-card p {
  margin: 0;
  color: rgba(55, 65, 81, 0.92);
  line-height: 1.78;
  font-size: 1rem;
}

.services-cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #111827 100%);
  overflow: hidden;
}

.services-cta__glow--one {
  top: -6rem;
  left: 15%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.42), rgba(37, 99, 235, 0.05), transparent 68%);
}

.services-cta__glow--two {
  bottom: -7rem;
  right: 15%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.42), rgba(168, 85, 247, 0.08), transparent 70%);
}

.services-cta__container {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  text-align: center;
}

.services-cta__badge {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

.services-cta h2 {
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
  line-height: 1.18;
  color: #ffffff;
}

.services-cta h2 span {
  display: block;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-cta p {
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(209, 213, 219, 0.95);
  line-height: 1.8;
  font-size: 1.1rem;
}

.services-cta__sub {
  margin-top: 0.8rem !important;
  color: rgba(156, 163, 175, 0.92) !important;
  font-size: 0.98rem !important;
}

.services-cta__button {
  margin-top: 2rem;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #111827;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
}

.services-cta__button:hover,
.services-cta__button:focus-visible {
  background: #f3f4f6;
}

@media (max-width: 1024px) {
  .services-cards__grid {
    gap: 1.35rem;
  }

  .services-card {
    padding: 2rem;
  }
}

@media (max-width: 860px) {
  .services-hero {
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
  }

  .services-cards {
    padding-bottom: 4.8rem;
  }

  .services-cards__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .services-hero__badge,
  .services-cta__badge {
    font-size: 0.78rem;
  }

  .services-card {
    padding: 1.55rem;
    border-radius: 1.3rem;
  }

  .services-card__icon {
    width: 3.2rem;
    height: 3.2rem;
  }

  .services-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .services-cta {
    padding: 4.5rem 0;
  }
}

.services-v2 {
  padding-top: 4.25rem;
  padding-bottom: 6rem;
}

/* Careers Page */
.careers-page {
  background: var(--color-white);
}

.careers-hero {
  position: relative;
  padding: 10.5rem 0 7rem;
  overflow: hidden;
}

.careers-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.careers-hero__blob {
  position: absolute;
  top: 16rem;
  right: 19%;
  width: 31rem;
  height: 31rem;
  border-radius: 999px;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(56, 71, 152, 0.22), rgba(242, 38, 19, 0.14), transparent 72%);
}

.careers-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 12rem);
}

.careers-hero__content {
  max-width: 33rem;
}

.careers-hero__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.65rem;
  padding: 0.36rem 1.05rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #1f2d87;
  color: #ffffff;
}

.careers-hero h1 {
  margin: 1.15rem 0 0.95rem;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #0f1117;
}

.careers-hero__line {
  display: block;
}

.careers-hero__line--brand {
  background: linear-gradient(90deg, #f22613, #3346a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.careers-hero p {
  margin: 0;
  max-width: 30rem;
  color: #2f4378;
  font-size: 1.04rem;
  line-height: 1.7;
}

.careers-hero__actions {
  margin-top: 2rem;
}

.careers-hero__cta {
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.55rem;
  border: 0;
  background: #f22613;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(242, 38, 19, 0.3);
}

.careers-hero__cta:hover,
.careers-hero__cta:focus-visible {
  background: #cf000f;
}

.careers-hero__visual {
  position: relative;
  width: min(100%, 30rem);
  height: 30rem;
  margin-inline: auto;
}

.careers-hero__shape {
  position: absolute;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.careers-hero__shape--one {
  top: 18%;
  left: 42%;
  width: 5.45rem;
  height: 5.45rem;
  transform: rotate(14deg);
  background: linear-gradient(145deg, #cecbe3, #b4b8d8);
}

.careers-hero__shape--two {
  top: 34%;
  left: 57%;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.75rem;
  background: #4d5aa7;
}

.careers-hero__shape--three {
  top: 42%;
  left: 47%;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 0.62rem;
  transform: rotate(44deg);
  background: #ef4f42;
}

.careers-hero__shape--four {
  top: 44%;
  left: 56%;
  width: 5.95rem;
  height: 5.95rem;
  transform: rotate(-36deg);
  border-radius: 1.2rem;
  background: #ffffff;
}

.careers-hero__shape--five {
  top: 63%;
  left: 47%;
  width: 7.8rem;
  height: 7.8rem;
  transform: rotate(14deg);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #e8b7c2, #f2cbcf);
}

.careers-story {
  padding: 5.5rem 0 3.5rem;
}

.careers-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 2.2rem;
}

.careers-story__media img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.careers-story__copy h2 {
  margin: 0;
  color: #111827;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.careers-story__copy p {
  margin: 1rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  line-height: 1.75;
  font-size: 1rem;
}

.careers-jobs {
  padding: 4.2rem 0 6rem;
}

.careers-jobs__inner {
  max-width: 1060px;
}

.careers-jobs__head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.careers-jobs__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.36rem 1.1rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  background: #1f2d87;
  color: #ffffff;
}

.careers-jobs__head h2 {
  margin: 1rem 0 0;
  color: #0f1117;
  font-size: clamp(2.25rem, 4.6vw, 3.35rem);
  line-height: 1.08;
}

.careers-jobs__head p {
  margin: 0.9rem auto 0;
  color: rgba(30, 38, 109, 0.88);
  line-height: 1.7;
}

.careers-jobs__search {
  max-width: 30rem;
  margin: 2rem auto 0;
}

.careers-jobs__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.careers-jobs__search-wrap {
  position: relative;
}

.careers-jobs__search-wrap input {
  width: 100%;
  min-height: 3rem;
  border-radius: 0.7rem;
  border: 1px solid #d4d9e4;
  background: #ffffff;
  padding: 0.75rem 2.8rem 0.75rem 0.95rem;
  color: #111827;
}

.careers-jobs__search-wrap input:focus {
  outline: 0;
  border-color: rgba(47, 62, 157, 0.65);
  box-shadow: 0 0 0 3px rgba(47, 62, 157, 0.12);
}

.careers-jobs__search-icon {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8b93a9;
  display: grid;
  place-items: center;
}

.careers-jobs__search-icon svg {
  width: 1rem;
  height: 1rem;
}

.careers-jobs__count {
  margin: 0.8rem 0 0;
  text-align: center;
  color: rgba(30, 38, 109, 0.85);
  font-size: 0.9rem;
}

.careers-jobs__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.careers-job-card {
  border: 1px solid #d7dce7;
  border-radius: 0.95rem;
  background: #ffffff;
  padding: 1.2rem 1rem 0.95rem;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.careers-job-card h3 {
  margin: 0;
  color: #111827;
  font-size: 1.12rem;
  line-height: 1.3;
}

.careers-job-card__meta {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.careers-job-card__meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #34406c;
  font-size: 0.86rem;
}

.careers-job-card__meta svg {
  width: 0.88rem;
  height: 0.88rem;
  color: #3b4b8f;
}

.careers-job-card__cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  border: 1px solid #ccd3e0;
  border-radius: 0.44rem;
  color: #1f2d87;
  font-size: 0.84rem;
  font-weight: 500;
}

.careers-job-card__cta:hover,
.careers-job-card__cta:focus-visible {
  border-color: #aeb7cc;
}

.careers-jobs__empty {
  margin: 1.1rem 0 0;
  text-align: center;
  color: #4b5563;
}

.careers-jobs__pagination {
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.careers-jobs__nav-btn,
.careers-jobs__page-btn {
  min-width: 1.9rem;
  height: 1.9rem;
  border: 1px solid #cfd6e4;
  border-radius: 0.32rem;
  background: #ffffff;
  color: #24346f;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.careers-jobs__nav-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.careers-jobs__page-btn.is-active {
  border-color: #1f2d87;
  color: #1f2d87;
  box-shadow: inset 0 0 0 1px #1f2d87;
}

.careers-jobs__ellipsis {
  min-width: 1.5rem;
  text-align: center;
  color: #8b93a9;
}

/* Job Details Page */
.job-details-page {
  background: #f4f5f7;
}

.job-details-hero {
  padding: 1.9rem 0 1.35rem;
}

.job-details-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.job-details-hero__logo-link {
  display: inline-flex;
}

.job-details-hero__logo {
  width: 3.15rem;
  height: auto;
}

.job-details-hero__close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #b8bfce;
  border-radius: 999px;
  color: #4f5870;
  display: grid;
  place-items: center;
}

.job-details-hero__close svg {
  width: 1rem;
  height: 1rem;
}

.job-details-hero__image {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
  border-radius: 0.72rem;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.1);
}

.job-details-content {
  padding: 1.2rem 0 5.2rem;
}

.job-details-content__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.job-details-content__heading h1 {
  margin: 0;
  color: #13233f;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
}

.job-details-content__chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.job-highlight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 0.35rem;
  background: #f8dedd;
  color: #c24340;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.33rem 0.78rem;
}

.job-details-content__apply {
  min-width: 10.2rem;
  min-height: 3rem;
  border-radius: 0.52rem;
  border: 0;
  background: #f22613;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(242, 38, 19, 0.26);
}

.job-details-content__grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  align-items: start;
  gap: 2.1rem;
}

.job-details-content__main section:not(:first-child) {
  margin-top: 2.35rem;
}

.job-details-content__main h2 {
  margin: 0;
  color: #13233f;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.18;
}

.job-details-content__main p {
  margin: 1rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  line-height: 1.8;
  font-size: 1rem;
}

.job-details-content__main ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(30, 38, 109, 0.9);
  display: grid;
  gap: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.job-details-content__side {
  display: grid;
  gap: 1rem;
}

.job-side-card {
  border-radius: 0.78rem;
  border: 1px solid #d4d9e3;
  background: #ffffff;
  padding: 1.05rem 0.95rem;
}

.job-side-card h3 {
  margin: 0;
  color: #172641;
  font-size: 1.05rem;
  line-height: 1.3;
}

.job-side-card__skill-grid {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.job-side-card__skill-grid span {
  border-radius: 0.32rem;
  background: #eef1f7;
  color: #37456f;
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
}

.job-side-card__summary-list,
.job-side-card__bullet-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.job-side-card__summary-list li strong {
  display: block;
  color: #172641;
  font-size: 0.86rem;
  line-height: 1.35;
}

.job-side-card__summary-label {
  display: block;
  color: #73809c;
  font-size: 0.75rem;
  margin-bottom: 0.15rem;
}

.job-side-card__bullet-list li {
  position: relative;
  padding-left: 0.85rem;
  color: #2e3c68;
  font-size: 0.86rem;
  line-height: 1.45;
}

.job-side-card__bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #3f4f8e;
}

.job-side-card__social {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-side-card__social a {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid #d4d9e3;
  background: #ffffff;
}

.job-side-card__social img {
  width: 0.9rem;
  height: 0.9rem;
  object-fit: contain;
}

body.is-job-apply-open {
  overflow: hidden;
}

.job-apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.job-apply-overlay__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 20, 42, 0.46);
  opacity: 0;
  transition: opacity 260ms ease;
}

.job-apply-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 980px;
  min-width: 520px;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -18px 0 42px rgba(17, 24, 39, 0.2);
  transform: translateX(100%);
  transition: transform 280ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.job-apply-panel__header {
  min-height: 4rem;
  border-bottom: 1px solid #d5dbe7;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-apply-panel__header h2 {
  margin: 0;
  color: #152645;
  font-size: 1.08rem;
  line-height: 1.25;
}

.job-apply-panel__close {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid #c7cfdd;
  color: #435271;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.job-apply-panel__close svg {
  width: 0.95rem;
  height: 0.95rem;
}

.job-apply-panel__frame-wrap {
  height: 100%;
}

.job-apply-panel__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.job-apply-overlay.is-open .job-apply-overlay__backdrop {
  opacity: 1;
}

.job-apply-overlay.is-open .job-apply-panel {
  transform: translateX(0);
}

.services-page .about-hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f6f8 0%, #f5f5f6 100%);
}

.services-page .about-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 36rem);
  gap: 4rem;
}

.services-page .about-hero__badge {
  background: #1f2f80;
  color: #ffffff;
}

.services-page .about-hero__title span {
  display: block;
}

.services-page .about-hero__text {
  max-width: 38rem;
  color: rgba(30, 38, 109, 0.9);
}

.services-hero-visual {
  min-height: 33rem;
  perspective: none;
}

.services-hero-visual__shape,
.services-hero-visual__glow {
  position: absolute;
}

.services-hero-visual__glow {
  inset: 7% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 38%, rgba(255, 210, 210, 0.52), rgba(206, 189, 215, 0.45) 45%, rgba(184, 173, 197, 0.38) 65%, transparent 78%);
  filter: blur(18px);
}

.services-hero-visual__shape {
  box-shadow: 0 20px 30px rgba(30, 38, 109, 0.14);
}

.services-hero-visual__shape--top {
  top: 3.4rem;
  right: 9rem;
  width: 5.7rem;
  height: 5.7rem;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #f8c5c7, #f0b5b7);
  transform: rotate(13deg);
  animation: servicesShapeTop 7.5s ease-in-out infinite;
}

.services-hero-visual__shape--top-chip {
  top: 4.35rem;
  right: 14rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: #4f5ba4;
  transform: rotate(-22deg);
  box-shadow: 0 12px 22px rgba(30, 38, 109, 0.25);
  animation: servicesShapeChip 6.4s ease-in-out infinite;
}

.services-hero-visual__shape--middle {
  top: 11.9rem;
  right: 9.6rem;
  width: 11.2rem;
  height: 3.9rem;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(143, 146, 184, 0.95) 0%, rgba(249, 249, 250, 1) 37%, rgba(239, 170, 173, 0.95) 100%);
  transform: rotate(-13deg);
  box-shadow: 0 16px 28px rgba(30, 38, 109, 0.18);
  animation: servicesShapeMid 8s ease-in-out infinite;
}

.services-hero-visual__shape--bottom {
  top: 17rem;
  right: 20rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #9996bd, #cbcbe0 72%);
  transform: rotate(-14deg);
  animation: servicesShapeBottom 7s ease-in-out infinite;
}

.services-hero-visual__shape--bottom-chip {
  top: 19.4rem;
  right: 18.9rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  background: #f25144;
  transform: rotate(44deg);
  box-shadow: 0 12px 22px rgba(242, 81, 68, 0.35);
  animation: servicesShapeChipRed 6.6s ease-in-out infinite;
}

@keyframes servicesShapeTop {

  0%,
  100% {
    transform: rotate(13deg) translateY(0);
  }

  50% {
    transform: rotate(18deg) translateY(-7px);
  }
}

@keyframes servicesShapeChip {

  0%,
  100% {
    transform: rotate(-22deg) translateY(0);
  }

  50% {
    transform: rotate(-28deg) translateY(-5px);
  }
}

@keyframes servicesShapeMid {

  0%,
  100% {
    transform: rotate(-13deg) translateY(0);
  }

  50% {
    transform: rotate(-9deg) translateY(-8px);
  }
}

@keyframes servicesShapeBottom {

  0%,
  100% {
    transform: rotate(-14deg) translateY(0);
  }

  50% {
    transform: rotate(-9deg) translateY(-7px);
  }
}

@keyframes servicesShapeChipRed {

  0%,
  100% {
    transform: rotate(44deg) translateY(0);
  }

  50% {
    transform: rotate(49deg) translateY(-6px);
  }
}

.services-v2__head {
  max-width: 52rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.services-v2__head h2 {
  margin: 0;
  color: #0f2a5f;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.services-v2__head p {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: rgba(15, 42, 95, 0.86);
  font-size: 1.03rem;
  line-height: 1.7;
}

.services-v2__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.services-v2__card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 18rem;
  border: 1px solid rgba(242, 38, 19, 0.08);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  transform: translateY(0);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.services-v2__img-section {
  flex: 8;
  position: relative;
  background-color: var(--color-white);
}

.services-v2__card::before,
.services-v2__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-v2__card::before {
  z-index: 0;
  background: linear-gradient(360deg, rgba(255, 210, 210, 0.35), rgba(248, 236, 236, 0.55));
}

.services-v2__card::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(10, 10, 10, 0.05));
}

.services-v2__card:hover,
.services-v2__card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(242, 38, 19, 0.15);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.14);
}

.services-v2__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.88) contrast(1.02);
  transition: opacity 280ms ease, transform 320ms ease;
}

.services-v2__card:hover img,
.services-v2__card:focus-within img {
  opacity: 0.8;
  transform: scale(1.02);
}

.services-v2__overlay {
  flex: 2;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  transition: opacity 260ms ease;
}

.services-v2__card:hover .services-v2__overlay,
.services-v2__card:focus-within .services-v2__overlay {
  opacity: 1;
}

.services-v2__overlay h3 {
  margin: 0 0 0.45rem;
  color: #111827;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.22;
}

.services-v2__overlay p {
  margin: 0;
  color: rgba(15, 42, 95, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-v2__btn {
  align-self: center;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 0.62rem;
  min-height: 2.75rem;
  padding: 0.62rem 1.25rem;
  background: #f22613;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(242, 38, 19, 0.3);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    background-color 220ms ease;
}

.services-v2__btn:hover,
.services-v2__btn:focus-visible {
  background: #cf000f;
}

.services-v2__card:hover .services-v2__btn,
.services-v2__card:focus-within .services-v2__btn {
  opacity: 1;
  transform: translateY(0);
}

.services-v2__card--ui {
  grid-column: 1 / span 6;
  min-height: 25rem;
}

.services-v2__card--app {
  grid-column: 7 / span 6;
  min-height: 25rem;
}

.services-v2__card--learn {
  grid-column: 1 / span 8;
  min-height: 25rem;
}

.services-v2__card--staff {
  grid-column: 9 / span 4;
  min-height: 25rem;
}

.services-v2__card--ui img {
  object-position: center 26%;
}

.services-v2__card--app img {
  object-position: center 20%;
}

.services-v2__card--learn img {
  object-position: center 30%;
}

.services-v2__card--staff img {
  object-position: center 28%;
}

@media (max-width: 1024px) {
  .services-page .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .services-hero-visual {
    min-height: 23rem;
    max-width: 28rem;
    margin-inline: auto;
  }

  .services-hero-visual__shape--top {
    right: 5.8rem;
    width: 4.9rem;
    height: 4.9rem;
  }

  .services-hero-visual__shape--top-chip {
    right: 10rem;
    width: 2.2rem;
    height: 2.2rem;
  }

  .services-hero-visual__shape--middle {
    right: 6rem;
    width: 9.2rem;
    height: 3.25rem;
  }

  .services-hero-visual__shape--bottom {
    top: 15.2rem;
    right: 8.2rem;
    width: 6.2rem;
    height: 6.2rem;
  }

  .services-hero-visual__shape--bottom-chip {
    top: 17.1rem;
    right: 5.4rem;
  }

  .services-v2__card--ui,
  .services-v2__card--app,
  .services-v2__card--learn,
  .services-v2__card--staff {
    grid-column: span 6;
    min-height: 18rem;
  }
}

@media (max-width: 760px) {
  .services-page .about-hero__title {
    font-size: clamp(2.35rem, 9vw, 3.25rem);
  }

  .services-hero-visual {
    min-height: 20rem;
  }

  .services-hero-visual__shape--top {
    right: 4.7rem;
    width: 4.2rem;
    height: 4.2rem;
  }

  .services-hero-visual__shape--top-chip {
    top: 4.8rem;
    right: 8.3rem;
    width: 1.95rem;
    height: 1.95rem;
  }

  .services-hero-visual__shape--middle {
    top: 9.6rem;
    right: 4.9rem;
    width: 7.85rem;
    height: 2.75rem;
  }

  .services-hero-visual__shape--bottom {
    top: 14rem;
    right: 6.2rem;
    width: 5.2rem;
    height: 5.2rem;
  }

  .services-hero-visual__shape--bottom-chip {
    top: 15.55rem;
    right: 3.9rem;
    width: 1.75rem;
    height: 1.75rem;
  }

  .services-v2__grid {
    grid-template-columns: 1fr;
  }

  .services-v2__card--ui,
  .services-v2__card--app,
  .services-v2__card--learn,
  .services-v2__card--staff {
    grid-column: 1 / -1;
    min-height: 17.25rem;
  }
}

/* Enterprise App Service Page */
.enterprise-app-page {
  background: #f3f3f3;
}

.enterprise-app-hero {
  padding: 8.8rem 0 5.5rem;
  border-top: 1px solid rgba(30, 38, 109, 0.08);
}

.enterprise-app-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34rem);
  gap: 4rem;
  align-items: center;
}

.enterprise-app-hero__content {
  max-width: 30rem;
}

.enterprise-app-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.enterprise-app-hero__title span {
  display: block;
}

.enterprise-app-hero__title span:first-child {
  color: #f22613;
}

.enterprise-app-hero__content p {
  margin: 1.15rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  max-width: 26rem;
}

.enterprise-app-hero__content .button {
  margin-top: 1.5rem;
}

.enterprise-app-hero__visual {
  position: relative;
  min-height: 23rem;
}

.enterprise-app-hero__glow,
.enterprise-app-hero__shape {
  position: absolute;
}

.enterprise-app-hero__glow {
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 46%, rgba(217, 198, 213, 0.85) 0%, rgba(234, 221, 230, 0.45) 45%, rgba(243, 243, 243, 0) 70%);
  filter: blur(8px);
}

.enterprise-app-hero__shape {
  box-shadow: 0 16px 28px rgba(30, 38, 109, 0.18);
}

.enterprise-app-hero__shape--one {
  top: 3.6rem;
  left: 6.5rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.95rem;
  transform: rotate(42deg);
  background: linear-gradient(145deg, #b8b5d8, #d7d6eb);
}

.enterprise-app-hero__shape--two {
  top: 7.4rem;
  left: 11.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.05rem;
  transform: rotate(52deg);
  background: linear-gradient(145deg, #fcfcff, #ececf3);
}

.enterprise-app-hero__shape--three {
  top: 12.2rem;
  left: 8.2rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.1rem;
  transform: rotate(16deg);
  background: linear-gradient(145deg, #f4b4bb, #f6d5d9);
}

.enterprise-app-hero__shape--dot-red {
  top: 8.2rem;
  left: 6.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  transform: rotate(45deg);
  background: #f25144;
  box-shadow: 0 10px 20px rgba(242, 81, 68, 0.35);
}

.enterprise-app-hero__shape--dot-blue {
  top: 7.1rem;
  left: 16.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: #4f5ba4;
  box-shadow: 0 10px 18px rgba(79, 91, 164, 0.34);
}

.enterprise-app-intro {
  padding-top: 1.2rem;
  padding-bottom: 3.5rem;
}

.enterprise-app-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: start;
}

.enterprise-app-intro__media {
  margin: 0;
}

.enterprise-app-intro__media img {
  width: 100%;
  min-height: 19rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.enterprise-app-intro__copy {
  font-size: 0.96rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.7;
}

.enterprise-app-intro__copy p {
  margin: 0;
}

.enterprise-app-intro__copy p+p {
  margin-top: 1.1rem;
}

.enterprise-app-features {
  padding-top: 0.5rem;
  padding-bottom: 5.4rem;
}

.enterprise-app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.enterprise-app-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  align-items: center;
}

.enterprise-app-feature--reverse .enterprise-app-feature__media {
  order: 1;
}

.enterprise-app-feature--reverse .enterprise-app-feature__copy {
  order: 2;
}

.enterprise-app-feature__copy h2 {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  line-height: 1.12;
  color: #111827;
}

.enterprise-app-feature__copy p {
  margin: 0.95rem 0 0;
  max-width: 27rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.72;
}

.enterprise-app-feature__media {
  margin: 0;
  justify-self: center;
  width: min(100%, 28rem);
  padding: 0.9rem;
  border-radius: 0.95rem;
}

.enterprise-app-feature__media--pink {
  background: linear-gradient(145deg, #efdde0, #eed4d8);
}

.enterprise-app-feature__media--blue {
  background: linear-gradient(145deg, #d8dbe8, #d0d4e4);
}

.enterprise-app-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .enterprise-app-hero {
    padding-top: 8.2rem;
    padding-bottom: 4.2rem;
  }

  .enterprise-app-hero__grid,
  .enterprise-app-intro__grid,
  .enterprise-app-feature {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .enterprise-app-hero__content {
    max-width: 34rem;
  }

  .enterprise-app-hero__visual {
    min-height: 20rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }

  .enterprise-app-intro {
    padding-top: 0.2rem;
  }

  .enterprise-app-feature__copy h2,
  .enterprise-app-feature__copy p {
    max-width: none;
  }

  .enterprise-app-feature--reverse .enterprise-app-feature__media,
  .enterprise-app-feature--reverse .enterprise-app-feature__copy {
    order: unset;
  }
}

@media (max-width: 760px) {
  .enterprise-app-hero {
    padding-top: 7.5rem;
  }

  .enterprise-app-hero__title {
    font-size: clamp(2.15rem, 10vw, 2.95rem);
  }

  .enterprise-app-hero__visual {
    min-height: 17.5rem;
    max-width: 20.5rem;
  }

  .enterprise-app-hero__shape--one {
    top: 2.8rem;
    left: 4.8rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .enterprise-app-hero__shape--two {
    top: 5.7rem;
    left: 8.5rem;
    width: 3.9rem;
    height: 3.9rem;
  }

  .enterprise-app-hero__shape--three {
    top: 9.5rem;
    left: 6.2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .enterprise-app-hero__shape--dot-red {
    top: 6.2rem;
    left: 4.5rem;
  }

  .enterprise-app-hero__shape--dot-blue {
    top: 5.5rem;
    left: 12.8rem;
  }

  .enterprise-app-intro__copy {
    font-size: 0.92rem;
  }

  .enterprise-app-feature__copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .enterprise-app-feature__copy p {
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .enterprise-app-page {
    background: #f5f5f5;
  }

  .enterprise-app-intro__media img {
    min-height: 14.5rem;
  }
}

/* UI UX Service Page */
.uiux-page {
  background: #f3f3f3;
}

.uiux-hero {
  padding: 8.8rem 0 5.5rem;
  border-top: 1px solid rgba(30, 38, 109, 0.08);
}

.uiux-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34rem);
  gap: 4rem;
  align-items: center;
}

.uiux-hero__content {
  max-width: 30rem;
}

.uiux-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.uiux-hero__title span {
  display: block;
}

.uiux-hero__title span:first-child {
  color: #f22613;
}

.uiux-hero__content p {
  margin: 1.15rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  max-width: 26rem;
}

.uiux-hero__content .button {
  margin-top: 1.5rem;
}

.uiux-hero__visual {
  position: relative;
  min-height: 23rem;
}

.uiux-hero__glow,
.uiux-hero__shape {
  position: absolute;
}

.uiux-hero__glow {
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 46%, rgba(217, 198, 213, 0.85) 0%, rgba(234, 221, 230, 0.45) 45%, rgba(243, 243, 243, 0) 70%);
  filter: blur(8px);
}

.uiux-hero__shape {
  box-shadow: 0 16px 28px rgba(30, 38, 109, 0.18);
}

.uiux-hero__shape--one {
  top: 3.6rem;
  left: 6.5rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.95rem;
  transform: rotate(42deg);
  background: linear-gradient(145deg, #b8b5d8, #d7d6eb);
}

.uiux-hero__shape--two {
  top: 7.4rem;
  left: 11.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.05rem;
  transform: rotate(52deg);
  background: linear-gradient(145deg, #fcfcff, #ececf3);
}

.uiux-hero__shape--three {
  top: 12.2rem;
  left: 8.2rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.1rem;
  transform: rotate(16deg);
  background: linear-gradient(145deg, #f4b4bb, #f6d5d9);
}

.uiux-hero__shape--dot-red {
  top: 8.2rem;
  left: 6.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  transform: rotate(45deg);
  background: #f25144;
  box-shadow: 0 10px 20px rgba(242, 81, 68, 0.35);
}

.uiux-hero__shape--dot-blue {
  top: 7.1rem;
  left: 16.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: #4f5ba4;
  box-shadow: 0 10px 18px rgba(79, 91, 164, 0.34);
}

.uiux-intro {
  padding-top: 1.2rem;
  padding-bottom: 3.4rem;
}

.uiux-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: center;
}

.uiux-intro__media {
  margin: 0;
}

.uiux-intro__media img {
  width: 100%;
  min-height: 19rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.uiux-intro__copy {
  font-size: 0.96rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.7;
}

.uiux-intro__copy p {
  margin: 0;
}

.uiux-intro__copy p+p {
  margin-top: 1.1rem;
}

.uiux-services {
  padding-top: 1.1rem;
  padding-bottom: 5.3rem;
}

.uiux-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem 2rem;
}

.uiux-card {
  min-width: 0;
}

.uiux-card__media {
  margin: 0 0 1rem;
  width: min(100%, 28rem);
  padding: 0.9rem;
  border-radius: 0.95rem;
}

.uiux-card__media--pink {
  background: linear-gradient(145deg, #efdde0, #eed4d8);
}

.uiux-card__media--blue {
  background: linear-gradient(145deg, #d8dbe8, #d0d4e4);
}

.uiux-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  object-fit: cover;
}

.uiux-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.15;
  color: #111827;
}

.uiux-card p {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.72;
}

@media (max-width: 1024px) {
  .uiux-hero {
    padding-top: 8.2rem;
    padding-bottom: 4.2rem;
  }

  .uiux-hero__grid,
  .uiux-intro__grid {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .uiux-hero__content {
    max-width: 34rem;
  }

  .uiux-hero__visual {
    min-height: 20rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }

  .uiux-intro {
    padding-top: 0.2rem;
  }

  .uiux-service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .uiux-hero {
    padding-top: 7.5rem;
  }

  .uiux-hero__title {
    font-size: clamp(2.15rem, 10vw, 2.95rem);
  }

  .uiux-hero__visual {
    min-height: 17.5rem;
    max-width: 20.5rem;
  }

  .uiux-hero__shape--one {
    top: 2.8rem;
    left: 4.8rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .uiux-hero__shape--two {
    top: 5.7rem;
    left: 8.5rem;
    width: 3.9rem;
    height: 3.9rem;
  }

  .uiux-hero__shape--three {
    top: 9.5rem;
    left: 6.2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .uiux-hero__shape--dot-red {
    top: 6.2rem;
    left: 4.5rem;
  }

  .uiux-hero__shape--dot-blue {
    top: 5.5rem;
    left: 12.8rem;
  }

  .uiux-intro__copy {
    font-size: 0.92rem;
  }

  .uiux-card h2 {
    font-size: clamp(1.45rem, 7.5vw, 1.9rem);
  }

  .uiux-card p {
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .uiux-page {
    background: #f5f5f5;
  }

  .uiux-intro__media img {
    min-height: 14.5rem;
  }
}

/* Staffing Service Page */
.staffing-page {
  background: #f3f3f3;
}

.staffing-hero {
  padding: 8.8rem 0 5.5rem;
  border-top: 1px solid rgba(30, 38, 109, 0.08);
}

.staffing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34rem);
  gap: 4rem;
  align-items: center;
}

.staffing-hero__content {
  max-width: 30rem;
}

.staffing-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.staffing-hero__title span {
  display: block;
}

.staffing-hero__title span:first-child {
  color: #f22613;
}

.staffing-hero__content p {
  margin: 1.15rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  max-width: 26rem;
}

.staffing-hero__content .button {
  margin-top: 1.5rem;
}

.staffing-hero__visual {
  position: relative;
  min-height: 23rem;
}

.staffing-hero__glow,
.staffing-hero__shape {
  position: absolute;
}

.staffing-hero__glow {
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 46%, rgba(217, 198, 213, 0.85) 0%, rgba(234, 221, 230, 0.45) 45%, rgba(243, 243, 243, 0) 70%);
  filter: blur(8px);
}

.staffing-hero__shape {
  box-shadow: 0 16px 28px rgba(30, 38, 109, 0.18);
}

.staffing-hero__shape--one {
  top: 3.6rem;
  left: 6.5rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.95rem;
  transform: rotate(42deg);
  background: linear-gradient(145deg, #b8b5d8, #d7d6eb);
}

.staffing-hero__shape--two {
  top: 7.4rem;
  left: 11.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.05rem;
  transform: rotate(52deg);
  background: linear-gradient(145deg, #fcfcff, #ececf3);
}

.staffing-hero__shape--three {
  top: 12.2rem;
  left: 8.2rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.1rem;
  transform: rotate(16deg);
  background: linear-gradient(145deg, #f4b4bb, #f6d5d9);
}

.staffing-hero__shape--dot-red {
  top: 8.2rem;
  left: 6.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  transform: rotate(45deg);
  background: #f25144;
  box-shadow: 0 10px 20px rgba(242, 81, 68, 0.35);
}

.staffing-hero__shape--dot-blue {
  top: 7.1rem;
  left: 16.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: #4f5ba4;
  box-shadow: 0 10px 18px rgba(79, 91, 164, 0.34);
}

.staffing-intro {
  padding-top: 1.2rem;
  padding-bottom: 3.5rem;
}

.staffing-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: start;
}

.staffing-intro__media {
  margin: 0;
}

.staffing-intro__media img {
  width: 100%;
  min-height: 19rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.staffing-intro__copy {
  font-size: 0.96rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.7;
}

.staffing-intro__copy p {
  margin: 0;
}

.staffing-intro__copy p+p {
  margin-top: 1.1rem;
}

.staffing-features {
  padding-top: 0.5rem;
  padding-bottom: 2.2rem;
}

.staffing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.staffing-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  align-items: center;
}

.staffing-feature--reverse .staffing-feature__media {
  order: 1;
}

.staffing-feature--reverse .staffing-feature__copy {
  order: 2;
}

.staffing-feature__copy h2 {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  line-height: 1.12;
  color: #111827;
}

.staffing-feature__copy p {
  margin: 0.95rem 0 0;
  max-width: 29rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.72;
}

.staffing-feature__media {
  margin: 0;
  justify-self: center;
  width: min(100%, 28rem);
  padding: 0.9rem;
  border-radius: 0.95rem;
}

.staffing-feature__media--pink {
  background: linear-gradient(145deg, #efdde0, #eed4d8);
}

.staffing-feature__media--blue {
  background: linear-gradient(145deg, #d8dbe8, #d0d4e4);
}

.staffing-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  object-fit: cover;
}

.staffing-approach {
  padding-top: 1.2rem;
  padding-bottom: 5rem;
}

.staffing-approach__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: #111827;
}

.staffing-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(30, 38, 109, 0.08);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.staffing-approach__card {
  padding: 1.3rem 1.25rem 1.2rem;
  min-height: 13.5rem;
  border-right: 1px solid rgba(30, 38, 109, 0.08);
  border-bottom: 1px solid rgba(30, 38, 109, 0.08);
}

.staffing-approach__card:nth-child(2n) {
  border-right: 0;
}

.staffing-approach__card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.staffing-approach__icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #f22613;
}

.staffing-approach__icon svg {
  width: 100%;
  height: 100%;
}

.staffing-approach__card h3 {
  margin: 3.6rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.25;
  color: #111827;
}

.staffing-approach__card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.85);
  line-height: 1.68;
  max-width: 24rem;
}

@media (max-width: 1024px) {
  .staffing-hero {
    padding-top: 8.2rem;
    padding-bottom: 4.2rem;
  }

  .staffing-hero__grid,
  .staffing-intro__grid,
  .staffing-feature {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .staffing-hero__content {
    max-width: 34rem;
  }

  .staffing-hero__visual {
    min-height: 20rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }

  .staffing-intro {
    padding-top: 0.2rem;
  }

  .staffing-feature__copy h2,
  .staffing-feature__copy p {
    max-width: none;
  }

  .staffing-feature--reverse .staffing-feature__media,
  .staffing-feature--reverse .staffing-feature__copy {
    order: unset;
  }
}

@media (max-width: 760px) {
  .staffing-hero {
    padding-top: 7.5rem;
  }

  .staffing-hero__title {
    font-size: clamp(2.15rem, 10vw, 2.95rem);
  }

  .staffing-hero__visual {
    min-height: 17.5rem;
    max-width: 20.5rem;
  }

  .staffing-hero__shape--one {
    top: 2.8rem;
    left: 4.8rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .staffing-hero__shape--two {
    top: 5.7rem;
    left: 8.5rem;
    width: 3.9rem;
    height: 3.9rem;
  }

  .staffing-hero__shape--three {
    top: 9.5rem;
    left: 6.2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .staffing-hero__shape--dot-red {
    top: 6.2rem;
    left: 4.5rem;
  }

  .staffing-hero__shape--dot-blue {
    top: 5.5rem;
    left: 12.8rem;
  }

  .staffing-intro__copy {
    font-size: 0.92rem;
  }

  .staffing-feature__copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .staffing-feature__copy p {
    font-size: 0.94rem;
  }

  .staffing-approach__grid {
    grid-template-columns: 1fr;
  }

  .staffing-approach__card {
    border-right: 0;
    border-bottom: 1px solid rgba(30, 38, 109, 0.08);
  }

  .staffing-approach__card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(30, 38, 109, 0.08);
  }

  .staffing-approach__card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .staffing-page {
    background: #f5f5f5;
  }

  .staffing-intro__media img {
    min-height: 14.5rem;
  }
}

/* Learning Service Page */
.learning-page {
  background: #f3f3f3;
}

.learning-hero {
  padding: 8.8rem 0 5.5rem;
  border-top: 1px solid rgba(30, 38, 109, 0.08);
}

.learning-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34rem);
  gap: 4rem;
  align-items: center;
}

.learning-hero__content {
  max-width: 30rem;
}

.learning-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.learning-hero__title span {
  display: block;
}

.learning-hero__title span:first-child {
  color: #f22613;
}

.learning-hero__content p {
  margin: 1.15rem 0 0;
  color: rgba(30, 38, 109, 0.9);
  max-width: 26rem;
}

.learning-hero__content .button {
  margin-top: 1.5rem;
}

.learning-hero__visual {
  position: relative;
  min-height: 23rem;
}

.learning-hero__glow,
.learning-hero__shape {
  position: absolute;
}

.learning-hero__glow {
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 46%, rgba(217, 198, 213, 0.85) 0%, rgba(234, 221, 230, 0.45) 45%, rgba(243, 243, 243, 0) 70%);
  filter: blur(8px);
}

.learning-hero__shape {
  box-shadow: 0 16px 28px rgba(30, 38, 109, 0.18);
}

.learning-hero__shape--one {
  top: 3.6rem;
  left: 6.5rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.95rem;
  transform: rotate(42deg);
  background: linear-gradient(145deg, #b8b5d8, #d7d6eb);
}

.learning-hero__shape--two {
  top: 7.4rem;
  left: 11.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.05rem;
  transform: rotate(52deg);
  background: linear-gradient(145deg, #fcfcff, #ececf3);
}

.learning-hero__shape--three {
  top: 12.2rem;
  left: 8.2rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.1rem;
  transform: rotate(16deg);
  background: linear-gradient(145deg, #f4b4bb, #f6d5d9);
}

.learning-hero__shape--dot-red {
  top: 8.2rem;
  left: 6.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  transform: rotate(45deg);
  background: #f25144;
  box-shadow: 0 10px 20px rgba(242, 81, 68, 0.35);
}

.learning-hero__shape--dot-blue {
  top: 7.1rem;
  left: 16.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: #4f5ba4;
  box-shadow: 0 10px 18px rgba(79, 91, 164, 0.34);
}

.learning-intro {
  padding-top: 1.2rem;
  padding-bottom: 3.5rem;
}

.learning-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: start;
}

.learning-intro__media {
  margin: 0;
}

.learning-intro__media img {
  width: 100%;
  min-height: 19rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.learning-intro__copy {
  font-size: 0.96rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.7;
}

.learning-intro__copy p {
  margin: 0;
}

.learning-intro__copy p+p {
  margin-top: 1.1rem;
}

.learning-features {
  padding-top: 0.5rem;
  padding-bottom: 2.4rem;
}

.learning-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.learning-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  align-items: center;
}

.learning-feature--reverse .learning-feature__media {
  order: 1;
}

.learning-feature--reverse .learning-feature__copy {
  order: 2;
}

.learning-feature__copy h2 {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  line-height: 1.12;
  color: #111827;
}

.learning-feature__copy p {
  margin: 0.95rem 0 0;
  max-width: 29rem;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.72;
}

.learning-feature__media {
  margin: 0;
  justify-self: center;
  width: min(100%, 28rem);
  padding: 0.9rem;
  border-radius: 0.95rem;
}

.learning-feature__media--pink {
  background: linear-gradient(145deg, #efdde0, #eed4d8);
}

.learning-feature__media--blue {
  background: linear-gradient(145deg, #d8dbe8, #d0d4e4);
}

.learning-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  object-fit: cover;
}

.learning-offerings {
  padding-top: 1.2rem;
  padding-bottom: 5rem;
}

.learning-offerings__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: #111827;
}

.learning-offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(30, 38, 109, 0.08);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.learning-offerings__card {
  padding: 1.3rem 1.15rem 1.2rem;
  min-height: 20rem;
  border-right: 1px solid rgba(30, 38, 109, 0.08);
}

.learning-offerings__card:last-child {
  border-right: 0;
}

.learning-offerings__icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #f22613;
}

.learning-offerings__icon svg {
  width: 100%;
  height: 100%;
}

.learning-offerings__card h3 {
  margin: 3.6rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.25;
  color: #111827;
}

.learning-offerings__card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.85);
  line-height: 1.68;
}

@media (max-width: 1024px) {
  .learning-hero {
    padding-top: 8.2rem;
    padding-bottom: 4.2rem;
  }

  .learning-hero__grid,
  .learning-intro__grid,
  .learning-feature {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .learning-hero__content {
    max-width: 34rem;
  }

  .learning-hero__visual {
    min-height: 20rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }

  .learning-intro {
    padding-top: 0.2rem;
  }

  .learning-feature__copy h2,
  .learning-feature__copy p {
    max-width: none;
  }

  .learning-feature--reverse .learning-feature__media,
  .learning-feature--reverse .learning-feature__copy {
    order: unset;
  }

  .learning-offerings__grid {
    grid-template-columns: 1fr;
  }

  .learning-offerings__card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 38, 109, 0.08);
  }

  .learning-offerings__card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .learning-hero {
    padding-top: 7.5rem;
  }

  .learning-hero__title {
    font-size: clamp(2.15rem, 10vw, 2.95rem);
  }

  .learning-hero__visual {
    min-height: 17.5rem;
    max-width: 20.5rem;
  }

  .learning-hero__shape--one {
    top: 2.8rem;
    left: 4.8rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .learning-hero__shape--two {
    top: 5.7rem;
    left: 8.5rem;
    width: 3.9rem;
    height: 3.9rem;
  }

  .learning-hero__shape--three {
    top: 9.5rem;
    left: 6.2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .learning-hero__shape--dot-red {
    top: 6.2rem;
    left: 4.5rem;
  }

  .learning-hero__shape--dot-blue {
    top: 5.5rem;
    left: 12.8rem;
  }

  .learning-intro__copy {
    font-size: 0.92rem;
  }

  .learning-feature__copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .learning-feature__copy p,
  .learning-offerings__card p {
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .learning-page {
    background: #f5f5f5;
  }

  .learning-intro__media img {
    min-height: 14.5rem;
  }
}

/* Products Page */
.products-page {
  background: #f4f5f7;
}

.products-hero {
  position: relative;
  padding: 10.2rem 0 5.8rem;
  min-height: calc(100vh - 5rem);
  background: #f4f5f7;
  overflow: hidden;
}

.products-hero__bg,
.products-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.products-hero__blob,
.products-cta__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.products-hero__blob--one {
  top: 8rem;
  right: 13%;
  width: 31rem;
  height: 31rem;
  background: radial-gradient(circle, rgba(53, 68, 150, 0.22), rgba(242, 38, 19, 0.14), transparent 72%);
}

.products-hero__blob--two {
  bottom: 2rem;
  left: 54%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(166, 151, 187, 0.24), rgba(53, 68, 150, 0.09), transparent 70%);
}

.products-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 3rem;
}

.products-hero__badge,
.products-cta__badge,
.products-page .product-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.products-hero__badge {
  width: fit-content;
  padding: 0.42rem 1.1rem;
  background: #1f2d87;
  color: #ffffff;
  font-size: 0.75rem;
}

.products-hero__content {
  max-width: 33rem;
}

.products-hero h1 {
  margin: 1.15rem 0 0.95rem;
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 5.4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0f1117;
}

.products-hero__line {
  display: block;
}

.products-hero__line--brand {
  background: linear-gradient(90deg, #f22613, #3346a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products-hero p {
  margin: 0;
  max-width: 28rem;
  color: #2b3f73;
  font-size: 1.04rem;
  line-height: 1.65;
}

.products-hero__actions {
  margin-top: 2.2rem;
}

.products-hero__cta {
  border-radius: 0.55rem;
  background: #f22613;
  color: #ffffff;
  border: 0;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 10px 22px rgba(242, 38, 19, 0.3);
}

.products-hero__cta:hover,
.products-hero__cta:focus-visible {
  background: #cf000f;
}

.products-hero__visual {
  position: relative;
  width: min(100%, 31rem);
  height: 31rem;
  margin-inline: auto;
}

.products-hero__shape {
  position: absolute;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.products-hero__shape--one {
  top: 20%;
  left: 41%;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 1.25rem;
  background: #ffffff;
}

.products-hero__shape--two {
  top: 26%;
  left: 31%;
  width: 5.05rem;
  height: 5.05rem;
  transform: rotate(-16deg);
  background: linear-gradient(145deg, #b6b3d0, #d6d6e6);
}

.products-hero__shape--three {
  top: 27%;
  left: 57%;
  width: 4.7rem;
  height: 4.7rem;
  transform: rotate(14deg);
  background: linear-gradient(145deg, #e8b8c3, #f2d3da);
}

.products-hero__shape--pill {
  top: 50%;
  left: 30%;
  width: 12rem;
  height: 2.9rem;
  border-radius: 999px;
  transform: rotate(-18deg);
  background: linear-gradient(115deg, #95a9c8 2%, #ffffff 40%, #f19a9c 100%);
}

.products-showcase {
  background: #f7f7f8;
  padding-top: 5.2rem;
  padding-bottom: 6rem;
}

.products-showcase__head {
  max-width: 52rem;
  text-align: center;
  margin-bottom: 2.3rem;
}

.products-showcase__head h2 {
  margin: 0;
  color: #14285f;
  font-size: clamp(2.45rem, 5vw, 3rem);
  line-height: 1.08;
}

.products-showcase__head p {
  margin: 1.05rem auto 0;
  max-width: 43rem;
  color: rgba(30, 38, 109, 0.86);
  font-size: 1.03rem;
  line-height: 1.74;
}

.products-showcase__stack {
  display: grid;
  gap: 2.5rem;
}

.products-page .product-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.24fr);
  border-radius: 1.45rem;
  border: 1px solid rgba(223, 202, 207, 0.8);
  background: #f2dddd;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.products-page .product-panel:hover {
  transform: none;
}

.products-page .product-panel__content {
  position: relative;
  padding: 2.5rem 2rem 1.95rem;
}

.products-page .product-panel__content::after {
  content: "";
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.05rem;
  height: 3.7rem;
  opacity: 0.2;
  background-image: radial-gradient(#94a3d8 1px, transparent 1px);
  background-size: 11px 11px;
  pointer-events: none;
}

.products-page .product-panel__chips {
  position: absolute;
  top: 0.82rem;
  left: 1.05rem;
  right: 1.05rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.products-page .product-panel__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(205, 146, 150, 0.55);
  background: rgba(255, 244, 244, 0.84);
  color: #6d3f52;
  font-size: 0.74rem;
  font-weight: 500;
}

.products-page .product-panel__badge {
  width: fit-content;
  padding: 0.44rem 0.95rem;
  border: 0;
  background: #1f2d87;
  color: #ffffff;
  font-size: 0.76rem;
}

.products-page .product-panel__badge--citer {
  background: #1f2d87;
}

.products-page .product-panel h2 {
  margin: 0.95rem 0 0.72rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.products-page .product-panel p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.78;
  font-size: 1rem;
}

.product-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.products-page .product-panel__features {
  margin: 1.25rem 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.products-page .product-panel__features li {
  display: flex;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #2d2d2d;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.product-panel__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 20px;
  height: 20px;
  border: 2px solid #1f2a6d;
  border-radius: 50%;
}

.product-panel__features li::after {
  content: "✔";
  position: absolute;
  left: 4px;
  top: 4px;
  font-size: 14px;
  color: #1f2a6d;
}

.products-page .product-panel__cta {
  border-radius: 0.44rem;
  border: 0;
  min-height: 2.55rem;
  padding: 0.55rem 1.05rem;
  color: #ffffff;
  font-size: 0.86rem;
  box-shadow: 0 8px 18px rgba(242, 38, 19, 0.2);
}

.products-page .product-panel__cta--plexa {
  background: #f22613;
}

.products-page .product-panel__cta--citer {
  background: #f22613;
}

.products-page .product-panel__cta:hover,
.products-page .product-panel__cta:focus-visible {
  background: #cf000f;
}

.products-page .product-panel__media {
  position: relative;
  min-height: 23.5rem;
  background: rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(220, 193, 197, 0.72);
}

.products-page .product-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem 0.95rem 0.7rem 0;
}

.products-page .product-panel--reverse .product-panel__media {
  border-left: 0;
  border-right: 1px solid rgba(220, 193, 197, 0.72);
}

.products-page .product-panel--reverse .product-panel__media img {
  padding: 0.7rem 0 0.7rem 0.95rem;
}

.products-page .product-panel--reverse .product-panel__content {
  padding-left: 2.15rem;
}

.products-cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #111827 100%);
}

.products-cta__glow--one {
  top: -6rem;
  left: 15%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.07), transparent 68%);
}

.products-cta__glow--two {
  bottom: -7rem;
  right: 15%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.42), rgba(167, 139, 250, 0.09), transparent 70%);
}

.products-cta__container {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  text-align: center;
}

.products-cta__badge {
  padding: 0.52rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

.products-cta h2 {
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
  line-height: 1.18;
  color: #ffffff;
}

.products-cta h2 span {
  display: block;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products-cta p {
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(209, 213, 219, 0.95);
  line-height: 1.8;
  font-size: 1.1rem;
}

.products-cta__sub {
  margin-top: 0.8rem !important;
  color: rgba(156, 163, 175, 0.92) !important;
  font-size: 0.98rem !important;
}

.products-cta__button {
  margin-top: 2rem;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #111827;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
}

.products-cta__button:hover,
.products-cta__button:focus-visible {
  background: #f3f4f6;
}

@media (max-width: 1100px) {
  .products-hero__container {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .products-page .product-panel,
  .products-page .product-panel--reverse {
    grid-template-columns: 1fr;
  }

  .products-page .product-panel__media,
  .products-page .product-panel__media--reverse {
    min-height: 19.5rem;
    order: 1;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(220, 193, 197, 0.72);
  }

  .products-page .product-panel__content,
  .products-page .product-panel__content--reverse {
    order: 2;
    padding-left: 1.65rem;
    padding-right: 1.65rem;
  }

  .products-page .product-panel__media img,
  .products-page .product-panel--reverse .product-panel__media img {
    padding: 0.8rem;
    object-fit: cover;
  }
}

@media (max-width: 860px) {
  .products-hero {
    min-height: auto;
    padding-top: 7.6rem;
    padding-bottom: 4.2rem;
  }

  .products-showcase {
    padding-top: 3.6rem;
    padding-bottom: 4.8rem;
  }

  .products-hero__visual {
    height: 24rem;
  }

  .products-page .product-panel__content,
  .products-page .product-panel__content--reverse {
    padding: 1.5rem 1.2rem;
  }

  .products-page .product-panel__chips {
    position: static;
    margin: 0 0 0.5rem;
    padding: 0 1.2rem;
  }
}

@media (max-width: 640px) {

  .products-hero__badge,
  .products-cta__badge,
  .products-page .product-panel__badge {
    font-size: 0.78rem;
  }

  .products-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .products-showcase__head h2 {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .products-page .product-panel {
    border-radius: 1.1rem;
    padding-top: 1rem;
  }

  .products-page .product-panel h2 {
    font-size: clamp(1.65rem, 9vw, 2.1rem);
  }

  .products-page .product-panel__chips span {
    font-size: 0.68rem;
  }

  .products-cta {
    padding: 4.5rem 0;
  }
}

@media (max-width: 1000px) {
  .careers-hero {
    min-height: auto;
  }

  .careers-hero__container,
  .careers-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .careers-hero__container {
    min-height: auto;
  }

  .careers-hero__content {
    max-width: 35rem;
    margin-inline: auto;
    text-align: center;
  }

  .careers-hero__badge {
    margin-inline: auto;
  }

  .careers-hero p {
    margin-inline: auto;
  }

  .careers-jobs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .careers-hero {
    padding-top: 7.4rem;
    padding-bottom: 4.2rem;
  }

  .careers-story {
    padding-top: 3.7rem;
    padding-bottom: 2.4rem;
  }

  .careers-jobs {
    padding-top: 3.4rem;
    padding-bottom: 4.5rem;
  }

  .careers-story__media img {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .careers-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .careers-hero__visual {
    height: 22rem;
  }

  .careers-jobs__head h2 {
    font-size: clamp(1.95rem, 9vw, 2.5rem);
  }

  .careers-jobs__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .job-details-content__grid {
    grid-template-columns: 1fr;
  }

  .job-details-content__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .job-details-hero__image {
    max-height: 20rem;
  }

  .job-details-content {
    padding-bottom: 4.2rem;
  }

  .job-details-content__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-details-content__apply {
    min-width: 9.5rem;
  }

  .job-apply-panel {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(92vw, 34rem);
    min-width: 0;
    max-width: 34rem;
    height: min(85dvh, 46rem);
    border-radius: 0.95rem;
    transform: translate(-50%, -48%) scale(0.96);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.25);
  }

  .job-apply-overlay.is-open .job-apply-panel {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 640px) {
  .job-details-hero {
    padding-top: 1.2rem;
  }

  .job-details-hero__top {
    margin-bottom: 0.8rem;
  }

  .job-details-hero__logo {
    width: 2.65rem;
  }

  .job-details-hero__image {
    max-height: 14.5rem;
  }

  .job-details-content__main h2 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .job-details-content__main p,
  .job-details-content__main ul {
    font-size: 0.94rem;
  }

  .job-details-content__side {
    grid-template-columns: 1fr;
  }
}


/* Contact Page */
.contact-page {
  background: #ffffff;
}

.contact-page__hero {
  position: relative;
  padding: 10.2rem 0 5.8rem;
  overflow: hidden;
}

.contact-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-page__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.contact-page__blob--one {
  top: 4.5rem;
  right: 5%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), rgba(168, 85, 247, 0.18), transparent 70%);
}

.contact-page__blob--two {
  bottom: -4rem;
  left: 4%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.28), rgba(59, 130, 246, 0.14), transparent 70%);
}

.contact-page__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, rgba(99, 102, 241, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.contact-page__hero-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  text-align: center;
}

.contact-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.62);
  background: linear-gradient(90deg, rgba(219, 234, 254, 0.88), rgba(233, 213, 255, 0.72));
  color: #1e3a8a;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-page__badge svg {
  width: 1rem;
  height: 1rem;
}

.contact-page__hero h1 {
  margin: 1.75rem 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #111827;
}

.contact-page__hero p {
  margin: 0 auto;
  max-width: 43rem;
  color: rgba(55, 65, 81, 0.93);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.74;
}

.contact-page__hero-cta {
  margin-top: 2rem;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  padding: 0.9rem 1.7rem;
}

.contact-page__hero-cta:hover,
.contact-page__hero-cta:focus-visible {
  background: #1f2937;
}

.contact-page__section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 4rem 0 6rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: start;
}

.contact-page__info {
  display: grid;
  gap: 1.4rem;
}

.contact-page__info h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
}

.contact-page__info>p {
  margin: 0;
  color: rgba(55, 65, 81, 0.9);
  line-height: 1.8;
  font-size: 1.03rem;
}

.contact-page__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.contact-page__info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(233, 213, 255, 0.72));
}

.contact-page__info-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-page__info-card h3 {
  margin: 0 0 0.4rem;
  color: #111827;
  font-size: 1.05rem;
}

.contact-page__info-card p {
  margin: 0;
  color: rgba(55, 65, 81, 0.9);
  line-height: 1.65;
  font-size: 0.94rem;
}

.contact-page__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-page__avatars {
  display: inline-flex;
}

.contact-page__avatar {
  width: 2rem;
  height: 2rem;
  margin-left: -0.32rem;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
}

.contact-page__avatar:first-child {
  margin-left: 0;
}

.contact-page__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page__proof p {
  margin: 0;
  color: rgba(55, 65, 81, 0.92);
  font-size: 0.9rem;
}

.contact-page__proof p span {
  color: #111827;
  font-weight: 600;
}

.contact-page__form-card {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  padding: 2rem;
}

.contact-page__required {
  color: #ef4444;
}

.contact-page__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-page .field {
  display: grid;
  gap: 0.45rem;
}

.contact-page .field label {
  color: rgba(55, 65, 81, 0.95);
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  width: 100%;
  border-radius: 0.86rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  color: #111827;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-page .field textarea {
  resize: none;
}

.contact-page .field input:focus,
.contact-page .field select:focus,
.contact-page .field textarea:focus {
  outline: 0;
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.contact-page .field__error {
  min-height: 1rem;
  color: #dc2626;
  font-size: 0.78rem;
}

.contact-page__submit {
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #ffffff;
  min-height: 3.2rem;
}

.contact-page__submit:hover,
.contact-page__submit:focus-visible {
  filter: brightness(0.95);
}

@media (max-width: 1000px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-page__hero {
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .contact-page__section {
    padding-top: 2.8rem;
    padding-bottom: 4.4rem;
  }

  .contact-page__form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page__badge {
    font-size: 0.78rem;
  }

  .contact-page__form-card {
    padding: 1.35rem;
    border-radius: 1.1rem;
  }
}

/* Contact Page V2 (Figma-aligned) */
.contact-v2 {
  background: #ffffff;
}

.contact-v2__hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f6f8 0%, #f5f5f6 100%);
  overflow: hidden;
}

.contact-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-v2__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.contact-v2__blob--one {
  top: 7rem;
  right: 10%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(46, 59, 135, 0.26), rgba(242, 38, 19, 0.14), transparent 72%);
}

.contact-v2__blob--two {
  bottom: 1rem;
  left: 42%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(242, 38, 19, 0.11), rgba(46, 59, 135, 0.1), transparent 70%);
}

.contact-v2__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 35rem);
  align-items: center;
  gap: 4rem;
}

.contact-v2__hero-copy {
  max-width: 30rem;
}

.contact-v2__badge,
.contact-v2__intro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-v2__badge {
  padding: 0.42rem 1.2rem;
  background: #1f2d87;
  color: #ffffff;
}

.contact-v2__hero-copy h1 {
  margin: 1.3rem 0 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 5.8vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0f1117;
}

.contact-v2__hero-copy h1 span {
  display: block;
}

.contact-v2__hero-gradient {
  background: linear-gradient(90deg, #f22613 0%, #3346a8 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-v2__hero-copy p {
  margin: 0;
  max-width: 28rem;
  color: #2c3f75;
  font-size: 1.15rem;
  line-height: 1.65;
}

.contact-v2__hero-cta {
  margin-top: 2.15rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 0.55rem;
  background: #f22613;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(242, 38, 19, 0.3);
}

.contact-v2__hero-cta:hover,
.contact-v2__hero-cta:focus-visible {
  background: #cf000f;
}

.contact-v2__visual {
  position: relative;
  width: min(100%, 31rem);
  height: 31rem;
  margin-inline: auto;
}

.contact-v2__visual::before {
  content: "";
  position: absolute;
  inset: -2% -1%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 228, 231, 0.85) 0%, rgba(209, 198, 219, 0.72) 50%, rgba(243, 243, 243, 0) 77%);
  filter: blur(6px);
}

.contact-v2__shape {
  position: absolute;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.contact-v2__shape--tile-one {
  top: 21%;
  left: 25%;
  width: 4.25rem;
  height: 4.25rem;
  transform: rotate(14deg);
  border-radius: 1.05rem;
  background: linear-gradient(140deg, #e7b6c4, #f4d2d9);
}

.contact-v2__shape--tile-two {
  top: 12%;
  left: 44%;
  width: 4.75rem;
  height: 4.75rem;
  transform: rotate(-14deg);
  border-radius: 1.15rem;
  background: linear-gradient(150deg, #cdc7db, #aeb4d2);
}

.contact-v2__shape--tile-three {
  top: 31%;
  left: 42%;
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 0.72rem;
  background: #ffffff;
}

.contact-v2__shape--tile-four {
  top: 32%;
  left: 58%;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #5060ab, #4756a1);
}

.contact-v2__shape--tile-five {
  top: 44%;
  left: 35%;
  width: 2.05rem;
  height: 2.05rem;
  transform: rotate(45deg);
  border-radius: 0.62rem;
  background: #f15a49;
}

.contact-v2__shape--pill {
  top: 54%;
  left: 28%;
  width: 10rem;
  height: 2.7rem;
  border-radius: 999px;
  transform: rotate(-18deg);
  background: linear-gradient(115deg, #89a7ca 2%, #ffffff 38%, #ef9293 100%);
}

.contact-v2__form-section {
  position: relative;
  background: #f8f8f9;
  padding: 4.5rem 0 5.5rem;
}

.contact-v2__form-wrap {
  max-width: 50rem;
}

.contact-v2__intro {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 42rem;
}

.contact-v2__intro-badge {
  padding: 0.42rem 1.18rem;
  background: #1f2d87;
  color: #ffffff;
}

.contact-v2__intro h2 {
  margin: 1.15rem 0 0.9rem;
  color: #0f1117;
  font-size: clamp(2.2rem, 5vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-v2__intro p {
  margin: 0;
  color: #1f325d;
  font-size: 1.17rem;
}

.contact-v2__card {
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  border-radius: 1.2rem;
  border: 1px solid #dde1eb;
  background: #fdfdfd;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.09);
  overflow: hidden;
  text-align: left;
  padding: 2rem;
}

.contact-v2__card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f3e9d 0%, #f22613 52%, #2f3e9d 100%);
}

.contact-v2__required {
  color: #ef4444;
}

.contact-v2 .contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-v2__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-v2 .field {
  display: grid;
  gap: 0.4rem;
}

.contact-v2 .field label {
  color: #576079;
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-v2 .field input,
.contact-v2 .field select,
.contact-v2 .field textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid #ced4e0;
  background: #ffffff;
  color: #111827;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-v2 .field textarea {
  min-height: 7rem;
  padding-top: 0.7rem;
  resize: none;
}

.contact-v2 .field input:focus,
.contact-v2 .field select:focus,
.contact-v2 .field textarea:focus {
  outline: 0;
  border-color: rgba(47, 62, 157, 0.65);
  box-shadow: 0 0 0 3px rgba(47, 62, 157, 0.12);
}

.contact-v2 .field__error {
  min-height: 0.9rem;
  color: #dc2626;
  font-size: 0.72rem;
}

.contact-v2__submit {
  width: 100%;
  margin-top: 0.5rem;
  min-height: 2.9rem;
  border: 0;
  border-radius: 0.5rem;
  background: #f22613;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(242, 38, 19, 0.26);
}

.contact-v2__submit:hover,
.contact-v2__submit:focus-visible {
  background: #cf000f;
}

@media (max-width: 860px) {
  .contact-v2__hero {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .contact-v2__form-section {
    padding-top: 3.4rem;
    padding-bottom: 4.5rem;
  }

  .contact-v2__card {
    padding: 1.4rem;
  }

  .contact-v2__hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-v2__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .contact-v2__badge,
  .contact-v2__intro-badge {
    font-size: 0.78rem;
  }

  .contact-v2__hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 2.95rem);
  }

  .contact-v2__visual {
    height: 23rem;
  }

  .contact-v2__card {
    padding: 1.15rem;
  }
}