@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #56627a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
  transition: padding-top 0.3s ease;
}

@media (min-width: 992px) {
  body {
    padding-top: 100px;
  }
  body.body-header-scrolled {
    padding-top: 72px;
  }
}
body.body-header-scrolled {
  padding-top: 64px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  max-width: 1320px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #45b12c;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 36px;
  }
  .section-intro {
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .section-heading {
    font-size: 42px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.header .navbar {
  min-height: 80px;
  padding: 0;
  transition: min-height 0.3s ease;
}
.header .navbar-brand {
  padding: 0;
  line-height: 0;
  text-decoration: none;
}
.header .navbar-brand:hover, .header .navbar-brand:focus {
  opacity: 0.9;
}
.header__logo,
.header .navbar-brand img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  transition: height 0.3s ease;
}
.header .navbar-toggler {
  border: 0;
  padding: 0;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-nav {
  gap: 0;
}
.header .nav-item {
  width: 100%;
}
.header .nav-link {
  display: block;
  padding: 12px 0;
  position: relative;
  color: #0f1f5c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: #0d5bff;
  transition: width 0.35s ease;
}
.header .nav-link.active {
  color: #0d5bff;
}
.header .nav-link.active::after {
  width: 36px;
}
.header .nav-link:hover {
  color: #0d5bff;
}
.header .nav-link:hover::after {
  width: 36px;
}
.header .navbar-nav:hover .nav-link.active:not(:hover) {
  color: #0f1f5c;
}
.header .navbar-nav:hover .nav-link.active:not(:hover)::after {
  width: 0;
}
.header__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.header__phone {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0d5bff, #0045d6);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}
.header__phone:hover {
  color: #fff;
  opacity: 0.92;
}
.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header--scrolled .navbar {
  min-height: 64px;
}
.header--scrolled__logo,
.header--scrolled .navbar-brand img {
  height: 44px;
}

.header__offcanvas {
  width: min(320px, 85vw);
}
.header__offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e8ecf3;
}
.header__offcanvas .offcanvas-title {
  font-size: 18px;
  font-weight: 700;
  color: #081f5c;
}
.header__offcanvas .offcanvas-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.header__offcanvas .navbar-nav {
  margin-bottom: auto;
}
.header__offcanvas .nav-link {
  padding: 14px 0;
  font-size: 16px;
}

.header__desktop-nav {
  align-items: center;
  width: 100%;
  flex: 1;
}

@media (min-width: 768px) {
  .header__offcanvas .header__actions {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .header .navbar {
    min-height: 100px;
  }
  .header__logo,
  .header .navbar-brand img,
  .header .navbar-brand .header__logo {
    height: 68px;
    max-width: 280px;
  }
  .header__desktop-nav .navbar-nav {
    gap: 2.5rem;
  }
  .header__desktop-nav .nav-item {
    width: auto;
  }
  .header__desktop-nav .nav-link {
    padding: 0.5rem 0;
  }
  .header__desktop-nav .nav-link::after {
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    height: 4px;
  }
  .header__desktop-nav .nav-link.active::after {
    width: 40px;
  }
  .header__desktop-nav .nav-link:hover::after {
    width: 40px;
  }
  .header__desktop-nav .navbar-nav:hover .nav-link.active:not(:hover)::after {
    width: 0;
  }
  .header__actions {
    margin-top: 0;
    margin-left: 30px;
    flex-direction: row;
    align-items: center;
  }
  .header--scrolled .navbar {
    min-height: 72px;
  }
  .header--scrolled__logo,
  .header--scrolled .navbar-brand img {
    height: 52px;
  }
  .header--scrolled .header__desktop-nav .nav-link::after {
    bottom: -24px;
  }
}
.footer {
  background: linear-gradient(180deg, #0038c7, #00227d);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 320px;
}
.footer__logo {
  display: inline-block;
  text-decoration: none;
}
.footer__logo img {
  display: block;
  max-height: 60px;
  width: auto;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer__links, .footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  font-size: 14px;
}
.footer__links a, .footer__contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s ease;
}
.footer__links a:hover, .footer__contact a:hover {
  color: #fff;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer__contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.75;
}
.footer__contact li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer__contact li a:hover {
  color: #fff;
}
.footer__ndis-badge p {
  font-size: 13px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
}
.footer__bottom-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom-info p {
  margin: 0;
}
.footer__credit {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  display: flex;
  justify-content: right;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s ease;
}
.footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 56px;
  }
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr 0.9fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: end;
    align-items: center;
    text-align: left;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: #0d5bff;
  border-color: #0d5bff;
  color: #fff;
}
.btn--primary:hover {
  background: #0045d6;
  border-color: #0045d6;
  color: #fff;
}
.btn--outline-green {
  background: #fff;
  border-color: #45b12c;
  color: #45b12c;
}
.btn--outline-green:hover {
  background: #45b12c;
  color: #fff;
}
.btn--outline {
  background: #fff;
  border-color: #0d5bff;
  color: #0d5bff;
}
.btn--outline:hover {
  background: #0d5bff;
  color: #fff;
}
.btn--white {
  background: #fff;
  border-color: #fff;
  color: #0d5bff;
}
.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0045d6;
}

.card {
  background: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0 0 40px;
  position: relative;
}
.hero > .container {
  order: 1;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
}
.hero__content {
  text-align: center;
}
.hero__image {
  order: 1;
  position: relative;
  width: 100%;
  margin-top: 0;
}
.hero__badge {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(13, 91, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #081f5c;
  margin-bottom: 20px;
  box-shadow: none;
}
.hero__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 20px;
}
.hero__title-accent {
  color: #45b12c;
}
.hero__text {
  display: none;
  font-size: 15px;
  line-height: 1.75;
  color: #56627a;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.hero__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}
.hero__curve {
  display: none;
}
.hero__curve--blue, .hero__curve--green {
  position: absolute;
  width: calc(var(--curve-r) * 2);
  height: calc(var(--curve-r) * 2);
  left: calc(var(--curve-x) - var(--curve-r));
  top: calc(50% - var(--curve-r));
  pointer-events: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.hero__curve--blue {
  z-index: 2;
  background: #0d5bff;
}
.hero__curve--green {
  z-index: 3;
  background: transparent;
  border: 6px solid #45b12c;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  order: 3;
}

.hero-feature {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.hero-feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feature__icon--green {
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
}
.hero-feature__icon--blue {
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
}
.hero-feature__icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.hero-feature__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.hero-feature__title {
  font-size: 14px;
  font-weight: 700;
  color: #081f5c;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 576px) {
  .hero__title {
    font-size: 30px;
  }
  .hero__image-wrap {
    min-height: 240px;
  }
  .hero__image-wrap img {
    min-height: 240px;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 32px 0 48px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .hero__image-wrap {
    min-height: 280px;
  }
  .hero__image-wrap img {
    min-height: 280px;
  }
}
@media (min-width: 992px) {
  .hero {
    display: block;
    background: #f7f9fc;
    padding: 0 0 55px;
    min-height: 580px;
  }
  .hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100%;
    min-height: 580px;
    margin-top: 0;
    z-index: 1;
  }
  .hero__content {
    width: 42%;
    max-width: 560px;
    padding: 64px 0 48px;
    text-align: left;
  }
  .hero__badge {
    display: inline-flex;
  }
  .hero__text {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .hero__buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .hero__title {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .hero__image-wrap {
    --curve-r: min(165%, 600px);
    --curve-x: -32%;
    height: 100%;
    min-height: 580px;
  }
  .hero__image-wrap img {
    position: relative;
    z-index: 1;
    min-height: 580px;
    height: 100%;
    object-position: center right;
    -webkit-mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
    mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
  }
  .hero__curve {
    display: block;
  }
  .hero__curve--blue, .hero__curve--green {
    display: block;
  }
  .hero-features {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    gap: 0;
    z-index: 5;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-feature {
    flex: 1;
    box-shadow: none;
    border-radius: 0;
    padding: 28px 24px;
    min-height: 110px;
    border-left: 1px solid #e8ecf3;
  }
  .hero-feature:first-child {
    border-left: 0;
  }
  .hero + .about {
    padding-top: 90px;
  }
}
@media (min-width: 1200px) {
  .hero {
    min-height: 620px;
  }
  .hero__content {
    padding: 80px 0 60px;
  }
  .hero__title {
    font-size: 58px;
  }
  .hero__image {
    min-height: 620px;
  }
  .hero__image-wrap {
    --curve-r: min(165%, 640px);
    min-height: 620px;
  }
  .hero__image-wrap img {
    min-height: 620px;
  }
  .hero + .about {
    padding-top: 100px;
  }
}
@media (min-width: 1400px) {
  .hero__title {
    font-size: 68px;
  }
  .hero__content {
    max-width: 580px;
  }
  .hero__image-wrap {
    --curve-r: min(170%, 680px);
    --curve-x: -40%;
  }
}
.about {
  padding: 0;
  background: #fff;
}
.about__wrapper {
  display: grid;
  gap: 32px;
}
.about__logo {
  display: flex;
  justify-content: center;
}
.about__logo img {
  max-width: 200px;
  opacity: 0.85;
}
.about__content {
  text-align: center;
}
.about__content p {
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__content .btn {
  margin-top: 8px;
}
.about__values {
  background: #fafafa;
  border-radius: 24px;
  padding: 24px 20px;
}
.about__values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__values-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about__values-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 4px;
}
.about__values-list p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.about__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .about {
    padding: 32px 0;
  }
  .about__logo img {
    max-width: 240px;
  }
}
@media (min-width: 1200px) {
  .about {
    padding: 72px 0;
  }
  .about__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }
  .about__logo {
    justify-content: flex-start;
  }
  .about__logo img {
    max-width: 280px;
  }
  .about__content {
    text-align: left;
  }
  .about__values {
    padding: 28px 24px;
  }
}
.services {
  background: #f7f9fc;
  padding: 56px 0;
}
.services .section-intro {
  margin-bottom: 40px;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon i,
.service-card__icon .fa-solid {
  font-size: 26px;
  line-height: 1;
  display: inline-block;
}
.service-card__icon--blue {
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
}
.service-card__icon--blue.service-card__icon--solid {
  background: #0d5bff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 91, 255, 0.25);
}
.service-card__icon--teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}
.service-card__icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.service-card__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.service-card__icon--pink {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}
.service-card__icon--green {
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
}
.service-card__content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #081f5c;
  margin: 0;
  opacity: 0.85;
}

@media (min-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .services {
    padding: 48px 0;
    margin-bottom: 0 !important;
  }
  .services .section-intro {
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .services {
    padding: 72px 0;
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    padding: 28px 26px;
    gap: 20px;
  }
  .service-card__icon {
    width: 68px;
    height: 68px;
  }
  .service-card__icon i {
    font-size: 28px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 15px;
  }
}
.impact {
  padding: 36px 0;
  background: #fff;
}
.impact__grid {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
.impact__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.impact__privacy svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #64748b;
}

.impact-story {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.impact-story__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.impact-story h3 {
  font-size: 20px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 12px;
}
.impact-story p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.impact-quote {
  background: rgba(69, 177, 44, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 0;
  position: relative;
}
.impact-quote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 64px;
  line-height: 1;
  color: #45b12c;
  opacity: 0.35;
  font-family: Georgia, serif;
}
.impact-quote p {
  font-size: 17px;
  line-height: 1.75;
  color: #081f5c;
  font-style: italic;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.impact-quote cite {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #56627a;
}

.thryonlab-testimonials__header {
  text-align: center;
}

@media (min-width: 768px) {
  .impact {
    padding: 48px 0;
  }
}
@media (min-width: 1200px) {
  .impact {
    padding: 0 0 72px 0;
  }
  .impact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }
  .impact-quote {
    padding: 40px 36px;
  }
  .impact-quote p {
    font-size: 19px;
  }
}
.cta {
  padding: 0 0 56px;
  background: #fff;
}
.cta__box {
  background: linear-gradient(90deg, #0d5bff, #0045d6);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta__content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.cta__content p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

@media (min-width: 768px) {
  .cta {
    padding-bottom: 72px;
  }
  .cta__content h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .cta {
    padding-bottom: 90px;
  }
  .cta__box {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 44px 56px;
    gap: 32px;
  }
  .cta__content {
    flex: 1;
  }
  .cta__content h2 {
    font-size: 36px;
  }
}
.home__four-column {
  margin: 24px 0;
  position: relative;
  z-index: 8;
}

@media (min-width: 1200px) {
  .home__four-column {
    margin: -84px 0 0;
    position: relative;
    z-index: 8;
  }
}
.about-hero {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0 0 40px;
  position: relative;
}
.about-hero > .container {
  order: 1;
}
.about-hero__wrapper {
  position: relative;
  z-index: 2;
}
.about-hero__content {
  text-align: center;
}
.about-hero__content .section-tag {
  display: none;
}
.about-hero__image {
  order: 2;
  position: relative;
  width: 100%;
  margin-top: 0;
}
.about-hero__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 20px;
}
.about-hero__title-accent {
  color: #45b12c;
}
.about-hero__text {
  display: none;
  font-size: 15px;
  line-height: 1.75;
  color: #56627a;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.about-hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.about-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}
.about-hero__curve {
  display: none;
}
.about-hero__curve--blue, .about-hero__curve--green {
  position: absolute;
  width: calc(var(--curve-r) * 2);
  height: calc(var(--curve-r) * 2);
  left: calc(var(--curve-x) - var(--curve-r));
  top: calc(50% - var(--curve-r));
  pointer-events: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.about-hero__curve--blue {
  z-index: 2;
  background: #0d5bff;
}
.about-hero__curve--green {
  z-index: 3;
  background: transparent;
  border: 6px solid #45b12c;
}

@media (min-width: 576px) {
  .about-hero__title {
    font-size: 30px;
  }
  .about-hero__image-wrap {
    min-height: 240px;
  }
  .about-hero__image-wrap img {
    min-height: 240px;
  }
}
@media (min-width: 768px) {
  .about-hero {
    padding: 32px 0 48px;
  }
  .about-hero__title {
    font-size: 34px;
  }
  .about-hero__image-wrap {
    min-height: 280px;
  }
  .about-hero__image-wrap img {
    min-height: 280px;
  }
}
@media (min-width: 992px) {
  .about-hero {
    display: block;
    background: #f7f9fc;
    padding: 0 0 90px;
    min-height: 580px;
  }
  .about-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100%;
    min-height: 580px;
    margin-top: 0;
    z-index: 1;
  }
  .about-hero__content {
    width: 42%;
    max-width: 560px;
    padding: 64px 0 48px;
    text-align: left;
  }
  .about-hero__content .section-tag {
    display: inline-block;
  }
  .about-hero__text {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .about-hero__buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .about-hero__title {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .about-hero__image-wrap {
    --curve-r: min(165%, 600px);
    --curve-x: -32%;
    height: 100%;
    min-height: 580px;
  }
  .about-hero__image-wrap img {
    position: relative;
    z-index: 1;
    min-height: 580px;
    height: 100%;
    object-position: center right;
    -webkit-mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
    mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
  }
  .about-hero__curve {
    display: block;
  }
  .about-hero__curve--blue, .about-hero__curve--green {
    display: block;
  }
}
@media (min-width: 1200px) {
  .about-hero {
    min-height: 620px;
  }
  .about-hero__content {
    padding: 80px 0 60px;
  }
  .about-hero__title {
    font-size: 56px;
  }
  .about-hero__image {
    min-height: 620px;
  }
  .about-hero__image-wrap {
    --curve-r: min(165%, 640px);
    min-height: 620px;
  }
  .about-hero__image-wrap img {
    min-height: 620px;
  }
}
@media (min-width: 1400px) {
  .about-hero__title {
    font-size: 64px;
  }
  .about-hero__image-wrap {
    --curve-r: min(170%, 680px);
    --curve-x: -40%;
  }
}
.about-mission {
  padding: 0;
  background: #fff;
}
.about-mission__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.about-mission__media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.about-mission__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}
.about-mission__heading {
  margin-bottom: 16px;
}
.about-mission__intro {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-mission__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.about-mission__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-mission__list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 4px;
}
.about-mission__list p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.about-mission__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .about-mission {
    padding: 72px 0;
  }
  .about-mission__media img {
    min-height: 360px;
  }
}
@media (min-width: 1200px) {
  .about-mission {
    padding: 90px 0;
  }
  .about-mission__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .about-mission__media img {
    min-height: 480px;
  }
}
.about-director {
  padding: 0 0 56px;
  background: #fff;
}
.about-director__box {
  background: rgba(69, 177, 44, 0.08);
  border-radius: 30px;
  padding: 32px 24px;
}
.about-director__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.about-director__content .section-tag,
.about-director .thryonlab-leader__content .section-tag {
  margin-bottom: 12px;
}
.about-director__content .section-heading,
.about-director__content .thryonlab-leader__title,
.about-director .thryonlab-leader__content .section-heading,
.about-director .thryonlab-leader__content .thryonlab-leader__title {
  margin-bottom: 20px;
}
.about-director__content p,
.about-director__content .thryonlab-leader__message p,
.about-director .thryonlab-leader__content p,
.about-director .thryonlab-leader__content .thryonlab-leader__message p {
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-director__signature {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  font-weight: 700;
  color: #0d5bff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.about-director__name,
.about-director .about-director__name {
  font-size: 14px;
  font-weight: 600;
  color: #081f5c;
  margin: 0;
}
.about-director__portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.about-director__portrait-bg,
.about-director .thryonlab-leader__portrait-bg {
  position: absolute;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.15);
  right: 0;
  bottom: 0;
  z-index: 0;
}
.about-director__portrait-bg::after,
.about-director .thryonlab-leader__portrait-bg::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.65;
}
.about-director__portrait,
.about-director .about-director__portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-director__portrait img,
.about-director .about-director__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-director__quote,
.about-director .thryonlab-leader__quote {
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 2;
  font-size: 72px;
  line-height: 1;
  color: #45b12c;
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
}

@media (min-width: 768px) {
  .about-director {
    padding-bottom: 72px;
  }
  .about-director__box {
    padding: 48px 40px;
  }
  .about-director__signature {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .about-director {
    padding-bottom: 90px;
  }
  .about-director__box {
    padding: 56px 64px;
  }
  .about-director__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  .about-director__portrait-wrap {
    justify-content: flex-end;
    min-height: 360px;
  }
  .about-director__portrait,
  .about-director .about-director__portrait {
    width: 300px;
  }
  .about-director__portrait-bg,
  .about-director .thryonlab-leader__portrait-bg {
    width: 360px;
  }
  .about-director__quote,
  .about-director .thryonlab-leader__quote {
    font-size: 96px;
    right: 4%;
  }
}
.about-team {
  padding: 0 0 56px;
  background: #fff;
}
.about-team__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.about-team__intro p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-team__media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.about-team__media img {
  display: block;
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}
.about-team__reasons .section-tag {
  margin-bottom: 20px;
}
.about-team__reasons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-team__reasons-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e8ecf3;
  font-size: 14px;
  font-weight: 600;
  color: #081f5c;
  line-height: 1.45;
}
.about-team__reasons-list li:first-child {
  padding-top: 0;
}
.about-team__reasons-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.about-team__reason-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.about-team__reason-icon--green {
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
}
.about-team__reason-icon--blue {
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
}
.about-team__reason-icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.about-team__reason-icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.about-team__reason-icon--teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

@media (min-width: 768px) {
  .about-team {
    padding-bottom: 72px;
  }
  .about-team__media img {
    min-height: 320px;
  }
}
@media (min-width: 1200px) {
  .about-team {
    padding-bottom: 90px;
  }
  .about-team__grid {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .about-team__media {
    margin-top: 48px;
  }
  .about-team__media img {
    min-height: 380px;
  }
}
.services-hero {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 24px 0 40px;
  position: relative;
}
.services-hero > .container {
  order: 1;
}
.services-hero__wrapper {
  position: relative;
  z-index: 2;
}
.services-hero__content {
  text-align: center;
}
.services-hero__content .section-tag {
  display: inline-block;
}
.services-hero__image {
  order: 2;
  position: relative;
  width: 100%;
  margin-top: 0;
}
.services-hero__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 16px;
}
.services-hero__title-accent {
  color: #45b12c;
}
.services-hero__text {
  font-size: 15px;
  line-height: 1.75;
  color: #56627a;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.services-hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 30px;
}
.services-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
.services-hero__curve {
  display: none;
}
.services-hero__curve--blue, .services-hero__curve--green {
  position: absolute;
  width: calc(var(--curve-r) * 2);
  height: calc(var(--curve-r) * 2);
  left: calc(var(--curve-x) - var(--curve-r));
  top: calc(50% - var(--curve-r));
  pointer-events: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.services-hero__curve--blue {
  z-index: 2;
  background: #0d5bff;
}
.services-hero__curve--green {
  z-index: 3;
  background: transparent;
  border: 6px solid #45b12c;
}

@media (min-width: 576px) {
  .services-hero__title {
    font-size: 30px;
  }
  .services-hero__image-wrap {
    min-height: 240px;
  }
  .services-hero__image-wrap img {
    min-height: 240px;
  }
}
@media (min-width: 768px) {
  .services-hero {
    padding: 32px 0 48px;
  }
  .services-hero__title {
    font-size: 34px;
  }
  .services-hero__image-wrap {
    min-height: 280px;
  }
  .services-hero__image-wrap img {
    min-height: 280px;
  }
}
@media (min-width: 992px) {
  .services-hero {
    display: block;
    background: #f7f9fc;
    padding: 0 0 90px;
    min-height: 520px;
  }
  .services-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100%;
    min-height: 520px;
    z-index: 1;
  }
  .services-hero__content {
    width: 42%;
    max-width: 560px;
    padding: 64px 0 48px;
    text-align: left;
  }
  .services-hero__text {
    margin-left: 0;
    margin-right: 0;
  }
  .services-hero__title {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .services-hero__image-wrap {
    --curve-r: min(165%, 600px);
    --curve-x: -32%;
    height: 100%;
    min-height: 520px;
    border-radius: 0;
  }
  .services-hero__image-wrap img {
    position: relative;
    z-index: 1;
    min-height: 520px;
    height: 100%;
    border-radius: 0;
    object-position: center right;
    -webkit-mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
    mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
  }
  .services-hero__curve {
    display: block;
  }
  .services-hero__curve--blue, .services-hero__curve--green {
    display: block;
  }
}
@media (min-width: 1200px) {
  .services-hero {
    min-height: 560px;
  }
  .services-hero__content {
    padding: 80px 0 60px;
  }
  .services-hero__title {
    font-size: 56px;
  }
  .services-hero__image {
    min-height: 560px;
  }
  .services-hero__image-wrap {
    --curve-r: min(165%, 640px);
    min-height: 560px;
  }
  .services-hero__image-wrap img {
    min-height: 560px;
  }
}
@media (min-width: 1400px) {
  .services-hero__image-wrap {
    --curve-r: min(170%, 680px);
    --curve-x: -40%;
  }
}
.services-offer {
  padding: 56px 0;
  background: #fff;
}
.services-offer .section-intro {
  margin-bottom: 32px;
}

.services-offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-offer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}
.service-offer-card__body {
  padding: 24px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-offer-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.service-offer-card__icon--blue {
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
}
.service-offer-card__icon--green {
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
}
.service-offer-card__icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.service-offer-card__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.service-offer-card__icon--pink {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}
.service-offer-card__icon--teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}
.service-offer-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-offer-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #56627a;
  margin: 0 0 20px;
  flex: 1;
}
.service-offer-card__media {
  margin-top: auto;
}
.service-offer-card__media img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 576px) {
  .services-offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .services-offer {
    padding: 72px 0;
  }
  .services-offer .section-intro {
    margin-bottom: 48px;
  }
  .service-offer-card__media img {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .services-offer {
    padding: 90px 0;
  }
  .services-offer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .service-offer-card__body {
    padding: 28px 24px 22px;
  }
  .service-offer-card__title {
    font-size: 18px;
  }
  .service-offer-card__text {
    font-size: 15px;
  }
  .service-offer-card__media img {
    height: 200px;
  }
}
.services-process {
  padding: 56px 0;
  background: #f7f9fc;
}
.services-process .section-intro {
  margin-bottom: 32px;
}

.services-process__flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 24px;
  padding: 24px 22px;
  text-align: center;
  height: 100%;
}
.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.process-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #56627a;
  margin: 0;
}

.process-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(69, 177, 44, 0.55);
  font-size: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .services-process {
    padding: 72px 0;
  }
  .services-process .section-intro {
    margin-bottom: 48px;
  }
  .services-process__flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .services-process {
    padding: 90px 0;
  }
  .services-process__flow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .process-card {
    flex: 1;
    padding: 28px 20px;
  }
  .process-arrow {
    display: flex;
    width: 32px;
  }
}
@media (min-width: 1200px) {
  .process-card {
    padding: 32px 24px;
  }
  .process-card__title {
    font-size: 18px;
  }
  .process-card__text {
    font-size: 15px;
  }
  .process-arrow {
    width: 40px;
    font-size: 20px;
  }
}
.contact-hero {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 24px 0 40px;
  position: relative;
}
.contact-hero > .container {
  order: 1;
}
.contact-hero__wrapper {
  position: relative;
  z-index: 2;
}
.contact-hero__content {
  text-align: center;
}
.contact-hero__content .section-tag {
  display: inline-block;
}
.contact-hero__image {
  order: 2;
  position: relative;
  width: 100%;
  margin-top: 0;
}
.contact-hero__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 16px;
}
.contact-hero__title-accent {
  color: #45b12c;
}
.contact-hero__text {
  font-size: 15px;
  line-height: 1.75;
  color: #56627a;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.contact-hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 30px;
}
.contact-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
.contact-hero__curve {
  display: none;
}
.contact-hero__curve--blue, .contact-hero__curve--green {
  position: absolute;
  width: calc(var(--curve-r) * 2);
  height: calc(var(--curve-r) * 2);
  left: calc(var(--curve-x) - var(--curve-r));
  top: calc(50% - var(--curve-r));
  pointer-events: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.contact-hero__curve--blue {
  z-index: 2;
  background: #0d5bff;
}
.contact-hero__curve--green {
  z-index: 3;
  background: transparent;
  border: 6px solid #45b12c;
}

@media (min-width: 576px) {
  .contact-hero__title {
    font-size: 30px;
  }
  .contact-hero__image-wrap {
    min-height: 240px;
  }
  .contact-hero__image-wrap img {
    min-height: 240px;
  }
}
@media (min-width: 768px) {
  .contact-hero {
    padding: 32px 0 48px;
  }
  .contact-hero__title {
    font-size: 34px;
  }
  .contact-hero__buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-hero__image-wrap {
    min-height: 280px;
  }
  .contact-hero__image-wrap img {
    min-height: 280px;
  }
}
@media (min-width: 992px) {
  .contact-hero {
    display: block;
    background: #f7f9fc;
    padding: 0 0 90px;
    min-height: 520px;
  }
  .contact-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100%;
    min-height: 520px;
    z-index: 1;
  }
  .contact-hero__content {
    width: 42%;
    max-width: 560px;
    padding: 64px 0 48px;
    text-align: left;
  }
  .contact-hero__text {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-hero__buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  .contact-hero__title {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .contact-hero__image-wrap {
    --curve-r: min(165%, 600px);
    --curve-x: -32%;
    height: 100%;
    min-height: 520px;
    border-radius: 0;
  }
  .contact-hero__image-wrap img {
    position: relative;
    z-index: 1;
    min-height: 520px;
    height: 100%;
    border-radius: 0;
    object-position: center right;
    -webkit-mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
    mask-image: radial-gradient(circle at var(--curve-x) 50%, transparent calc(var(--curve-r) - 1px), black var(--curve-r));
  }
  .contact-hero__curve {
    display: block;
  }
  .contact-hero__curve--blue, .contact-hero__curve--green {
    display: block;
  }
}
@media (min-width: 1200px) {
  .contact-hero {
    min-height: 560px;
  }
  .contact-hero__content {
    padding: 80px 0 60px;
  }
  .contact-hero__title {
    font-size: 56px;
  }
  .contact-hero__image {
    min-height: 560px;
  }
  .contact-hero__image-wrap {
    --curve-r: min(165%, 640px);
    min-height: 560px;
  }
  .contact-hero__image-wrap img {
    min-height: 560px;
  }
}
@media (min-width: 1400px) {
  .contact-hero__image-wrap {
    --curve-r: min(170%, 680px);
    --curve-x: -40%;
  }
}
.contact-main {
  padding: 56px 0;
  background: #fff;
}
.contact-main__grid {
  display: grid;
  gap: 40px;
}
.contact-main__intro {
  margin-bottom: 24px;
}
.contact-main__intro p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.contact-main__heading {
  font-size: 28px;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 24px;
  padding: 20px 22px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-info-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-info-card__icon--blue {
  background: rgba(13, 91, 255, 0.1);
  color: #0d5bff;
}
.contact-info-card__icon--green {
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
}
.contact-info-card__icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.contact-info-card__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.contact-info-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #081f5c;
  margin-bottom: 6px;
}
.contact-info-card__detail {
  font-size: 15px;
  font-weight: 600;
  color: #081f5c;
  margin-bottom: 4px;
  line-height: 1.4;
}
.contact-info-card__detail a {
  color: #0d5bff;
  text-decoration: none;
}
.contact-info-card__detail a:hover {
  text-decoration: underline;
}
.contact-info-card__meta {
  font-size: 13px;
  color: #56627a;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-form__intro {
  margin-bottom: 24px;
}
.contact-form__intro p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #081f5c;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #e8ecf3;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #081f5c;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #0d5bff;
  box-shadow: 0 0 0 3px rgba(13, 91, 255, 0.12);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #64748b;
}
.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__field--full {
  grid-column: 1/-1;
}
.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.55;
  color: #56627a;
}
.contact-form__privacy i {
  color: #64748b;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-form .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-main {
    padding: 72px 0;
  }
  .contact-main__heading {
    font-size: 32px;
  }
  .contact-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-main {
    padding: 90px 0;
  }
  .contact-main__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-form {
    padding: 36px 32px;
  }
}
@media (min-width: 1200px) {
  .contact-main__heading {
    font-size: 36px;
  }
}
.contact-map {
  padding: 0 0 56px;
  background: #f7f9fc;
}
.contact-map__grid {
  display: grid;
  gap: 24px;
}
.contact-map__panel {
  background: #fafafa;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
}
.contact-map__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(69, 177, 44, 0.12);
  color: #45b12c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}
.contact-map__heading {
  font-size: 24px;
  font-weight: 800;
  color: #081f5c;
  margin-bottom: 12px;
}
.contact-map__text {
  font-size: 15px;
  line-height: 1.75;
  color: #56627a;
  margin-bottom: 24px;
}

.contact-map__canvas {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  height: 280px;
  border: 1px solid #e8ecf3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: #e8ecf3;
}
.contact-map__canvas .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 280px;
  font-family: inherit;
}

.contact-map-marker {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d5bff;
  font-size: 40px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .contact-map {
    padding-bottom: 72px;
  }
  .contact-map__canvas {
    min-height: 360px;
    height: 360px;
  }
  .contact-map__canvas .leaflet-container {
    min-height: 360px;
  }
}
@media (min-width: 992px) {
  .contact-map {
    padding-bottom: 90px;
  }
  .contact-map__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: stretch;
  }
  .contact-map__panel {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 36px;
  }
  .contact-map__icon {
    margin: 0 0 20px;
  }
  .contact-map__canvas {
    min-height: 420px;
    height: 100%;
  }
  .contact-map__canvas .leaflet-container {
    min-height: 420px;
  }
}
@media (min-width: 1200px) {
  .contact-map__heading {
    font-size: 28px;
  }
}
.banner {
  margin-bottom: 36px !important;
}
/*# sourceMappingURL=style.css.map */