:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f8fbfc;
  --surface-soft: #eef8fa;
  --text: #17242b;
  --muted: #5f6f77;
  --line: #d9eaee;
  --line-strong: #87cfdd;
  --teal-900: #0a666f;
  --teal-800: #097a84;
  --teal-700: #0f98a2;
  --teal-600: #17b5c2;
  --teal-500: #22c4d0;
  --orange-700: #ff8b1a;
  --orange-600: #ff9f2e;
  --orange-500: #ffad42;
  --shadow-soft: 0 18px 44px rgba(8, 61, 69, 0.08);
  --shadow-card: 0 24px 48px rgba(7, 54, 63, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1640px, calc(100vw - 36px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 100px);
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 905px;
  margin: 0 auto 54px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--light {
  color: #ffffff;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2,
.story__content h2,
.split-feature__content h2,
.banner-cta__box h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.35rem, 1.95rem + 1.7vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy,
.story__copy,
.split-feature__content > p,
.banner-cta p {
  margin: 18px auto 0;
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.16rem);
  line-height: 1.72;
}

.section-copy--left {
  margin-left: 0;
}

.section-copy--light {
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--accent {
  background: linear-gradient(180deg, var(--orange-600), var(--orange-700));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(255, 139, 26, 0.22);
}

.button--primary {
  background: linear-gradient(180deg, var(--teal-600), var(--teal-800));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 152, 162, 0.18);
}

.button--light {
  background: #ffffff;
  color: var(--teal-800);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.16);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.flash-stack {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: grid;
  gap: 10px;
  transform: translateX(-50%);
}

.flash {
  min-width: 280px;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.flash--success {
  background: #e7fff1;
  color: #13744e;
}

.flash--error {
  background: #fff1f1;
  color: #b53d3d;
}

.contact-form__submit:disabled,
.newsletter-form__row button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.site-header {
  position: absolute;
  inset: 24px 0 auto;
  z-index: 40;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 1vh 5vw;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(10, 70, 77, 0.1);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.site-nav__menu {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 34px;
}

.site-nav__menu a {
  position: relative;
  color: rgba(23, 36, 43, 0.7);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav__menu a.is-active,
.site-nav__menu a:hover {
  color: var(--teal-800);
}

.site-nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal-900);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(6, 39, 45, 0.84) 0%, rgba(6, 39, 45, 0.46) 46%, rgba(6, 39, 45, 0.18) 100%);
}

.hero__overlay--soft {
  background: linear-gradient(180deg, rgba(10, 48, 53, 0.74) 0%, rgba(10, 48, 53, 0.3) 42%, rgba(10, 48, 53, 0.82) 100%);
}

.hero__grid,
.hero__service-content,
.hero__center-content {
  position: relative;
  z-index: 1;
}

.hero--home {
  min-height: 946px;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 175, 70, 0.18) 0, rgba(255, 175, 70, 0.18) 88px, transparent 89px),
    radial-gradient(circle at 79% 38%, rgba(255, 175, 70, 0.1) 0, rgba(255, 175, 70, 0.1) 124px, transparent 125px),
    linear-gradient(115deg, #20c5cf 0%, #1599a3 44%, #0a7a83 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.78fr);
  gap: 34px;
  align-items: center;
  min-height: 946px;
  padding-top: 146px;
  padding-bottom: 96px;
}

.hero__content h1,
.hero__service-content h1,
.hero__center-content h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.9rem, 2.4rem + 1.95vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero__content p,
.hero__service-content p,
.hero__center-content p {
  margin: 22px 0 0;
  max-width: 744px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 0.98rem + 0.32vw, 1.15rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__actions--center {
  justify-content: center;
}

.hero__chips span,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.hero__eyebrow {
  margin-bottom: 20px;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-700);
}

.hero__eyebrow--stars {
  gap: 14px;
  margin: 0 auto 22px;
}

.hero__stars {
  color: #ffbb48;
  letter-spacing: 0.16em;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-person {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  padding-top: 18px;
}

.hero-person img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.hero-person__blob {
  position: absolute;
  border-radius: 999px;
  z-index: 1;
}

.hero-person__blob--left {
  left: 62px;
  bottom: 60px;
  width: 180px;
  height: 328px;
  background: #ff944b;
  transform: rotate(12deg);
}

.hero-person__blob--right {
  right: 28px;
  bottom: 122px;
  width: 214px;
  height: 214px;
  background: rgba(255, 241, 231, 0.94);
}

.hero-person__tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-600), var(--orange-700));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  z-index: 4;
}

.hero-person__tag--left {
  left: -4px;
  bottom: 244px;
  transform: rotate(-8deg);
}

.hero-person__tag--center {
  left: 242px;
  bottom: 178px;
}

.hero-person__tag--right {
  right: 22px;
  top: 198px;
}

.hero-person__flags {
  position: absolute;
  top: 4px;
  left: 242px;
  z-index: 5;
  display: grid;
  gap: 4px;
  transform: rotate(-9deg);
}

.hero-person__flag {
  display: block;
  width: 44px;
  height: 26px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(8, 61, 69, 0.18);
}

.hero-person__flag--uae {
  background:
    linear-gradient(90deg, #ff4438 0 24%, transparent 24% 100%),
    linear-gradient(180deg, #0b7a44 0 33.33%, #ffffff 33.33% 66.66%, #111111 66.66% 100%);
}

.hero-person__flag--india {
  margin-left: 18px;
  background:
    radial-gradient(circle at 50% 50%, #2453a6 0 10%, transparent 11% 100%),
    linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
}

.hero--center {
  min-height: 944px;
}

.hero__center-content {
  /* display: grid; */
  place-items: center;
  min-height: 944px;
  padding: 176px 0 144px;
  text-align: center;
}

.hero__center-content p {
  max-width: 885px;
}

.hero--service {
  min-height: 944px;
}

.hero__service-content {
  max-width: 82vw;
  min-height: 944px;
  padding: 266px 100px 118px;
 
}

.stats-bar {
  background: var(--orange-700);
  color: #ffffff;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0;
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 1.7rem + 0.9vw, 3rem);
  line-height: 1.05;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.page-home .logo-strip {
  position: relative;
  z-index: 5;
  margin-top: -96px;
  padding-top: 0;
}

.page-about .logo-strip {
  padding-top: 42px;
}

.story {
  background: #ffffff;
}

.story__grid,
.split-feature__grid,
.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  align-items: center;
}
.site-footer__top {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  align-items: center;
}
.story__media {
  width: 100%;
}

.story__bg {
  width: 100%;
  height: 350px;
  margin-left: -50px;
  margin-bottom: -20px;
  border-radius: 36px;
  background-color: #3d5d5e;
}

.story__img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-top: -350px;
  border-radius: 36px;
}

.story__media::before {
  border-radius: 34px;
}

.story__photo-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82%;
  height: 98px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffac40 0%, #ff9723 100%);
  z-index: 0;
}

.story__photo {
  position: relative;
  left: -50;
  border-radius: 36px;
  width: 100%;
  padding: 18px;
  background-color: #3d5d5e;
}

.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story__content .button {
  margin-top: 10px;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.story__stats strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
}

.story__stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-strip {
  padding-top: 14px;
}

.logo-strip__box {
  padding: 36px 38px 34px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.logo-strip__box p {
  margin: 0 0 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2d4048;
}

.logo-strip__logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-strip__item {
  display: grid;
  place-items: center;
  min-height: 62px;
}

.logo-strip__item img {
  width: 100%;
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
}

.services-overview,
.services-page,
.pricing-section,
.articles-section,
.testimonials-section {
  background: #ffffff;
}

.feature-grid,
.service-card-grid,
.pricing-grid,
.article-grid,
.testimonial-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.feature-grid,
.service-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.article-card,
.testimonial-card,
.pricing-card {
  border-radius: 4px;
  background: #ffffff;
}

.feature-card {
  padding: 34px 26px 30px;
  border: 1px solid var(--line-strong);
  text-align: center;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: #f0fbfd;
  color: var(--teal-800);
  font-size: 1.95rem;
}

.feature-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: min(100%, 660px);
  margin: 0 auto 46px;
  padding: 14px;
  border: 1px solid #d7ebef;
  border-radius: 24px;
  background: #ffffff;
}

.service-tab {
  flex: 1;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: rgba(23, 36, 43, 0.76);
  font-weight: 600;
}

.service-tab.is-active {
  background: linear-gradient(180deg, var(--teal-600), var(--teal-800));
  color: #ffffff;
}

.service-card-grid {
  align-items: stretch;
}

.service-card {
  padding: 15px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 28px rgba(0, 95, 109, 0.06);
}

.service-card img {
  width: 100%;
  height: 264px;
  border-radius: 18px;
  object-fit: cover;
}

.service-card__body {
  padding: 20px 6px 6px;
}

.service-card__body h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.16rem;
  line-height: 1.4;
}

.service-card__body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.split-feature {
  background: #ffffff;
}

.split-feature__grid {
  align-items: center;
}

.split-feature__media {
  position: relative;
}

.insight-card {
  position: relative;
}

.insight-card > img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-card);
}

.insight-card__badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  width: min(88%, 438px);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.insight-card__badge h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
}

.insight-card__badge p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.insight-card__badge p strong {
  color: var(--orange-700);
}

.insight-card__reviews {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.insight-card__avatars {
  display: flex;
}

.insight-card__avatars img {
  width: 42px;
  height: 42px;
  margin-left: -11px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.insight-card__avatars img:first-child {
  margin-left: 0;
}

.insight-card__reviews span {
  font-size: 0.95rem;
  font-weight: 600;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 30px 0 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
}

.check-item__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(73, 59, 45);
  color: var(--orange-700);
  font-size: 0.88rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 96, 106, 0.72), rgba(6, 81, 89, 0.84)),
    url("assets/about-hero-bg.png") center/cover;
  color: #ffffff;
}

.process-section--image {
  background: #ffffff;
  color: var(--text);
  padding-top: 84px;
  padding-bottom: 0;
}

.process-section--image img {
  display: block;
  width: 100%;
  height: auto;
}

.process-section--image .container {
  display: block;
}

.process-section--image .section-heading {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto 46px;
  text-align: center;
}

.process-section--image .section-kicker {
  color: #018793;
  margin-bottom: 34px;
  font-family: "Poppins", sans-serif;
  font-size: 22.501px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.process-section--image .section-heading h2 {
  max-width: 1380px;
  margin-inline: auto;
  color: #252422;
  font-family: "Poppins", sans-serif;
  font-size: 38.347px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}

.process-section--image .section-copy {
  max-width: 1110px;
  margin-top: 32px;
  color: #575757;
  font-size: 28px;
  line-height: 1.45;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 63%, rgba(255, 255, 255, 0.12) 0 56px, transparent 57px),
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.12) 0 56px, transparent 57px),
    radial-gradient(circle at 58% 54%, rgba(255, 255, 255, 0.12) 0 56px, transparent 57px),
    radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.12) 0 56px, transparent 57px);
  opacity: 0.75;
}

.page-india .process-section {
  background:
    linear-gradient(180deg, rgba(8, 96, 106, 0.74), rgba(6, 81, 89, 0.88)),
    url("assets/trust-photo.png") center/cover;
}

.page-uae .process-section {
  background:
    linear-gradient(180deg, rgba(8, 96, 106, 0.74), rgba(6, 81, 89, 0.88)),
    url("assets/about-hero-bg.png") center/cover;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.process-step {
  padding: 24px 18px 0;
  text-align: center;
}

.process-step__index {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border: 6px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-800);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
}

.process-step p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.7;
}

.banner-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

.banner-cta__box {
  padding: 82px 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--orange-600), var(--orange-700));
  color: #ffffff;
  text-align: center;
}

.banner-cta__box p {
  max-width: 920px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-section {
  padding-top: 104px;
  padding-bottom: 86px;
}

.pricing-section .section-heading {
  max-width: 906px;
  margin-bottom: 58px;
}

.pricing-section .section-kicker {
  margin-bottom: 14px;
  color: #0096c7;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-section .section-heading h2 {
  color: #252422;
  font-size: clamp(3rem, 2.55rem + 1.8vw, 58.936px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.pricing-section .section-copy {
  max-width: 910px;
  margin-top: 18px;
  color: #4f4f4f;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 21.65px);
  line-height: 1.5;
}

.pricing-grid {
  width: min(100%, 1296px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 36px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 732px;
  padding: 42px 32px;
  border: 1px solid rgba(3, 73, 168, 0.12);
  border-radius: 40px;
  box-shadow: none;
}

.pricing-card--featured {
  background: linear-gradient(103deg, #018793 12%, #00b3be 76%);
  color: #ffffff;
  transform: translateY(-48px);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(45, 47, 51, 0.12), 0 0 0 10px rgba(183, 211, 248, 0.24);
}

.pricing-card__tag {
  position: absolute;
  top: 32px;
  right: 26px;
  left: auto;
  transform: none;
  padding: 8px 12px;
  border-radius: 10.682px;
  background: #ffffff;
  color: #181059;
  font-family: "Urbanist", sans-serif;
  font-size: 16.022px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.pricing-card h3 {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 25.723px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.pricing-card__subtitle {
  min-height: 52px;
  margin: 4px 0 0;
  color: inherit;
  font-family: "Urbanist", sans-serif;
  font-size: 18.693px;
  line-height: 1.375;
  opacity: 0.72;
}

.pricing-card__price {
  margin-top: 28px;
  font-family: "Urbanist", sans-serif;
  font-size: 38.584px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.pricing-card--featured .pricing-card__price {
  font-size: 42.871px;
}

.pricing-card__unit {
  margin-top: 4px;
  font-family: "Urbanist", sans-serif;
  font-size: 16.022px;
  line-height: 1.2;
  opacity: 0.72;
}

.pricing-card ul::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background: rgba(37, 36, 34, 0.16);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: inherit;
  font-family: "Urbanist", sans-serif;
  font-size: 18.693px;
  line-height: 1.142;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #32b564;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.82);
}

.pricing-card--featured li::before {
  background: #69c86f;
}

.pricing-card .button {
  width: 100%;
  min-height: 53px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 10.682px;
  font-family: "Urbanist", sans-serif;
  font-size: 21.363px;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: none;
}

.pricing-card .button--primary {
  background: #00838d;
}

.pricing-card .button--light {
  background: #ffffff;
  color: #078a95;
}

.pricing-footnote {
  margin: 12px 0 0;
  text-align: center;
  color: #252422;
  font-family: "Poppins", sans-serif;
  font-size: 15.636px;
  font-weight: 400;
  line-height: 1.5;
}

.pricing-footnote a {
  color: #00b3be;
  text-decoration: underline;
}

.page-home .stats-bar {
  margin-top: 8px;
}

.contact-section {
  padding-top: 84px;
}

.contact-card {
  gap: 68px;
}

.contact-form {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #27c7d2 0%, #13a4b0 100%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  justify-self: start;
  margin-top: 6px;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.contact-map {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map__world {
  position: absolute;
  inset: 8% 0 8% 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 40%, rgba(23, 36, 43, 0.1) 0 34px, transparent 36px),
    radial-gradient(circle at 27% 34%, rgba(23, 36, 43, 0.1) 0 28px, transparent 30px),
    radial-gradient(circle at 35% 49%, rgba(23, 36, 43, 0.12) 0 42px, transparent 44px),
    radial-gradient(circle at 48% 38%, rgba(23, 36, 43, 0.1) 0 50px, transparent 52px),
    radial-gradient(circle at 60% 37%, rgba(23, 36, 43, 0.1) 0 48px, transparent 50px),
    radial-gradient(circle at 72% 50%, rgba(23, 36, 43, 0.12) 0 62px, transparent 64px),
    radial-gradient(circle at 85% 38%, rgba(23, 36, 43, 0.1) 0 30px, transparent 32px),
    radial-gradient(circle at 90% 58%, rgba(23, 36, 43, 0.1) 0 28px, transparent 30px);
  filter: blur(4px);
  opacity: 0.48;
}

.contact-map__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.map-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.map-tag::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal-600), var(--teal-800));
}

.map-tag--uae {
  top: 49%;
  left: 54%;
}

.map-tag--india {
  top: 57%;
  left: 69%;
}

.testimonials-section {
  padding-top: 86px;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider__viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 4px 18px;
  margin: 0 -4px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.testimonial-slider__viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-slider__track {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  align-items: stretch;
}

.testimonial-slider__slide {
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
}

.testimonial-card {
  position: relative;
  overflow: visible;
  margin-top: 38px;
  padding: 68px 22px 20px;
  border: 1px solid #eef2f3;
  box-shadow: 0 16px 34px rgba(9, 48, 64, 0.08);
}

.testimonial-card__quote {
  position: absolute;
  top: -34px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffa53a 0%, #ff971f 100%);
  box-shadow: 0 16px 30px rgba(255, 151, 31, 0.28);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 3.35rem;
  font-weight: 700;
  line-height: 1;
  text-indent: 3px;
}

.testimonial-card__quote svg {
  width: 20px;
  height: auto;
}

.testimonial-card__stars {
  margin-top: 18px;
  color: var(--orange-700);
  letter-spacing: 0.18em;
}

.testimonial-card p {
  min-height: 98px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 0.92rem;
}

.testimonial-card span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.testimonial-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(9, 48, 64, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.testimonial-slider__button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--orange-700);
  color: var(--orange-700);
}

.testimonial-slider__button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
}

.testimonial-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 70, 77, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-slider__dot.is-active {
  transform: scale(1.15);
  background: var(--orange-700);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  overflow: hidden;
}

.article-card__media {
  position: relative;
  height: 318px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  background: #018793;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.article-card__body {
  padding: 24px 6px 0;
}

.article-card__body h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  line-height: 1.4;
}

.article-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card__meta a {
  color: var(--teal-800);
  font-weight: 700;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.site-footer {
  margin-top: 64px;
  background: linear-gradient(180deg, #0f646c 0%, #0b5560 100%);
  color: #ffffff;
}

.site-footer__top {
  align-items: start;
   padding: 5vw 5vw 2vw 5vw;

}

.site-logo--footer img {
  width: 96px;
}

.site-footer__brand p {
  max-width: 446px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.newsletter-form {
  margin-top: 28px;
  width: 100%;
  max-width: 450px;
}

.newsletter-form__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.newsletter-form__row input {
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  outline: none;
}

.newsletter-form__row input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form__row button {
  width: 36px;
  height: 36px;
  align-self: center;
  justify-self: end;
  border: 0;
  border-radius: 8px;
  background: var(--teal-500);
  color: #0f4950;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__column h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer__column a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer__legal,
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .feature-grid,
  .service-card-grid,
  .article-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-slider__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  }

  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(100vw - 28px, 1490px);
  }

  .section {
    padding: 88px 0;
  }

  .site-nav {
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .site-nav__toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

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

  .site-nav__menu a::after {
    bottom: -4px;
  }

  .site-nav__cta {
    display: none;
  }

  .hero__grid,
  .story__grid,
  .split-feature__grid,
  .contact-card,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding-top: 150px;
    gap: 48px;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero-person {
    margin: 0 auto;
  }

  .hero__service-content,
  .hero__center-content {
    min-height: auto;
  }

  .hero__service-content {
    padding: 188px 10vw 96px;
  }

  .hero__center-content {
    padding: 164px 0 120px;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story__media {
    padding: 30px 0 48px 32px;
  }

  .story__media::before {
    border-radius: 28px;
  }

  .story__photo-accent {
    width: 80%;
    height: 84px;
    border-radius: 28px;
  }

  .story__stats,
  .check-grid,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .insight-card__badge {
    right: 0;
  }

  .contact-map {
    min-height: 360px;
  }

  .process-section--image {
    padding-top: 72px;
  }

  .process-section--image .section-heading {
    width: 100%;
    margin: 0 auto 38px;
  }

  .process-section--image .section-heading h2 {
    font-size: clamp(2.2rem, 1.85rem + 2vw, 3rem);
  }

  .process-section--image .section-copy {
    font-size: clamp(1.2rem, 1rem + 0.8vw, 1.75rem);
  }

  .pricing-section {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .pricing-section .section-heading {
    margin-bottom: 42px;
  }

  .pricing-card {
    min-height: auto;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-card__subtitle,
  .pricing-card li {
    font-size: 16px;
  }

  .pricing-card__price {
    font-size: 34px;
  }

  .pricing-card--featured .pricing-card__price {
    font-size: 37px;
  }

  .pricing-card__unit {
    font-size: 14px;
  }

  .pricing-card li::before {
    top: 0;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82);
  }

  .pricing-card .button {
    min-height: 48px;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .feature-grid,
  .service-card-grid,
  .article-grid,
  .testimonial-grid,
  .pricing-grid,
  .process-grid,
  .logo-strip__logos,
  .site-footer__columns,
  .stats-bar__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .testimonial-slider__track {
    grid-auto-columns: 100%;
    gap: 20px;
  }

  .testimonial-slider__controls {
    margin-top: 20px;
  }

  .site-header {
    inset: 16px 0 auto;
  }

  .hero__grid,
  .hero__service-content,
  .hero__center-content {
    padding-top: 132px;
  }

  .hero__content h1,
  .hero__service-content h1,
  .hero__center-content h1 {
    font-size: clamp(2.25rem, 1.95rem + 4vw, 3.25rem);
  }

  .hero-person img,
  .story__photo,
  .insight-card > img {
    min-height: 420px;
    height: 420px;
  }

  .hero-person img {
    height: auto;
    max-height: 430px;
  }

  .hero-person__blob--left {
    left: 44px;
    bottom: 44px;
    width: 130px;
    height: 236px;
  }

  .hero-person__blob--right {
    right: 18px;
    bottom: 90px;
    width: 148px;
    height: 148px;
  }

  .hero-person__tag {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.74rem;
  }

  .hero-person__tag--left {
    left: 0;
    bottom: 176px;
  }

  .hero-person__tag--center {
    left: 160px;
    bottom: 124px;
  }

  .hero-person__tag--right {
    right: 8px;
    top: 146px;
  }

  .hero-person__flags {
    left: 158px;
  }

  .hero-person__flag {
    width: 34px;
    height: 20px;
  }

  .page-home .logo-strip {
    margin-top: -44px;
  }

  .story__media {
    padding: 22px 0 26px 18px;
  }

  .story__media::before {
    border-radius: 20px;
  }

  .story__photo-accent {
    width: 82%;
    height: 58px;
    border-radius: 20px;
  }

  .service-tabs {
    flex-direction: column;
  }

  .service-tab {
    width: 100%;
  }

  .banner-cta__box {
    padding: 56px 24px;
  }

  .process-section--image {
    padding-top: 56px;
  }

  .process-section--image .section-kicker {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .process-section--image .section-copy {
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-section .section-kicker {
    font-size: 17px;
  }

  .pricing-section .section-copy {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .pricing-card__subtitle,
  .pricing-card li {
    font-size: 15px;
  }

  .pricing-card__price {
    font-size: 31px;
  }

  .pricing-card--featured .pricing-card__price {
    font-size: 34px;
  }

  .pricing-card__unit {
    font-size: 13px;
  }

  .pricing-card li::before {
    width: 16px;
    height: 16px;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.82);
  }

  .pricing-card .button {
    min-height: 44px;
    font-size: 16px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .map-tag {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .map-tag--uae {
    left: 46%;
  }

  .map-tag--india {
    left: 62%;
  }

  .site-footer__bottom {
    justify-items: start;
  }
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-strip__box {
  min-height: 233px;
  padding: 44px 30px 52px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(8, 35, 40, 0.12);
}

.logo-strip__box p {
  margin-bottom: 30px;
  font-size: 19.2px;
  font-weight: 700;
  color: #2d4048;
}

.logo-strip__viewport {
  overflow: hidden;
}

.logo-strip__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 26s linear infinite;
  will-change: transform;
}

.logo-strip__viewport:hover .logo-strip__track {
  animation-play-state: paused;
}

.logo-strip__group {
  --logo-gap: clamp(34px, 3.3vw, 56px);
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.logo-strip__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-height: 62px;
}

.logo-strip__item img {
  width: auto;
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
}

.logo-strip__logos {
  margin-top: 18px;
}

.button--section-link {
  gap: 18px;
  min-height: 64.8px;
  padding: 11px 24px;
  border-radius: 16px;
  background: #018793;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(1, 135, 147, 0.2);
}

.button--section-link .button__icon-chip {
  display: grid;
  place-items: center;
  width: 42.6px;
  height: 42.6px;
  border-radius: 50%;
  background: #ffffff;
  color: #018793;
  font-size: 1.2rem;
  font-weight: 700;
}

.page-home .hero__content h1 {
  max-width: 794px;
  font-size: clamp(3.55rem, 3rem + 1.55vw, 69.349px);
  line-height: 1.22;
}

.page-home .hero__content p {
  max-width: 744px;
  margin-top: 18px;
  font-size: clamp(1.12rem, 1rem + 0.46vw, 22.685px);
  line-height: 1.64;
}

.page-home .hero__actions {
  gap: 32px;
  margin-top: 18px;
}

.page-home .hero__actions .button {
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 11px;
  font-size: 18.9px;
  letter-spacing: 0.04em;
}

.page-home .logo-strip {
  margin-top: -84px;
}

.page-home .story {
  padding-top: 120px;
}

.page-home .story__grid {
  gap: clamp(72px, 8vw, 188px);
}

.page-home .story__media {
  padding: 58px 0 76px;
}

.page-home .story__media::before {
  top: 72px;
  left: -46px;
  width: 125px;
  height: calc(100% - 148px);
  min-height: 400px;
  border-radius: 20px;
  background: #fca243;
}

.page-home .story__photo-accent {
  left: -46px;
  width: min(100%, 342px);
  height: 74px;
  border-radius: 20px;
  background: #fca243;
}

.page-home .story__photo {
  width: min(100%, 482px);
  margin-left: 64px;
  aspect-ratio: 481 / 634;
  border-radius: 19.244px;
  box-shadow: 0 18px 38px rgba(18, 36, 42, 0.12);
}

.page-home .story__content .section-kicker {
  margin-bottom: 14px;
  color: #fb8201;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.page-home .story__content h2 {
  max-width: 710px;
  color: #252422;
  font-size: clamp(3rem, 2.55rem + 1.3vw, 58.936px);
  line-height: 1.2;
}

.story__title-accent {
  color: #fb8201;
}

.page-home .story__copy {
  max-width: 714px;
  margin-top: 14px;
  color: #4d4d4d;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 21.65px);
  line-height: 1.5;
}

.page-home .story__content .button {
  min-height: 52px;
  margin-top: 18px;
  padding: 14px 38px;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.page-home .story__stats {
  gap: 24px;
  margin-top: 48px;
  padding-top: 20px;
  border-top-color: #dfdfdf;
}

.page-home .story__stats strong {
  color: #252422;
  font-size: clamp(2.6rem, 2.2rem + 1.05vw, 58.936px);
  line-height: 1.2;
}

.page-home .story__stats span {
  margin-top: 4px;
  color: #4d4d4d;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.34vw, 21.65px);
  line-height: 1.5;
}

.services-overview .section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.services-overview .section-kicker {
  margin-bottom: 12px;
  color: #fb8201;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.services-overview .section-heading h2 {
  color: #252422;
  font-size: 38.347px;
  line-height: 1.16;
}

.services-overview .section-copy {
  max-width: 718px;
  margin-top: 18px;
  color: #4d4d4d;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 21.65px);
  line-height: 1.5;
}

.services-overview__tabs {
  display: flex;
  justify-content: center;
  gap: 42px;
  width: fit-content;
  margin: 0 auto 34px;
}

.services-overview__tab {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  background: transparent;
  color: #7b8794;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.services-overview__tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease;
}

.services-overview__tab.is-active {
  color: #252422;
}

.services-overview__tab.is-active::after {
  background: #018793;
}

.services-overview__panel {
  display: block;
}

.services-overview__panel[hidden] {
  display: none;
}

.feature-grid {
  gap: 24px;
}

.feature-card {
  padding: 48px 28px;
  border: 1.8px solid #018793;
  border-radius: 19.833px;
  box-shadow: 0 10px 22px rgba(6, 38, 44, 0.09);
}

.feature-card__icon {
  width: 67.2px;
  height: 67.2px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #018793;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: none;
}

.feature-card h3 {
  color: #0a1519;
  font-size: clamp(1.2rem, 1.05rem + 0.34vw, 26.4px);
  line-height: 1.1;
}

.feature-card p {
  margin-top: 12px;
  color: #4d4d4d;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 19.2px);
  line-height: 1.45;
}

.banner-cta__box {
  padding: 74px 42px 52px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ff9d33 0%, #fb8201 100%);
}

.banner-cta__box h2 {
  font-size: clamp(2.8rem, 2.45rem + 1.15vw, 64px);
  line-height: 1.12;
}

.banner-cta__box p {
  max-width: 918px;
  margin-top: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 0.92rem + 0.4vw, 24px);
  line-height: 1.45;
}

.banner-cta__box .button {
  min-width: 459px;
  min-height: 81px;
  padding: 0 32px;
  border-radius: 18px;
  color: #ff8500;
  font-size: 27.429px;
  font-weight: 600;
  box-shadow: none;
}

.split-feature__grid {
  gap: clamp(48px, 5vw, 92px);
}

.split-feature__media .insight-card > img {
  min-height: 620px;
  border-radius: 30px;
}

.split-feature__content .section-kicker {
  margin-bottom: 14px;
  color: #6e7d85;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.split-feature__content h2 {
  max-width: 705px;
  color: #252422;
  font-size: clamp(3rem, 2.55rem + 1.2vw, 58.936px);
  line-height: 1.15;
}

.split-feature__content > p {
  max-width: 720px;
  margin-top: 24px;
  color: #4d4d4d;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 21.65px);
  line-height: 1.5;
}

.check-grid {
  gap: 18px 28px;
  margin: 34px 0 38px;
}

.check-item {
  color: #252422;
  font-size: 18px;
  font-weight: 600;
}

.check-item__mark {
  width: 32px;
  height: 32px;
  background: rgba(252, 162, 67, 0.16);
  color: #fb8201;
  font-size: 0.95rem;
}

.check-item__icon {
  display: block;
  width: 20px;
  height: 14px;
}

.check-item__icon,
.check-item__icon path {
  fill: none;
}

.check-item__icon path {
  stroke: #edf2f4;
  stroke-width: 2.30847px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-feature .button--accent {
  min-height: 52px;
  padding: 14px 38px;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.insight-card__badge {
  right: 18px;
  bottom: 24px;
  width: min(88%, 420px);
  padding: 22px 24px;
  border-radius: 24px;
}

.pricing-section {
  padding-top: 110px;
  padding-bottom: 40px;
}

.pricing-section .section-heading {
  margin-bottom: 72px;
}

.pricing-grid {
  gap: 30px;
}

.pricing-card--featured {
  transform: translateY(-28px);
  box-shadow: 0 18px 36px rgba(1, 135, 147, 0.18);
}

.pricing-footnote {
  margin-top: 20px;
}

.page-home .stats-bar {
  margin-top: 40px;
  background: linear-gradient(180deg, #fca243 0%, #fb8201 100%);
}

.page-home .stats-bar__grid {
  padding: 28px 0;
}

.page-home .stat-card strong {
  font-size: clamp(2.35rem, 2rem + 1.1vw, 58.936px);
  line-height: 1.08;
}

.page-home .stat-card span {
  margin-top: 6px;
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 21.65px);
  color: rgba(255, 255, 255, 0.94);
}

.contact-section {
  padding-top: 108px;
}

.contact-section .section-heading {
  max-width: 880px;
  margin-bottom: 64px;
}

.contact-section .section-kicker {
  margin-bottom: 12px;
  color: #fb8201;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-section .section-heading h2 {
  color: #252422;
  font-size: clamp(2.8rem, 2.45rem + 1.3vw, 58.936px);
  line-height: 1.15;
}

.contact-section .section-copy {
  max-width: 706px;
  color: #4d4d4d;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 21.65px);
  line-height: 1.5;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 537px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 94px);
  min-height: 760px;
}

.contact-form {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 537px;
  gap: 15px;
  padding: 28.791px;
  border-radius: 16px;
  background: linear-gradient(106deg, #018793 12%, #00b3be 76%);
  box-shadow: 0 18px 40px rgba(4, 92, 103, 0.18);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.16), transparent 34%);
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 2rem + 0.8vw, 44px);
  line-height: 1.25;
}

.contact-form input,
.contact-form textarea {
  min-height: 68px;
  padding: 12px 14px;
  border: 1.2px solid rgba(255, 255, 255, 0.44);
  border-radius: 9.597px;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 21.593px;
}

.contact-form textarea {
  min-height: 141.554px;
  resize: none;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 237px;
  min-height: 65px;
  padding: 8px 12px 8px 28px;
  border: 0;
  border-radius: 43.186px;
  background: #ffffff;
  color: #1d1d1e;
  font-size: 23.992px;
  font-weight: 600;
}

.contact-form__submit-icon {
  display: grid;
  place-items: center;
  width: 42.586px;
  height: 42.586px;
  border-radius: 50%;
  background: rgba(0, 131, 141, 0.12);
  color: #00838d;
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-map {
  min-height: 620px;
  justify-content: flex-end;
}

.contact-map__image {
  width: min(100%, 860px);
}

.testimonials-section {
  padding-top: 98px;
}

.testimonials-section .section-heading {
  margin-bottom: 56px;
}

.testimonials-section .section-kicker {
  margin-bottom: 12px;
  color: #fb8201;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.testimonials-section .section-heading h2 {
  color: #252422;
  font-size: clamp(2.8rem, 2.45rem + 1.3vw, 58.936px);
  line-height: 1.15;
}

.testimonial-slider__viewport {
  padding: 0 4px 10px;
}

.testimonial-slider__track {
  gap: 24px;
}

.testimonial-card {
  margin-top: 25px;
  padding: 48px 26px 16px;
  border: 1px solid #edf1f4;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(11, 29, 36, 0.06);
}

.testimonial-card__quote {
  top: -25px;
  left: 27px;
  width: 49.639px;
  height: 49.639px;
  box-shadow: none;
}

.testimonial-card__quote svg {
  width: 16px;
}

.testimonial-card__stars {
  margin-top: 0;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
}

.testimonial-card p {
  min-height: 68px;
  margin: 14px 0 20px;
  color: #2d2d2d;
  font-size: 14.708px;
  line-height: 22.062px;
}

.testimonial-card__author {
  gap: 11px;
  padding-top: 13px;
}

.testimonial-card__avatar {
  width: 33px;
  height: 33px;
}

.testimonial-card strong {
  font-family: "Manrope", "Inter", sans-serif;
  color: #453232;
  font-size: 12.869px;
}

.testimonial-card span:last-child {
  font-family: "Manrope", "Inter", sans-serif;
  color: #797979;
  font-size: 11.031px;
}

.articles-section {
  padding-top: 96px;
}

.articles-section .section-heading {
  margin-bottom: 56px;
}

.articles-section .section-kicker {
  margin-bottom: 12px;
  color: #fb8201;
  font-family: "Poppins", sans-serif;
  font-size: 19.244px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.articles-section .section-heading h2 {
  color: #252422;
  font-size: clamp(2.6rem, 2.3rem + 1.2vw, 58.936px);
  line-height: 1.15;
}

.article-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(11, 29, 36, 0.08);
}

.article-card__media {
  height: 318px;
  border-radius: 24px 24px 0 0;
}

.article-card__body {
  padding: 18px 18px 22px;
}

.article-card__body h3 {
  color: #252422;
  font-size: 1.35rem;
  line-height: 1.35;
}

.article-card__meta {
  align-items: center;
  margin-top: 16px;
}

.article-card__meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer {
  margin-top: 72px;
  background: linear-gradient(179.459deg, #13575c 1.1048%, #1eadb8 197.1%);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 445px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding: 72px 0 60px;
}

.site-logo--footer img {
  width: 157px;
}

.site-footer__brand p {
  max-width: 445px;
  margin-top: 28px;
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
}

.newsletter-form {
  margin-top: 48px;
  max-width: 450px;
}

.newsletter-form__label {
  margin-bottom: 18px;
  font-size: 28.8px;
  font-weight: 600;
}

.newsletter-form__row {
  grid-template-columns: minmax(0, 1fr) 77.758px;
  border-bottom: 1.2px solid rgba(255, 255, 255, 0.4);
}

.newsletter-form__row input {
  padding: 22px 0 14px;
  font-size: 19.2px;
}

.newsletter-form__row button {
  width: 77.758px;
  height: 76.8px;
  border-radius: 8px;
  background: #29c7d2;
  color: #113e44;
  font-size: 1.35rem;
}

.site-footer__columns {
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 48px 56px;
}

.site-footer__column {
  gap: 18px;
}

.site-footer__column h3 {
  font-family: "Inter", sans-serif;
  font-size: 21.6px;
  font-weight: 700;
}

.site-footer__column a {
  color: #cacdd3;
  font-size: 19.2px;
}

.site-footer__bottom {
  grid-template-columns: minmax(0, 409px) auto auto;
  gap: 24px;
  padding: 19px 0 24px;
  border-top: 1.2px solid rgba(255, 255, 255, 0.4);
}

.site-footer__bottom p,
.site-footer__legal a {
  font-size: 19.2px;
}

.site-footer__legal {
  gap: 14px 27px;
}

.site-footer__social {
  gap: 18px;
}

.site-footer__social a {
  width: 57.6px;
  height: 57.6px;
  border: 1.2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.site-footer__social a svg {
  width: 28.8px;
  height: 28.8px;
}

@media (prefers-reduced-motion: reduce) {
  .logo-strip__track {
    animation: none;
  }
}

@media (max-width: 1280px) {
  .banner-cta__box .button {
    min-width: 0;
  }

  .contact-stage {
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

@media (max-width: 1024px) {
  .page-home .hero__actions {
    gap: 16px;
  }

  .page-home .story__grid,
  .contact-stage,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .page-home .story__photo {
    margin-left: 42px;
  }

  .page-home .story__media::before,
  .page-home .story__photo-accent {
    left: -18px;
  }

  .banner-cta__box {
    padding: 56px 28px 42px;
  }

  .banner-cta__box .button {
    width: 100%;
    max-width: 459px;
    min-height: 64px;
    font-size: 1.25rem;
  }

  .contact-stage {
    gap: 36px;
    min-height: 0;
  }

  .contact-form {
    max-width: none;
  }

  .contact-map {
    min-height: 360px;
    justify-content: center;
  }

  .site-footer__top {
    padding: 60px 0 44px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .logo-strip__box {
    min-height: 0;
    padding: 30px 18px 34px;
  }

  .logo-strip__box p {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .page-home .hero__content p {
    font-size: 1rem;
  }

  .page-home .hero__actions .button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .page-home .story__media {
    padding: 36px 0 48px;
  }

  .page-home .story__media::before {
    top: 38px;
    width: 72px;
    min-height: 220px;
  }

  .page-home .story__photo-accent {
    width: min(100%, 220px);
    height: 56px;
  }

  .page-home .story__photo {
    width: min(100%, 320px);
    margin-left: 24px;
  }

  .button--section-link {
    width: 100%;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 34px 20px;
  }

  .services-overview__tabs {
    gap: 24px;
    margin-bottom: 26px;
  }

  .services-overview__tab {
    padding-bottom: 12px;
    font-size: 15px;
  }

  .feature-card p {
    font-size: 1rem;
  }

  .banner-cta__box .button {
    font-size: 1rem;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form h3 {
    font-size: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form__submit {
    width: 100%;
    justify-content: space-between;
    font-size: 1.15rem;
  }

  .testimonial-slider__track {
    gap: 20px;
  }

  .testimonial-card {
    padding: 44px 20px 16px;
  }

  .article-card__body {
    padding: 18px 16px 20px;
  }

  .site-footer__top {
    padding: 46px 0 34px;
  }

  .newsletter-form__label {
    font-size: 1.3rem;
  }

  .newsletter-form__row button {
    width: 58px;
    height: 58px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__column a,
  .site-footer__bottom p,
  .site-footer__legal a {
    font-size: 0.98rem;
  }

  .site-footer__social a {
    width: 48px;
    height: 48px;
  }

  .site-footer__social a svg {
    width: 22px;
    height: 22px;
  }
}
