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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #33647E;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #16444A;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container-custom {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 45px;
}

.section__title {
  font-size: 38px;
  margin-bottom: 12px;
}

.section__desc {
  color: #33647E;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #7ACA78 0%, #55bfd7 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  min-height: 44px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gradient i, .btn-gradient svg {
  font-size: 0.95em;
}
.btn-gradient:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(85, 191, 215, 0.35);
}
.btn-gradient:focus-visible {
  outline: 2px solid #55bfd7;
  outline-offset: 2px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #1E4B5A;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  min-height: 44px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  color: #16444A;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  background: #ffffff;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(21, 66, 73, 0.03);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(21, 66, 73, 0.1);
}

.navbar-custom {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand__logo {
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu__link {
  color: #16444A;
  font-weight: 500;
  font-size: 15.2px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-menu__link:hover {
  color: #4fbf8f;
}

.nav-toggler {
  display: none;
  border: none;
  background: none;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #16444A;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggler__icon, .nav-toggler__icon::before, .nav-toggler__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #16444A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggler__icon {
  position: relative;
}
.nav-toggler__icon::before, .nav-toggler__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggler__icon::before {
  top: -7px;
}
.nav-toggler__icon::after {
  top: 7px;
}
.nav-toggler.is-active .nav-toggler__icon {
  background: transparent;
}
.nav-toggler.is-active .nav-toggler__icon::before {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggler.is-active .nav-toggler__icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  margin-top: 84px;
  padding: 29px 0;
  overflow: hidden;
  background-color: #dce9f7;
}

.form-banner-right {
  max-width: 413px;
  margin-left: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: start;
}

.cphi-logo {
  width: auto;
  height: 70px;
  margin-bottom: 24px;
}

.hero__desc {
  color: #16444A;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
  text-transform: none;
}

.booth-wrap {
  position: relative;
  margin-top: 30px;
}

.hero__badge {
  display: inline-block;
  align-items: center;
  background: linear-gradient(90deg, #7ACA78 0%, #55bfd7 100%);
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  padding: 10px 15px 20px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: -10px;
}

.booth-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 460px;
  border: 1px solid #7ACA78;
  background: url("../images/booth-background-new.png") no-repeat bottom right/78% 120%, linear-gradient(84deg, #E1EFDD 0%, #E6F6FD 100%);
  box-shadow: 0 4px 19.5px 0 rgba(0, 0, 0, 0.09);
  background-size: auto;
}
.booth-card__title {
  font-size: 28px;
  color: #16444A;
  margin-bottom: 18px;
  margin-top: 0;
}
.booth-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #16444A;
  margin-bottom: 12px;
}
.booth-card__row:last-child {
  margin-bottom: 0;
}
.booth-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.booth-card__icon img {
  width: 22px;
  height: 22px;
}

.meeting-card {
  border-radius: 9px;
  border: 0.8px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 9px 93.7px -11px rgba(8, 16, 50, 0.28);
  backdrop-filter: blur(13.6499996185px);
  padding: 17px;
  color: #ffffff;
}
.meeting-card__title {
  color: #ffffff;
  margin-bottom: 5.6px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.meeting-card__subtitle {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 7px;
}
.form-field label {
  display: block;
  color: #ffffff;
  margin-bottom: 6.4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.24px;
}
.form-field label .req {
  color: #7ACA78;
}
.form-field .field-input {
  width: 100%;
  border-radius: 6px;
  border: 0.8px solid rgba(255, 255, 255, 0.19);
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  padding: 8px 16px;
  min-height: 34px;
  transition: all 0.3s ease;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: unset;
}
.form-field .field-input::placeholder {
  color: rgba(255, 255, 255, 0.31);
}
.form-field .field-input:focus {
  outline: none;
  border-color: #55bfd7;
  background: rgba(255, 255, 255, 0.12);
}
.form-field textarea.field-input {
  min-height: 90px;
  resize: vertical;
}
.form-field input.field-input[type=date] {
  color-scheme: dark;
}
.form-field input.field-input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.form-field select.field-input {
  color-scheme: dark;
}
.form-field select.field-input option {
  background: #1E4B5A;
  color: #ffffff;
}
.form-field--icon {
  position: relative;
}
.form-field--icon img {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(15%);
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check-custom {
  display: flex;
  align-items: flex-start;
  gap: 9.6px;
  margin-bottom: 24px;
  font-size: 12px;
  color: #ffffff;
}
.form-check-custom input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #7ACA78;
  flex-shrink: 0;
}
.form-check-custom a {
  color: #ffffff;
  text-decoration: underline;
}

.meeting-card .btn-gradient {
  width: 100%;
}

.floating-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7ACA78 0%, #55bfd7 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  z-index: 1020;
}
.floating-cta img {
  width: 24px;
  height: 24px;
}
.floating-cta:hover {
  color: #ffffff;
  transform: scale(1.06);
}

.product-showcase {
  text-align: center;
}
.product-showcase__desc {
  max-width: 780px;
  margin-inline: auto;
}
.product-showcase__frame {
  position: relative;
  margin: 45px auto 0;
  width: 100%;
  max-width: 1000px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(21, 66, 73, 0.15);
}
.product-showcase__img, .product-showcase__video {
  width: 100%;
  height: auto;
  display: block;
}

.team__title {
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 28px;
}

/* Desktop: 3 cards per row */
.team-grid > * {
  grid-column: span 2;
}

/* Last row - 1 item */
.team-grid > :last-child:nth-child(3n+1) {
  grid-column: 3/span 2;
}

/* Last row - 2 items */
.team-grid > :nth-last-child(2):nth-child(3n+1) {
  grid-column: 2/span 2;
}

.team-grid > :last-child:nth-child(3n+2) {
  grid-column: 4/span 2;
}

/* =========================================
   Tablet: 2 columns
========================================= */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }
  .team-grid > * {
    grid-column: auto;
  }
  /* Last item center when odd number of cards */
  .team-grid > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
  }
}
/* =========================================
   Mobile: 1 column
========================================= */
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 35px 0;
  }
  .team-grid > * {
    grid-column: auto !important;
    justify-self: stretch !important;
  }
}
.team-card {
  text-align: center;
}
.team-card__photo {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 421/325;
  background: #b9c2ca;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__name {
  font-size: 18px;
  color: #16444A;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 14px;
  color: #33647E;
  line-height: normal;
  font-weight: 400;
  margin-top: 0;
}

.why-section {
  position: relative;
  background-image: url("../images/background-without-product.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-section .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-content {
  max-width: 645px;
}

.why-product {
  flex-shrink: 0;
  width: 42%;
  max-width: 560px;
  height: auto;
}

.why-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  color: #2f4a4f;
  font-weight: 500;
  margin-bottom: 10px;
}
.why-list img {
  flex-shrink: 0;
  width: 15px;
  height: auto;
  margin-top: 5.6px;
}

.platform-section {
  position: relative;
  z-index: 2;
  background: #ffffff;
}
.platform-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 306px;
  max-height: 60%;
  background-image: url("../images/unique-platform-background.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
.platform-section .container-custom {
  position: relative;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.platform-card {
  height: 100%;
  border: 1px solid #e1e8e6;
  border-radius: 16px;
  padding: 32px 28px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.platform-card:hover {
  box-shadow: 0 20px 40px rgba(21, 66, 73, 0.08);
  transform: translateY(-4px);
}
.platform-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.platform-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.platform-card__title {
  color: #33647E;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.platform-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.platform-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #33647E;
  margin-bottom: 10px;
}
.platform-card li:last-child {
  margin-bottom: 0;
}
.platform-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fbf8f;
  margin-top: 8px;
  flex-shrink: 0;
}

.cta-wrap {
  position: relative;
  margin-top: 48px;
  padding-bottom: 48px;
}

.cta-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -120px;
  z-index: 5;
  background: linear-gradient(90deg, #7ACA78 0%, #55bfd7 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  max-width: 620px;
  margin: 0;
  line-height: normal;
}

.site-footer {
  position: relative;
  background: #1E4B5A;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 45px 0 0 0;
  width: 100%;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}
.footer-brand__logo {
  width: auto;
}

.footer-info__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.footer-info__item {
  display: flex;
  gap: 12px;
}
.footer-info__item img {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-info__item .footer-info__title {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 23px;
}
.footer-info__item p, .footer-info__item a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 26px;
}
.footer-info__item a:hover {
  color: #ffffff;
}

.footer-strip {
  margin: 40px auto;
  width: fit-content;
  max-width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}
.footer-strip span {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #16444A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}
.footer-strip span:first-child {
  padding-left: 0;
}
.footer-strip span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(22, 68, 74, 0.15);
}
.footer-strip span strong {
  color: #7ACA78;
}
.footer-strip span img {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  text-align: center;
  padding-block: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1090px) {
  .footer-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-strip span {
    padding: 0;
  }
  .footer-strip span::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 8px 16px rgba(21, 66, 73, 0.08);
  }
  .nav-menu.is-open {
    max-height: 400px;
  }
  .nav-menu__item {
    width: 100%;
    border-bottom: 1px solid #e1e8e6;
  }
  .nav-menu__link {
    width: 100%;
    padding: 12px 24px;
  }
  .nav-toggler {
    display: flex;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-section .container-custom {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-content {
    max-width: 100%;
  }
  .why-product {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .container-custom {
    padding-inline: 20px;
  }
  .hero {
    padding: 50px 0;
  }
  .hero__desc-break {
    display: none;
  }
  .section {
    padding-block: 40px;
  }
  .platform-section {
    padding-bottom: 0;
  }
  .section__title {
    font-size: 30px;
  }
  #our-team {
    padding-top: 0;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .footer-info {
    flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 576px) {
  .brand__logo {
    width: 190px;
  }
  .container-custom {
    padding-inline: 16px;
  }
  .section {
    padding-block: 36px;
  }
  .section__title {
    font-size: 26px;
    text-align: center;
    margin-top: 0;
  }
  .team__title {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .hero__desc {
    font-size: 15px;
    line-height: 25px;
  }
  .hero__badge {
    font-size: 17px;
    padding: 8px 12px 16px 12px;
  }
  .booth-card {
    padding: 20px;
  }
  .booth-card__title {
    font-size: 22px;
  }
  .booth-card__row {
    gap: 8px;
    font-size: 15px;
  }
  .product-showcase__frame {
    margin-top: 30px;
  }
  .cta-banner {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }
  .team-card__name {
    font-size: 16px;
  }
  .team-card__role {
    font-size: 12px;
  }
  .why-instapill {
    font-size: 16px;
  }
  .why-list img {
    width: 10px;
  }
  .why-list li {
    font-size: 16px;
    line-height: normal;
  }
  .btn-gradient {
    font-size: 15px;
    padding: 12px 24px;
  }
  .platform-card {
    padding: 25px 20px;
  }
  .platform-card__icon {
    width: 40px;
    height: 40px;
  }
  .platform-card__title {
    font-size: 16px;
  }
  .platform-card li {
    font-size: 13px;
    line-height: normal;
  }
  .cta-banner__text {
    font-size: 17px;
    max-width: 100%;
  }
  .btn-outline-white {
    font-size: 15px;
    padding: 12px 24px;
  }
  .footer-strip {
    padding: 15px 20px;
    margin: 30px 0;
    max-width: 100%;
    width: 100%;
    gap: 8px;
  }
  .footer-strip span {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 420px) {
  .section {
    padding-block: 30px;
  }
  .section__title {
    font-size: 22px;
  }
  .section__desc {
    font-size: 15px;
  }
  .cphi-logo {
    height: 56px;
  }
  .meeting-card {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .floating-cta {
    width: 64px;
    height: 64px;
    right: 16px;
    bottom: 16px;
    font-size: 10px;
  }
  .floating-cta img {
    width: 18px;
    height: 18px;
  }
  .why-list li {
    font-size: 15.2px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-banner__text {
    font-size: 18px;
  }
  .footer-strip {
    padding: 16px 20px;
    gap: 10px;
  }
  .footer-strip span {
    font-size: 12px;
  }
  .footer-brand__logo {
    width: 250px;
  }
  .cta-banner {
    gap: 15px;
  }
  .cta-banner__text {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 12px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb__item {
  font-size: 14px;
  color: #33647E;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #999;
}

.breadcrumb__link {
  color: #33647E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: #4fbf8f;
  text-decoration: underline;
}

.breadcrumb__item[aria-current="page"] {
  color: #16444A;
  font-weight: 500;
}

/*# sourceMappingURL=style.css.map */
