/* Features Section (3 Columns) */
.features-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 4em 4em;
  width: 100%;
  background: none;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* USP Section */
.usp-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  order: 3;
}

.usp-container {
  width: 100%;
  padding: 4em 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.usp-eyebrow {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #20C0BB;
  margin-bottom: 0.75em;
  letter-spacing: 0.04em;
}

.usp-title {
  margin: 0 0 2.25em 0;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  color: #1F2937;
  max-width: 500px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.usp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.usp-icon img {
  width: 32px;
  height: 32px;
}

.usp-item-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #1F2937;
  margin-bottom: 0.5em;
}

.usp-item-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6B7280;
  max-width: 230px;
}

.usp-card {
  width: 100%;
  max-width: 540px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(20,41,65,0.08);
  padding: 24px;
}

.usp-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.usp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #20C0BB;
  position: relative;
  flex: 0 0 auto;
}

.usp-avatar::before {
  content: '';
  position: absolute;
  inset: 11px 13px 17px 13px;
  border: 2px solid #fff;
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
}

.usp-avatar::after {
  content: '';
  position: absolute;
  left: 14px;
  bottom: 10px;
  width: 12px;
  height: 7px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.usp-card-name {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1F2937;
}

.usp-card-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #20C0BB;
}

.usp-card-id {
  margin-left: auto;
  background: #E5E7EB;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #6B7280;
}

.usp-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.usp-metric {
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 16px 18px;
}

.usp-metric-label,
.usp-chart-title,
.usp-approval {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #6B7280;
}

.usp-metric-value {
  margin-top: 6px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: 800;
  color: #20C0BB;
}

.usp-chart-panel {
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  padding: 18px;
}

.usp-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.usp-chart-growth {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #20C0BB;
  font-weight: 700;
}

.usp-chart-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  flex-shrink: 1;
}

.usp-chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.usp-rating {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #F59E0B;
  font-weight: 700;
}

.usp-rating span,
.usp-trusted {
  color: #6B7280;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.usp-approval {
  text-align: right;
}

.usp-approval strong {
  color: #1F2937;
  font-size: 16px;
  line-height: 20px;
}

.features-cards {
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.feature-card {
  background: #F3F5F7;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(31,41,55,0.04);
  padding: 2.5em 2em 2em 2em;
  flex: 1 1 0;
  min-width: 280px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 24px rgba(32,192,187,0.10);
}
.feature-icon img {
  display: block;
}
/* Statistics Section */
.statistics-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #142941;
  flex: none;
  order: 4;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  padding: 5em 0 5em 0;
}

.statistics-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
}

.stat-value {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 0.3em;
}

.stat-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}

/* Hero Section paints */
.hero-section {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0.25px;
  width: 100%;
  min-height: 500px;
  max-height: 600px;
  background: radial-gradient(112.36% 219.32% at 100% 0%, rgba(0, 105, 108, 0.05) 0%, rgba(0, 105, 108, 0) 40%),
              radial-gradient(112.36% 219.32% at 0% 100%, rgba(180, 201, 255, 0.1) 0%, rgba(180, 201, 255, 0) 40%),
              #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
}

/* Mobile Feature Section */
.mobile-feature-section {
  background-image: url('images/mobile_bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 4em 0;
}

.mobile-feature-list {
  list-style: none;
  margin: 1.5em 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.mobile-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  color: #fff;
}

.mobile-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #20C0BB;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 22px;
}

.txt-body-l-14 {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

/* Final CTA Section */
.final-cta-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0;
  width: 100%;
  background: #F2FCFC;
  flex: none;
  order: 6;
  align-self: stretch;
  flex-grow: 0;
}

.final-cta-card {
  width: 90%;
  padding: 2em;
  margin: 0 auto;
  background: #F3F5F7;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(31,41,55,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.final-cta-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.final-cta-graphic {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 0;
}
/* Remove underline from all links */
a {
  text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Typography utility classes */
.txt-body-l {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

.heading-2 {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.txt-button {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}

.txt-mail {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}

.heading-1 {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.txt-body-m {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.txt-main-m {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}

.txt-lbl-m {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}
/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  background: #fff;
  color: #1F2937;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.bold, .font-bold, h1, h2, h3, h4, h5, h6, .card-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: bold;
}

.text-primary {
  color: #1F2937;
}

.text-secondary {
  color: #6B7280;
}

.border {
  border: 1px solid #CBD5E1;
}

.bg-base {
  background: #20C0BB;
}
.bg-base-lighter {
  background: #A8EAE7;
}

.bg-secondary-dark {
    background: #142941;
}

.bg-base-dark {
    background: #15807D;
}

.bg-surface {
  background: #F3F5F7;
}

.button-base {
  display: inline-block;
  background: #20C0BB;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1em 1.5em;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.button-base:hover {
  background: #179a97;
}

.button-text {
  background: none;
  border: none;
  outline: none;
  color: #1F2937;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin: 0 1em 0 0;
}
.button-text:hover {
  color: #20C0BB;
}

.button-secondary {
  display: inline-block;
  background: #fff;
  color: #1F2937;
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  padding: 0.5em 1.5em;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

.button-secondary:hover {
  background: #F3F5F7;
}

.card {
  background: #F3F5F7;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(31,41,55,0.04);
  padding: 1.5em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1em;
}
.card-title {
  font-size: 16px;
  color: #1F2937;
  margin: 0 0 0.5em 0;
}
.card-body {
  color: #6B7280;
  font-family: 'Inter', Arial, sans-serif;
}

/* Utility classes */
.rounded {
  border-radius: 999px;
}
