:root {
  --navy: #121b3a;
  --muted: #5f6e83;
  --blue: #0061AF;
  --bg: #eef1f5;
  --line: #dfe6ee;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif !important;
}

body {
  margin: 0;
  color: var(--navy);
  background: #ffffff;
}

.page-shell {
  border: 1px solid var(--line);
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.top-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-row {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hamburger-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a2a44;
  border-radius: 999px;
}

.menu-overlay {
  display: none;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  color: #0862c1;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.header-actions a {
  text-decoration: none;
  color: #1E293B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.main-nav a.active {
  color: #0a60b9;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #0a60b9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: #0a60b9;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid #f1f5f9;
}

/* Arrow pointer for dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid #f1f5f9;
  border-top: 1px solid #f1f5f9;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #475569 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: #0e5eb7 !important;
  padding-left: 24px !important;
}

.caret {
  font-size: 10px;
  vertical-align: middle;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-actions a {
  font-size: 13px;
}

.header-actions a:hover {
  color: #084c96;
}

.header-actions button,
.header-actions .btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  background: #0a60b9;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-actions button:hover,
.header-actions .btn-signup:hover {
  background: #0952a0;
  transform: translateY(-1px);
  color: #fff !important;
}

.menu-lock {
  overflow: hidden;
}

@media (max-width: 900px) {
  .top-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .header-row {
    height: 68px;
    gap: 12px;
    padding: 0;
  }

  .brand-text {
    font-size: 22px;
  }

  .hamburger-btn {
    display: inline-flex;
    margin-left: auto;
    z-index: 42;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(9, 16, 35, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 40;
  }

  .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 320px);
    height: 100vh;
    margin-left: 0;
    background: #ffffff;
    box-shadow: -12px 0 28px rgba(17, 28, 56, 0.18);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 86px 22px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 41;
    overflow-y: auto;
  }

  .top-header.menu-open .header-menu {
    transform: translateX(0);
  }

  .top-header.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-actions a {
    font-size: 14px;
  }

  .header-actions button {
    width: 100%;
    height: 42px;
  }
}

.hero {
  background: #F4f7fb;
  padding: 64px 0 72px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid #d7dde8;
  color: #165db3;
  background: #f2f5fa;
  font-size: 13px;
  font-weight: 600;
}

.hero-badge-icon {
  width: 6px;
  height: 6px;
  object-fit: contain;
  display: block;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: 70px;
  /* font-size: clamp(44px, 4.4vw, 72px); */
  line-height: 1.03;
  letter-spacing: -1.8px;
  /* max-width: 700px; */
  color: #0F172A;
}

.hero p {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-cta .primary {
  border: 0;
  background: #0f1734;
  color: #fff;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.doc-link {
  color: #1a2741;
  font-weight: 500;
  text-decoration: none;
  font-size: 17px;
}

.solution-hero .hero-content h1 .accent-blue {
  color: #0061AF;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid #d7dde8;
  color: #165db3;
  background: #f2f5fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-cta .blue {
  background: #0061AF;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #c9d6e6;
  border-radius: 2px;
  color: #0a1938;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.outline-btn svg {
  flex-shrink: 0;
}

.solution-media {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image {
  width: min(100%, 620px);
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid #e5ebf3;
  box-shadow: 0 20px 48px rgba(17, 26, 56, 0.18);
  background: #fff;
}

.geo-hero {
  background: linear-gradient(90deg, #EFF6FF 0%, #FFFFFF 60%);
  padding: 64px 0 72px;
}

.geo-hero .hero-content h1 {
  margin: 0 0 14px;
  color: #0F0E1B;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
}

.geo-hero .hero-content .accent-blue {
  color: #0061AF;
}

.geo-hero .hero-content p {
  color: #4B5563;
  font-size: 20px;
  line-height: 1.6;
  max-width: 510px;
}

.geo-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.geo-cta .primary {
  border: 0;
  background: #0061AF;
  color: #fff;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
}

.geo-cta .outline-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.geo-media {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-map {
  position: relative;
  width: min(100%, 620px);
  /* height: 360px; */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(17, 26, 56, 0.18);
}

.geo-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.geo-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.geo-dashboard {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 280px;
  background: #ffffff;
  border: 1px solid #d7e0ec;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(17, 26, 56, 0.18);
  padding: 12px;
}

.dash-title {
  display: block;
  color: #495a73;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dash-list li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
}

.dash-list li span {
  color: #0F0E1B;
  font-size: 14px;
}

.dash-list li b {
  color: #0F0E1B;
  font-size: 14px;
  font-weight: 700;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
}

.dot.blue {
  background: #5048E5;
}

.dot.green {
  background: #10B981;
}

.dot.purple {
  background: #8B5CF6;
}

.dot.red {
  background: #EF4444;
}

.compliance-section {
  background: #ffffff;
  padding: 40px 0 60px;
  border-top: 1px solid #e5ebf3;
}



.compliance-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.compliance-badge {
  display: none;
}

.badge-dot {
  width: 12px;
  height: 12px;
  display: block;
}

.compliance-eyebrow {
  display: inline-block;
  color: #0061AF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.compliance-head h2 {
  margin: 16px 0 8px;
  color: #0F0E1B;
  font-size: 36px;
  line-height: 1.11;
  letter-spacing: -0.6px;
}

.comp-right {
  margin: 0;
  color: #545095;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.compliance-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.comp-card {
  background: #F9F8FB;
  border: 1px solid #D2D1E6;
  border-radius: 6px;
  padding: 40px 30px 38px;
  min-height: 160px;
}

.comp-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  display: inline-block;
}

.comp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.comp-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.comp-card h3 {
  margin: 0;
  color: #0F0E1B;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.comp-card p {
  margin: 10px 0 0;
  color: #0061AF;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .compliance-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .comp-right {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .compliance-section {
    padding: 32px 0 40px;
  }

  .compliance-head h2 {
    font-size: 28px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.hero-media {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-device-image {
  width: min(100%, 650px);
  height: auto;
  object-fit: contain;
  display: block;
}

.laptop {
  position: absolute;
  right: 10px;
  bottom: 34px;
  width: min(96%, 640px);
}

.screen {
  height: 360px;
  background: #ffffff;
  border: 12px solid #080b12;
  border-bottom-width: 8px;
  border-radius: 14px;
  overflow: hidden;
  padding: 14px;
}

.kpi-row,
.table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi-row span,
.table-row span {
  height: 34px;
  background: #f3f6fa;
  border: 1px solid #e5ebf3;
  border-radius: 6px;
}

.chart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
}

.bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  height: 170px;
}

.bars i {
  display: block;
  background: linear-gradient(180deg, #1a6fce, #6eb2ff);
  border-radius: 5px 5px 0 0;
}

.bars i:nth-child(1) {
  height: 50%;
}

.bars i:nth-child(2) {
  height: 72%;
}

.bars i:nth-child(3) {
  height: 40%;
}

.bars i:nth-child(4) {
  height: 78%;
}

.bars i:nth-child(5) {
  height: 63%;
}

.bars i:nth-child(6) {
  height: 85%;
}

.donut {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#f97a6a 0 30%, #f5c34f 30% 60%, #4a8be2 60% 100%);
  mask: radial-gradient(circle, transparent 48%, #000 50%);
}

.table-row {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.table-row span {
  height: 22px;
}

.base {
  width: 110%;
  margin-left: -5%;
  margin-top: -4px;
  height: 14px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #a9adb5, #767b82);
}

.phone {
  position: absolute;
  left: 26px;
  bottom: 28px;
  width: 132px;
  border-radius: 26px;
  border: 4px solid #10131b;
  background: #f6f8fb;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(16, 26, 48, 0.2);
}

.notch {
  width: 54px;
  height: 14px;
  margin: 0 auto 8px;
  border-radius: 0 0 10px 10px;
  background: #111;
}

.phone-body {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d7dfeb;
  background: #fff;
}

.phone-top {
  height: 32px;
  background: #196cca;
}

.phone-cards {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.phone-cards span {
  display: block;
  height: 24px;
  border-radius: 5px;
  background: #eef3f9;
}

.phone-footer {
  height: 26px;
  background: #1261bd;
}

@media (max-width: 1320px) {
  .brand-text {
    font-size: 24px;
  }

  .main-nav,
  .header-actions {
    gap: 20px;
  }

  .main-nav a,
  .header-actions a {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(40px, 4vw, 62px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-cta .primary {
    font-size: 19px;
    height: 50px;
  }

  .doc-link {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    min-height: auto;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-media {
    height: 420px;
    justify-content: center;
  }

  .hero-device-image {
    width: min(100%, 560px);
  }

  .solution-media {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .feature-card {
    padding: 22px 18px;
  }

  .feature-card h3 {
    font-size: 32px;
  }


  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-media {
    height: auto;
    margin-top: 8px;
  }

  .hero-device-image {
    width: 100%;
  }

  .solution-media {
    height: auto;
  }

  .solution-image {
    width: 100%;
  }
}






.feature-cards {
  background: #F8FAFC;
  /* border-top: 1px solid #dce4ee; */
  padding: 26px 0 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 6px;
  padding: 34px 34px 30px;
  min-height: 372px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.feature-card p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  min-height: 126px;
}

.feature-divider {
  width: 100%;
  border-top: 1px solid #e5ebf3;
  margin: 14px 0;
}

.feature-card a {
  margin-top: 0;
  color: #0061af;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .feature-card {
    padding: 22px 18px;
  }

  .feature-card h3 {
    font-size: 32px;
  }
}



.workforce-section {
  background: #f2f5fa;
  padding: 46px 0 54px;
}

.workforce-wrap {
  max-width: 980px;
}

.workforce-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.workforce-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid #d3dced;
  border-radius: 4px;
  color: #0f63bb;
  background: #eef3fb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.workforce-badge-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  display: block;
}

.workforce-head h2 {
  margin: 16px 0 10px;
  color: #0f1939;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -1.5px;
}

.workforce-head p {
  margin: 0 auto;
  max-width: 620px;
  color: #4f627a;
  font-size: 20px;
  line-height: 1.5;
}

.store-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 0px;
}

.store-btn {
  display: inline-block;
  line-height: 0;
}

.store-btn img {
  width: 162px;
  height: auto;
  display: block;
}

.workforce-phones {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
}

.wf-phone-image {
  width: 288px;
  height: auto;
  display: block;
  transform-origin: bottom center;
}

.wf-phone-left {
  transform: rotate(-0.6deg);
}

.wf-phone-right {
  transform: rotate(0.18deg);
}

.workforce-benefits {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-item h3 {
  margin: 0;
  color: #111c3a;
  font-size: 20px;
  line-height: 1.2;
}

.benefit-item p {
  margin: 8px 0 0;
  color: #4f6178;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .workforce-head h2 {
    font-size: 48px;
  }

  .workforce-phones {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .workforce-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .workforce-section {
    padding: 36px 0 40px;
  }

  .workforce-head h2 {
    font-size: 36px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .wf-phone-image {
    width: 248px;
  }

  .wf-phone-left,
  .wf-phone-right {
    transform: none;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }
}

.technical-specs {
  background: #f4f7fb;
  padding: 34px 0 54px;
}

.tech-wrap {
  /* border: 1px solid #cfd8e6; */
  background: #f7f9fc;
  padding: 42px 44px 34px;
}

.tech-wrap h2 {
  margin: 0;
  color: #111a36;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.tech-wrap>p {
  margin: 8px 0 30px;
  color: #566980;
  font-size: 16px;
  line-height: 1.5;
}

.modernize-section {
  background: #F6F6F8;
  /* border-top: 1px solid #e5ebf3; */
  padding: 36px 0 48px;
}

.modernize-card {
  border-radius: 10px;
  padding: 50px 30px;
  background: #0061AF;
  box-shadow: 0 18px 34px rgba(17, 26, 56, 0.18);
  text-align: center;
}

.modernize-card h2 {
  margin: 0;
  color: #F8FAFC;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
}

.modernize-card p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #fff;
  opacity: 80%;
  font-size: 20px;
  line-height: 1.55;
  margin-top: 25px;
}

.modernize-actions {
  margin-top: 25px;
  display: inline-flex;
  gap: 12px;
}

.cta-button {
  min-width: 250px;
  height: 60px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.cta-button.primary {
  background: #FFFFFF;
  color: #0061AF;
}

.cta-button.secondary {
  border: 1px solid #cfe2ff;
  color: #F8FAFC;
  background: #5048E533;
  min-width: 196px;
}

.modernize-note {
  margin-top: 20px !important;
  color: #FFFFFF99 !important;
  font-size: 14px !important;
}

@media (max-width: 680px) {
  .modernize-card h2 {
    font-size: 28px;
  }

  .modernize-actions {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

.disburse-section {
  background: #F6F6F8;
  padding: 44px 0 60px;
  border-top: 1px solid #e5ebf3;
}

.disburse-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #dbe6f2;
  border-radius: 6px;
  padding: 16px 18px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-value {
  color: #0061AF;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.metric-sub {
  margin-top: 8px;
  color: #545095;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.batch-top .summary {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
}

.batch-card {
  margin-top: 16px;
  background: #0061AF;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(17, 26, 56, 0.18);
  padding: 30px 20px 30px;
  /* min-height: 145px; */
}

.batch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.status {
  background: rgba(255, 255, 255, 0.18);
  /* border: 1px solid rgba(255,255,255,0.28); */
  color: #fff;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
}

.progress {
  margin-top: 40px;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #ffffff;
  border-radius: 999px;
}

.progress-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

.disburse-right h2 {
  margin: 0;
  color: #0F0E1B;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 800;
}

.disburse-right p {
  margin: 14px 0 0;
  color: #0061AF;
  font-size: 18px;
  line-height: 1.7;
}

.points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0F0E1B;
  font-size: 16px;
  font-weight: 600;
}

.point-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.point-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .disburse-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.tech-table {
  border: 1px solid #c9d4e2;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-col {
  min-height: 228px;
}

.tech-col+.tech-col {
  border-left: 1px solid #c9d4e2;
}

.tech-col h3 {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid #c9d4e2;
  background: #f7f9fc;
  color: #273247;
  font-size: 14px;
  font-weight: 600;
}

.tech-col ul {
  list-style: none;
  margin: 0;
  padding: 16px 22px 18px;
}

.tech-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #556983;
  font-size: 14px;
  line-height: 1.4;
}

.tech-col li:last-child {
  margin-bottom: 0;
}

.tag {
  min-width: 42px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #dae2ed;
  background: #f3f6fb;
  color: #5b6d83;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.dot-icon {
  width: 16px;
  text-align: center;
  color: #94A3B8;
  font-size: 13px;
  flex-shrink: 0;
}

.dot-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.secure-list .dot-icon {
  color: #0f8b66;
}

.tech-footnote {
  border: 1px solid #c9d4e2;
  border-top: 0;
  background: #f7f9fc;
  color: #5a6d83;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 22px;
}

@media (max-width: 1024px) {
  .tech-wrap {
    padding: 30px 20px 20px;
  }

  .tech-wrap h2 {
    font-size: 36px;
  }

  .tech-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-col:nth-child(3),
  .tech-col:nth-child(4) {
    border-top: 1px solid #c9d4e2;
  }

  .tech-col:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .technical-specs {
    padding: 22px 0 34px;
  }

  .tech-wrap h2 {
    font-size: 30px;
  }

  .tech-wrap>p {
    font-size: 15px;
  }

  .tech-table {
    grid-template-columns: 1fr;
  }

  .tech-col+.tech-col {
    border-left: 0;
    border-top: 1px solid #c9d4e2;
  }

  .tech-col:nth-child(3) {
    border-top: 1px solid #c9d4e2;
  }

  .tech-footnote {
    font-size: 13px;
  }
}

.testimonials-section {
  background: #f4f7fb;
  padding: 72px 0 84px;
}

.testimonials-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}

.quote-mark {
  color: #d2d8e2;
  font-size: 118px;
  line-height: 0.8;
  font-weight: 700;
  margin-top: 8px;
}

.testimonials-head h2 {
  margin: 0;
  color: #121c38;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.testimonials-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-card {
  border: 1px solid #d0d9e6;
  border-radius: 6px;
  background: #f8fbff;
  padding: 28px 28px 24px;
  /* min-height: 458px; */
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #c7c501;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1.6px;
}

.testimonial-card p {
  margin: 30px 0 0;
  color: #4f6077;
  font-size: 18px;
  line-height: 1.5;
  flex: 1;
}

.reviewer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  border: 1px solid #d5deea;
  background-size: cover;
  background-position: center;
}

.avatar-1 {
  background-image: url("./image/unsplash_ZHvM3XIOHoE.png");
}

.avatar-2 {
  background-image: url("./image/unsplash_ZHvM3XIOHoE\ \(1\).png");
}

.avatar-3 {
  background-image: url("./image/unsplash_ZHvM3XIOHoE\ \(2\).png");
}

.reviewer h3 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.reviewer span {
  margin-top: 4px;
  display: block;
  color: #657991;
  font-size: 12px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .testimonials-head h2 {
    font-size: 22px;
  }

  .quote-mark {
    font-size: 86px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .reviewer h3 {
    font-size: 17px;
  }

  .reviewer span {
    font-size: 13px;
  }
}

@media (max-width: 680px) {
  .testimonials-section {
    padding: 44px 0 52px;
  }

  .testimonials-head {
    gap: 10px;
  }

  .testimonials-head h2 {
    font-size: 20px;
  }

  .quote-mark {
    font-size: 64px;
    margin-top: 2px;
  }

  .stars {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-card p {
    font-size: 14px;
    margin-top: 18px;
  }
}

.modernize-cta {
  background: #0f172a;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #1e293b;
  padding: 64px 10px;
}

.modernize-wrap {
  max-width: 760px;
  text-align: center;
}

.modernize-wrap h2 {
  margin: 0;
  color: #e5e7eb;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 700;
}

.modernize-wrap p {
  margin: 18px auto 0;
  max-width: 690px;
  color: #94A3B8;
  font-size: 16px;
  line-height: 1.5;
}

.modernize-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 253px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0061AF 0%, #0075F8 100%);
  color: #f8fafc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.modernize-arrow {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}


@media (max-width: 1024px) {
  .modernize-cta {
    padding: 54px 10px;
  }

  .modernize-wrap h2 {
    font-size: 24px;
  }

  .modernize-wrap p {
    font-size: 16px;
  }

  .modernize-btn {
    min-width: 240px;
    height: 58px;
    font-size: 14px;
  }

  .modernize-arrow {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 680px) {
  .modernize-cta {
    padding: 40px 10px;
  }

  .modernize-wrap h2 {
    font-size: 28px;
  }

  .modernize-wrap p {
    font-size: 15px;
  }

  .modernize-btn {
    min-width: 210px;
    height: 52px;
    font-size: 14px;
  }

  .modernize-arrow {
    width: 14px;
    height: 14px;
  }
}

.site-footer {
  background: #F8FAFC;
  padding: 48px 0 26px;
  border-top: 1px solid #CBD5E1;
}

.footer-wrap {
  width: min(1240px, calc(100% - 64px));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.7fr;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111c34;
  font-size: 36px;
  font-weight: 700;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-block p {
  margin: 20px 0 0;
  max-width: 470px;
  color: #5e728b;
  font-size: 15px;
  line-height: 1.55;
}

.footer-socials {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e3ebf6;
  color: #5e738d;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.footer-links-col h3 {
  margin: 2px 0 18px;
  color: #111d38;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-links-col a {
  display: block;
  margin-bottom: 14px;
  color: #5e728b;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}

.footer-links-col a:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #d3deea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #6f839a;
  font-size: 14px;
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-policies a {
  color: #6f839a;
  text-decoration: none;
  font-size: 14px;
}

.vet1 {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 36px 0 20px;
  }

  .footer-wrap {
    width: min(1240px, calc(100% - 34px));
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    font-size: 26px;
  }

  .footer-brand-block p,
  .footer-links-col a,
  .footer-bottom p,
  .footer-policies a {
    font-size: 14px;
  }

  .footer-links-col h3 {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-policies {
    gap: 16px;
    flex-wrap: wrap;
  }
}

.pricing-section {
  background: #f4f7fb;
  padding: 58px 0 24px;
}

.pricing-wrap {
  text-align: center;
}

.pricing-wrap h1 {
  margin: 0;
  color: #111b37;
  font-size: 60px;
  line-height: 1.11;
  letter-spacing: -1px;
}

.pricing-sub {
  margin: 14px auto 0;
  max-width: 700px;
  color: #64748B;
  font-size: 18px;
  line-height: 1.6;
}

.save-anual {
  color: #059669;
}

.billing-toggle {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8eef6;
  border-radius: 999px;
  padding: 4px;
}

.toggle-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6d8098;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
}

.toggle-btn.active {
  background: #ffffff;
  color: #0F172A;
}

.pricing-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.plan-card {
  text-align: left;
  background: #fff;
  border: 1px solid #d5deea;
  border-radius: 6px;
  padding: 22px 20px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.plan-card h3 {
  margin: 0;
  color: #1b2a43;
  font-size: 15px;
  font-weight: 700;
}

.plan-desc {
  margin: 12px 0 0;
  color: #6d7f95;
  font-size: 12px;
  line-height: 1.45;
}

.plan-price {
  margin-top: 18px;
  color: #111b37;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

.plan-price span {
  color: #6d8199;
  font-size: 12px;
  font-weight: 600;
}

.plan-price.custom {
  font-size: 43px;
}

.plan-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.plan-card li {
  color: #3e556f;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #08a15e;
  font-weight: 700;
  font-size: 11px;
}

.featured {
  border-color: #0061AF;
  box-shadow: 0 10px 22px rgba(34, 104, 189, 0.14);
  min-height: 520px;
}

.featured-badge {
  position: absolute;
  right: 18px;
  top: -11px;
  background: #0061AF;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
}

.plan-btn {
  margin-top: auto;
  width: 100%;
  height: 30px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.plan-btn.light {
  border: 1px solid #d4dde9;
  background: #fff;
  color: #2f4159;
}

.plan-btn.dark {
  border: 0;
  background: #101b3a;
  color: #fff;
}

.plan-cert {
  margin: 8px 0 0;
  color: #8192a9;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.pricing-help {
  background: #FFFFFF;
  border-top: 1px solid #CBD5E1;
  padding: 40px 0 28px;
}

.help-wrap {
  text-align: center;
}

.help-wrap h2 {
  margin: 0;
  color: #0F172A;
  font-weight: 700;
  font-size: 24px;
}

.help-wrap p {
  margin: 8px 0 0;
  color: #64748B;
  font-size: 16px;
}

.help-actions {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
}

.help-btn {
  height: 34px;
  padding: 0 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.help-btn.light {
  border: 1px solid #ced8e6;
  color: #3f5269;
  background: #fff;
}

.help-btn.blue {
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #0042F7 0%, #0075F8 100%);

}

@media (max-width: 1024px) {
  .pricing-wrap h1 {
    font-size: 42px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .pricing-wrap h1 {
    font-size: 30px;
  }

  .pricing-section {
    padding-top: 34px;
  }
}

.contact-page {
  background: #f4f7fb;
  padding: 38px 0 24px;
}

.contact-wrap h1 {
  margin: 0;
  color: #111b37;
  font-size: 36px;
  line-height: 1.4;
}

.contact-sub {
  margin: 8px 0 20px;
  color: #64748B;
  font-size: 18px;
}

.contact-panel {
  border: 1px solid #d4deea;
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 1.05fr;
}

.contact-form-area {
  padding: 28px;
}

.contact-form-area h2 {
  margin: 0;
  color: #111c35;
  font-size: 32px;
}

.form-note {
  margin: 8px 0 16px;
  color: #7f90a6;
  font-size: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
}

.contact-form label>span {
  display: block;
  margin-bottom: 6px;
  color: #667d98;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad6e5;
  border-radius: 0;
  background: #fff;
  color: #334155;
  padding: 10px 12px;
  font-size: 12px;
  outline: none;
}

.contact-form textarea {
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  height: 34px;
  border: 0;
  background: #0f1938;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.legal-note {
  margin: 10px 0 0;
  text-align: center;
  color: #8a9bb0;
  font-size: 10px;
}

.legal-note a {
  color: #1c67c1;
  text-decoration: none;
}

.contact-side {
  border-left: 1px solid #CBD5E1;
  background: #F1F5F9;
  display: flex;
  flex-direction: column;
}

.inquiry-block {
  padding: 20px 22px 16px;
  border-bottom: 1px solid #d4deea;
}

.inquiry-block h3 {
  margin: 0 0 10px;
  color: #1a2843;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.inquiry-block p {
  margin: 0 0 8px;
  color: #2f435d;
  font-size: 12px;
  line-height: 1.4;
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-svg {
  display: inline-flex;
  width: 16px;
  min-width: 16px;
  justify-content: center;
  align-items: center;
}

.inquiry-block p.muted {
  color: #7a8ea6;
  font-size: 11px;
}

.direction-link {
  color: #0b67c1;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.direction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
}

.map-box {
  margin-top: auto;
  min-height: 136px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 136px;
  display: block;
  border: 0;
}

.contact-trust {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: #6f839b;
  font-size: 12px;
}

.get-dir {
  font-size: 12px;
  font-weight: 600;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  display: inline-flex;
  width: 16px;
  min-width: 16px;
  justify-content: center;
  align-items: center;
}

.trust-text {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-side {
    border-left: 0;
    border-top: 1px solid #d4deea;
  }
}

@media (max-width: 680px) {
  .contact-wrap h1 {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-trust {
    flex-direction: column;
    gap: 8px;
  }
}

.header-actions a.active-action {
  color: #0a60b9;
}

.partner-hero {
  background: #FFFFFF;
  border-top: 1px solid #dbe4ef;
  padding: 62px 0;
}

.partner-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.partner-badge {
  display: inline-block;
  color: #0b63bb;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.partner-content h1 {
  margin: 16px 0 12px;
  color: #0F0E1B;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -1.4px;
  max-width: 450px;
  font-weight: 700;
}

.partner-content p {
  margin: 0;
  color: #4B5563;
  font-size: 20px;
  line-height: 1.5;
  max-width: 450px;
}

.partner-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.partner-btn {
  min-width: 170px;
  height: 52px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.partner-btn.primary {
  background: #0061AF;
  color: #fff;
}

.partner-btn.ghost {
  border: 1px solid #d0dbea;
  background: #fff;
  color: #0F0E1B;
}

.partner-media img {
  width: 100%;
  max-width: 510px;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .partner-hero-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .partner-content h1 {
    font-size: 44px;
    max-width: 100%;
  }

  .partner-content p {
    font-size: 20px;
    max-width: 100%;
  }

  .partner-btn {
    font-size: 16px;
    min-width: 154px;
    height: 46px;
  }

  .partner-media img {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .partner-hero {
    padding: 38px 0;
  }

  .partner-badge {
    font-size: 13px;
  }

  .partner-content h1 {
    font-size: 36px;
  }

  .partner-content p {
    font-size: 18px;
  }

  .partner-cta {
    flex-wrap: wrap;
  }
}

.partner-second {
  background: #F9F8FB;
  border-top: 1px solid #E8E8F3;
  border-bottom: 1px solid #E8E8F3;
  /* border-top: 1px solid #e0e7f0; */
  padding: 26px 0 30px;
}

.partner-second-wrap {
  /* border-top: 1px solid #e2e9f2; */
  padding-top: 30px;
}

.partner-trusted {
  text-align: center;
}

.partner-trusted p {
  margin: 0;
  color: #545095;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.1px;
}

.trusted-logos {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.logo-chip {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #7d8ca2;
  background: #f0f4f8;
  border: 1px solid #dde6ef;
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.chip-1 {
  background: #5c6470;
  color: #dbe4ef;
}

.chip-2 {
  background: #78808a;
  color: #d6dde8;
}

.chip-3 {
  background: #6e9c8d;
  color: #e2efe9;
}

.chip-4 {
  background: #e8ecef;
  color: #bcc6d2;
}

.chip-5 {
  background: transparent;
  border-color: transparent;
  color: #a2adbb;
  font-weight: 700;
}

.partner-why-section {
  background: #ffffff;
  padding: 52px 0 42px;
}

.partner-why {
  margin-top: 0;
  text-align: center;
}

.partner-why h2 {
  margin: 0;
  color: #0F0E1B;
  font-size: 36px;
  font-weight: 700;
}

.partner-why p {
  margin: 12px auto 0;
  max-width: 720px;
  color: #545095;
  font-size: 18px;
  line-height: 1.45;
}

.partner-benefits-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.partner-benefit-card {
  border: 1px solid #D2D1E6;
  border-radius: 8px;
  background: #fff;
  padding: 24px 20px 22px;
  min-height: 220px;
}

.partner-benefit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}

.partner-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-benefit-card h3 {
  margin: 0;
  color: #0F0E1B;
  font-size: 20px;
  line-height: 1.2;
}

.partner-benefit-card p {
  margin: 10px 0 0;
  color: #0061AF;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .partner-why h2 {
    font-size: 36px;
  }

  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-benefit-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .partner-trusted p {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .trusted-logos {
    gap: 10px;
  }

  .partner-why {
    margin-top: 0;
  }

  .partner-why h2 {
    font-size: 30px;
  }
}

.partner-programs-section {
  background: #F6F6F8;
  border-top: 1px solid #e8e8f3;
  padding: 56px 0 68px;
}

.partner-programs-head {
  text-align: center;
}

.partner-programs-head h2 {
  margin: 0;
  color: #0f0e1b;
  font-size: 52px;
  font-weight: 700;
}

.partner-programs-head p {
  margin: 12px 0 0;
  color: #545095;
  font-size: 18px;
}

.partner-programs-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.program-card {
  background: #fff;
  border: 1px solid #d2d1e6;
  border-top: 7px solid #0b67c1;
  border-radius: 8px;
  padding: 24px 20px 22px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.program-card h3 {
  margin: 0;
  color: #0F0E1B;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.program-sub {
  margin: 8px 0 0;
  color: #545095;
  font-size: 14px;
}

.program-desc {
  margin: 26px 0 0;
  color: #545095;
  font-size: 16px;
  line-height: 1.43;
}

.program-card ul {
  list-style: none;
  margin: 120px 0 0;
  padding: 0;
}

.program-card li {
  margin-bottom: 10px;
  color: #0f0e1b;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
  padding-left: 22px;
}

.program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background: url("image/ikon.png") center / contain no-repeat;
}

.program-btn {
  margin-top: auto;
  text-decoration: none;
  height: 50px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.program-btn.ghost {
  border: 2px solid #0b67c1;
  color: #0b67c1;
  background: #fff;
}

.program-btn.solid {
  border: 0;
  color: #fff;
  background: #0b67c1;
}

.featured-program {
  border-color: #0b67c1;
  box-shadow: 0 10px 18px rgba(24, 63, 130, 0.12);
  min-height: 560px;
}

.program-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  background: #0b67c1;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 8px 16px;
  border-radius: 5px 5px 0 0;
}

@media (max-width: 1024px) {
  .partner-programs-head h2 {
    font-size: 36px;
  }

  .partner-programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .featured-program {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .partner-programs-section {
    padding: 40px 0 46px;
  }

  .partner-programs-head h2 {
    font-size: 30px;
  }

  .partner-programs-head p {
    font-size: 16px;
  }
}

.partner-onboarding-section {
  background: #FFFFFF;
  border-top: 1px solid #e8e8f3;
  padding: 62px 0 72px;
}

.partner-onboarding-head {
  text-align: center;
}

.partner-onboarding-head h2 {
  margin: 0;
  color: #0F0E1B;
  font-size: 36px;
  font-weight: 700;
}

.partner-onboarding-head p {
  margin: 12px 0 0;
  color: #545095;
  font-size: 18px;
}

.partner-onboarding-track {
  margin-top: 50px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.track-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28px;
  height: 2px;
  background: #E0E4EF;
  z-index: 0;
}

.onboard-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #0B67C1;
  box-shadow: 0 6px 14px rgba(11, 103, 193, 0.25);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 72px;
  display: inline-block;
}

.onboard-step h3 {
  margin: 20px 0 0;
  color: #0F0E1B;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.onboard-step p {
  margin: 10px auto 0;
  max-width: 230px;
  color: #545095;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .partner-onboarding-head h2 {
    font-size: 36px;
  }

  .partner-onboarding-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .track-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .partner-onboarding-section {
    padding: 42px 0 50px;
  }

  .partner-onboarding-head h2 {
    font-size: 30px;
  }

  .partner-onboarding-head p {
    font-size: 16px;
  }

  .partner-onboarding-track {
    grid-template-columns: 1fr;
    row-gap: 26px;
    margin-top: 34px;
  }

  .step-number {
    width: 62px;
    height: 62px;
    font-size: 30px;
    line-height: 62px;
  }

  .onboard-step h3 {
    font-size: 28px;
  }
}

.partner-register-section {
  background: #f6f6f8;
  border-top: 1px solid #e8e8f3;
  padding: 80px 0;
}

.partner-register-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 14, 27, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.partner-register-left {
  background: #0b67c1;
  padding: 62px 56px;
  color: #d7e9ff;
}

.partner-register-left h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.partner-register-left p {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  opacity: .8;
}

.partner-register-left ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.partner-register-left li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e9f3ff;
  font-size: 16px;
  line-height: 1.28;
}

.register-icon {
  width: 22px;
  height: 21px;
  color: #a9cfff;
  flex: 0 0 auto;
  display: inline-flex;
}

.register-icon svg {
  width: 100%;
  height: 100%;
}

.partner-register-right {
  background: #fff;
  padding: 58px 48px;
}

.partner-register-form {
  display: grid;
}

.partner-register-form label {
  margin: 0 0 8px;
  color: #0f0e1b;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}

.partner-register-form input,
.partner-register-form select {
  width: 100%;
  height: 68px;
  border: 1px solid #d2d9e8;
  border-radius: 2px;
  padding: 0 18px;
  color: #0f0e1b;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 24px;
  outline: none;
  background: #fff;
}

.partner-register-form input::placeholder {
  color: #9aa6b8;
}

.partner-register-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.capabilities-section {
  background: #FFFFFF;
  padding: 40px 0 54px;
}

.cap-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.cap-badge {
  display: inline-block;
  color: #0061AF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.cap-head h2 {
  margin: 8px 0 6px;
  color: #0F0E1B;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.cap-head p {
  margin: 0 auto;
  color: #4B5563;
  font-size: 16px;
  line-height: 1.6;
}

.cap-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cap-card {
  background: #ffffff;
  border: 1px solid #e5ebf3;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 26, 56, 0.12);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
}

.cap-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #d5e0ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cap-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a60b9;
  display: block;
}

.cap-card h3 {
  margin: 0;
  color: #0F0E1B;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.cap-card p {
  margin: 8px 0 0;
  color: #4B5563;
  font-size: 14px;
  line-height: 1.6;
  min-height: 64px;
}

.cap-visual {
  margin-top: 12px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #e9eef7, #d8e4f4);
}

.cap-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cap-visual.form {
  background: linear-gradient(180deg, #e9eef7, #bcd5ef);
}

.cap-visual.phone {
  background: linear-gradient(180deg, #f0f6fb, #d9e7f5);
}

.cap-visual.chart {
  padding: 0;
}

@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.partner-register-row>div {
  min-width: 0;
}

.partner-register-form button {
  margin-top: 10px;
  height: 68px;
  border: 0;
  border-radius: 3px;
  background: #0b67c1;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .partner-register-card {
    grid-template-columns: 1fr;
  }

  .partner-register-left,
  .partner-register-right {
    padding: 34px 28px;
  }

  .partner-register-left h2 {
    font-size: 36px;
  }

  .partner-register-left p {
    font-size: 22px;
  }

  .partner-register-left li {
    font-size: 20px;
  }

  .partner-register-form label {
    font-size: 18px;
  }

  .partner-register-form input,
  .partner-register-form select {
    height: 52px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .partner-register-form button {
    height: 54px;
    font-size: 22px;
  }
}

@media (max-width: 680px) {
  .partner-register-section {
    padding: 42px 0;
  }

  .partner-register-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* App Previews Section */
.app-previews-section {
  padding: 80px 0;
  background-color: #F9FAFB;
  text-align: center;
}

.previews-head {
  margin-bottom: 50px;
}

.previews-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
}

.previews-head p {
  font-size: 16px;
  color: #64748B;
}

.previews-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.preview-item {
  width: 280px;
  background: #ffffff;
  padding: 10px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-10px);
}

.preview-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

@media (max-width: 768px) {
  .app-previews-section {
    padding: 50px 0;
  }

  .preview-item {
    width: 240px;
  }
}

/* Contact Form Response Styles */
.form-response {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-response.info {
  display: block;
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.form-response.success {
  display: block;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-response.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
