:root {
  --home-ink: #102238;
  --home-navy: #004188;
  --home-deep: #071a2e;
  --home-cyan: #2e96c5;
  --home-red: #ee4343;
  --home-mist: #eef5f8;
  --home-paper: #f8fafb;
  --home-line: #d7e4ea;
  --home-muted: #607182;
  --home-body: 'Poppins', sans-serif;
  --home-heading: 'Roboto', sans-serif;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page {
  overflow-x: hidden;
  background: #ffffff;
  color: var(--home-muted);
  font-family: var(--home-body);
  line-height: 1.6;
}

.home-page a,
.home-page button {
  text-decoration: none;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
  color: var(--home-ink);
  font-family: var(--home-heading);
  line-height: 1.2;
}

.home-page p {
  font-family: var(--home-body);
}

.home-page img {
  display: block;
  max-width: 100%;
}

.home-page .container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.home-page .section-spacing {
  padding: 40px 0;
}

.home-page .bg-cream-section {
  background: var(--home-paper);
}

.home-page .section-header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-page .section-header h2 {
  margin: 0 0 14px;
  color: var(--home-ink);
  font-size: 36px;
  letter-spacing: -0.03em;
}

.home-page .section-header p {
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.75;
}

.home-page .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .section-badge::before {
  width: 28px;
  height: 2px;
  background: var(--home-red);
  content: '';
}

.home-page .section-badge-red {
  color: var(--home-red);
}

.home-page .section-badge-white {
  color: #a9dced;
}

.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--home-body);
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-page .btn:hover {
  transform: translateY(-2px);
}

.home-page .btn-primary {
  background: var(--home-navy);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 65, 136, 0.18);
}

.home-page .btn-primary:hover,
.home-page .btn-submit-full:hover {
  background: var(--home-cyan);
  box-shadow: 0 14px 28px rgba(46, 150, 197, 0.24);
}

.home-page .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.home-page .btn-outline:hover {
  background: #ffffff;
  color: var(--home-navy);
}

.home-page .grid-2-col,
.home-page .grid-3-col,
.home-page .grid-4-col {
  display: grid;
  align-items: center;
}

.home-page .grid-2-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 76px;
}

.home-page .grid-3-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-page .grid-4-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home-page .hero-section {
  position: relative;
  height: 680px;
  min-height: 680px;
  overflow: hidden;
  background: var(--home-deep);
}

.home-page .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 0.9s ease-in-out;
}

.home-page .slide.active {
  z-index: 2;
  opacity: 1;
}

.home-page .slide-1 {
  background-image: url('images/banner-img-2.webp');
}

.home-page .slide-2 {
  background-image: url('images/background-verification-banner.webp');
}

.home-page .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 46, 0.98) 0%, rgba(7, 26, 46, 0.84) 44%, rgba(7, 26, 46, 0.22) 100%);
}

.home-page .slide-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  color: #ffffff;
}

.home-page .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #a9dced;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .home-kicker::before {
  width: 30px;
  height: 2px;
  background: var(--home-red);
  content: '';
}

.home-page .slide-title {
  max-width: 760px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-page .slide-desc {
  max-width: 620px;
  margin: 0 0 30px;
  color: #c9d9e5;
  font-size: 16px;
  line-height: 1.8;
}

.home-page .slide-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-page .home-hero-note {
  color: #a9bfce;
  font-size: 12px;
}

.home-page .hero-section::after {
  position: absolute;
  right: -170px;
  bottom: -290px;
  z-index: 4;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(46, 150, 197, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(46, 150, 197, 0.05), 0 0 0 48px rgba(46, 150, 197, 0.035);
  content: '';
  pointer-events: none;
}

.home-page .slider-arrows {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.home-page .slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease;
}

.home-page .slider-arrow:hover {
  background: #ffffff;
  color: var(--home-navy);
}

.home-page .section-spacing:first-of-type {
  padding-top: 72px;
}

.home-page .section-spacing:first-of-type .grid-3-col {
  counter-reset: overview-card;
}

.home-page .card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--home-line);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 34, 56, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-page .card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 3px;
  background: var(--home-red);
  content: '';
}

.home-page .card:hover {
  border-color: rgba(46, 150, 197, 0.58);
  box-shadow: 0 22px 44px rgba(16, 34, 56, 0.12);
  transform: translateY(-6px);
}

.home-page .card h3,
.home-page .card h4 {
  margin: 0 0 12px;
  color: var(--home-ink);
  font-size: 24px;
}

.home-page .card h4 {
  font-size: 22px;
}

.home-page .card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.75;
}

.home-page .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--home-navy);
  font-family: var(--home-body);
  font-size: 16px;
  font-weight: 600;
}

.home-page .card-link:hover {
  color: var(--home-cyan);
}

.home-page .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: #eaf5f8;
  color: var(--home-navy);
  font-size: 20px;
}

.home-page .card .checklist {
  margin: 18px 0 0;
}

.home-page .checklist {
  padding: 0;
  list-style: none;
}

.home-page .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.6;
}

.home-page .checklist li i {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--home-cyan);
  font-size: 13px;
}

.home-page .risk-items-list,
.home-page .medical-checkup-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.home-page .risk-item,
.home-page .medical-card-item {
  padding: 18px 20px;
  border: 1px solid var(--home-line);
  border-left: 3px solid var(--home-cyan);
  background: var(--home-paper);
}

.home-page .risk-item h4,
.home-page .bordered-item h4,
.home-page .medical-card-item h4 {
  margin: 0 0 6px;
  color: var(--home-ink);
  font-size: 22px;
}

.home-page .risk-item p,
.home-page .bordered-item p,
.home-page .medical-card-item p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.75;
}

.home-page .border-left-red {
  border-left-color: var(--home-red);
}

.home-page .border-left-blue {
  border-left-color: var(--home-navy);
}

.home-page .border-left-green {
  border-left-color: #159b76;
}

.home-page .border-left-cyan {
  border-left-color: var(--home-cyan);
}

.home-page .rounded-img-wrapper {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 12px solid #ffffff;
  border-radius: 0;
  clip-path: polygon(0 0, 90% 0, 100% 14%, 100% 100%, 10% 100%, 0 86%);
  box-shadow: 0 20px 48px rgba(16, 34, 56, 0.13);
}

.home-page .rounded-img-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 366px;
  object-fit: cover;
}

.home-page .risk-visual {
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.home-page .integrity-visual {
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
}

.home-page .medical-visual {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%);
}

.home-page .integrity-block-spacing {
  margin-bottom: 40px;
}

.home-page .express-section {
  position: relative;
  overflow: hidden;
  background: var(--home-deep);
  color: #ffffff;
}

.home-page .express-section::before {
  position: absolute;
  top: -220px;
  right: 8%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(46, 150, 197, 0.28);
  border-radius: 50%;
  content: '';
}

.home-page .express-section > .container {
  position: relative;
  z-index: 1;
}

.home-page .express-content h2 {
  max-width: 570px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 42px;
}

.home-page .express-subtitle {
  margin-bottom: 14px;
  color: var(--home-cyan);
  font-size: 20px;
  font-weight: 600;
}

.home-page .express-desc {
  margin-bottom: 24px;
  color: #c9d9e5;
  font-size: 16px;
}

.home-page .express-content .rounded-img-wrapper {
  min-height: 235px;
  max-width: 580px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.home-page .express-content .rounded-img-wrapper img {
  min-height: 211px;
}

.home-page .express-visual {
  clip-path: polygon(0 0, 94% 0, 100% 16%, 100% 100%, 6% 100%, 0 84%);
}

.home-page .form-box {
  padding: 34px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  color: var(--home-ink);
}

.home-page .form-box h3 {
  margin: 0 0 8px;
  color: var(--home-ink);
  font-size: 24px;
}

.home-page .form-box > p {
  margin: 0 0 22px;
  color: var(--home-muted);
  font-size: 16px;
}

.home-page .form-group {
  min-width: 0;
  margin-bottom: 16px;
}

.home-page .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.home-page .form-row .form-group {
  margin-bottom: 0;
}

.home-page .form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--home-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--home-line);
  border-radius: 3px;
  background: #ffffff;
  color: var(--home-ink);
  font-family: var(--home-body);
  font-size: 16px;
}

.home-page .form-control:focus {
  outline: none;
  border-color: var(--home-cyan);
  box-shadow: 0 0 0 3px rgba(46, 150, 197, 0.14);
}

.home-page textarea.form-control {
  min-height: 116px;
  resize: vertical;
}

.home-page .form-box form > .form-group {
  margin-top: 20px;
}

.home-page .btn-submit-full {
  width: 100%;
  background: var(--home-navy);
  color: #ffffff;
}

.home-page .form-success-alert,
.home-page .form-error-alert {
  display: none;
  margin-top: 15px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.home-page .form-success-alert {
  border: 1px solid #56b890;
  background: #ecfdf5;
  color: #065f46;
}

.home-page .form-error-alert {
  border: 1px solid var(--home-red);
  background: #fef2f2;
  color: #b91c1c;
}

.home-page .testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 42px;
  align-items: center;
}

.home-page .testimonial-header-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.home-page .testimonial-header-wrap h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 24px;
}

.home-page .testimonial-header-line {
  width: 72px;
  height: 2px;
  background: var(--home-red);
}

.home-page .slider-controls-group {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.home-page .slider-arrow-light {
  width: 40px;
  height: 40px;
  border: 1px solid var(--home-line);
  background: #ffffff;
  color: var(--home-navy);
}

.home-page .slider-arrow-light:hover {
  background: var(--home-navy);
  color: #ffffff;
}

.home-page .testimonial-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 42px;
  border: 0;
  border-left: 4px solid var(--home-red);
  border-radius: 0;
  background: var(--home-deep);
  text-align: left;
}

.home-page .testimonial-text {
  max-width: 680px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.65;
}

.home-page .author-name {
  color: #a9dced;
  font-size: 14px;
  font-weight: 600;
}

.home-page .testimonial-dots {
  display: flex;
  justify-content: flex-start;
  gap: 9px;
  margin-top: 18px;
}

.home-page .testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b9c9d2;
  cursor: pointer;
}

.home-page .testimonial-dot.is-active {
  background: var(--home-cyan);
  transform: scale(1.2);
}

.home-page .testimonial-image-frame {
  max-height: 390px;
  overflow: hidden;
  border: 12px solid #ffffff;
  border-radius: 0;
  clip-path: polygon(10% 0, 100% 0, 100% 86%, 90% 100%, 0 100%, 0 14%);
  box-shadow: 0 20px 48px rgba(16, 34, 56, 0.13);
}

.home-page .testimonial-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 366px;
  object-fit: cover;
}

.home-page .testimonial-image-frame {
  clip-path: polygon(0 12%, 10% 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
}

@media (max-width: 992px) {
  .home-page .grid-3-col,
  .home-page .grid-4-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .grid-2-col,
  .home-page .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-page .hero-section {
    height: 600px;
    min-height: 600px;
  }

  .home-page .slide-title {
    font-size: 48px;
  }
}

@media (max-width: 680px) {
  .home-page .container {
    width: min(100% - 32px, 1280px);
  }

  .home-page .section-spacing {
    padding: 40px 0;
  }

  .home-page .grid-3-col,
  .home-page .grid-4-col,
  .home-page .form-row {
    grid-template-columns: 1fr;
  }

  .home-page .hero-section {
    height: 620px;
    min-height: 620px;
  }

  .home-page .slide {
    background-position: 64% center;
  }

  .home-page .slide-title {
    font-size: 42px;
  }

  .home-page .slide-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .home-page .slider-arrows {
    right: 22px;
    bottom: 24px;
  }

  .home-page .card {
    min-height: 0;
  }

  .home-page .rounded-img-wrapper,
  .home-page .testimonial-image-frame {
    min-height: 300px;
    clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
  }

  .home-page .risk-visual {
    clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
  }

  .home-page .integrity-visual {
    clip-path: polygon(8% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 10%);
  }

  .home-page .medical-visual {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 8% 100%, 0 90%);
  }

  .home-page .express-visual {
    clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  }

  .home-page .testimonial-image-frame {
    clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
  }

  .home-page .rounded-img-wrapper img,
  .home-page .testimonial-image-frame img {
    min-height: 276px;
  }

  .home-page .form-box {
    padding: 26px 20px;
  }

  .home-page .express-content h2 {
    font-size: 36px;
  }

  .home-page .testimonial-card {
    min-height: 300px;
    padding: 30px 24px;
  }
}

/* Shared homepage typography contract */
.home-page h1,
.home-page .slide-title {
  font-family: 'Roboto', sans-serif;
  font-size: 48px !important;
}

.home-page h2,
.home-page .section-header h2,
.home-page .express-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 36px !important;
}

.home-page h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px !important;
}

.home-page h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px !important;
}

.home-page p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px !important;
  line-height: 1.75;
}

.home-page .btn,
.home-page button {
  font-family: 'Poppins', sans-serif;
  font-size: 18px !important;
}

@media (max-width: 550px) {
  .home-page h1,
  .home-page .slide-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }

  .home-page h2,
  .home-page .section-header h2,
  .home-page .express-content h2 {
    font-size: 26px !important;
    line-height: 1.32 !important;
  }

  .home-page h3 {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  .home-page p {
    font-size: 16px !important;
    line-height: 28px !important;
  }

  .home-page .whatsapp-pulse-btn {
    display: none;
  }
}