:root {
  --primary-blue: #2f4aa0;
  --dark-navy: #122354;
  --deep-blue: #1e2e73;
  --sky-blue: #20b6e7;
  --light-blue: #c7eafb;
  --accent-red: #ed1c24;
  --white: #ffffff;
  --section-bg: #f8fafc;
  --heading: #101828;
  --body-text: #667085;
  --muted-text: #98a2b3;
  --border: #eaecf0;
  --hero-card: rgba(244, 248, 255, 0.9);
  --shadow-blue: 0 32px 90px rgba(0, 12, 44, 0.38);
  --section-y: 120px;
  --section-x: 38px;
  --section-gap: 48px;
  --content-gap: 28px;
  --card-gap: 28px;
  --card-radius: 28px;
  --button-height: 68px;
  --button-icon-size: 54px;
  --button-pad-left: 32px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1599px) {
  :root {
    --section-y: 100px;
    --section-x: 32px;
    --section-gap: 40px;
    --content-gap: 26px;
    --button-height: 64px;
    --button-icon-size: 50px;
    --button-pad-left: 28px;
  }
}

@media (max-width: 1439px) {
  :root {
    --section-y: 88px;
    --section-x: 28px;
    --section-gap: 36px;
    --content-gap: 24px;
    --button-height: 60px;
    --button-icon-size: 46px;
    --button-pad-left: 24px;
  }
}

@media (max-width: 1365px) {
  :root {
    --section-y: 80px;
    --section-x: 24px;
    --section-gap: 32px;
    --content-gap: 22px;
  }
}

@media (max-width: 1199px) {
  :root {
    --section-y: 64px;
    --section-x: 20px;
    --section-gap: 28px;
    --content-gap: 22px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: 48px;
    --section-x: 16px;
    --section-gap: 24px;
    --content-gap: 20px;
  }
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2) format('woff2');
    unicode-range: U +0460 -052F, U +1C80 -1C8A, U +20B4, U +2DE0 -2DFF, U + A640-A69F, U + FE2E-FE2F;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--heading);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 51% 42%, rgba(66, 92, 173, 0.42), transparent 30%),
    radial-gradient(circle at 75% 42%, rgba(93, 45, 122, 0.22), transparent 24%),
    linear-gradient(135deg, #101f4b 0%, #11265e 48%, #0b1c48 100%);
  color: var(--white);
  display: grid;
  gap: 40px;
  min-height: 100vh;
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  position: relative;
}

.hero__content {
  max-width: 760px;
  position: relative;
  z-index: 3;
}

.section-label {
  align-items: center;
  color: rgba(199, 234, 251, 0.72);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 16px;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-label::before {
  background: var(--sky-blue);
  content: "";
  display: block;
  height: 2px;
  width: 40px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(48px, 5.7vw, 92px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin: 0;
}

.hero__title span {
  color: var(--light-blue);
  display: block;
}

.hero__title em {
  color: #8be2ff;
  display: block;
  font-style: italic;
}

.hero__copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 620px;
}

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

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  gap: 16px;
  height: var(--button-height);
  justify-content: space-between;
  min-width: max-content;
  overflow: hidden;
  padding: 7px 8px 7px var(--button-pad-left);
  position: relative;
  text-decoration: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}

.btn::before {
  background:
    radial-gradient(circle at var(--btn-x, 20%) var(--btn-y, 50%), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18) 20%, transparent 42%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-18%);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

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

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

.btn:hover .btn-icon svg {
  transform: translateX(3px);
}

.btn-text {
  color: var(--white);
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.btn-icon {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: var(--button-icon-size);
  justify-content: center;
  min-width: var(--button-icon-size);
  overflow: hidden;
  width: var(--button-icon-size);
}

.btn-icon svg {
  display: block;
  height: 14px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  width: 14px;
  will-change: transform;
}

.btn-primary {
  background: var(--sky-blue);
  box-shadow: 0 16px 42px rgba(32, 182, 231, 0.22);
}

.btn-primary:hover {
  background: var(--dark-navy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.19);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: var(--deep-blue);
}

.review-strip {
  align-items: center;
  border-radius: 999px;
  display: flex;
  gap: 24px;
  margin-top: 40px;
  width: fit-content;
}

.review-strip:hover .review-content p,
.review-strip:focus-visible .review-content p {
  color: var(--white);
}

.review-strip:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 8px;
}

.review-avatars {
  display: flex;
}

.review-avatars span {
  align-items: center;
  background: var(--light-blue);
  border: 2px solid #0f2354;
  border-radius: 50%;
  color: var(--dark-navy);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  margin-left: -8px;
  width: 50px;
}

.review-avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: var(--sky-blue);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 8px 0 0;
}

.review-content strong {
  color: var(--white);
}

.hero__visual {
  justify-self: center;
  max-width: min(84vw, 640px);
  position: relative;
  z-index: 2;
}

.hero__glow {
  background: radial-gradient(circle, rgba(32, 182, 231, 0.22), rgba(47, 74, 160, 0.14) 38%, transparent 68%);
  border-radius: 50%;
  filter: blur(2px);
  height: 85%;
  left: 8%;
  position: absolute;
  top: 3%;
  width: 90%;
  z-index: -1;
}

.hero__visual img {
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.32));
  min-width: 330px;
  width: 100%;
}

.consultation-card {
  background: var(--hero-card);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  /* box-shadow:
    var(--shadow-blue),
    34px 28px 0 rgba(2, 40, 108, 0.7),
    58px 44px 0 rgba(5, 87, 80, 0.52),
    82px 58px 0 rgba(16, 26, 142, 0.72); */
  color: var(--dark-navy);
  justify-self: stretch;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.consultation-card__top {
  align-items: flex-start;
  border-bottom: 1px solid rgba(18, 35, 84, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 32px 32px 24px;
}

.consultation-card h2 {
  color: var(--dark-navy);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.time-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #40527b;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  text-transform: uppercase;
}

.time-pill img {
  display: block;
  height: 11px;
  width: 11px;
}

.consultation-form {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.consultation-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.consultation-form legend,
.consultation-form label span {
  color: #263a70;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.plan-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.plan-tab {
  background: rgba(255, 255, 255, 0.84);
  border: 0;
  border-radius: 14px;
  color: #737d94;
  font-size: 14px;
  font-weight: 600;
  min-height: 56px;
  padding: 0 12px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.plan-tab:hover,
.plan-tab.is-active {
  background: var(--primary-blue);
  color: var(--white);
}

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

.form-grid {
  display: grid;
  gap: 16px;
}

.consultation-form input,
.consultation-form textarea {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 14px;
  color: var(--heading);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  min-height: 58px;
  outline: none;
  padding: 18px;
  width: 100%;
}

.consultation-form textarea {
  min-height: 120px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(32, 182, 231, 0.12);
}

.btn-card-submit {
  background: var(--primary-blue);
  box-shadow: 0 18px 40px rgba(47, 74, 160, 0.24);
  margin-top: 8px;
  width: 100%;
}

.btn-card-submit:hover {
  background: var(--dark-navy);
}

.consultation-modal {
  background: transparent;
  border: 0;
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow: auto;
  padding: 28px;
  width: 100%;
  z-index: 5000;
}

.consultation-modal::backdrop {
  background: rgba(4, 15, 45, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.consultation-modal[open] {
  align-items: center;
  display: grid;
  justify-content: center;
  justify-items: center;
  place-items: center;
}

.consultation-card--modal {
  box-shadow:
    0 34px 100px rgba(2, 8, 28, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  justify-self: center;
  margin: auto;
  max-width: 470px;
  width: min(100%, 470px);
}

.consultation-card--modal::before {
  background:
    linear-gradient(90deg, rgba(32, 182, 231, 0.2), transparent 34%, rgba(47, 74, 160, 0.16)),
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.34), transparent 32%);
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

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

.consultation-modal__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 35, 84, 0.08);
  border-radius: 50%;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  font-size: 26px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 42px;
  z-index: 5;
}

.consultation-modal__close:hover {
  background: var(--dark-navy);
  color: var(--white);
  transform: translateY(-2px);
}

body.is-consultation-modal-open {
  overflow: hidden;
}

.premium-cursor {
  border: 1px solid rgba(199, 234, 251, 0.86);
  border-radius: 50%;
  height: 18px;
  left: 0;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.22s ease, height 0.22s ease, opacity 0.18s ease, background 0.22s ease, border-color 0.22s ease;
  width: 18px;
  z-index: 9999;
}

.premium-cursor::after {
  background: var(--sky-blue);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
}

.premium-cursor.is-visible {
  opacity: 1;
}

.premium-cursor.is-active {
  background: rgba(199, 234, 251, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  height: 64px;
  width: 64px;
}

.magnetic-target {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  will-change: transform;
}

.btn.magnetic-target:hover {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 4px), 0);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    padding: var(--section-y) var(--section-x);
  }

  .hero__content {
    align-self: center;
  }

  .hero__visual {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 720px;
  }

  .consultation-card {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    max-width: 500px;
  }

  .plan-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 760px) and (max-width: 1199px) {
  .hero {
    align-items: start;
    gap: 36px 28px;
    /* grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.82fr); */
    min-height: auto;
    overflow: hidden;
    padding: 72px clamp(28px, 5vw, 56px);
    width: 100%;
  }

  .hero__content {
    align-self: center;
    max-width: none;
  }

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

  .hero__copy {
    font-size: 15px;
    max-width: 420px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 290px);
  }

  .review-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero__visual {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    margin-top: 20px;
    max-width: min(62vw, 520px);
    width: 100%;
  }

  .consultation-card {
    align-self: start;
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .hero {
    /* grid-template-columns: minmax(430px, 0.86fr) minmax(430px, 0.9fr) minmax(400px, 0.62fr);
    min-height: clamp(760px, 58vw, 900px);
    padding: var(--section-y) var(--section-x);
    width: 100%; */
            grid-template-columns: minmax(410px, 0.86fr) minmax(230px, 0.9fr) minmax(457px, 0.62fr);
        min-height: clamp(760px, 58vw, 900px);
        padding: var(--section-y) var(--section-x);
        width: 100%;
  }

  .hero__content {
    grid-column: 1;
  }

  .hero__visual {
    align-self: end;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-left: -96px;
    margin-right: -120px;
    max-width: 870px;
    width: 56vw;
  }

  .consultation-card {
    grid-column: 3;
    grid-row: 1;
    max-width: 520px;
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .hero {
    padding-left: var(--section-x);
    padding-right: var(--section-x);
  }

  .hero__visual {
    max-width: 960px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .hero {
    gap: 28px;
    grid-template-columns: minmax(360px, 0.86fr) minmax(280px, 0.72fr) minmax(360px, 0.68fr);
    min-height: 100svh;
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .hero__title {
    font-size: clamp(56px, 5vw, 72px);
  }

  .hero__copy {
    margin-top: 24px;
  }

  .hero__actions {
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 28px;
  }

  .hero .btn {
    min-width: 190px;
  }

  .hero__visual {
    margin-left: -70px;
    margin-right: -88px;
    max-width: 700px;
    width: 48vw;
  }

  .consultation-card {
    max-width: 410px;
  }

  .consultation-card__top {
    gap: 16px;
    padding: 24px 26px 20px;
  }

  .consultation-card h2 {
    font-size: clamp(27px, 2.35vw, 31px);
  }

  .time-pill {
    font-size: 11px;
    padding: 7px 12px;
  }

  .consultation-form {
    gap: 12px;
    padding: 24px 26px;
  }

  .consultation-form legend,
  .consultation-form label span {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .plan-tab {
    border-radius: 12px;
    font-size: 13px;
    min-height: 48px;
  }

  .form-grid,
  .plan-tabs {
    gap: 10px;
  }

  .consultation-form input,
  .consultation-form textarea {
    border-radius: 12px;
    min-height: 50px;
    padding: 14px;
  }

  .consultation-form textarea {
    min-height: 92px;
  }

  .btn-card-submit {
    margin-top: 2px;
  }

  .benefit-card h3 {
    padding-right: 92px;
  }

  .services-section__stage {
    padding-bottom: 48px;
    padding-top: 72px;
  }

  .services-section__head {
    margin-bottom: 36px;
  }

  .services-tabs {
    min-height: 500px;
  }

  .services-tab {
    min-height: 76px;
    padding: 18px 26px;
  }

  .services-panel__copy {
    padding: clamp(32px, 3.2vw, 48px);
  }

  .services-panel h3 {
    font-size: clamp(30px, 2.8vw, 46px);
    margin: 26px 0 16px;
  }

  .services-panel ul {
    gap: 10px;
    margin: 24px 0 36px;
  }

  .team-section__pin {
    padding-bottom: 56px;
    padding-top: 72px;
  }

  .team-section__head {
    margin-bottom: 36px;
  }

  .team-card {
    height: clamp(460px, 39vh, 520px);
  }

  .reviews-section__pin {
    padding-bottom: 56px;
    padding-top: 72px;
  }

  .review-card {
    height: clamp(300px, 34vh, 350px);
  }
}

@media (max-width: 520px) {
  .hero__actions,
  .review-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .consultation-card__top,
  .consultation-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  .consultation-card {
    box-shadow: var(--shadow-blue);
  }
}

.why-choose {
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 28, 36, 0.055), transparent 24%),
    radial-gradient(circle at 84% 9%, rgba(34, 64, 153, 0.16), transparent 30%),
    radial-gradient(circle at 50% 48%, rgba(32, 182, 231, 0.08), transparent 34%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 48%, #f9fafb 100%);
  color: var(--heading);
  padding: var(--section-y) var(--section-x);
  position: relative;
  width: 100%;
}

.why-choose::before {
  background:
    linear-gradient(90deg, rgba(47, 74, 160, 0.035), transparent 22%, transparent 78%, rgba(32, 182, 231, 0.04)),
    radial-gradient(circle at 76% 28%, rgba(32, 182, 231, 0.11), transparent 22%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.why-choose > * {
  position: relative;
  z-index: 1;
}

.why-choose__intro {
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.42fr) minmax(520px, 1.55fr) minmax(320px, 0.65fr);
  min-height: clamp(320px, 26vw, 400px);
}

.why-choose__marker {
  align-items: center;
  align-self: start;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  /* padding-top: 8px; */
}

.why-choose__marker span,
.why-choose__marker strong,
.why-choose__heading p,
.why-marquee__label span,
.benefit-card__number,
.benefit-card footer,
.why-assessment > div > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-choose__marker span,
.why-choose__heading p {
  color: var(--sky-blue);
}

.why-choose__marker i {
  background: rgba(32, 182, 231, 0.5);
  display: block;
  height: 1px;
  width: 40px;
}

.why-choose__marker strong {
  color: var(--muted-text);
  white-space: nowrap;
}

.why-choose__heading p {
  margin: 0 0 16px;
}

.why-choose__heading h2 {
  color: rgba(16, 24, 40, 0.08);
  font-size: clamp(54px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
  margin: 0;
}

.why-choose__heading h2 span {
  color: #070707;
  display: block;
}

.why-choose__heading h2 em {
  color: var(--sky-blue);
  display: block;
  font-style: italic;
}

.why-choose__copy {
  align-self: center;
  display: grid;
  gap: var(--content-gap);
}

.why-choose__copy p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.why-choose__copy .btn {
  justify-self: start;
  min-width: 238px;
}

.why-marquee {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 76% 50%, rgba(32, 182, 231, 0.08), transparent 32%);
  border: 1px solid var(--border);
  border-left: 0;
  border-right: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 132px;
  position: relative;
  right: 50%;
  width: 100vw;
  z-index: 2;
}

.why-marquee__label {
  align-content: center;
  border-right: 1px solid var(--border);
  display: grid;
  gap: 16px;
  padding: 32px;
}

.why-marquee__label span {
  color: var(--muted-text);
}

.why-marquee__label strong {
  color: var(--heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.why-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.why-marquee__track {
  align-items: center;
  animation: whyMarquee 28s linear infinite;
  display: flex;
  gap: 40px;
  height: 100%;
  width: max-content;
}

.why-marquee:hover .why-marquee__track {
  animation-play-state: paused;
}

.why-marquee__track span {
  color: #6b7280;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.why-marquee__track i {
  background: var(--sky-blue);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 4px;
  width: 4px;
}

@keyframes whyMarquee {
  from {
    transform: translateX(0);
  }

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

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes orbitRotateClockwise {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitRotateCounter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes orbitInnerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

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

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

@keyframes orbitLabelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.why-choose__body {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  padding-top: 72px;
}

.why-choose__sticky {
  align-self: start;
  height: max-content;
  padding-top: 96px;
  position: sticky;
  top: 120px;
}

.benefit-list {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding-bottom: 96px;
}

.pathway-orbit {
  animation: orbitFloat 8s ease-in-out infinite;
  aspect-ratio: 1;
  display: grid;
  margin: 0 auto;
  max-width: 780px;
  place-items: center;
  position: relative;
  width: min(100%, 760px);
}

.pathway-orbit__halo {
  /* background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 34%, rgba(238, 247, 253, 0.88) 36% 48%, rgba(255, 255, 255, 0.7) 50% 58%, transparent 66%),
    radial-gradient(circle, rgba(32, 182, 231, 0.14), transparent 68%); */
  border-radius: 50%;
  box-shadow:
    0 34px 90px rgba(18, 35, 84, 0.04),
    0 0 95px rgba(32, 182, 231, 0.06);
  height: 74%;
  position: absolute;
  width: 74%;
}

.pathway-orbit__ring {
  border-radius: 50%;
  position: absolute;
}

.pathway-orbit__ring--outer {
  animation: orbitRotateClockwise 42s linear infinite;
  border: 2px solid rgba(32, 182, 231, 0.58);
  height: 68%;
  width: 68%;
}

.pathway-orbit__ring--middle {
  animation: orbitRotateCounter 34s linear infinite;
  border: 1.5px dashed rgba(237, 28, 36, 0.56);
  height: 45%;
  width: 45%;
}

.pathway-orbit__ring--inner {
  animation: orbitInnerFloat 5.5s ease-in-out infinite;
  /* border: 18px solid rgba(199, 234, 251, 0.42);
  box-shadow: inset 0 0 58px rgba(32, 182, 231, 0.09); */
  height: 59%;
  width: 59%;
}

.pathway-orbit__badge {
  align-items: center;
  animation: orbitBadgeBreathe 4.8s ease-in-out infinite;
  background:
    radial-gradient(circle at 24% 20%, rgba(32, 182, 231, 0.24), transparent 36%),
    linear-gradient(145deg, var(--primary-blue), #103f91 58%, var(--dark-navy));
  border-radius: 50%;
  box-shadow:
    0 24px 58px rgba(18, 35, 84, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 148px;
  justify-content: center;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 148px;
  z-index: 2;
}

.pathway-orbit__badge small,
.pathway-orbit__badge em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.pathway-orbit__badge strong {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 8px 0 6px;
}

.pathway-orbit__label {
  align-items: center;
  animation: orbitLabelFloat 4.4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(234, 236, 240, 0.9);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(18, 35, 84, 0.12);
  color: var(--heading);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 10px 14px;
  position: absolute;
  z-index: 3;
}

.pathway-orbit__label i {
  background: var(--accent-red);
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
}

.pathway-orbit__label--migration {
  right: 17%;
  top: 31%;
}

.pathway-orbit__label--education {
  animation-delay: -1.6s;
  bottom: 31%;
  left: 17%;
}

.pathway-orbit__label--coaching {
  animation-delay: -2.8s;
  bottom: 27%;
  right: 13%;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  /* box-shadow:
    24px -18px 0 rgba(0, 182, 241, 0.08),
    44px -8px 0 rgba(15, 100, 82, 0.09),
    58px 8px 0 rgba(20, 38, 91, 0.09),
    0 30px 80px rgba(16, 24, 40, 0.08); */
  color: var(--heading);
  display: grid;
  isolation: isolate;
  min-height: clamp(240px, 18vw, 288px);
  padding: clamp(30px, 2.5vw, 40px) clamp(32px, 3vw, 48px);
  position: relative;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card::before,
.team-card::before {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(237, 28, 36, 0.12), transparent 24%),
    radial-gradient(circle at calc(var(--card-x, 50%) + 8%) calc(var(--card-y, 20%) + 8%), rgba(32, 182, 231, 0.12), transparent 30%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.benefit-card:hover::before,
.team-card:hover::before {
  opacity: 1;
}

.benefit-card > *,
.team-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  background:
    radial-gradient(circle at 84% 12%, rgba(32, 182, 231, 0.13), transparent 32%),
    linear-gradient(145deg, var(--deep-blue), var(--dark-navy));
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.benefit-card__number {
  color: var(--muted-text);
  display: block;
}

.benefit-card__icon {
  align-items: center;
  background: var(--light-blue);
  border: 1px solid rgba(47, 74, 160, 0.1);
  border-radius: 16px;
  color: var(--dark-navy);
  display: flex;
  height: clamp(56px, 4.4vw, 66px);
  justify-content: center;
  position: absolute;
  right: clamp(24px, 2vw, 32px);
  top: clamp(24px, 2vw, 32px);
  transition: background 0.35s ease, color 0.35s ease;
  width: clamp(56px, 4.4vw, 66px);
}

.benefit-card__icon svg,
.benefit-card__icon svg * {
  fill: currentColor;
  stroke: currentColor;
}

.benefit-card h3 {
  align-self: end;
  color: var(--heading);
  font-size: clamp(30px, 2.45vw, 42px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 28px 0 16px;
  max-width: 680px;
  transition: color 0.35s ease;
}

.benefit-card p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 690px;
  transition: color 0.35s ease;
}

.benefit-card footer {
  align-items: end;
  border-top: 1px solid var(--border);
  color: var(--muted-text);
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: clamp(48px, 5vw, 78px);
  transition: border-color 0.35s ease, color 0.35s ease;
}

.benefit-card footer strong {
  color: inherit;
  font-size: 12px;
}

.benefit-card:hover h3,
.benefit-card:hover p,
.benefit-card:hover footer {
  color: var(--white);
}

.benefit-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.benefit-card:hover footer {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}

.benefit-card:hover .benefit-card__icon {
  background: rgba(18, 35, 84, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.why-assessment {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 82% 42%, rgba(32, 182, 231, 0.12), transparent 28%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow:
    0 42px 120px rgba(16, 24, 40, 0.04),
    0 -26px 80px rgba(32, 182, 231, 0.02);
  display: grid;
  gap: 40px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  /* margin: -8px 76px 0; */
  padding: 48px 72px;
  position: relative;
  z-index: 3;
}

.why-assessment > div > span {
  color: var(--heading);
  display: block;
  margin-bottom: 16px;
}

.why-assessment h3 {
  color: #030303;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
}

.why-assessment .btn {
  justify-self: end;
  min-width: 310px;
}

@media (max-width: 1199px) {
  .why-choose {
    padding: var(--section-y) var(--section-x);
  }

  .why-choose__intro {
    grid-template-columns: 1fr;
    min-height: auto;
            margin-bottom: 80px;
  }

  .why-choose__heading h2 {
    font-size: clamp(48px, 9vw, 78px);
  }

  .why-marquee {
    grid-template-columns: 1fr;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }

  .why-marquee__label {
    border-bottom: 1px solid var(--border);
    border-right: 0;
  }

  .why-marquee__track {
    min-height: 96px;
  }

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

  .why-choose__sticky {
    padding-top: 0;
    position: static;
  }

  .pathway-orbit {
    margin: 0 auto;
    width: min(100%, 620px);
  }

  .why-assessment {
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
  }
}

@media (min-width: 641px) and (max-width: 1199px) {
  .why-choose {
    padding-left: clamp(40px, 5vw, 64px);
    padding-right: clamp(40px, 5vw, 64px);
  }

  .why-marquee {
    border-left: 1px solid var(--border);
    border-radius: 24px;
    border-right: 1px solid var(--border);
    inset: auto !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    overflow: hidden;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .why-choose {
    padding: var(--section-y) var(--section-x);
  }

  .why-choose__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .why-choose__copy .btn,
  .why-assessment .btn {
    justify-self: stretch;
    width: 100%;
  }

  .why-marquee__label,
  .benefit-card,
  .why-assessment {
    padding: 32px 24px;
  }

  .benefit-card__icon {
    height: 56px;
    right: 24px;
    top: 24px;
    width: 56px;
  }

  .pathway-orbit {
    width: min(100%, 420px);
  }

  .pathway-orbit__badge {
    height: 112px;
    width: 112px;
  }

  .pathway-orbit__badge strong {
    font-size: 24px;
  }

  .pathway-orbit__label {
    font-size: 9px;
    padding: 8px 10px;
  }

  .benefit-card h3 {
    font-size: 32px;
    margin-top: 72px;
  }

  .benefit-card footer,
  .why-assessment {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .benefit-card footer {
    gap: 16px;
    flex-direction: column;
  }
}

.services-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(32, 182, 231, 0.18), transparent 24%),
    radial-gradient(circle at 16% 22%, rgba(47, 74, 160, 0.24), transparent 28%),
    linear-gradient(145deg, #0a183d, #122354 58%, #0b1d4a);
  color: var(--white);
  min-height: 360svh;
  padding: 0 var(--section-x);
  position: relative;
}

.services-section__stage {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100svh;
  padding: var(--section-y) 0 calc(var(--section-y) * 0.6) 0;
  position: sticky;
  top: 0;
}

.services-section__head {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.38fr) minmax(640px, 1.5fr) minmax(320px, 0.6fr);
  margin-bottom: 48px;
}

.services-section__marker {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  /* padding-top: 10px; */
}

.services-section__marker span,
.services-section__marker strong,
.services-section__title p,
.services-panel__copy > span,
.services-panel__visual figcaption span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-section__marker span,
.services-section__title p {
  color: var(--sky-blue);
}

.services-section__marker i {
  background: rgba(199, 234, 251, 0.38);
  display: block;
  height: 1px;
  width: 40px;
}

.services-section__marker strong {
  white-space: nowrap;
}

.services-section__title p {
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 18px;
}

.services-section__title h2 {
  color: var(--white);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.93;
  margin: 0;
}

.services-section__title h2 span {
  color: var(--light-blue);
  display: block;
  font-style: italic;
}

.services-section__copy {
  align-self: center;
  display: grid;
  gap: var(--content-gap);
}

.services-section__copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.services-section__copy .btn {
  justify-self: start;
}

.services-tabs {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) 1fr;
  min-height: clamp(540px, 52vh, 640px);
  overflow: hidden;
}

.services-tabs__nav {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
}

.services-tab {
  align-items: center;
  background: #1e326a;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #c6d1e8;
  display: flex;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 96px;
  padding: 24px 36px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  transition: background 0.35s ease, color 0.35s ease;
}

.services-tab::before {
  content: "";
  display: none;
}

.services-tab::after {
  content: "";
  display: none;
}

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

.services-tab span {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.35s ease;
}

.services-tab.is-active {
  background: var(--sky-blue);
  color: var(--white);
}

.services-tab.is-active::before {
  display: none;
}

.services-tab.is-complete {
  color: #c6d1e8;
}

.services-tab.is-complete::before {
  transform: scaleX(0);
}

.services-tab.is-active::after {
  display: none;
}

.services-tab.is-active span {
  color: var(--white);
}

.services-tab:last-child {
  border-bottom: 0;
}

.services-panels {
  min-width: 0;
  position: relative;
}

.services-panel {
  display: grid;
  grid-template-columns: 2fr minmax(380px, 0.85fr);
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition: opacity 0.42s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.68s;
  visibility: hidden;
  will-change: opacity, transform;
}

.services-panel.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.08s, 0.08s, 0s;
  visibility: visible;
}

.services-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 82px);
}

.services-panel__copy > span,
.services-panel h3,
.services-panel p,
.services-panel li,
.services-panel__link {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.42s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-panel.is-active .services-panel__copy > span,
.services-panel.is-active h3,
.services-panel.is-active p,
.services-panel.is-active li,
.services-panel.is-active .services-panel__link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.services-panel.is-active .services-panel__copy > span {
  transition-delay: 0.1s;
}

.services-panel.is-active h3 {
  transition-delay: 0.16s;
}

.services-panel.is-active p {
  transition-delay: 0.22s;
}

.services-panel.is-active li:nth-child(1) {
  transition-delay: 0.3s;
}

.services-panel.is-active li:nth-child(2) {
  transition-delay: 0.35s;
}

.services-panel.is-active li:nth-child(3) {
  transition-delay: 0.4s;
}

.services-panel.is-active .services-panel__link {
  transition-delay: 0.48s;
}

.services-panel__copy > span {
  color: var(--light-blue);
}

.services-panel h3 {
  color: var(--white);
  font-size: clamp(32px, 3.35vw, 64px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 36px 0 20px;
  max-width: 650px;
}

.services-panel p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 590px;
}

.services-panel ul {
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 14px;
  font-size: 17px;
  line-height: 1.4;
  list-style: none;
  margin: 32px 0 56px;
  padding: 0;
}

.services-panel li::before {
  color: var(--sky-blue);
  content: "✓";
  margin-right: 14px;
}

.services-panel__link {
  align-items: center;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: auto;
  min-height: 64px;
  padding: 7px 8px 7px 28px;
  width: max-content;
}

.services-panel__link span {
  font-size: 16px;
  font-weight: 600;
}

.services-panel__link i {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.services-panel__visual {
  background: var(--dark-navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.services-panel__visual img {
  height: 100%;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: scale(1.12);
  transition: opacity 0.5s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.services-panel.is-active .services-panel__visual img {
  opacity: 1;
  transform: scale(1.01);
}

.services-panel__visual::before {
  background: linear-gradient(0deg, rgba(2, 18, 32, 0.94), rgba(2, 18, 32, 0.08) 72%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.services-panel__visual figcaption {
  opacity: 0;
  position: relative;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.48s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.services-panel.is-active .services-panel__visual figcaption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.26s;
}

.services-panel__visual strong {
  color: var(--white);
  display: block;
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: uppercase;
}

.services-panel__visual figcaption span {
  color: var(--light-blue);
  display: block;
  margin-top: 24px;
}

@media (min-width: 1200px) and (max-height: 820px) {
  .services-section__stage {
    padding: 42px 0 36px;
  }

  .services-section__head {
    gap: 28px;
    margin-bottom: 24px;
  }

  .services-section__title p {
    margin-bottom: 10px;
  }

  .services-section__title h2 {
    font-size: clamp(40px, 3.9vw, 56px);
  }

  .services-section__copy {
    gap: 18px;
  }

  .services-section__copy p {
    font-size: 15px;
    line-height: 1.45;
  }

  .services-section__copy .btn {
    min-height: 48px;
    padding-left: 22px;
  }

  .services-tabs {
    min-height: 0;
    height: clamp(300px, calc(100svh - 300px), 800px);
  }

  .services-tab {
    font-size: 15px;
    min-height: 0;
    padding: 11px 26px;
  }

  .services-panel__copy {
    padding: 28px 40px;
  }

  .services-panel h3 {
    font-size: clamp(30px, 2.7vw, 42px);
    margin: 18px 0 12px;
  }

  .services-panel p,
  .services-panel ul {
    font-size: 15px;
  }

  .services-panel ul {
    gap: 8px;
    margin: 18px 0 22px;
  }

  .services-panel__link {
    min-height: 48px;
    padding-left: 20px;
  }

  .services-panel__link i {
    height: 38px;
    width: 38px;
  }

  .services-panel__visual {
    padding: 24px;
  }

  .services-panel__visual strong {
    font-size: clamp(38px, 3.5vw, 54px);
  }
}

@media (max-width: 1199px) {
  .services-section {
    padding: 0 var(--section-x);
  }

  .services-section__stage {
    padding: var(--section-y) 0;
  }

  .services-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .services-tabs {
    grid-template-columns: minmax(200px, 0.36fr) 1fr;
  }

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

  .services-panel__visual {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1199px) {
  .services-tabs {
    min-height: clamp(760px, 72vh, 920px);
  }

  .services-panel {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) clamp(250px, 28vh, 340px);
  }

  .services-panel__copy {
    padding: clamp(36px, 5vw, 56px);
  }

  .services-panel__visual {
    display: flex;
    min-height: 0;
    padding: clamp(28px, 4vw, 40px);
  }

  .services-panel__visual strong {
    font-size: clamp(42px, 6vw, 62px);
  }
}

@media (max-width: 640px) {
  .services-section {
    min-height: 520svh;
    padding: 0;
  }

  .services-section__stage {
    align-content: center;
    min-height: 100svh;
    padding: 20px var(--section-x);
  }

  .services-section__head {
    display: none;
  }

  .services-tabs {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100svh - 40px);
    margin: 0 auto;
    max-width: 460px;
    min-height: 0;
    width: 100%;
  }

  .services-tabs__nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    display: grid;
    overflow: visible;
  }

  .services-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .services-tab {
border-bottom: 0;
        border-right: 0;
        font-size: 12px;
        justify-content: center;
        min-height: clamp(48px, 4.8svh, 58px);
        padding: 0 18px;
        text-align: center;
  }

  .services-tab span {
    display: none;
  }

  .services-tab.is-active {
    /* background: rgba(73, 168, 208, 0.34); */
    /* box-shadow: inset 0 -4px 0 var(--light-blue); */
    color: var(--white);
  }

  .services-panels {
    min-height: 0;
    overflow: hidden;
  }

  .services-panel {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(150px, 25svh, 220px) minmax(0, 1fr);
    height: 100%;
  }

  .services-panel__visual {
    display: flex;
    min-height: 0;
    order: 0;
    padding: 28px;
  }

  .services-panel__visual strong {
    font-size: clamp(44px, 14vw, 68px);
  }

  .services-panel__visual figcaption span {
    font-size: 10px;
    margin-top: 16px;
  }

  .services-panel__copy {
    min-height: 0;
    order: 1;
    overflow: hidden;
    padding: 28px 24px 30px;
  }

  .services-panel h3 {
    font-size: clamp(34px, 10vw, 48px);
    margin-top: 20px;
  }

  .services-panel p {
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.55;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .services-panel ul {
    display: none;
  }

  .services-panel__link {
    margin-top: 24px;
    min-height: 52px;
    width: 100%;
  }
}

.team-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(34, 64, 153, 0.18), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(237, 28, 36, 0.08), transparent 20%),
    linear-gradient(145deg, #0a183d, #122354 62%, #0a183d);
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.team-section__pin {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  padding: var(--section-y) 0;
}

.team-section__head {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.38fr) minmax(660px, 1.5fr) minmax(320px, 0.6fr);
  margin-bottom: 56px;
  padding: 0 var(--section-x);
}

.team-section__marker {
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  /* padding-top: 10px; */
}

.team-section__marker span,
.team-section__marker strong,
.team-section__title p,
.team-card__caption span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-section__marker span,
.team-section__title p {
  color: var(--sky-blue);
}

.team-section__marker i {
  background: rgba(199, 234, 251, 0.36);
  display: block;
  height: 1px;
  width: 40px;
}

.team-section__marker strong {
  white-space: nowrap;
}

.team-section__title p {
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 16px;
}

.team-section__title h2 {
  color: var(--white);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.93;
  margin: 0;
}

.team-section__title h2 span {
  display: block;
}

.team-section__title h2 em {
  color: var(--sky-blue);
  font-style: italic;
}

.team-section__copy {
  align-self: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.team-track {
  display: grid;
  gap: 28px;
  grid-auto-columns: clamp(390px, calc((100vw - 172px) / 3.5), 500px);
  grid-auto-flow: column;
  overflow: visible;
  padding: 0 var(--section-x) 8px;
  transform: translate3d(var(--team-track-x, 0px), 0, 0);
  width: max-content;
  will-change: transform;
}

.team-track::-webkit-scrollbar {
  display: none;
}

.team-card {
  border-radius: 28px;
  height: clamp(520px, 34vw, 660px);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.team-card--photo {
  background: #dfe5ee;
}

.team-card--photo::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 28, 36, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(68, 200, 245, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(10, 24, 61, 0.96), rgba(18, 35, 84, 0.94));
  backdrop-filter: blur(8px);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: rotateY(10deg) scale(0.98);
  transform-origin: center center;
  transition: opacity 0.3s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.team-card--photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  width: 100%;
  z-index: 0;
}

.team-card--photo::after {
  background:
    linear-gradient(rgba(10, 24, 61, 0) 0%, rgba(10, 24, 61, 0.08) 36%, rgba(10, 24, 61, 0.72) 78%, rgba(10, 24, 61, 0.94) 100%),
    linear-gradient(135deg, rgba(34, 64, 153, 0.1), rgba(237, 28, 36, 0.04));
  content: "";
  inset: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-card--photo:hover::before,
.team-card--photo:focus-within::before {
  opacity: 1;
  transform: rotateY(0) scale(1);
}

.team-card--photo:hover::after,
.team-card--photo:focus-within::after {
  opacity: 0.55;
}

.team-card--photo:hover img,
.team-card--photo:focus-within img {
  /* filter: blur(5px) brightness(0.48) saturate(0.86); */
  transform: scale(1.025);
}

.team-card__caption {
  bottom: 48px;
  left: 42px;
  position: absolute;
  right: 42px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 3;
}

.team-card__socials {
  display: flex;
  gap: 16px;
  opacity: 0;
  position: absolute;
  right: 42px;
  top: 42px;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
}

.team-card__social {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(10, 24, 61, 0.22);
  color: var(--white);
  display: flex;
  height: 60px;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 60px;
}

.team-card__social:hover {
  box-shadow: 0 24px 42px rgba(10, 24, 61, 0.28);
  transform: translateY(-4px);
}

.team-card__social img {
  height: 24px;
  object-fit: unset;
  width: 24px;
}

.team-card__social--whatsapp {
  background: #45b94d;
}

.team-card__social--mail {
  background: #3865ce;
}

.team-card__social--linkedin {
  background: #0789c5;
}

.team-card--photo:hover .team-card__caption,
.team-card--photo:focus-within .team-card__caption {
  opacity: 1;
  right: 42px;
}

.team-card--photo:hover .team-card__socials,
.team-card--photo:focus-within .team-card__socials {
  opacity: 1;
  transform: translateY(0);
}

.team-card__caption span {
  color: var(--light-blue);
}

.team-card__caption h3 {
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 18px 0 0;
}

.team-card__more {
  display: grid;
  gap: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
}

.team-card--photo:hover .team-card__more,
.team-card--photo:focus-within .team-card__more {
  margin-top: 28px;
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.team-card__more p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.62;
  margin: 0;
  max-width: 430px;
}

.team-card__more strong {
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 1600px) {
  .team-section__pin {
    padding: 72px 0 72px;
  }

  .team-section__head {
    margin-bottom: 44px;
  }

  .team-card {
    height: clamp(520px, calc(100svh - 360px), 800px);
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .team-section__pin {
    padding: 56px 0 64px;
  }

  .team-section__head {
    margin-bottom: 36px;
  }

  .team-section__title h2 {
    font-size: clamp(46px, 4.5vw, 70px);
  }

  .team-section__copy {
    font-size: 16px;
    line-height: 1.55;
  }

  .team-card {
    height: clamp(430px, calc(100svh - 285px), 500px);
  }

  .team-card__caption {
    bottom: 34px;
    left: 34px;
    right: 34px;
  }

  .team-card__caption h3 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .team-section {
    padding: 0;
  }

  .team-section__pin {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding: var(--section-y) 0;
  }

  .team-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
    padding: 0 var(--section-x);
  }

  .team-section__title h2 {
    font-size: clamp(46px, 9vw, 78px);
  }

  .team-track {
    grid-auto-columns: clamp(360px, 45vw, 460px);
    grid-auto-flow: column;
    padding: 0 var(--section-x) 8px;
    width: max-content;
  }

  .team-card {
    height: clamp(500px, 56vh, 620px);
  }
}

@media (max-width: 640px) {
  .team-section {
    overflow: hidden;
    padding: 0;
  }

  .team-section__pin {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding: 36px 0 42px;
  }

  .team-section__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .team-section__head {
    margin-bottom: 24px;
    padding: 0 var(--section-x);
  }

  .team-section__title h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .team-section__copy {
    font-size: 14px;
    line-height: 1.45;
  }

  .team-track {
    display: grid;
    gap: 18px;
    grid-auto-columns: min(82vw, 320px);
    grid-auto-flow: column;
    overflow: visible;
    padding: 0 var(--section-x) 10px;
    scrollbar-width: none;
    scroll-snap-type: none;
    transform: translate3d(var(--team-track-x, 0px), 0, 0);
    width: max-content;
    will-change: transform;
  }

  .team-track::-webkit-scrollbar {
    display: none;
    height: 0;
  }

  .team-track::-webkit-scrollbar-thumb {
    background: rgba(199, 234, 251, 0.32);
    border-radius: 999px;
  }

  .team-card {
    height: clamp(430px, calc(100svh - 265px), 500px);
    scroll-snap-align: start;
  }

  .team-card__caption {
    bottom: 32px;
    left: 24px;
    right: 24px;
  }

  .team-card__socials {
    gap: 12px;
    right: 24px;
    top: 24px;
  }

  .team-card__social {
    height: 50px;
    width: 50px;
  }

  .team-card__caption h3 {
    font-size: 30px;
  }
}

.about-aussizz {
  align-items: center;
  background:
    radial-gradient(circle at 85% 14%, rgba(237, 28, 36, 0.12), transparent 24%),
    radial-gradient(circle at 10% 12%, rgba(68, 200, 245, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #fafbfc 44%, #fafbfc);
  color: var(--heading);
  display: grid;
  gap: calc(var(--section-gap) + 24px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  position: relative;
  width: 100%;
}

.about-aussizz::before {
  background:
    radial-gradient(circle at 76% 45%, rgba(199, 234, 251, 0.34), transparent 30%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.56) 44%, rgba(244, 249, 255, 0.52) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-aussizz::after {
  background: radial-gradient(circle at 88% 72%, rgba(68, 200, 245, 0.1), transparent 24%);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.about-aussizz > * {
  position: relative;
  z-index: 1;
}

.about-aussizz__content {
  display: grid;
  justify-items: start;
  max-width: 920px;
}

.about-aussizz__marker {
  align-items: center;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  margin-bottom: 40px;
}

.about-aussizz__marker span,
.about-aussizz__marker strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-aussizz__marker span {
  color: var(--sky-blue);
}

.about-aussizz__marker i {
  background: rgba(102, 112, 133, 0.34);
  display: block;
  height: 1px;
  width: 40px;
}

.about-aussizz h2 {
  color: var(--heading);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.about-aussizz h2 span {
  color: rgba(16, 24, 40, 0.13);
  display: block;
  font-style: italic;
}

.about-aussizz h2 em {
  color: var(--sky-blue);
  display: block;
  font-style: italic;
}

.about-aussizz__copy {
  display: grid;
  gap: 24px;
  margin-top: 56px;
  max-width: 920px;
}

.about-aussizz__copy p {
  color: var(--body-text);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.about-aussizz .btn {
  margin-top: 72px;
}

.about-aussizz__visual {
  margin: 0;
  min-width: 0;
  position: relative;
}

.about-aussizz__visual::before {
  /* background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.72));
  border: 1px solid rgba(34, 64, 153, 0.12); */
  border-radius: 32px;
  content: "";
  inset: 10% 8%;
  position: absolute;
  transform: rotate(-2deg);
}

.about-aussizz__visual img {
  display: block;
  filter:
    drop-shadow(0 30px 70px rgba(10, 24, 61, 0.14))
    drop-shadow(0 0 44px rgba(68, 200, 245, 0.08));
  height: auto;
  margin-left: auto;
  position: relative;
  width: min(92%, 780px);
  z-index: 1;
}

@media (max-width: 1199px) {
  .about-aussizz {
    gap: 56px;
    grid-template-columns: 1fr;
    padding: var(--section-y) var(--section-x);
  }

  .about-aussizz__content {
    max-width: 100%;
  }

  .about-aussizz h2 {
    font-size: clamp(48px, 9vw, 78px);
  }

  .about-aussizz__visual img {
    margin: 0 auto;
    width: min(100%, 820px);
  }
}

@media (max-width: 640px) {
  .about-aussizz {
    gap: 40px;
    padding: var(--section-y) var(--section-x);
  }

  .about-aussizz__marker {
    grid-template-columns: auto 40px 1fr;
    margin-bottom: 32px;
  }

  .about-aussizz__copy {
    margin-top: 40px;
  }

  .about-aussizz__copy p {
    font-size: 16px;
  }

  .about-aussizz .btn {
    margin-top: 48px;
    width: 100%;
  }
}

.faq-section {
  background:
    radial-gradient(circle at 7% 8%, rgba(32, 182, 231, 0.13), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(237, 28, 36, 0.07), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(199, 234, 251, 0.32), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 48%, #ffffff 100%);
  color: var(--heading);
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  position: relative;
  width: 100%;
}

.faq-section::before {
  background:
    linear-gradient(90deg, rgba(47, 74, 160, 0.035), transparent 24%, transparent 76%, rgba(32, 182, 231, 0.04)),
    radial-gradient(circle at 54% 18%, rgba(32, 182, 231, 0.08), transparent 20%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.faq-section__head {
  align-items: end;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.38fr) minmax(620px, 1.35fr) minmax(320px, 0.62fr);
  margin-bottom: 72px;
}

.faq-section__marker {
  align-items: center;
  align-self: start;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  /* padding-top: 10px; */
}

.faq-section__marker span,
.faq-section__marker strong,
.faq-section__title p,
.faq-list summary span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-section__marker span,
.faq-section__title p,
.faq-list summary span {
  color: var(--sky-blue);
}

.faq-section__marker i {
  background: rgba(32, 182, 231, 0.48);
  display: block;
  height: 1px;
  width: 40px;
}

.faq-section__marker strong {
  color: var(--muted-text);
  white-space: nowrap;
}

.faq-section__title p {
  color: var(--primary-blue);
  margin: 0 0 16px;
}

.faq-section__title h2 {
  color: var(--heading);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.faq-section__title h2 span {
  display: block;
}

.faq-section__title h2 em {
  color: var(--sky-blue);
  display: block;
  font-style: italic;
}

.faq-section__copy {
  align-self: center;
  display: grid;
  gap: var(--content-gap);
}

.faq-section__copy p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.faq-section__copy .btn {
  justify-self: start;
  min-width: 238px;
}

.faq-list {
  margin-left: calc(38% + 24px);
}

.faq-list details {
  border-top: 1px solid rgba(16, 24, 40, 0.12);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(16, 24, 40, 0.12);
}

.faq-list summary {
  align-items: center;
  color: var(--heading);
  cursor: pointer;
  display: grid;
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 600;
  gap: 20px;
  grid-template-columns: 56px minmax(0, 1fr) 36px;
  letter-spacing: -0.035em;
  line-height: 1.25;
  list-style: none;
  min-height: 92px;
  outline: none;
  transition: color 0.25s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover,
.faq-list details[open] summary {
  color: var(--primary-blue);
}

.faq-list summary i {
  border: 1px solid rgba(16, 24, 40, 0.18);
  border-radius: 50%;
  height: 30px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  width: 30px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  background: var(--dark-navy);
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
  width: 10px;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
}

.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after {
  background: var(--white);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.75;
  margin: -8px 56px 32px 76px;
  max-width: 850px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin-bottom 0.35s ease;
}

.faq-list details.is-open p {
  max-height: var(--faq-content-height, 240px);
  opacity: 1;
}

.faq-cta {
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(32, 182, 231, 0.13), transparent 28%),
    linear-gradient(145deg, var(--primary-blue), var(--deep-blue));
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(18, 35, 84, 0.18);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-left: calc(38% + 24px);
  margin-top: 40px;
  padding: 24px 28px;
}

.faq-cta strong {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.faq-cta .btn {
  min-width: 238px;
}

@media (max-width: 1199px) {
  .faq-section {
    padding: var(--section-y) var(--section-x);
  }

  .faq-section__head {
    align-items: start;
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .faq-section__title h2 {
    font-size: clamp(48px, 9vw, 78px);
  }

  .faq-list,
  .faq-cta {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: var(--section-y) var(--section-x);
  }

  .faq-section__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .faq-section__copy .btn,
  .faq-cta .btn {
    width: 100%;
  }

  .faq-list summary {
    font-size: 16px;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    min-height: 82px;
  }

  .faq-list details p {
    font-size: 15px;
    margin: -4px 0 28px 46px;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

.reviews-section {
  background:
    radial-gradient(ellipse at 88% 15%, rgba(47, 74, 160, 0.13), transparent 17%),
    radial-gradient(circle at 18% 76%, rgba(32, 182, 231, 0.075), transparent 23%),
    radial-gradient(circle at 65% 80%, rgba(18, 35, 84, 0.055), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 44%, #f7f9fb 100%);
  color: var(--heading);
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.reviews-section::before {
  /* background:
    radial-gradient(ellipse at 88% 14%, rgba(47, 74, 160, 0.13), transparent 15%),
    radial-gradient(circle at 12% 22%, rgba(237, 28, 36, 0.035), transparent 20%),
    linear-gradient(90deg, rgba(32, 182, 231, 0.035), transparent 28%, transparent 72%, rgba(237, 28, 36, 0.025)); */
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.reviews-section > * {
  position: relative;
  z-index: 1;
}

.reviews-section__pin {
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(76px, 8.4vh, 100px) 0 clamp(58px, 7vh, 82px);
}

.reviews-section__head {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.34fr) minmax(640px, 1.48fr) minmax(260px, 0.45fr);
  margin-bottom: clamp(64px, 7.5vh, 96px);
  padding: 0 var(--section-x);
}

.reviews-section__marker {
  align-items: center;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;

}

.reviews-section__marker span,
.reviews-section__marker strong,
.reviews-section__title p,
.review-card header strong,
.reviews-slider__status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reviews-section__marker span,
.reviews-section__title p {
  color: var(--sky-blue);
}

.reviews-section__marker i {
  background: rgba(32, 182, 231, 0.38);
  display: block;
  height: 1px;
  width: 40px;
}

.reviews-section__marker strong {
  white-space: nowrap;
}

.reviews-section__title p {
  color: var(--primary-blue);
  margin: 0 0 10px;
}

.reviews-section__title h2 {
  color: var(--heading);
  font-size: clamp(44px, 4.45vw, 72px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.reviews-section__title h2 span {
  display: block;
}

.reviews-section__title h2 em {
  color: var(--sky-blue);
  font-style: italic;
}

.reviews-score {
  align-items: end;
  color: inherit;
  display: grid;
  justify-items: end;
  padding-top: 18px;
  position: relative;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.reviews-score:hover,
.reviews-score:focus-visible {
  transform: translateY(-3px);
}

.reviews-score:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 10px;
}

.reviews-score::before {
  /* background: radial-gradient(ellipse, rgba(47, 74, 160, 0.18), rgba(47, 74, 160, 0.08) 62%, transparent 70%); */
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  height: 140px;
  position: absolute;
  right: -10px;
  top: 0;
  width: 270px;
  z-index: -1;
}

.reviews-score span {
  color: #ff4750;
  font-size: clamp(30px, 2vw, 36px);
  letter-spacing: 4px;
  line-height: 1;
}

.reviews-score strong {
  color: var(--heading);
  font-size: clamp(58px, 3.75vw, 72px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.85;
  margin-top: 10px;
}

.reviews-score small {
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
      padding: 20px 0;
}

.reviews-slider {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding: 0 var(--section-x) 10px;
  width: 100%;
  justify-content: center;
}

.reviews-track {
  cursor: grab;
  display: grid;
  gap: 24px;
  grid-auto-columns: clamp(340px, calc((100vw - (var(--section-x) * 2) - 72px) / 4), 430px);
  grid-auto-flow: column;
  overflow: visible;
  padding: 0 0 clamp(24px, 3vh, 36px);
  scroll-behavior: smooth;
  transform: translate3d(var(--reviews-track-x, 0px), 0, 0);
  width: max-content;
  will-change: transform;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(234, 236, 240, 0.9);
  border-radius: 28px;
  box-shadow:
    0 34px 70px rgba(18, 35, 84, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.76) inset;
  color: var(--dark-navy);
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: clamp(300px, 34vh, 350px);
  overflow: hidden;
  padding: clamp(26px, 1.8vw, 32px);
  position: relative;
  scroll-snap-align: start;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.review-card:hover {
  background: linear-gradient(145deg, var(--primary-blue), #253f9b);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 70px rgba(18, 35, 84, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  color: var(--white);
}

.review-card header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.review-card header span {
  color: #ff4750;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card header strong {
  color: var(--muted-text);
}

.review-card:hover header strong {
  color: rgba(199, 234, 251, 0.62);
}

.review-card p {
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 500;
  line-height: 1.46;
  margin: auto 0;
  padding: clamp(18px, 2vh, 24px) 0;
}

.review-card footer {
  align-items: center;
  border-top: 1px solid rgba(18, 35, 84, 0.16);
  display: flex;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
}

.review-card:hover footer {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.review-card footer img {
  border-radius: 50%;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.review-card footer span {
  display: grid;
  gap: 4px;
}

.review-card footer strong {
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.review-card footer small {
  color: rgba(18, 35, 84, 0.72);
  font-size: 15px;
  font-weight: 500;
}

.review-card:hover footer small {
  color: rgba(255, 255, 255, 0.74);
}

.reviews-slider__status {
  align-items: center;
  color: var(--muted-text);
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0;
}

.reviews-slider__status i {
  background: rgba(18, 35, 84, 0.14);
  display: block;
  height: 2px;
  overflow: hidden;
}

.reviews-slider__status b {
  background: var(--primary-blue);
  display: block;
  height: 100%;
  transform: scaleX(var(--review-progress, 0.18));
  transform-origin: left center;
  transition: transform 0.2s ease;
}

@media (min-width: 1200px) and (max-height: 820px) {
  .reviews-section__pin {
    padding: 56px 0 62px;
  }

  .reviews-section__head {
    margin-bottom: 46px;
  }

  .reviews-section__title h2 {
    font-size: clamp(44px, 4.25vw, 66px);
  }

  .reviews-track {
    padding-bottom: 28px;
  }

  .reviews-score span {
    font-size: 30px;
  }

  .reviews-score strong {
    font-size: 58px;
  }

  .review-card {
    height: clamp(300px, calc(100svh - 330px), 360px);
    padding: 28px 30px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 1.45;
  }
}

@media (max-width: 1199px) {
  .reviews-section {
    overflow: hidden;
    padding: 0;
  }

  .reviews-section__pin {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
    padding: var(--section-y) 0;
  }

  .reviews-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
    padding: 0 var(--section-x);
  }

  .reviews-section__title h2 {
    font-size: clamp(42px, 7vw, 64px);
  }

  .reviews-score {
    justify-items: start;
    padding-top: 0;
  }

  .reviews-score::before {
    left: -28px;
    right: auto;
  }

  .reviews-slider {
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .reviews-track {
    cursor: grab;
    gap: 24px;
    grid-auto-columns: clamp(320px, 52vw, 430px);
    grid-auto-flow: column;
    padding-left: 0;
    padding-right: 0;
    width: max-content;
  }

  .reviews-slider__status {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    overflow: hidden;
    padding: 0;
  }

  .reviews-section__pin {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    padding: 34px 0 0px;
  }

  .reviews-section__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .reviews-section__head {
    margin-bottom: 24px;
    padding: 0 var(--section-x);
  }

  .reviews-section__title h2 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .reviews-score span {
    font-size: 28px;
  }

  .reviews-score strong {
    font-size: 54px;
  }

  .reviews-slider {
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    width: 100%;
  }

  .reviews-track {
    display: flex;
    gap: 16px;
    grid-auto-columns: unset;
    grid-auto-flow: unset;
    overflow: visible;
    padding: 0 0 10px;
    scrollbar-width: none;
    scroll-snap-type: none;
    transform: translate3d(var(--reviews-track-x, 0px), 0, 0);
    width: max-content;
    will-change: transform;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
    height: 0;
  }

  .reviews-track::-webkit-scrollbar-thumb {
    background: rgba(47, 74, 160, 0.28);
    border-radius: 999px;
  }

  .review-card {
    flex: 0 0 min(82vw, 320px);
    height: clamp(300px, 58vh, 390px);
    min-height: 0;
    padding: 22px 20px;
    scroll-snap-align: start;
  }

  .review-card header {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 0;
  }

  .review-card footer strong {
    font-size: 17px;
  }

  .review-card footer {
    gap: 14px;
    padding-top: 18px;
  }

  .review-card footer img {
    height: 44px;
    width: 44px;
  }

  .reviews-slider__status {
    gap: 14px;
    padding: 0;
  }
}

.contact-info-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(68, 200, 245, 0.18), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(237, 28, 36, 0.08), transparent 22%),
    radial-gradient(circle at 54% 92%, rgba(18, 35, 84, 0.08), transparent 30%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 52%, #fafbfc 100%);
  color: var(--heading);
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  position: relative;
  width: 100%;
}

.contact-info-section::before {
  background:
    linear-gradient(90deg, rgba(32, 182, 231, 0.035), transparent 24%, transparent 72%, rgba(237, 28, 36, 0.025)),
    radial-gradient(circle at 78% 70%, rgba(47, 74, 160, 0.05), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.contact-info__head {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.38fr) minmax(660px, 1.35fr) minmax(320px, 0.62fr);
  margin-bottom: 96px;
}

.contact-info__marker {
  align-items: center;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
  /* padding-top: 10px; */
}

.contact-info__marker span,
.contact-info__marker strong,
.contact-info__title p,
.contact-detail-card__label,
.contact-office-card__content span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-info__marker span,
.contact-info__title p {
  color: var(--sky-blue);
}

.contact-info__marker i {
  background: rgba(32, 182, 231, 0.38);
  display: block;
  height: 1px;
  width: 40px;
}

.contact-info__marker strong {
  white-space: nowrap;
}

.contact-info__title p {
  color: var(--primary-blue);
  margin: 0 0 16px;
}

.contact-info__title h2 {
  color: var(--heading);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.contact-info__title h2 span,
.contact-info__title h2 em {
  display: block;
}

.contact-info__title h2 em {
  color: var(--sky-blue);
  font-style: italic;
}

.contact-info__copy {
  align-self: center;
  display: grid;
  gap: var(--content-gap);
}

.contact-info__copy p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.btn-dark-blue {
  background: var(--primary-blue);
  box-shadow: 0 18px 48px rgba(47, 74, 160, 0.22);
}

.btn-dark-blue:hover {
  background: var(--dark-navy);
}

.contact-info-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
}

.contact-office-card,
.contact-detail-card {
  border-radius: 32px;
  overflow: hidden;
}

.contact-office-card {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(10, 24, 61, 0.04), rgba(10, 24, 61, 0.82) 66%, rgba(10, 24, 61, 0.96)),
    linear-gradient(135deg, rgba(34, 64, 153, 0.22), rgba(237, 28, 36, 0.06)),
    url("aussizz/clayton-office-17.webp") center / cover no-repeat;
  box-shadow:
    0 34px 80px rgba(18, 35, 84, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  color: var(--white);
  display: flex;
  grid-row: 1 / -1;
  min-height: clamp(560px, 48vw, 720px);
  padding: clamp(36px, 3.5vw, 56px);
}

.contact-office-card__content {
  display: grid;
  gap: 24px;
}

.contact-office-card__content span {
  color: var(--light-blue);
}

.contact-office-card h3 {
  color: var(--white);
  font-size: clamp(42px, 4.2vw, 78px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 0;
  max-width: 580px;
}

.contact-office-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.contact-office-card__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.contact-office-card__actions a,
.contact-office-card__actions > span {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: clamp(50px, 3.8vw, 58px);
  padding: 0 clamp(20px, 1.8vw, 28px);
  text-transform: uppercase;
}

.contact-office-card__actions a {
  background: var(--primary-blue);
  color: var(--white);
}

.contact-office-card__actions a:hover {
  background: var(--sky-blue);
}

.contact-office-card__actions img {
  height: 22px;
  width: 22px;
}

.contact-office-card__actions > span {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.contact-detail-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 30px 75px rgba(18, 35, 84, 0.08);
  display: grid;
  justify-items: start;
  padding: clamp(32px, 3.4vw, 56px);
}

.contact-detail-card__label {
  color: var(--primary-blue);
}

.contact-detail-card h3 {
  align-items: center;
  color: var(--heading);
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 600;
  gap: 12px;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 18px 0 20px;
  max-width: 100%;
}

.contact-detail-card h3 a {
  overflow-wrap: anywhere;
}

.contact-detail-card p {
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.contact-detail-card .btn {
  align-self: end;
  margin-top: 32px;
  min-width: 238px;
}

.copy-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 34px;
}

.copy-button img {
  height: 24px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 24px;
}

.copy-button:hover img,
.copy-button.is-copied img {
  opacity: 1;
  transform: translateY(-2px);
}

.copy-tooltip {
  background: var(--dark-navy);
  border-radius: 999px;
  bottom: calc(100% + 10px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  left: 50%;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  padding: 9px 12px;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.copy-button:hover .copy-tooltip,
.copy-button.is-copied .copy-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1199px) {
  .consultation-form, .consultation-card__top {
      padding: 24px
  }
  .consultation-form input, .consultation-form textarea {
    min-height: 48px;
    font-size: 14px;
    font-weight: 400;
}
  .hero {
      padding: 52px clamp(8px, 4vw, 46px);
  }
      .services-tabs {
        grid-template-columns: minmax(280px, 0.36fr) 1fr;
    }
}

@media (max-width: 1199px) {
  .contact-info-section {
    padding: var(--section-y) var(--section-x);
  }

  .contact-info__head {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .contact-info__title h2 {
    font-size: clamp(48px, 9vw, 78px);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-office-card {
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .contact-info-section {
    padding: var(--section-y) var(--section-x);
  }

  .contact-info__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .contact-info__copy .btn,
  .contact-detail-card .btn {
    width: 100%;
  }

  .contact-info-grid {
    gap: 24px;
  }

  .contact-office-card {
    min-height: 440px;
    padding: 32px 24px;
  }

  .contact-office-card h3 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-office-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-detail-card {
    padding: 32px 24px;
  }

  .contact-detail-card h3 {
    font-size: clamp(25px, 7vw, 31px);
  }

  .copy-tooltip {
    left: auto;
    right: 0;
    transform: translate(0, 6px);
  }

  .copy-button:hover .copy-tooltip,
  .copy-button.is-copied .copy-tooltip {
    transform: translate(0, 0);
  }
}

.gallery-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(68, 200, 245, 0.15), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(237, 28, 36, 0.06), transparent 22%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 52%, #fafbfc 100%);
  color: var(--heading);
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  position: relative;
  width: 100%;
}

.gallery-section::before {
  background: linear-gradient(90deg, rgba(32, 182, 231, 0.035), transparent 30%, transparent 70%, rgba(47, 74, 160, 0.035));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-section > * {
  position: relative;
  z-index: 1;
}

.gallery-section__head {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(220px, 0.38fr) minmax(660px, 1.35fr) minmax(320px, 0.62fr);
  margin-bottom: 96px;
}

.gallery-section__marker {
  align-items: center;
  color: var(--muted-text);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 40px auto;
}

.gallery-section__marker span,
.gallery-section__marker strong,
.gallery-section__title p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-section__marker span,
.gallery-section__title p {
  color: var(--sky-blue);
}

.gallery-section__marker i {
  background: rgba(32, 182, 231, 0.38);
  display: block;
  height: 1px;
  width: 40px;
}

.gallery-section__marker strong {
  white-space: nowrap;
}

.gallery-section__title p {
  color: var(--primary-blue);
  margin: 0 0 16px;
}

.gallery-section__title h2 {
  color: var(--heading);
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.gallery-section__title h2 span,
.gallery-section__title h2 em {
  display: block;
}

.gallery-section__title h2 em,
.gallery-section__title h2 span {
  color: var(--sky-blue);
  font-style: italic;
}

.gallery-section__copy {
  align-self: center;
  display: grid;
  gap: var(--content-gap);
}

.gallery-section__copy p {
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 28px;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  background: var(--white);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 75px rgba(18, 35, 84, 0.1);
  cursor: pointer;
  grid-column: span 3;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item--large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item--brand {
  background:
    radial-gradient(circle at 58% 38%, rgba(32, 182, 231, 0.22), transparent 34%),
    linear-gradient(145deg, var(--dark-navy), var(--deep-blue));
}

.gallery-item:nth-child(5n + 4),
.gallery-item:nth-child(5n + 5) {
  grid-column: span 3;
}

.gallery-item:nth-child(n + 6) {
  grid-column: span 4;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  width: 100%;
}

.gallery-item--brand img {
  object-fit: contain;
  padding: 22px;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 42%, rgba(10, 24, 61, 0.42));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-lightbox {
  background: transparent;
  border: 0;
  color: var(--white);
  height: 100dvh;
  max-height: none;
  max-width: none;
  padding: 24px;
  width: 100vw;
}

.gallery-lightbox::backdrop {
  background: rgba(3, 9, 24, 0.86);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[open] {
  align-items: center;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 24px;
}

.gallery-lightbox figure {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox img {
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  max-height: min(78dvh, 820px);
  object-fit: contain;
  width: min(100%, 1280px);
}

.gallery-lightbox figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 64px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 64px;
}

.gallery-lightbox__close svg,
.gallery-lightbox__nav svg {
  display: block;
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 26px;
}

.gallery-lightbox__close {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 2;
}

.gallery-lightbox__close svg {
  height: 24px;
  width: 24px;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__close:hover {
  background: var(--sky-blue);
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .gallery-section {
    padding: var(--section-y) var(--section-x);
  }

  .gallery-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .gallery-section__title h2 {
    font-size: clamp(48px, 9vw, 78px);
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 4),
  .gallery-item:nth-child(5n + 5),
  .gallery-item:nth-child(n + 6) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: var(--section-y) var(--section-x);
  }

  .gallery-section__marker {
    grid-template-columns: auto 40px 1fr;
  }

  .gallery-section__copy .btn {
    width: 100%;
  }

  .gallery-grid {
    gap: 18px;
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item:nth-child(5n + 4),
  .gallery-item:nth-child(5n + 5),
  .gallery-item:nth-child(n + 6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox[open] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .gallery-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-lightbox__nav {
    height: 54px;
    width: 54px;
  }

  .gallery-lightbox__nav svg {
    height: 23px;
    width: 23px;
  }

  .gallery-lightbox__nav--prev {
    justify-self: end;
  }

  .gallery-lightbox__nav--next {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero__title,
  .why-choose__heading h2,
  .services-section__title h2,
  .team-section__title h2,
  .faq-section__title h2,
  .reviews-section__title h2,
  .contact-info__title h2,
  .gallery-section__title h2 {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 0.98;
  }

  .hero__copy,
  .why-choose__copy p,
  .services-section__copy p,
  .team-section__copy,
  .faq-section__copy p,
  .contact-info__copy p,
  .gallery-section__copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .section-label,
  .why-choose__marker span,
  .why-choose__marker strong,
  .why-choose__heading p,
  .why-marquee__label span,
  .benefit-card__number,
  .benefit-card footer,
  .why-assessment > div > span,
  .services-section__marker span,
  .services-section__marker strong,
  .services-section__title p,
  .services-panel__copy > span,
  .services-panel__visual figcaption span,
  .team-section__marker span,
  .team-section__marker strong,
  .team-section__title p,
  .team-card__caption span,
  .faq-section__marker span,
  .faq-section__marker strong,
  .faq-section__title p,
  .reviews-section__marker span,
  .reviews-section__marker strong,
  .reviews-section__title p,
  .reviews-slider__status,
  .contact-info__marker span,
  .contact-info__marker strong,
  .contact-info__title p,
  .contact-detail-card__label,
  .contact-office-card__content span,
  .gallery-section__marker span,
  .gallery-section__marker strong,
  .gallery-section__title p {
    font-size: 10px;
  }

  .benefit-card h3,
  .services-panel h3,
  .team-card__caption h3,
  .faq-cta strong,
  .contact-office-card h3,
  .contact-detail-card h3 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }

  .services-panel p,
  .services-panel ul,
  .benefit-card p,
  .team-card__more p,
  .faq-list p,
  .review-card p,
  .contact-detail-card p,
  .contact-office-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .review-card footer strong {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .consultation-card {
    border-radius: 24px;
  }

  .consultation-card__top {
    align-items: center;
    gap: 14px;
    padding: 22px 20px 18px;
  }

  .consultation-card h2 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1;
  }

  .time-pill {
    font-size: 11px;
    gap: 6px;
    letter-spacing: 0.1em;
    padding: 7px 11px;
  }

  .consultation-form {
    gap: 12px;
    padding: 22px 20px 20px;
  }

  .consultation-form legend,
  .consultation-form label span {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .plan-tabs {
    gap: 8px;
  }

  .plan-tab {
    border-radius: 14px;
    font-size: 13px;
    min-height: 46px;
  }

  .form-grid {
    gap: 12px;
  }

  .consultation-form input,
  .consultation-form textarea {
    border-radius: 14px;
    font-size: 14px;
    min-height: 38px;
    padding: 13px 16px;
  }

  .consultation-form textarea {
    min-height: 86px;
  }

  .btn-card-submit {
    min-height: 52px;
  }
  .btn-text {
    font-size: 14px;
}
}

@media (max-width: 380px) {
  .consultation-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultation-card h2 {
    font-size: clamp(28px, 10vw, 38px);
  }
}

@media (max-width: 640px) {
  .consultation-modal {
    padding: 14px;
  }

  .consultation-modal[open] {
    align-items: start;
    padding-top: 18px;
  }

  .consultation-card--modal {
    border-radius: 22px;
    max-width: 100%;
    width: 100%;
  }

  .consultation-card--modal .consultation-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 22px 56px 16px 20px;
  }

  .consultation-card--modal h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    letter-spacing: -0.045em;
    line-height: 1.02;
  }

  .consultation-modal__close {
    font-size: 22px;
    height: 38px;
    right: 14px;
    top: 14px;
    width: 38px;
  }

  .consultation-card--modal .time-pill {
    font-size: 10px;
    padding: 6px 10px;
  }

  .consultation-card--modal .consultation-form {
    gap: 10px;
    padding: 18px 20px 20px;
  }

  .consultation-card--modal .consultation-form legend,
  .consultation-card--modal .consultation-form label span {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .consultation-card--modal .plan-tabs {
    gap: 7px;
  }

  .consultation-card--modal .plan-tab {
    border-radius: 12px;
    font-size: 12px;
    min-height: 42px;
  }

  .consultation-card--modal .form-grid {
    gap: 10px;
  }

  .consultation-card--modal .consultation-form input,
  .consultation-card--modal .consultation-form textarea {
    border-radius: 12px;
    font-size: 13px;
    min-height: 44px;
    padding: 11px 14px;
  }

  .consultation-card--modal .consultation-form textarea {
    min-height: 76px;
  }

  .consultation-card--modal .btn-card-submit {
    min-height: 48px;
  }
}

@media (max-width: 1440px) {
  .section-label,
  .why-choose__marker span,
  .why-choose__marker strong,
  .why-choose__heading p,
  .why-marquee__label span,
  .benefit-card__number,
  .benefit-card footer,
  .why-assessment > div > span,
  .services-section__marker span,
  .services-section__marker strong,
  .services-section__title p,
  .services-panel__copy > span,
  .services-panel__visual figcaption span,
  .team-section__marker span,
  .team-section__marker strong,
  .team-section__title p,
  .team-card__caption span,
  .faq-section__marker span,
  .faq-section__marker strong,
  .faq-section__title p,
  .reviews-section .reviews-section__marker span,
  .reviews-section .reviews-section__marker strong,
  .reviews-section .reviews-section__title p,
  .reviews-section .review-card header strong,
  .reviews-section .reviews-slider__status,
  .contact-info__marker span,
  .contact-info__marker strong,
  .contact-info__title p,
  .contact-detail-card__label,
  .contact-office-card__content span,
  .gallery-section__marker span,
  .gallery-section__marker strong,
  .gallery-section__title p {
    font-size: 10px;
  }

  .reviews-section .review-card p {
    font-size: 16px;
  }

  .hero__copy,
  .services-section__copy p,
  .services-tab,
  .team-section__copy,
  .about-aussizz__copy p,
  .contact-detail-card p {
    font-size: 16px;
  }

  .consultation-card h2 {
    font-size: 28px;
  }

  .services-panel p {
    font-size: 14px;
  }
}

@media (min-width: 641px) and (max-width: 1440px) {
  .why-choose__heading h2,
  .services-section__title h2,
  .team-section__title h2,
  .faq-section__title h2,
  .reviews-section__title h2,
  .contact-info__title h2,
  .gallery-section__title h2 {
    font-size: clamp(42px, 4.6vw, 66px);
  }
}

@media (max-width: 640px) {
  .hero__title,
  .why-choose__heading h2,
  .services-section__title h2,
  .team-section__title h2,
  .faq-section__title h2,
  .reviews-section__title h2,
  .contact-info__title h2,
  .gallery-section__title h2 {
    font-size: clamp(32px, 8.5vw, 42px);
    line-height: 1;
  }

  .section-label,
  .why-choose__marker span,
  .why-choose__marker strong,
  .why-choose__heading p,
  .why-marquee__label span,
  .benefit-card__number,
  .benefit-card footer,
  .why-assessment > div > span,
  .services-section__marker span,
  .services-section__marker strong,
  .services-section__title p,
  .services-panel__copy > span,
  .services-panel__visual figcaption span,
  .team-section__marker span,
  .team-section__marker strong,
  .team-section__title p,
  .team-card__caption span,
  .faq-section__marker span,
  .faq-section__marker strong,
  .faq-section__title p,
  .reviews-section .reviews-section__marker span,
  .reviews-section .reviews-section__marker strong,
  .reviews-section .reviews-section__title p,
  .reviews-section .review-card header strong,
  .reviews-section .reviews-slider__status,
  .contact-info__marker span,
  .contact-info__marker strong,
  .contact-info__title p,
  .contact-detail-card__label,
  .contact-office-card__content span,
  .gallery-section__marker span,
  .gallery-section__marker strong,
  .gallery-section__title p {
    font-size: 8px;
  }

  .hero__copy,
  .why-choose__copy p,
  .services-section__copy p,
  .services-tab,
  .team-section__copy,
  .faq-section__copy p,
  .reviews-section .review-card p,
  .contact-info__copy p,
  .contact-detail-card p,
  .gallery-section__copy p,
  .about-aussizz__copy p {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .services-tabs {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100svh - 40px);
  }

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

  .services-tab {
    font-size: 13px;
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
  }

  .services-panels {
    min-height: 0;
  }

  .services-panel {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) clamp(180px, 28svh, 230px);
  }

  .services-panel__copy {
    min-height: 0;
    order: 0;
    overflow: hidden;
    padding: 24px 22px 20px;
  }

  .services-panel h3 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.02;
    margin: 12px 0 12px;
  }

  .services-panel p {
    font-size: 14px;
    line-height: 1.48;
    -webkit-line-clamp: 3;
  }

  .services-panel__link {
    margin-top: 18px;
    min-height: 46px;
  }

  .services-panel__visual {
    display: flex;
    min-height: 0;
    order: 1;
    padding: 22px;
  }

  .services-panel__visual strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .services-panel__visual figcaption span {
    font-size: 8px;
    margin-top: 10px;
  }
}
