style.css :root {
  --bg: #071521;
  --bg-soft: #102338;
  --text: #eaf0f8;
  --muted: rgba(234, 240, 248, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.04);
  --accent: #4f7cff;
  --accent2: #7c3aed;
  --accent3: #3dd9c8;
  --light: #f5f7fb;
  --surface: #ffffff;
  --surface-strong: #eef3ff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Gilroy, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background-color: white;
}
a {
  transition: all 0.2s ease;
}

/* Layout */
.container {
  width: min(1300px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
/*HEADER*/

.top {
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: 100%;
  position: fixed;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Make .nav a positioning context so the hamburger can be placed at top-right */
.nav {
  position: relative;
}

/* Brand */

.brand {
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__name {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
}

.brand__meta {
  margin-top: 6px;
  color: rgba(234, 240, 248, 0.78);
  font-size: 15px;
  opacity: 0.85;
}
.section-header {
  margin-bottom: 1.2rem;
}
.team-section .section-header {
  margin-bottom: 1.6rem;
  text-align: center;
}
.team-section .section-header .left {
  margin-top: 1.2rem;
}
.section-header .left h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
  margin: 0;
  margin-top: 6px;
  color: rgba(234, 240, 248, 0.78);
  font-size: 12px;
  opacity: 0.85;
}

/* Navigation */

.links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links a {
  color: rgba(234, 240, 248, 0.78);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  font-weight: 500;
  padding: 0.2rem;
}

.links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .nav {
    padding-right: 3.2rem;
  }
}
.nav-cta {
  color: rgba(234, 240, 248, 0.78);
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
}

/* Underline indicator for top navigation */
.links a {
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: white;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1);
  border-radius: 1px;
  opacity: 0.95;
}
.links a:hover::after,
.links a.active::after {
  transform: scaleX(1);
}

/* HAMBURGER*/

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-toggle {
  position: absolute;
  right: 0.5rem;
  z-index: 1100;
}

.nav-toggle .bar {
  width: 21px;
  height: 2px;
  background: #fff;
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO*/

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 2.8rem 2.8rem;
  /* background: black; */
  background:
    radial-gradient(
      650px 450px at 0% 15%,
      rgba(30, 90, 255, 0.3),
      transparent 70%
    ),
    radial-gradient(
      650px 450px at 100% 15%,
      rgba(30, 90, 255, 0.3),
      transparent 70%
    ),
    linear-gradient(180deg, #03070c 0%, #07111c 50%, #03070c 100%);
  padding: 70px 0;
}

/* Hero grid */

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.hero__title {
  color: #fff;
  font-size: clamp(42px, 5vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 700;
  max-width: 900px;
}

/* Left content */

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(234, 240, 248, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Title */

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

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero__lead {
  margin-top: 24px;
  color: rgba(234, 240, 248, 0.78);
  max-width: 600px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero__actions {
  margin-top: 32px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  background: #2046db;
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 22px 38px rgba(79, 124, 255, 0.32);
}

/* Phone */

.phone {
  color: rgba(234, 240, 248, 0.75);
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;

  position: relative;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-wrap:hover .hero__image {
  transform: scale(1.04);
}

.project-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.project-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    margin-top: 20px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}

.team-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image {
    margin-top: 18px;
  }
}

.hero__image-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__image-content strong {
  display: block;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__image-content strong span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
}

/*TABLET*/

@media (max-width: 1050px) {
  .links {
    gap: 12px;
  }

  .links a {
    font-size: 14px;
    padding: 1.1rem;
  }

  .hero {
    padding: 70px 0;
  }

  .hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.8fr);
    margin-top: 6rem;
    gap: 40px;
  }

  .hero__title {
    font-size: clamp(42px, 6vw, 65px);
  }
}

@media (max-width: 850px) {
  .nav-toggle {
    display: flex;
  }

  .links {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: black;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
    border-radius: 0 0 1.25rem 1.25rem;
    box-shadow: 0 8px 20px rgba(2, 12, 22, 0.45);
    align-items: flex-start;
  }

  .links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .brand__name {
    font-size: 1.15rem;
  }

  .brand__meta {
    font-size: 10px;
    margin-top: 4px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .hero__eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .phone {
    text-align: center;
    width: 100%;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .hero__image-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .hero__image-label {
    font-size: 8px;
    margin-bottom: 8px;
  }

  .hero__image-content strong {
    font-size: 27px;
  }
}

/* FIRST SECTION MARKETING  */

.marketing-wrapper {
  width: 100%;
  background: #fff;
  padding: 5rem 2rem;
  box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.12);
}

.marketing-head {
  margin-bottom: 4rem;
}

.marketing-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  margin: auto;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-align: center;
}

.marketing-head .head-sub {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  font-weight: 400;
  color: #000;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  /* padding: 1.25rem; */
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

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

  border-color: #c8c8c8;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.09),
    0 4px 10px rgba(0, 0, 0, 0.04);
}

.insight-card__image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #f7f7f7;
  /* border-radius: 1.15rem; */
  overflow: hidden;
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.08);
}

.insight-card__content {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  flex: 1;
}

.insight-card__content h3 {
  margin: 0 0 0.8rem;

  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;

  letter-spacing: -0.015em;

  color: #000;
}

.insight-card__content p {
  margin: 0;

  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 400;

  color: #2f4052;
}

@media (max-width: 1100px) {
  .marketing-wrapper {
    padding: 4rem 1.5rem;
  }

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

  .insight-card__image {
    height: 210px;
  }
}

@media (max-width: 680px) {
  .marketing-wrapper {
    padding: 3rem 1rem;
  }

  .marketing-head {
    margin-bottom: 2.5rem;
  }

  .marketing-head h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .marketing-head .head-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }

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

  .insight-card {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .insight-card__image {
    height: 190px;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
  }

  .insight-card__content h3 {
    font-size: 1.1rem;
  }

  .insight-card__content p {
    font-size: 0.92rem;
  }
}

@media (max-width: 400px) {
  .marketing-wrapper {
    padding: 2.5rem 0.8rem;
  }

  .marketing-head h2 {
    font-size: 1.55rem;
  }

  .marketing-head .head-sub {
    font-size: 0.9rem;
  }

  .insight-card__image {
    height: 170px;
  }
}

/* Intro section */
.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: flex-start;
}
.section__title {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}
.section__title h2 {
  margin: 0 auto 18px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  color: #0f172a;
  max-width: 720px;
}
.section__title .muted {
  margin: 0 auto;
  max-width: 720px;
}
.muted {
  color: rgba(15, 23, 42, 0.72);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px 36px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.mini {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mini__title {
  margin: 0;
  padding: 0 0 8px 0;
  font-size: clamp(0.95rem, 1.3vw, 2rem);
  line-height: 1.38;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #0f172a;
}

.mini__content {
  flex: 1 1 auto;
}

.mini__icon {
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
}
.mini__icon img {
  width: 72px;
  height: auto;
  display: block;
}
.mini p {
  margin: 0;
  line-height: 1.75;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: rgba(15, 23, 42, 0.72);
}
.mini__num {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.12),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(79, 124, 255, 0.14);
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.marketing {
  background: none;
}

/*SERVICES SECTION NEW*/

.services-wrap {
  width: 100%;
  background: white;
  padding: 3rem 2.2rem 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Make media elements responsive to avoid accidental overflow */
img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.services-wrap::before,
.services-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(42px);
  opacity: 0.9;
}

.services-wrap::before {
  right: -40px;
  top: -40px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(79, 124, 255, 0.36),
    rgba(124, 58, 237, 0.22) 45%,
    rgba(124, 58, 237, 0.06) 60%
  );
  animation: flareDrift 12s linear infinite alternate;
  z-index: -1;
}

.services-wrap::after {
  left: -168px;
  bottom: 104px;
  width: 460px;
  height: 437px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(7, 21, 133, 0.28),
    rgba(44, 94, 239, 0.12) 45%,
    rgba(5, 48, 170, 0.04) 60%
  );
  animation: flareDrift 18s linear infinite alternate-reverse;
  z-index: -1;
}

.services-header {
  margin-bottom: 2.8rem;
  margin: auto;
  text-align: Center;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  line-height: 1.2;
  margin: auto;
  text-align: center;
}

.services-header p {
  font-size: 1.1rem;
  color: black;
  max-width: 780px;
  line-height: 1.6;
  margin: auto;
  text-align: center;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-item {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 0.8rem 1.6rem 0.8rem 1.8rem;
  box-shadow:
    0 8px 20px rgba(0, 20, 40, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.02);
  transition:
    box-shadow 0.2s,
    transform 0.1s;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8ebef;
  box-shadow: 0 16px 32px -8px rgba(0, 20, 40, 0.12);
}

.service-item:hover {
  box-shadow: 0 16px 32px -8px rgba(0, 20, 40, 0.12);
}

.service-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: black;
  letter-spacing: -0.01em;
}

.service-item__title h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: black;
  line-height: 1.3;
}

.service-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  padding: 5px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item__icon img {
  display: block;
  width: 40px;
  height: 50px;
  stroke-width: 1.8;
  fill: none;
}

.service-item p {
  font-size: 0.95rem;
  color: #3f5367;
  line-height: 1.6;
  margin-top: 0.1rem;
  padding-right: 0.2rem;
}

/* responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .services-wrap {
    padding: 2.5rem 1.8rem 3rem;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .services-wrap {
    padding: 2rem 1.2rem 2.5rem;
  }
  .services-header h2 {
    font-size: 1.8rem;
  }
  .services-header p {
    font-size: 0.95rem;
  }
  .service-item {
    padding: 1.5rem 1.4rem 1.5rem 1.5rem;
  }
  .service-item__title {
    font-size: 1rem;
  }
  .service-item__title h3 {
    font-size: 1.2rem;
  }
  .service-item p {
    font-size: 0.92rem;
  }
  .service-item__icon {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
  .service-item__icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .services-header h2 {
    font-size: 1.5rem;
  }
  .service-item__title {
    flex-wrap: wrap;
  }
  .service-item__icon {
    margin-left: auto;
  }
}

/* helper */
.muted {
  color: #3f5367;
}
.text-muted {
  color: #3f5367;
}
/*END OF SERVICES*/

/* PROCESS SECTION*/
/* =========================================================
   SECTORS SECTION
========================================================= */

.sectors-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 4rem 2rem 5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 20, 40, 0.08);
  overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.sectors-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.sectors-head h2 {
  margin: 0 0 0.7rem;
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.sectors-intro {
  max-width: 680px;
  margin: 0 auto;
  color: #3f5367;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================================
   MAIN 3 / 1 / 3 LAYOUT

   LEFT              CENTER              RIGHT

   CARD 01                               CARD 02

   CARD 03             IMAGE             CARD 04

   CARD 05                               CARD 06

========================================================= */

.sectors-layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    370px
    minmax(0, 1fr);

  grid-template-rows: repeat(3, minmax(150px, auto));

  column-gap: 3.5rem;
  row-gap: 1.5rem;

  align-items: stretch;
}

/* =========================================================
   LEFT COLUMN
========================================================= */

.sectors-column--left {
  grid-column: 1;
  grid-row: 1 / 4;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 1.5rem;
}

/* =========================================================
   RIGHT COLUMN
========================================================= */

.sectors-column--right {
  grid-column: 3;
  grid-row: 1 / 4;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 1.5rem;
}

.sectors-center {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.sectors-center__image {
  width: 100%;
  animation: centerImageIn 0.8s ease 0.15s forwards;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.sectors-center__image:hover {
  transform: translateY(-8px);
}

.sectors-center__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sectors-center__image:hover img {
  transform: scale(1.04);
}

.sector-card {
  position: relative;
  width: 100%;
  min-height: 150px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e3e8ed;
  border-radius: 1.35rem;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.035);
  opacity: 0;
  animation: sectorCardIn 0.65s ease forwards;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: visible;
}

.sector-card--left:hover {
  transform: translateX(7px) translateY(-4px);
  border-color: #ccd8e2;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.sector-card--left::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  top: 50%;
  width: 3.5rem;
  height: 1px;
  background: #dce5ed;
  transform: translateY(-50%);
  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.sector-card--left:hover::after {
  width: 4.2rem;
  background: #aebfce;
}

.sector-card--right {
  flex-direction: row-reverse;
  text-align: right;
}

.sector-card--right .sector-card__content {
  text-align: right;
}

.sector-card--right:hover {
  transform: translateX(-7px) translateY(-4px);

  border-color: #ccd8e2;

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.sector-card--right::after {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 50%;
  width: 3.5rem;
  height: 1px;
  background: #dce5ed;
  transform: translateY(-50%);
  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.sector-card--right:hover::after {
  width: 4.2rem;
  background: #aebfce;
}

.sector-number {
  width: 43px;
  height: 43px;
  min-width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.sector-card:hover .sector-number {
  background: #0f2d47;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(15, 45, 71, 0.2);
}

.sector-card__content {
  flex: 1;
  min-width: 0;
}

.sector-card h3 {
  margin: 0 0 0.55rem;
  color: #000000;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color 0.25s ease;
}

.sector-card:hover h3 {
  color: #00427a;
}

.sector-card p {
  margin: 0;
  color: #3f5367;
  font-size: 0.86rem;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.sector-card:hover p {
  color: #2e445b;
}

.sectors-column--left .sector-card:nth-child(1) {
  animation-delay: 0.1s;
}

.sectors-column--left .sector-card:nth-child(2) {
  animation-delay: 0.2s;
}

.sectors-column--left .sector-card:nth-child(3) {
  animation-delay: 0.3s;
}

.sectors-column--right .sector-card:nth-child(1) {
  animation-delay: 0.15s;
}

.sectors-column--right .sector-card:nth-child(2) {
  animation-delay: 0.25s;
}

.sectors-column--right .sector-card:nth-child(3) {
  animation-delay: 0.35s;
}

@keyframes sectorCardIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes centerImageIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }

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

@media (max-width: 1150px) {
  .sectors-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sectors-layout {
    grid-template-columns:
      minmax(0, 1fr)
      310px
      minmax(0, 1fr);

    column-gap: 2rem;
  }

  .sectors-center__image {
    max-width: 300px;
    height: 470px;
  }

  .sector-card {
    padding: 1.2rem;
    min-height: 145px;
  }

  .sector-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .sector-card h3 {
    font-size: 0.95rem;
  }

  .sector-card p {
    font-size: 0.81rem;
  }

  .sector-card--left::after {
    right: -2rem;
    width: 2rem;
  }

  .sector-card--right::after {
    left: -2rem;
    width: 2rem;
  }
}

@media (max-width: 900px) {
  .sectors-wrapper {
    padding: 3rem 1.2rem 4rem;
  }

  .sectors-head {
    margin-bottom: 3rem;
  }

  .sectors-head h2 {
    font-size: 2rem;
  }

  .sectors-intro {
    font-size: 0.95rem;
  }

  .sectors-layout {
    grid-template-columns:
      minmax(0, 1fr)
      250px
      minmax(0, 1fr);
    column-gap: 1.2rem;
    row-gap: 1rem;
  }

  .sectors-center__image {
    max-width: 240px;
    height: 400px;
    border-radius: 1.6rem;
  }

  .sectors-center::before {
    width: 280px;
    height: 280px;
  }

  .sectors-column {
    gap: 1rem;
  }

  .sector-card {
    min-height: 130px;

    padding: 1rem;

    gap: 0.7rem;

    border-radius: 1.1rem;
  }

  .sector-number {
    width: 35px;
    height: 35px;
    min-width: 35px;

    font-size: 0.72rem;
  }

  .sector-card h3 {
    font-size: 0.86rem;
  }

  .sector-card p {
    font-size: 0.75rem;

    line-height: 1.5;
  }

  .sector-card--left::after,
  .sector-card--right::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .sectors-wrapper {
    padding: 2.5rem 1rem 3rem;
  }

  .sectors-head {
    margin-bottom: 2.2rem;
  }

  .sectors-head h2 {
    font-size: 1.75rem;
  }

  .sectors-intro {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .sectors-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .sectors-center {
    grid-column: 1 / -1;
    grid-row: 1;
    height: auto;
    margin-bottom: 0.7rem;
  }

  .sectors-center__image {
    width: 65%;
    max-width: 330px;
    height: 340px;
    border-radius: 1.5rem;
  }

  .sectors-center::before {
    width: 330px;
    height: 330px;
  }

  .sectors-column {
    display: contents;
  }

  .sectors-column--left .sector-card:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .sectors-column--right .sector-card:nth-child(1) {
    grid-column: 2;
    grid-row: 2;
  }

  .sectors-column--left .sector-card:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }

  .sectors-column--right .sector-card:nth-child(2) {
    grid-column: 2;
    grid-row: 3;
  }

  .sectors-column--left .sector-card:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
  }

  .sectors-column--right .sector-card:nth-child(3) {
    grid-column: 2;
    grid-row: 4;
  }

  .sector-card {
    min-height: 150px;
    padding: 1rem;
    flex-direction: column !important;
    text-align: left !important;
    gap: 0.7rem;
  }

  .sector-card__content {
    width: 100%;
  }

  .sector-card--right .sector-card__content {
    text-align: left;
  }

  .sector-card h3 {
    font-size: 0.9rem;
  }

  .sector-card p {
    font-size: 0.78rem;
  }

  .sector-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .sector-card--left:hover,
  .sector-card--right:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 520px) {
  .sectors-wrapper {
    padding: 2rem 0.9rem 2.8rem;
  }

  .sectors-head h2 {
    font-size: 1.55rem;
  }

  .sectors-intro {
    font-size: 0.86rem;
  }

  .sectors-layout {
    gap: 0.8rem;
  }

  .sectors-center__image {
    width: 78%;
    height: 300px;

    border-radius: 1.3rem;
  }

  .sectors-center::before {
    width: 280px;
    height: 280px;
  }

  .sector-card {
    min-height: 145px;

    padding: 0.9rem;

    border-radius: 1rem;
  }

  .sector-number {
    width: 32px;
    height: 32px;
    min-width: 32px;

    font-size: 0.68rem;
  }

  .sector-card h3 {
    font-size: 0.82rem;
  }

  .sector-card p {
    font-size: 0.72rem;

    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .sectors-wrapper {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .sectors-head h2 {
    font-size: 1.4rem;
  }

  .sectors-intro {
    font-size: 0.8rem;
  }

  .sectors-layout {
    display: flex;

    flex-direction: column;

    gap: 0.9rem;
  }

  .sectors-center {
    order: -1;

    width: 100%;

    margin-bottom: 0.5rem;
  }

  .sectors-center__image {
    width: 85%;

    height: 290px;
  }

  .sectors-column {
    display: contents;
  }

  .sector-card {
    width: 100%;
    min-height: auto;
    padding: 1rem;
    flex-direction: row !important;
    text-align: left !important;
  }

  .sector-card--right .sector-card__content {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sector-card,
  .sectors-center__image {
    animation: none;
    opacity: 1;
  }

  .sector-card,
  .sector-number,
  .sectors-center__image,
  .sectors-center__image img {
    transition: none;
  }
}
/* END OF PROCESS SECTION*/

/*TRADE SECTION*/
.trade-wrap {
  width: 100%;
  background: black;
  padding: 3rem 2.5rem 3.8rem;
}

.trade-head {
  margin-bottom: 2.8rem;
  color: white;
}

.trade-head h2 {
  margin: auto;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  text-align: center;
}

.trade-head p {
  text-align: center;
  margin: auto;
  font-size: 1rem;
  margin-top: 1rem;
  width: 100%;
  max-width: fit-content;
  color: white;
}

.trade-head .trade-sub {
  font-size: 1rem;
  color: white;
  max-width: 700px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.2rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 0.4rem 0.2rem 0.8rem 0;
  border-bottom: 1px solid #eef4fa;
  transition:
    border-color 0.2s,
    transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.05s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.12s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.19s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  border-bottom-color: #b6d0e8;
  transform: translateX(4px);
}

/* icon circle */
.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.feature-item:hover .feature-icon {
  /* background: #1a3d5c; */
  box-shadow: 0 6px 14px rgba(22, 78, 130, 0.18);
  transform: scale(1.02);
}

.feature-icon img {
  width: 35px;
  height: 35px;
  stroke: #1a3d5c;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.25s;
}

.feature-item:hover .feature-icon img {
  stroke: #ffffff;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.feature-item:hover .feature-text h3 {
  /* color: #00427a; */
  color: white;
}

.feature-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  max-width: 520px;
  transition: color 0.2s;
}

.feature-item:hover .feature-text p {
  /* color: #2e445b; */
  color: white;
}

.muted {
  /* color: #3f5367; */
  color: white;
}

/* responsive  */
@media (max-width: 920px) {
  .trade-wrap {
    padding: 2.5rem 1.8rem 3rem;
  }
  .trade-head h2 {
    font-size: 2rem;
  }
  .feature-grid {
    gap: 1.6rem 1.8rem;
  }
  .feature-text h3 {
    font-size: 1rem;
  }
  .feature-text p {
    font-size: 0.9rem;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .trade-wrap {
    padding: 2rem 1.2rem 2.5rem;
  }
  .trade-head h2 {
    font-size: 1.7rem;
  }
  .trade-head .trade-sub {
    font-size: 0.95rem;
  }
  .feature-item {
    padding: 0.6rem 0.2rem 0.8rem 0;
    gap: 1rem;
    border-bottom: 1px solid #eef4fa;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .feature-text h3 {
    font-size: 0.98rem;
  }
  .feature-text p {
    font-size: 0.88rem;
  }
  .feature-item:hover {
    transform: translateX(0);
  }
}

@media (max-width: 420px) {
  .trade-wrap {
    padding: 1.5rem 0.9rem 2rem;
  }
  .trade-head h2 {
    font-size: 1.4rem;
  }
  .feature-item {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  .feature-text h3 {
    font-size: 0.95rem;
  }
  .feature-text p {
    font-size: 0.85rem;
  }
}
/*END OF TRADE SECTION*/

/*PROJECT RUN SECTION */
.project-section {
  max-width: 1300px;
  margin: auto;
  width: 100%;
  padding-top: 3rem;
  transition: 0.2s;
}

/* header */
.project-section-header {
  margin: auto;
  margin-bottom: 2.8rem;
  text-align: center;
}

.project-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  line-height: 1.2;
  margin: auto;
  text-align: center;
}

.section-header p {
  margin: auto;
  font-size: 1.1rem;
  color: black;
  max-width: 720px;
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  text-align: center;
}

/* grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.8rem;
  margin-top: 0.8rem;
}

/* center a grouped row inside the steps grid */
.steps-row {
  grid-column: 1 / -1; /* span full width of the grid */
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  align-items: flex-start;
}

/* card step */
.step-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem 2.6rem 1.8rem;
  border: 1px solid #ede8e2;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

.step-card:hover {
  transform: translateY(-4px);
  /* border-color: #cdc4ba; */
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

/* step number */
.step-number {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: black;
  background: white;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  margin-bottom: 1.2rem;
  border: 1px solid #e0d8d0;
}

.step-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: #151515;
}

.step-card h3 {
  display: inline-block;
  padding-right: 4.8rem;
  margin-top: 0;
  vertical-align: middle;
}

.step-card p {
  color: black;
  font-size: 0.98rem;
  line-height: 1.5;
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.8rem;
  width: 3rem;
  height: 3px;
  background: white;
  border-radius: 10px;
  opacity: 0.4;
  transition: 0.2s;
}

.step-card:hover::after {
  width: 5rem;
  background: #a39284;
  opacity: 0.6;
}

/* responsive touches */
@media (max-width: 700px) {
  .project-section {
    padding: 2rem 1.2rem;
    border-radius: 1.8rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .steps-row {
    display: block;
  }
  .step-card {
    padding: 1.6rem 1.2rem;
  }

  .step-icon {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 0.6rem;
  }

  .step-card h3 {
    padding-right: 0;
  }
}

@media (min-width: 701px) and (max-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 3rem;
  height: 3rem;
  stroke: black;
  stroke-width: 1.6;
  fill: none;
}

.small-note {
  font-size: 0.9rem;
  color: #6f6962;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid #eae3dc;
  text-align: right;
}
/*END OF PROJECT SECTION */

/* WORKING WITH US SECTION */
.ways-section {
  margin: auto;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 1300px;
}

/* header */
.ways-section-header {
  margin: auto;
  margin-bottom: 2.8rem;
  text-align: center;
}

.ways-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  margin: auto;
  text-align: center;
}

.section-header h2 svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: #1a1a1a;
  stroke-width: 1.8;
  fill: none;
}

.ways-section-header p {
  text-align: center;
  margin: auto;
  font-size: 1rem;
  color: black;
  max-width: 800px;
  margin-top: 0.6rem;
  width: 100%;
  max-width: 60%;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 0.5rem;
}

.ways-grid {
  position: relative;
}

.way-card {
  background: white;
  border-radius: 1.8rem;
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid #d3d3d3;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
}

.way-card:hover {
  transform: translateY(-5px);
  border-color: #cdc4ba;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.way-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.way-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.way-card:hover .way-icon {
  transform: scale(1.05);
}

.way-icon img {
  width: 3rem;
  height: 3rem;
  stroke: #2b2723;
  stroke-width: 1.8;
  fill: none;
}

.way-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #151515;
}

.way-card p {
  color: black;
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.way-card.featured {
  background: white;
  border-color: #ede8e2;
}

.way-card.featured .way-icon {
  background: white;
}

/* responsive */
@media (max-width: 780px) {
  .ways-section {
    padding: 2rem 1.2rem;
    border-radius: 1.8rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .ways-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .way-card {
    padding: 1.6rem 1.2rem;
  }

  .ways-grid::before {
    display: none;
  }
  .ways-section-header p {
    max-width: 100%;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .ways-grid {
    gap: 1.4rem;
  }
  .way-card {
    padding: 1.8rem 1.4rem;
  }
  .ways-section-header p {
    max-width: 100%;
  }
}

/* flare animation */
@keyframes flareDrift {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    transform: translate(-46%, -54%) scale(1.06) rotate(4deg);
    opacity: 0.95;
    filter: blur(4px);
  }
  100% {
    transform: translate(-54%, -46%) scale(1) rotate(-4deg);
    opacity: 1;
    filter: blur(0px);
  }
}

/* END OF WORKING WITH US SECTION */

/* SMALL TEAM SECTION */
.team-section {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  padding: 3.5rem 3rem;
  background: #fbfdff;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  position: relative;
}
.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(42px);
  opacity: 0.9;
}
.team-section::before {
  right: -40px;
  top: -40px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(79, 124, 255, 0.36),
    rgba(124, 58, 237, 0.22) 45%,
    rgba(124, 58, 237, 0.06) 60%
  );
  animation: flareDrift 12s linear infinite alternate;
}
.team-section::after {
  left: -36px;
  bottom: -36px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(61, 217, 200, 0.28),
    rgba(79, 124, 255, 0.12) 45%,
    rgba(79, 124, 255, 0.04) 60%
  );
  animation: flareDrift 18s linear infinite alternate-reverse;
}
@keyframes flareDrift {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }
  to {
    transform: translateY(20px) scale(1.04);
    opacity: 0.7;
  }
}
.team-section .section-header,
.team-section .content-section {
  position: relative;
  z-index: 1;
}

.team-section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.team-section-header .center h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-right .badge-overlay {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.header-right .badge-overlay .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #6fcf97;
  border-radius: 50%;
  display: inline-block;
}
.header-right .placeholder-svg {
  max-width: 80px;
  height: auto;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "list visual";
  gap: 3rem;
  align-items: center;
}
.content-section .items-list {
  grid-area: list;
}
.content-section .right {
  grid-area: visual;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 0.6rem;
}

.item-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0.8rem 0.9rem 0;
  border-bottom: 1px solid rgba(14, 22, 30, 0.04);
  transition:
    transform 220ms ease,
    background 220ms ease;
  opacity: 0;
  animation: slideUpFade 560ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
.item-row:nth-child(1) {
  animation-delay: 0.08s;
}
.item-row:nth-child(2) {
  animation-delay: 0.16s;
}
.item-row:nth-child(3) {
  animation-delay: 0.24s;
}
.item-row:nth-child(4) {
  animation-delay: 0.32s;
}
.item-row:last-child {
  border-bottom: none;
}
.item-row:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0)
  );
  padding-left: 0.6rem;
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.item-number {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  min-width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f7cff, #7c3aed);
  box-shadow: 0 8px 24px rgba(79, 124, 255, 0.12);
  flex-shrink: 0;
  /* extra nudge to align with h4 baseline: margin-top so it sits centered with the heading */
  margin-top: 0.1rem;
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.15rem 0;
  line-height: 1.3;
}
.item-content p {
  color: black;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* right image */
.right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  display: block;
}

/* responsiveness */
@media (max-width: 1024px) {
  .team-section {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 820px) {
  .team-section {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
  }
  .section-header .left h2 {
    font-size: 2.4rem;
  }
  .content-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas: "visual" "list";
  }
  .right {
    min-height: 240px;
    padding: 1.5rem;
    order: 0;
  }
  .right img {
    max-height: 240px;
    object-fit: cover;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-right {
    width: 100%;
    justify-content: flex-start;
  }
  .team-section::before,
  .team-section::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .team-section {
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
  }
  .section-header .left h2 {
    font-size: 1.8rem;
  }
  .item-row {
    padding: 0.6rem 0;
    gap: 0.8rem;
  }
  .item-number {
    font-size: 1.2rem;
    min-width: 2.8rem;
    height: 2.8rem;
  }
  .item-content h4 {
    font-size: 0.95rem;
  }
  .item-content p {
    font-size: 0.88rem;
  }
  .right {
    min-height: 180px;
    padding: 1rem;
  }
  .right img {
    max-height: 180px;
  }
  .header-right .badge-overlay {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
}
@media (min-width: 1200px) {
  .team-section {
    padding: 4rem 3.75rem;
  }
}
/* END OF SMALL TEAM SECTION */

/* WHY MATTERS SECTION */

.why-matters {
  margin-top: 90px;
}

.why-card {
  border-radius: 32px;
  border: 1px solid var(--color-grey-93, #eaecf0);
  background: linear-gradient(
    318deg,
    #080323 58.22%,
    #14056d 76.48%,
    #090333 95.66%
  );
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  /* gap: 48px; */
  overflow: hidden;
  position: relative;
}

.why-text {
  z-index: 2;
  padding: 60px;
  max-width: 100%;
}

.why-text h2 {
  color: #fff;
  font-family: Gilroy;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}

.why-text p {
  padding-top: 12px;
  color: #d9d9d9;
  font-family: Gilroy;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}

.why-img-slot-mobile {
  display: none;
}

/* IMAGE CONTAINER */
.why-img-slot {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* overflow: hidden; */
}

/* IMAGE */
.why-img-slot img {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 40px;
  border-radius: 999px;
  background: #fff;
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 600;
  color: #190787;
  margin-top: 30px;
  cursor: pointer;
}

.btn-white-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .why-card {
    grid-template-columns: 1fr;
  }

  .why-text h2 {
    font-size: 30px;
  }

  .why-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .why-card {
    grid-template-columns: 1fr;
    text-align: center;
    display: block;
  }

  .why-img-slot {
    order: 0;
  }

  .why-text {
    padding: 32px;
  }

  .why-img-slot-mobile {
    min-height: auto;
    /* display: block; */
  }

  .why-img-slot {
    display: none;
  }

  .btn-white {
    font-size: 18px;
    display: block;
    text-align: left;
    margin: auto;
    margin-top: 2rem;
  }

  .why-text h2 {
    font-size: 1.5rem;
    text-align: left;
  }
  .why-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-text h2 {
    font-size: 24px;
  }

  .why-text p {
    font-size: 14px;
  }

  .why-card {
    margin-bottom: 30px;
  }

  .btn-white-mobile {
    display: flex;
    min-height: var(--height-52, 52px);
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 18px 40px 0 rgba(0, 0, 0, 0.24);
    border: none;
    color: #190787;
    margin: auto;
    width: 89%;
  }

  .btn-white {
    display: none;
  }

  .why-img-slot-mobile {
    display: none;
  }
}

.hiw-wrapper {
  position: relative;
  overflow: hidden;
}
/* END OF WHY MATTERS SECTION */
/*cta section*/
.cta-section {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 2.25rem 0;
  text-align: center;
}

.cta-section > .container {
  background: #1a1a1a;
  border-radius: 2.2rem;
  padding: 3rem 2.2rem;
  max-width: 1316px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -10px rgba(0, 20, 40, 0.12);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 7.5rem;
  align-items: center;
  text-align: left;
}

.cta-grid__left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-grid__left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.cta-grid__left p strong {
  color: #ffffff;
  font-weight: 600;
}

.cta-grid__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__image {
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  padding: 0.5rem;
}

@media (max-width: 820px) {
  .cta-section {
    padding: 1.5rem 0;
    border-radius: 2rem;
  }
  .cta-section > .container {
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }
  .cta-grid__left p {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta-grid__left h2 {
    font-size: 1.8rem;
  }
  .cta__image {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cta-section > .container {
    padding: 1.5rem 1rem;
  }
  .cta-grid__left h2 {
    font-size: 1.5rem;
  }
  .cta-grid__left p {
    font-size: 0.95rem;
  }
  .cta__image {
    max-width: 200px;
  }
}
/*end of cta section*/

/* FAQ SECTION*/
.faq-section {
  margin: auto;
  max-width: 1300px;
  width: 100%;
  padding: 3.5rem 3rem;
}

/* header */
.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
  text-align: center;
  margin: auto;
}

.section-header .count-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6f6962;
  background: #f0ece8;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  border: 1px solid #e0d8d0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border-bottom: 1px solid #efebe7;
  transition: 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.2rem;
  cursor: pointer;
  gap: 1.5rem;
  user-select: none;
  transition: 0.15s;
}

.faq-question:hover {
  padding-left: 0.4rem;
}

.faq-question .q-text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.faq-question .plus-btn {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #f0ece8;
  border: 1px solid #e0d8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: #3d3731;
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}

.faq-question .plus-btn:hover {
  background: #e0d8d0;
  border-color: #cbc1b6;
}

.faq-item.active .plus-btn {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.35s ease;
  padding: 0 0.2rem;
  color: #3d3731;
  line-height: 1.65;
  font-size: 0.97rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 0.2rem 1.6rem 0.2rem;
}

.faq-answer p {
  margin-bottom: 0.3rem;
  padding-left: 1.8rem;
  border-left: 3px solid #e0d8d0;
  padding-left: 1.2rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* responsive */
@media (max-width: 700px) {
  .faq-section {
    padding: 2rem 1.2rem;
    border-radius: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .faq-question {
    padding: 0.8rem 0.2rem;
  }
  .faq-question h3 {
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding-left: 0.8rem;
    font-size: 0.92rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 0.2rem 1.2rem 0.2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
}
/* END OF FAQ SECTION */
.footer {
  width: 100%;
  background: black;
  border-radius: 0;
  padding: 3rem 2.5rem 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 20, 40, 0.08);
  transition: padding 0.2s;
  margin-top: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 2.28rem 2.28rem 0 0;
}

.footer__grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.footer__copy {
  flex: 1;
}

.footer__h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.address strong {
  color: rgba(255, 255, 255, 0.9);
}

.formCard {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.6rem;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.formCard__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.field {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.field:last-of-type {
  border-bottom: none;
}

.field .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field .value {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: right;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/*  responsive  */
@media (max-width: 1024px) {
  .cta-section > .container {
    padding: 2.6rem 1.6rem;
    border-radius: 1.6rem 1.6rem 1.6rem 1.6rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .footer {
    padding: 2.5rem 2rem 2rem;
    border-radius: 2rem 2rem 0 0;
  }
}

@media (max-width: 820px) {
  .footer__grid {
    flex-direction: column;
    gap: 2rem;
  }
  .formCard {
    flex: 1;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 0.98rem;
  }
  .footer__h2 {
    font-size: 1.4rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .footer__h2 {
    font-size: clamp(1rem, 6.5vw, 1.3rem);
    line-height: 1.15;
    word-break: break-word;
  }
}

@media (max-width: 550px) {
  .cta-section > .container {
    padding: 1.6rem 1rem;
    border-radius: 1.1rem 1.1rem 1.6rem 1.6rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 0.92rem;
  }
  .footer {
    padding: 2rem 1.2rem 1.5rem;
    border-radius: 1.6rem 1.6rem 0 0;
  }
  .footer__h2 {
    font-size: 1.2rem;
  }
  .formCard {
    padding: 1.4rem 1.2rem;
  }
  .field {
    flex-direction: column;
    gap: 0.2rem;
  }
  .field .value {
    text-align: left;
  }
  .footer__bottom {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .cta-section h2 {
    font-size: 1.3rem;
  }
  .cta-section p {
    font-size: 0.85rem;
  }
  .footer__h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .section__grid,
  .smallteam,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__visual {
    justify-content: flex-start;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  /* .container {
    width: min(1200px, calc(100vw - 28px));
  } */

  .top {
    padding-top: 14px;
  }

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

  .links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .twoCols,
  .services__grid,
  .steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .mini {
    flex-direction: column;
    gap: 12px;
  }

  .mini__icon {
    align-self: center;
    padding-left: 0;
  }

  .mini__icon img {
    width: 56px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone {
    width: 100%;
  }

  .services__grid,
  .steps,
  .twoCols {
    grid-template-columns: 1fr;
  }

  .mini,
  .step,
  .formCard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .field {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }

  .footer__statement h2,
  .footer__h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition:
    opacity 560ms cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 560ms cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* SCROLL ANIMATIONS*/
/* Team-section overrides: place h2 on the right, numbers inline with h4, match container width */
.team-section {
  /* match the site container sizing */
  width: min(1300px, 92vw);
  max-width: 1300px;
  margin: 0 auto;
}

.team-section .section-header {
  gap: 1.6rem;
  align-items: start;
}

.team-section .section-header h2 {
  text-align: center;
  margin: 0;
}

.team-section .section-header .left {
  grid-column: 1;
}

/* Inline the number with the h4 */
.team-section .items-list .item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.team-section .item-number {
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.team-section .item-content {
  flex: 1;
}

.team-section .item-content h4 {
  margin: 0;
  display: block;
}

@media (max-width: 820px) {
  .team-section .section-header {
    display: block;
  }
  .team-section .section-header h2 {
    grid-column: auto;
    text-align: left;
    margin-bottom: 1rem;
  }
  .team-section .items-list .item-row {
    align-items: flex-start;
  }
  .team-section .item-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
  }
}

.animate-on-scroll,
.animate-slide-left,
.animate-slide-right,
.animate-scale {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

/* Fade + move up */
.animate-on-scroll {
  transform: translateY(40px);
}

/* Slide from left */
.animate-slide-left {
  transform: translateX(-60px);
}

/* Slide from right */
.animate-slide-right {
  transform: translateX(60px);
}

/* Scale */
.animate-scale {
  transform: scale(0.92);
}

/* Activated state */
.animate-on-scroll.animated,
.animate-slide-left.animated,
.animate-slide-right.animated,
.animate-scale.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
