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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  background: #ffffff;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, p {
  margin: 0;
}

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

a {
  color: inherit;
}

.site {
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.divider {
  border: none;
  border-top: 1px solid #9c9c9c;
  width: 112px;
  margin: 24px 0;
}

.placeholder-img, .footer-form-placeholder, .form-card-body-placeholder {
  background: linear-gradient(135deg, #e9e9e9, #d5d5d5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #868ea9;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: #bd1f30;
  color: #ffffff;
}

.btn-primary:hover {
  background: #9b1927;
}

.btn-outline {
  background: transparent;
  color: #233162;
  border: 1px solid #233162;
}

.btn-outline:hover {
  background: #233162;
  color: #ffffff;
}

.section-heading {
  font-family: "Gayathri", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #233162;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 122px;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 10px 50px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  z-index: 3;
}

.site-header .logo img {
  width: 220px;
  height: 77px;
  object-fit: cover;
  display: block;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
  padding: 20px 40px;
  z-index: 2;
}

.nav-bar a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #233162;
  text-decoration: none;
  padding: 5px 10px;
}

.nav-bar a:hover {
  color: #bd1f30;
}

.nav-bar .nav-divider {
  width: 1px;
  height: 22px;
  background: #bd1f30;
  flex: none;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  display: inline-block;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
  z-index: 30;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-panel {
  min-width: 133px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 0 0 8px 8px;
  padding: 10px 30px 8px;
}

.nav-dropdown-panel a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #233162;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #9c9c9c;
}

.nav-dropdown-panel a:last-child {
  border-bottom: none;
}

.nav-dropdown-panel a:hover {
  color: #bd1f30;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.header-cta a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: underline;
}

.header-cta .login-link {
  color: #bd1f30;
}

.header-cta .signup-link {
  color: #233162;
}

.nav-toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.hamburger-icon {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 32px;
  height: 21px;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background: #bd1f30;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 27px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 16px 17px;
  z-index: 30;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-logo img {
  width: 137px;
  height: 48px;
  object-fit: cover;
  display: block;
}

.mobile-close-icon {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.mobile-close-icon::before,
.mobile-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background: #bd1f30;
  border-radius: 2px;
}

.mobile-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 0 40px;
}

.mobile-menu-nav a {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #233162;
  text-decoration: none;
  padding: 5px 10px;
}

.mobile-menu-divider {
  width: 180px;
  height: 0;
  border: none;
  border-top: 1px solid #bd1f30;
  margin: 0;
}

.mobile-menu .mobile-signup {
  background: #eff7ff;
  border: 1px solid #9c9c9c;
  border-radius: 24px;
  padding: 6px 20px;
}

.nav-toggle-checkbox:checked ~ .mobile-menu {
  display: flex;
}

@media (max-width: 1360px) {
  .site-header {
    position: sticky;
    top: 0;
    height: auto;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 16px 17px;
  }
  .site-header .logo img {
    width: 137px;
    height: 48px;
  }
  .nav-bar,
  .header-cta {
    display: none;
  }
  .hamburger-icon {
    display: flex;
  }
}
.hero {
  position: relative;
  z-index: 0;
  height: 846px;
  display: flex;
  align-items: center;
  background-image: url("../img/112abd04e2349bbd2a50d453cf66d77f6567c361.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-mobile-photo {
  display: none;
}

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

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 607px;
  padding: 0 60px;
}

.hero-content h1 {
  font-family: "Gayathri", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  color: #233162;
  letter-spacing: -0.02em;
}

.hero-content .divider {
  margin: 24px 0;
}

.hero-content p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  max-width: 452px;
  margin-bottom: 32px;
}

.cta-strip-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.cta-strip-wrap--overlap {
  margin-top: -52px;
}

.cta-strip-wrap--standalone {
  padding-top: 40px;
  padding-bottom: 90px;
}

.cta-strip {
  width: 998px;
  height: 104px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  gap: 45px;
  padding: 10px 40px;
  border-radius: 99px;
  background-image: linear-gradient(193.132deg, rgba(0, 132, 193, 0.73) 22.459%, rgb(35, 49, 98) 67.162%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cta-strip p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.cta-strip .btn-signup {
  flex: none;
  background: #bd1f30;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 12px 20px;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 1360px) {
  .hero {
    height: auto;
    display: block;
    background-image: none;
    padding: 40px 0 0;
  }
  .hero::before {
    display: none;
  }
  .hero-content {
    max-width: none;
    padding: 0 15px;
  }
  .hero-content h1 {
    font-family: "Gayathri", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 56px;
    line-height: 64px;
    font-weight: 400;
    letter-spacing: normal;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 24px;
    max-width: none;
  }
  .hero-btn-desktop {
    display: none;
  }
  .hero-btn-mobile {
    width: 220px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 40px;
    background: #233162;
  }
  .hero-mobile-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4096/2296;
    background-image: url("../img/112abd04e2349bbd2a50d453cf66d77f6567c361.jpg");
    background-size: cover;
    background-position: center;
    margin-bottom: -26px;
  }
  .cta-strip-wrap--overlap {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .cta-strip {
    flex-direction: column;
    max-width: 90%;
    height: auto;
    min-height: 143px;
    padding: 20px 30px;
    gap: 10px;
  }
  .cta-strip p {
    font-size: 20px;
    line-height: 30px;
    white-space: normal;
    text-align: center;
  }
  .cta-strip .btn-signup {
    width: auto;
    min-width: 117px;
    height: auto;
    min-height: 35px;
    padding: 8px 16px;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.gradient-band--rising {
  background-image: linear-gradient(180deg, #ffffff 0%, #eff7ff 100%);
}

.gradient-band--falling {
  background-image: linear-gradient(180deg, #eff7ff 0%, #ffffff 65%);
}

.trust-section {
  padding: 60px 0;
  text-align: center;
}

.trust-section .section-heading {
  max-width: 672px;
  margin: 0 auto;
}

.trust-section .divider {
  margin: 24px auto;
}

.trust-section p {
  max-width: 940px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 26px;
  color: #323232;
}

.image-band {
  height: 370px;
  background: #e9e9e9;
}

.solutions-band {
  position: relative;
  height: 917px;
  background-image: url("../img/solutions-band.jpg");
  background-size: cover;
  background-position: center;
}

.solutions-card {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 772px;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.7);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 30px 50px;
  text-align: center;
}

.solutions-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.solutions-card .section-heading {
  font-size: 32px;
  letter-spacing: 1.2px;
  text-align: center;
}

.solutions-card .divider {
  margin: 20px auto;
}

.solutions-card p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  text-align: left;
  margin-bottom: 25px;
}

.solutions-card .btn {
  background: #233162;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
}

.team-band {
  position: relative;
  height: 879px;
  background-image: url("../img/team-lab-photo.jpg");
  background-size: cover;
  background-position: center;
}

.team-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 753px;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.85);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 30px 50px 30px 33px;
}

.team-card .icon {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 25px;
}

.team-card .section-heading {
  font-size: 32px;
  letter-spacing: 2px;
  text-align: center;
}

.team-card .divider {
  margin: 20px auto;
}

.team-card p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  margin-bottom: 16px;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.quality-band {
  position: relative;
  height: 893px;
  background-image: url("../img/exterior-aerial.jpg");
  background-size: cover;
  background-position: center;
}

.quality-card {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 772px;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.85);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 30px 50px;
  text-align: center;
}

.quality-card .icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.quality-card .section-heading {
  font-size: 32px;
  letter-spacing: 1.2px;
  text-align: center;
}

.quality-card .divider {
  margin: 20px auto;
}

.quality-card p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  text-align: left;
  margin-bottom: 20px;
}

.quality-card .quote-block {
  margin: 12px 0 20px;
}

.quality-card .quote-block hr {
  border: none;
  border-top: 1px solid #bd1f30;
  width: 100%;
  margin: 0;
}

.quality-card .quote-block p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #323232;
  text-align: center;
  margin: 12px 0;
}

.channels-section {
  padding: 90px 0 60px;
}

.channels-section .section-heading {
  max-width: 966px;
  margin-bottom: 8px;
}

.channels-section .lede {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #323232;
  margin-top: 0;
  margin-bottom: 40px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  padding-left: 60px;
}

.channel-row + .channel-row {
  border-top: 1px solid #9c9c9c;
}

.channel-row .icon {
  display: block;
  width: 90px;
  height: 90px;
  flex: none;
}

.channel-row p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
}

.channel-row p strong {
  font-weight: inherit;
}

.standards-section {
  padding: 50px 144px 50px 0;
  display: flex;
  gap: 67px;
  align-items: center;
}

.standards-section .image-col {
  width: 455px;
  flex: none;
}

.standards-section .facility-photo {
  width: 100%;
  height: 334px;
  object-fit: cover;
  border-radius: 0 16px 15px 0;
  display: block;
}

.standards-section .content-col {
  flex: 1;
}

.standards-section .section-heading {
  margin-bottom: 8px;
}

.standards-section .lede {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #323232;
  margin-top: 0;
  margin-bottom: 30px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  line-height: 26px;
  color: #323232;
}

.checklist .check-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: none;
}

.icon-features {
  padding: 50px 0;
}

.icon-features .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.icon-features .feature {
  flex: 1;
  text-align: center;
}

.icon-features .icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}

.icon-features p {
  font-size: 18px;
  font-weight: 500;
  color: #233162;
}

.pipeline-section {
  padding: 80px 0;
}

.pipeline-section .section-heading {
  margin-bottom: 20px;
}

.pipeline-tables {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.pipeline-table th,
.pipeline-table td {
  padding: 22px 14px;
  border-bottom: 1px solid #9c9c9c;
}

.pipeline-table thead th {
  background: #233162;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
}

.pipeline-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 12px;
}

.pipeline-table thead th:last-child {
  border-top-right-radius: 12px;
}

.pipeline-table tbody td {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  text-align: center;
}

.pipeline-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #10477f;
}

.pipeline-table tbody tr:nth-child(even) {
  background: #eff7ff;
}

.pipeline-table tbody tr:last-child td {
  border-bottom: none;
}

.pipeline-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.pipeline-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.pipeline-disclaimer {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
  color: #323232;
}

.cert-strip {
  background: #eff7ff;
  padding: 60px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 81px;
  opacity: 0.7;
}

.cert-strip img {
  display: block;
}

.cert-strip .badge-cgmp {
  width: 128.88px;
  height: 128.481px;
}

.cert-strip .badge-csbop {
  width: 117.329px;
  height: 145.7px;
}

.cert-strip .badge-dea {
  width: 263.912px;
  height: 83.988px;
}

.badge-fda-mobile {
  display: none;
}

.cert-strip .badge-fda {
  height: 67px;
  width: auto;
}

.fda-strip {
  padding: 40px 0;
  background: #9b1927;
}

.fda-strip-inner {
  display: flex;
  align-items: center;
  gap: 62px;
}

.fda-strip .text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fda-strip .section-heading {
  font-size: 40px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.fda-strip p {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.fda-strip .btn-fda {
  flex: none;
  width: 191px;
  background: #233162;
  border: 1px solid #f7e4e6;
  border-radius: 4px;
  padding: 12px 20px;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 1360px) {
  .trust-section {
    padding: 50px 15px;
  }
  .trust-section .section-heading {
    text-transform: capitalize;
    letter-spacing: 0.4px;
  }
  .trust-section p {
    max-width: none;
  }
  .trust-section p:first-of-type {
    margin-bottom: 16px;
  }
  .solutions-band,
  .team-band,
  .quality-band {
    height: auto;
    background-image: none;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .solutions-band::before,
  .team-band::before,
  .quality-band::before {
    content: "";
    display: block;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
  .solutions-band::before {
    background-image: url("../img/solutions-band.jpg");
  }
  .team-band::before {
    background-image: url("../img/team-lab-photo.jpg");
  }
  .quality-band::before {
    background-image: url("../img/exterior-aerial.jpg");
  }
  .solutions-card,
  .team-card,
  .quality-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    background: #ffffff;
    border-radius: 0;
    padding: 30px 15px;
    text-align: center;
  }
  .team-card p,
  .quality-card p {
    text-align: center;
  }
  .solutions-card .section-heading,
  .team-card .section-heading,
  .quality-card .section-heading {
    font-size: 40px;
  }
  .channels-section {
    padding: 50px 15px;
  }
  .channel-row {
    padding-left: 5px;
  }
  .channel-row p strong {
    font-weight: 500;
  }
  .standards-section {
    flex-direction: column;
    padding: 50px 15px;
    gap: 30px;
  }
  .standards-section .image-col {
    width: 100%;
  }
  .standards-section .facility-photo {
    height: 220px;
    border-radius: 16px;
  }
  .icon-features {
    padding: 50px 15px;
  }
  .icon-features .row {
    flex-direction: column;
    gap: 20px;
  }
  .icon-features .feature {
    background: #ffffff;
    border: 0.5px solid #1f7ad6;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .icon-features .icon {
    margin: 0;
  }
  .icon-features p {
    font-size: 24px;
    font-weight: 500;
    color: #323232;
  }
  .pipeline-section {
    padding: 50px 15px;
  }
  .pipeline-table th,
  .pipeline-table td {
    padding: 12px 5px;
  }
  .pipeline-table thead th {
    font-size: 14px;
    line-height: 20px;
  }
  .cert-strip {
    flex-direction: column;
    gap: 81px;
    padding: 40px 15px;
  }
  .cert-strip img.badge-fda-desktop {
    display: none;
  }
  .badge-fda-mobile {
    display: block;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: -0.6px;
    color: #000;
    text-align: center;
  }
  .fda-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .fda-strip .section-heading {
    line-height: 40px;
  }
}
.contact-page-bg {
  background-image: linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
}

.contact-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.form-hero {
  position: relative;
  height: 684px;
  margin-bottom: -139px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.form-hero--contact {
  background-image: url("../img/contact-hero.jpg");
}

.form-hero--hospital {
  background-image: url("../img/hospital-hero.jpg");
}

.form-hero--wellness {
  background-image: url("../img/wellness-hero.jpg");
}

@media (max-width: 1360px) {
  .form-hero {
    height: 220px;
    margin-bottom: 0;
  }
  .form-hero--hospital,
  .form-hero--wellness {
    height: 180px;
  }
  .form-hero::after {
    display: none;
  }
  .contact-container {
    padding: 0;
  }
  .form-card-header {
    min-height: auto;
    padding: 28px 20px;
  }
  .form-card-header h2 {
    font-size: 24px;
  }
  .form-card-header p {
    font-size: 13px;
  }
  .form-card-body {
    padding: 28px 20px;
  }
}
.contact-intro {
  display: flex;
  gap: 45px;
  align-items: center;
  padding: 60px 0;
}

.contact-intro .intro-copy {
  flex: 1;
  min-width: 0;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.contact-intro h1 {
  font-family: "Gayathri", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  line-height: 64px;
  font-weight: 400;
  color: #233162;
}

.contact-intro p {
  font-size: 14px;
  line-height: 24px;
  color: #233162;
}

.contact-intro .intro-image {
  flex: none;
  width: 580px;
  height: 348px;
  object-fit: contain;
}

.form-card {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-card-header {
  background-image: linear-gradient(90deg, #1b3f7b 0%, #185a9e 100%);
  min-height: 133px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.form-card-header h2 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

.form-card-header p {
  font-size: 14px;
  color: #dbe0f2;
}

.form-card-body-placeholder {
  height: 600px;
}

.form-card-body-placeholder--tall {
  height: 1400px;
}

/* ==========================================================================
   Contact / Hospital / Wellness form fields
   Scoped per form (.contact-form / .hospital-form / .wellness-form) because
   each source design reuses names like .field, .grid, and .submit-btn with
   different rules — scoping keeps them from bleeding into each other or into
   the rest of the site.
   ========================================================================== */
.form-card-body {
  padding: 32px 40px;
  background: #fff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ---- Contact form ---- */
.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.contact-form label .req {
  color: #ef4444;
  margin-left: 2px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-form .field {
  margin-bottom: 1.25rem;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cbd5e1;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #cbd5e1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #f87171;
  background: #fef2f2;
}

.contact-form .error-msg {
  color: #ef4444;
  font-size: 0.72rem;
  margin-top: 0.3rem;
  display: none;
}

.contact-form .error-msg.visible {
  display: block;
}

.contact-form .phone-row {
  display: flex;
  gap: 0.5rem;
}

.contact-form .phone-row select {
  width: 80px;
  flex-shrink: 0;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.contact-form .phone-row input {
  flex: 1;
}

.contact-form .select-wrapper {
  position: relative;
}

.contact-form .select-wrapper select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form .select-wrapper::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #94a3b8;
}

.contact-form select option:first-child {
  color: #94a3b8;
}

.contact-form select:invalid {
  color: #94a3b8;
}

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

.contact-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
}

.contact-form .custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  background: #fff;
}

.contact-form .custom-checkbox.checked {
  background: #2563eb;
  border-color: #2563eb;
}

.contact-form .custom-checkbox svg {
  display: none;
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.contact-form .custom-checkbox.checked svg {
  display: block;
}

.contact-form .consent-row input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form .consent-label {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
}

.contact-form .submit-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
  transform: translateY(-1px);
}

.contact-form .submit-btn:active {
  transform: translateY(0);
}

.contact-form .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form .required-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: #94a3b8;
  text-align: center;
}

.contact-form .footer-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: #94a3b8;
}

.contact-form .success-screen {
  display: none;
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-form .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #4338ca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.contact-form .success-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

.contact-form .success-screen h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-form .success-screen p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form .reset-btn {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.contact-form .reset-btn:hover {
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
  transform: translateY(-1px);
}

.contact-form .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@media (max-width: 560px) {
  .contact-form .row {
    grid-template-columns: 1fr;
  }
  .contact-form .submit-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ---- Hospital form ---- */
.hospital-form span.required-field-star {
  color: rgba(255, 0, 0, 0.6784313725);
}

.hospital-form .section-title {
  background: rgba(186, 18, 43, 0.1098039216);
  color: #BA122B;
  padding: 12px 38px;
  border-radius: 10px;
  margin: 28px auto 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid rgba(186, 18, 43, 0.0705882353);
}

.hospital-form .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hospital-form .full {
  grid-column: 1/-1;
}

.hospital-form .two-column {
  grid-column: span 1;
}

.hospital-form .top-two-fields {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hospital-form .field {
  display: flex;
  flex-direction: column;
}

.hospital-form .field label {
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 13px;
  color: #333;
}

.hospital-form .field input,
.hospital-form .field select,
.hospital-form .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fafafa;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: 0.25s;
}

.hospital-form .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 45px;
  cursor: pointer;
}

.hospital-form .field input:focus,
.hospital-form .field select:focus,
.hospital-form .field textarea:focus {
  outline: none;
  border-color: #0056b3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.08);
}

.hospital-form .field input[type=file] {
  padding: 8px 12px;
  font-size: 13px;
}

.hospital-form textarea {
  resize: vertical;
  min-height: 90px;
}

.hospital-form .copy-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef5ff;
  border: 1px solid #c3d9f7;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0f3d7a;
  cursor: pointer;
}

.hospital-form .copy-address-row input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #0056b3;
  cursor: pointer;
  flex-shrink: 0;
}

.hospital-form .license-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: #f5f7fb;
  border: 1px solid #e2e7f0;
  border-radius: 10px;
  margin-bottom: 8px;
}

.hospital-form .license-row label {
  min-width: 110px;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}

.hospital-form .license-row input[type=text] {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fafafa;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.hospital-form .license-row input[type=file] {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  padding: 5px 8px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fafafa;
}

.hospital-form .license-row input:focus {
  outline: none;
  border-color: #0056b3;
}

.hospital-form .add-ship-btn {
  width: 100%;
  padding: 13px;
  border: 2px dashed #0056b3;
  background: transparent;
  color: #0056b3;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: 0.25s;
  letter-spacing: 0.2px;
}

.hospital-form .add-ship-btn:hover {
  background: #eef5ff;
}

.hospital-form .submit-row {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hospital-form .submit-btn {
  border: none;
  background: linear-gradient(135deg, #0056b3, #0f3d7a);
  color: #fff;
  padding: 13px 42px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.25s;
}

.hospital-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 86, 179, 0.28);
}

.hospital-form .recv-section {
  grid-column: 1/-1;
}

.hospital-form .recv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 6px;
}

.hospital-form .ship-block + .ship-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #e8edf5;
}

.hospital-form .ship-block .ship-block-title {
  margin: 0 0 14px 0;
  font-size: 15px;
  font-weight: 700;
  color: #00247d;
  letter-spacing: 0.02em;
}

.hospital-form .remove-ship-btn {
  background: none;
  border: none;
  color: #c0392b;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  font-weight: 600;
  padding: 4px 0;
}

.hospital-form .remove-ship-btn:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hospital-form .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hospital-form .grid {
    grid-template-columns: 1fr;
  }
  .hospital-form .top-two-fields {
    grid-template-columns: 1fr;
  }
  .hospital-form .recv-grid {
    grid-template-columns: 1fr;
  }
  .hospital-form .section-title {
    font-size: 15px;
  }
  .hospital-form .license-row {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Loading overlay */
.hospital-form #loadingOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hospital-form #loadingOverlay.visible {
  opacity: 1;
}

.hospital-form #loadingOverlay .loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.04);
  min-width: 300px;
  max-width: 380px;
  text-align: center;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.25s ease;
}

.hospital-form #loadingOverlay.visible .loading-card {
  transform: translateY(0) scale(1);
}

.hospital-form #loadingOverlay .spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #e8edf5;
  border-top-color: #00247d;
  border-right-color: #3355a8;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.hospital-form #loadingOverlay .loading-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.hospital-form #loadingOverlay .loading-subtext {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 280px;
}

.hospital-form .loading-dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.hospital-form .loading-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00247d;
  animation: loadingDot 1.2s ease-in-out infinite;
}

.hospital-form .loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.hospital-form .loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadingDot {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.hospital-form #setupNotice {
  display: none;
  margin: 0 0 18px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff8e6;
  border: 1px solid #f0d58a;
  color: #5c4a12;
  font-size: 13px;
  line-height: 1.6;
}

.hospital-form #setupNotice strong {
  color: #3d3208;
}

.hospital-form #setupNotice code {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ead9a0;
  font-size: 12px;
  word-break: break-all;
}

.hospital-form #resultModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hospital-form #resultModal .modal {
  background: #fff;
  padding: 22px 24px;
  max-width: 720px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 60px rgba(15, 23, 42, 0.2);
}

.hospital-form #resultModal .modal h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #0f172a;
}

.hospital-form #resultModal .modal .items {
  max-height: 340px;
  overflow: auto;
  margin-bottom: 18px;
  font-size: 14px;
  color: #334155;
}

.hospital-form #resultModal .modal .items li {
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  list-style: none;
}

.hospital-form #resultModal .modal .items li strong {
  color: #0f172a;
}

.hospital-form #resultModal .modal .actions {
  text-align: right;
}

.hospital-form #resultModal .modal button {
  background: #00247d;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

/* ---- Wellness form ---- */
.wellness-form {
  --navy: #00247D;
  --red: #BA122B;
  --border: #d0d5e0;
  --field-bg: #f7f8fb;
  --text: #1a1a2e;
}

.wellness-form .sec-hdr {
  background: rgba(186, 18, 43, 0.1098039216);
  color: #BA122B;
  padding: 12px 38px;
  border-radius: 10px;
  margin: 28px auto 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid rgba(186, 18, 43, 0.0705882353);
}

.wellness-form .sec-hdr:first-child {
  margin-top: 0;
}

.wellness-form .grid {
  display: grid;
  gap: 14px;
}

.wellness-form .g1 {
  grid-template-columns: 1fr;
}

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

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

.wellness-form .full {
  grid-column: 1/-1;
}

.wellness-form .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wellness-form .field label {
  font-weight: 600;
  font-size: 12px;
  color: #333;
}

.wellness-form .field input,
.wellness-form .field select,
.wellness-form .field textarea {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--field-bg);
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  transition: 0.2s;
}

.wellness-form .field input:focus,
.wellness-form .field select:focus,
.wellness-form .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 36, 125, 0.09);
}

.wellness-form .field input[type=file] {
  padding: 7px 10px;
  font-size: 12px;
}

.wellness-form textarea {
  resize: vertical;
  min-height: 72px;
}

.wellness-form .chk-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 8px 0;
}

.wellness-form .chk-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.wellness-form .chk-group input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.wellness-form .chk-group input[type=text] {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--field-bg);
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  width: 130px;
}

.wellness-form .credentials-group {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.wellness-form #otherInput {
  width: 200px;
}

.wellness-form .lic-block {
  border: 1px solid #e0e5ef;
  border-radius: 10px;
  padding: 14px 16px;
  background: #f8f9fd;
  margin-bottom: 12px;
}

.wellness-form .lic-block h4 {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wellness-form .info-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #7a5800;
  text-align: center;
  margin: 16px 0;
}

.wellness-form .info-box.navy {
  background: #eef2ff;
  border-color: #c0ccf5;
  color: var(--navy);
  font-weight: 500;
  text-align: left;
}

.wellness-form .agreement ul {
  list-style: none;
  padding: 0;
}

.wellness-form .agreement ul li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 12.5px;
  line-height: 1.65;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.wellness-form .agreement ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  top: 5px;
}

.wellness-form .submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.wellness-form .submit-btn {
  border: none;
  background: linear-gradient(135deg, var(--red), #8a0d1f);
  color: #fff;
  padding: 12px 44px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.2s;
}

.wellness-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(186, 18, 43, 0.3);
}

.wellness-form .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wellness-form hr.field-divider {
  border: none;
  border-top: 1px solid #e8eaf0;
  margin: 18px 0;
}

.wellness-form .custom-checkbox-wrapper {
  border-radius: 14px;
}

.wellness-form .custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  user-select: none;
}

.wellness-form .custom-checkbox-input {
  display: none;
}

.wellness-form .custom-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #0D4081;
  border-radius: 6px;
  position: relative;
  transition: 0.3s ease;
}

.wellness-form .custom-checkbox-box::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease;
}

.wellness-form .custom-checkbox-input:checked + .custom-checkbox-box {
  background: #914c47;
  border-color: #914c47;
}

.wellness-form .custom-checkbox-input:checked + .custom-checkbox-box::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Appended to document.body by JS (not a descendant of .wellness-form), so unscoped */
.loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
}

.loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loading-spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 700px) {
  .wellness-form .g2,
  .wellness-form .g3 {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  display: flex;
  justify-content: center;
  padding: 40px 250px 50px;
}

@media (max-width: 1360px) {
  .faq-section {
    padding: 40px 15px 50px;
  }
}
.faq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 712px;
  max-width: 100%;
}

.faq-icon {
  width: 90px;
  height: 90px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
}

.faq-heading h2 {
  font-family: "Gayathri", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: #233162;
  text-transform: capitalize;
  letter-spacing: 0.4px;
  text-align: center;
}

.faq-heading .divider {
  margin: 0;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.faq-item-divider {
  border: none;
  border-top: 1px solid #9c9c9c;
  width: 100%;
}

.faq-q, .faq-a {
  display: flex;
  gap: 3px;
  align-items: flex-start;
  width: 100%;
}

.faq-q {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #323232;
}

.faq-q .faq-label {
  color: #9b1927;
  flex: none;
}

.faq-a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #323232;
}

.faq-a .faq-label {
  color: #10477f;
  font-weight: 500;
  flex: none;
}

.site-footer {
  background: #233162;
  color: #ffffff;
  padding: 80px 0;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  gap: 185px;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 495px;
}

.footer-logo-block .logo-copy {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-block .footer-logo {
  width: 234px;
  height: 82px;
  object-fit: cover;
  display: block;
}

.footer-logo-block p {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
  margin-top: 26px;
}

.footer-logo-block .safety-phone {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  display: block;
  width: 100%;
  height: 100%;
}

.copyright {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.footer-form {
  width: 405px;
  flex: none;
}

.footer-form-placeholder {
  height: 405px;
}

.bottom-bar {
  height: 50px;
  background: #bd1f30;
}

@media (max-width: 1360px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
  .footer-logo-block {
    max-width: none;
  }
  .footer-form {
    display: none;
  }
}

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