:root {
  --primary: #1081f4;
  --text: #1d2b44;
  --bg: #ffffff;
  --border: #d7e4f7;
  --hero-navy: #0f3f82;

  --font-14px: clamp(14px, 0.731vw, 16px);
  --font-16px: clamp(14px, 0.833vw, 20px);
  --font-18px: clamp(16px, 0.957vw, 24px);
  --font-20px: clamp(16px, 1.041vw, 20px);
  --font-21px: clamp(16px, 1.109vw, 24px);
  --font-22px: clamp(16px, 1.145vw, 26px);
  --font-23px: clamp(16px, 1.197vw, 26px);
  --font-24px: clamp(16px, 1.250vw, 28px);
  --font-26px: clamp(16px, 1.354vw, 30px);
  --font-27px: clamp(17px, 1.42vw, 33px);
  --font-30px: clamp(18px, 1.562vw, 30px);
  --font-32px: clamp(18px, 1.666vw, 37px);
  --font-34px: clamp(20px, 1.770vw, 34px);
  --font-36px: clamp(20px, 1.875vw, 36px);
  --font-37px: clamp(20px, 1.93vw, 37px);
  --font-40px: clamp(22px, 2.084vw, 40px);
  --font-45px: clamp(20px, 2.346vw, 50px);
  --font-50px: clamp(24px, 6.604vw, 52px);
  --font-53px: clamp(24px, 2.760vw, 59px);
  --font-60px: clamp(26px, 3.125vw, 60px);
  --font-64px: clamp(28px, 3.333vw, 70px);
  --font-72px: clamp(30px, 3.750vw, 80px);
  --font-80px: clamp(28px, 4.166vw, 80px);
  --font-90px: clamp(28px, 4.687vw, 90px);
  --font-122px: clamp(32px, 6.354vw, 122px);
  --font-150px: clamp(60px, 7.813vw, 150px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: #f7faff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid #e6eef9;
  border-bottom: 1px solid #e6eef9;
}

.header-topbar {
  background: #0f5aa8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  max-height: 36px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, border-bottom-color 0.2s ease;
}

.header-topbar-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.header-topbar-left {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.header-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.header-contact-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  display: block;
}

.header-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-topbar-right a {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-topbar-right img {
  width: 20px;
  height: 20px;
  display: block;
}

.header-topbar-right .header-social-fb {
  transform: scale(1.32);
}

.site-header.header-scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.container {
  width: 100%;
  padding-left: clamp(2.8rem, 8vw, 4.8rem);
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
}

.header-inner {
  min-height: clamp(64px, 9vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.35rem, 0.9vw, 0.6rem);
  flex-shrink: 0;
  margin-left: 0;
}

.brand-logo {
  width: 100px;
  height: auto;
  max-width: 100px;
  transform: scale(1);
  transform-origin: left center;
  display: block;
}

.brand-name {
  width: auto;
  height: auto;
  max-width: none;
  transform: scale(0.86);
  transform-origin: left center;
  display: block;
}

.menu-toggle {
  display: none;
}

.main-nav {
  margin-left: auto;
  position: relative;
  left: -4rem;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 2rem);
}

.nav-list a {
  font-size: var(--font-18px);
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--primary);
}

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

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: var(--font-16px);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.nav-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item-dropdown.open .nav-chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  z-index: 1200;
  min-width: 320px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e5eaf2;
  border-top: 3px solid #0a3d78;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.12);
  display: none;
}

.nav-item-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown li + li {
  border-top: 1px solid #c9d4e4;
}

.nav-dropdown a {
  display: block;
  padding: 0.85rem 1.1rem;
  color: #0a3d78;
  font-size: var(--font-14px);
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #f5f8fc;
  color: #0a3d78;
}

.quote-btn {
  margin-left: clamp(0.75rem, 1.6vw, 1.25rem);
  position: relative;
  left: -4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.45rem, 0.85vw, 0.62rem) clamp(0.78rem, 1.5vw, 1.05rem);
  border-radius: 0.5rem;
  font-size: var(--font-14px);
  font-weight: 700;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 129, 244, 0.28);
}

.quote-btn .arrow {
  width: clamp(1.65rem, 2.7vw, 2.05rem);
  height: clamp(1.85rem, 3vw, 1.3rem);
  display: inline-grid;
  place-items: center;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--primary);
  border-radius: 0.28rem;
  font-size: 0.9em;
  line-height: 1;
}

.quote-arrow-icon {
  width: 12px;
  height: 12px;
  display: block;
  object-fit: contain;
}

.hero-section {
  position: relative;
  background: #0d2f63;
  min-height: clamp(480px, 68vw, 700px);
  margin-top: 0;
  padding-top: clamp(64px, 9vw, 88px);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.12) translateY(-5%);
  transform-origin: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 580px);
  align-items: center;
  gap: clamp(0.45rem, 1.2vw, 1rem);
  padding-top: clamp(1.2rem, 2.8vw, 2.2rem);
  padding-bottom: clamp(1.6rem, 4vw, 3rem);
}

.hero-section .container,
.stats-band .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.hero-content {
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-shadow: none;
  padding-top: clamp(2.8rem, 5.8vw, 4.2rem);
  margin-left: clamp(-1.7rem, -3.1vw, -2.5rem);
}

.hero-chip {
  display: inline-block;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: var(--font-14px);
  letter-spacing: 0.06em;
  font-weight: 600;
  background: #0059bb;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-content h1 {
  margin: 1.35rem 0 0.75rem;
  font-size: var(--font-50px);
  line-height: 1.06;
  font-weight: 800;
}

.hero-content p {
  margin: 0;
  max-width: 58ch;
  font-size: var(--font-18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-btn {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: var(--font-16px);
  font-weight: 600;
  padding: 0.68rem 1rem;
  border-radius: 0.32rem;
  border: 1px solid #ffffff4d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.hero-btn-primary {
  background: rgba(16, 129, 244, 0.82);
  color: #ffffff;
}

.hero-btn-primary:hover {
  filter: brightness(1.06);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-btn-secondary:hover {
  background: rgba(11, 21, 39, 0.8);
}

.hero-form-card {
  background: #ffffff;
  border-radius: 0.42rem;
  box-shadow: 0 14px 35px rgba(18, 40, 74, 0.2);
  padding: 1.2rem;
  margin-top: clamp(4.4rem, 1vw, 0.9rem);
  margin-left: clamp(-0.5rem, -1vw, -1rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.hero-form-card h2 {
  margin: 0 0 0.85rem;
  font-size: var(--font-24px);
  color: var(--hero-navy);
}

.hero-form-card label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--font-14px);
  color: #4c5d7c;
}

.hero-form-card select,
.hero-form-card input {
  width: 100%;
  padding: 0.68rem 0.75rem;
  border: 1px solid #dce7f7;
  border-radius: 0.25rem;
  margin-bottom: 0.78rem;
  font-family: inherit;
  font-size: var(--font-16px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.send-btn {
  width: 100%;
  border: 0;
  border-radius: 0.25rem;
  padding: 0.76rem 0.9rem;
  color: #ffffff;
  background: var(--hero-navy);
  font-family: inherit;
  font-weight: 600;
  font-size: var(--font-16px);
  cursor: pointer;
}

.hero-call {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: var(--font-14px);
  color: #4c5d7c;
}

.hero-call a {
  color: var(--hero-navy);
  font-weight: 600;
}

.stats-band {
  background: #ffffff;
}

.stats-grid {
  transform: translateY(-3.4rem);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 40, 74, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 0.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.1rem 0.4rem;
  border-right: 1px solid #ebf0f8;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-size: var(--font-32px);
  color: var(--hero-navy);
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--font-16px);
  color: #44597a;
}

.precision-section {
  background: #f9f9fc;
  padding: clamp(0.6rem, 1.5vw, 1.2rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.precision-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
  align-items: center;
}

.precision-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.precision-media {
  position: relative;
  border-radius: 0.35rem;
  overflow: hidden;
  margin-left: clamp(-6rem, -10.5vw, -8rem);
}

.precision-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(200px, 24vw, 300px);
  object-fit: cover;
}

.precision-content h2 {
  margin: 0 0 0.85rem;
  color: var(--hero-navy);
  font-size: var(--font-34px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.precision-content {
  margin-top: clamp(0.6rem, 1.3vw, 1rem);
  margin-left: clamp(-1rem, -2vw, -1.6rem);
}

.precision-content > p {
  margin: 0 0 1.4rem;
  color: #424751;
  font-size: var(--font-16px);
  line-height: 1.6;
  max-width: 68ch;
}

.precision-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin-bottom: 1.6rem;
}

.precision-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.precision-point > img {
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  object-fit: contain;
  flex-shrink: 0;
}

.precision-point h3 {
  margin: 0 0 0.2rem;
  color: #000000;
  font-size: var(--font-18px);
  font-weight: 700;
}

.precision-point p {
  margin: 0;
  color: #424751;
  font-size: var(--font-14px);
  line-height: 1.45;
}

.precision-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--hero-navy);
  color: #ffffff;
  padding: 0.8rem 1.15rem;
  border-radius: 0.28rem;
  font-size: var(--font-16px);
  font-weight: 600;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.precision-cta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.precision-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.services-section {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.services-section .container {
  width: min(100% - 3rem, 1360px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.services-header h2 {
  margin: 0 0 0.75rem;
  color: var(--hero-navy);
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.25;
}

.services-header p {
  margin: 0 0 1.25rem;
  color: #424751;
  font-size: var(--font-16px);
  line-height: 1.6;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  background: #0059bb;
  color: #ffffff;
  padding: 0.72rem 1.15rem;
  border-radius: 0.28rem;
  font-size: var(--font-16px);
  font-weight: 600;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.services-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}

.service-card {
  position: relative;
  display: block;
  border-radius: 0.45rem;
  overflow: hidden;
  min-height: clamp(280px, 28vw, 360px);
  box-shadow: 0 10px 24px rgba(18, 40, 74, 0.12);
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #003267 0%, rgba(0, 50, 103, 0.4) 50%, rgba(0, 50, 103, 0) 100%);
  z-index: 1;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 0.95rem 1.1rem;
  color: #ffffff;
}

.service-icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 0.55rem;
}

.service-card-content h3 {
  margin: 0 0 0.35rem;
  font-size: var(--font-18px);
  font-weight: 700;
}

.service-card-content p {
  margin: 0 0 0.55rem;
  font-size: var(--font-14px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.service-card-content span {
  font-size: var(--font-14px);
  font-weight: 600;
}

.service-card:hover > img {
  transform: scale(1.05);
}

.trust-section {
  background: #f9f9fc;
  padding: clamp(2.2rem, 4.5vw, 4rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.trust-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: start;
}

.trust-left h2 {
  margin: 0 0 0.85rem;
  color: var(--hero-navy);
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.trust-left > p {
  margin: 0 0 1.5rem;
  color: #424751;
  font-size: var(--font-16px);
  line-height: 1.6;
  max-width: 42ch;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: fit-content;
  min-width: clamp(330px, 28vw, 420px);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background: #ffffff;
  border: 1px solid #d8dde6;
  border-radius: 0.45rem;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
  box-shadow: none;
  color: #1d2b44;
  font-size: var(--font-14px);
  font-weight: 600;
  box-sizing: border-box;
}

.trust-list-icon {
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.trust-list-icon img {
  width: auto;
  height: auto;
  max-width: none;
  display: block;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-left: clamp(-1rem, -2.2vw, -1.8rem);
}

.trust-card {
  position: relative;
  background: #ffffff;
  border-radius: 0.55rem;
  padding: 1.25rem 1.15rem 1.2rem;
  box-shadow: 0 8px 22px rgba(18, 40, 74, 0.08);
}

.trust-card-number {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  color: #0032670d;
  font-size: var(--font-80px);
  font-weight: 700;
  line-height: 1;
}

.trust-card-icon {
  width: auto;
  height: auto;
  max-width: none;
  display: block;
  margin-bottom: 0.85rem;
}

.trust-card h3 {
  margin: 0 0 0.45rem;
  color: #111827;
  font-size: var(--font-18px);
  font-weight: 700;
}

.trust-card p {
  margin: 0;
  color: #424751;
  font-size: var(--font-14px);
  line-height: 1.55;
}

.partners-section {
  background: #002b5b;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.partners-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.partners-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.partners-left h2 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.partners-left > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-16px);
  line-height: 1.6;
  max-width: 36ch;
}

.partners-nav {
  display: flex;
  gap: 0.65rem;
}

.partners-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(140, 190, 255, 0.65);
  border-radius: 0.35rem;
  background: transparent;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.partners-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.partners-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-radius: 1rem;
  padding: clamp(1.1rem, 2.2vw, 1.6rem) clamp(1.2rem, 2.5vw, 1.8rem);
  margin-left: clamp(-0.5rem, -1.2vw, -1rem);
}

.partners-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  color: #7eb6ff;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.partners-quote {
  margin: 0;
  color: #ffffff;
  font-size: var(--font-16px);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}

.partners-quote strong {
  font-weight: 700;
}

.process-section {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.process-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #5b9dff;
  font-size: var(--font-14px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-header h2 {
  margin: 0;
  color: #1a1c1e;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3.5rem, 7.5vw, 5.5rem);
  max-width: 1280px;
  margin-inline: auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: clamp(70px, 8vw, 92px);
  left: 11%;
  right: 11%;
  border-top: 2px dashed #d5dde8;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-media {
  position: relative;
  width: min(100%, 175px);
  margin: 0 auto 1.1rem;
}

.process-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.55rem;
  box-shadow: 0 12px 28px rgba(18, 40, 74, 0.12);
}

.process-number {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0.55rem auto 0.7rem;
  border-radius: 0.35rem;
  background: var(--hero-navy);
  color: #ffffff;
  font-size: var(--font-14px);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 63, 130, 0.25);
  transform: none;
  left: auto;
  bottom: auto;
}

.process-step h3 {
  margin: 0 0 0.45rem;
  color: #1a1c1e;
  font-size: var(--font-20px);
  font-weight: 700;
}

.process-step p {
  margin: 0 auto;
  max-width: 32ch;
  color: #1a1c1e;
  font-size: var(--font-14px);
  line-height: 1.55;
}

.faq-section {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.faq-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  align-items: center;
}

.faq-content {
  order: 1;
  margin-left: clamp(-1.8rem, -3.5vw, -2.8rem);
  margin-right: clamp(-0.5rem, -1vw, -0.8rem);
}

.faq-media {
  order: 2;
  margin-left: clamp(5.8rem, 10.5vw, 9rem);
  margin-right: clamp(-4.6rem, -8.5vw, -7rem);
  transform: scale(1.36);
  transform-origin: right center;
}

.faq-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.55rem;
  box-shadow: none;
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .faq-section .container {
    width: min(1280px, calc(100vw - 96px - 1.5rem));
    margin-left: 96px;
    margin-right: auto;
  }

  .faq-media {
    margin-left: clamp(2.8rem, 6vw, 4.6rem);
    margin-right: clamp(-1.2rem, -2.4vw, -2rem);
    transform: scale(1.2);
    transform-origin: right center;
  }
}

.faq-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #0059bb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.faq-content h2 {
  margin: 0 0 1.25rem;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.faq-title-dark {
  color: #003267;
}

.faq-title-blue {
  color: #0059bb;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid #c5cad3;
  border-radius: 0.45rem;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #1a1c1e;
  font-family: inherit;
  font-size: var(--font-16px);
  font-weight: 600;
}

.faq-question img {
  width: auto;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 0.95rem 0.95rem;
}

.faq-answer p {
  margin: 0;
  color: #424751;
  font-size: var(--font-14px);
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question img {
  transform: rotate(45deg);
}

.news-section {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.news-section .container {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.news-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.news-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #0059bb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.news-header h2 {
  margin: 0;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.news-title-dark {
  color: #003267;
}

.news-title-blue {
  color: #0059bb;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.9fr);
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  align-items: stretch;
}

.news-featured {
  background: #ffffff;
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 40, 74, 0.08);
  display: flex;
  flex-direction: column;
  margin-left: clamp(-2.6rem, -4.5vw, -3.6rem);
}

.news-featured a img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}

/* .news-featured a img{
  width: 100%;
  height: 330px;
} */

.news-featured-body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-featured-body h3 {
  margin: 0 0 0.7rem;
  color: #1a1c1e;
  font-size: var(--font-22px);
  font-weight: 700;
  line-height: 1.3;
}

.news-meta {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #6a7588;
  font-size: var(--font-14px);
}

.news-featured-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.news-author {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #1a1c1e;
  font-size: var(--font-14px);
  font-weight: 600;
}

.news-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1081f4;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.news-read-btn {
  display: inline-flex;
  align-items: center;
  background: #0059bb;
  color: #ffffff;
  padding: 0.55rem 0.95rem;
  border-radius: 0.28rem;
  font-size: var(--font-14px);
  font-weight: 600;
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.news-side-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.75rem;
  background: #f9f9fc;
  border: 1px solid #c5cad3;
  border-radius: 0.45rem;
  padding: 0.55rem;
  align-items: stretch;
}

.news-side-card a img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  border-radius: 0.35rem;
  display: block;
}

.news-side-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.15rem 0.2rem 0.15rem 0;
}

.news-side-date {
  color: #6a7588;
  font-size: 11px;
  margin-bottom: 0.28rem;
}

.news-side-content h3 {
  margin: 0 0 0.42rem;
  color: #1a1c1e;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

.news-side-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.news-side-footer .news-author {
  font-size: 11.5px;
}

.news-side-footer .news-avatar {
  width: 25px;
  height: 25px;
  font-size: 0.68rem;
}

.news-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 0.28rem;
  background: #0059bb;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.worldwide-section {
  position: relative;
  background-color: #ffffff;
  background-image: url("../map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: clamp(3.8rem, 7.2vw, 6.2rem) 0 0;
  overflow: hidden;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-align: center;
}

.worldwide-map {
  display: none;
}

.worldwide-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 4rem, 820px);
  margin-inline: auto;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  padding-left: 0;
  padding-right: 0;
}

.worldwide-inner h2 {
  margin: 0 0 0.75rem;
  color: #003267;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.worldwide-inner p {
  margin: 0 auto 1.35rem;
  max-width: 54ch;
  color: #5a6578;
  font-size: var(--font-16px);
  line-height: 1.6;
}

.worldwide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0059bb;
  color: #ffffff;
  padding: 0.7rem 1.15rem;
  border-radius: 0.28rem;
  font-size: var(--font-16px);
  font-weight: 600;
}

.worldwide-social-strip {
  margin-top: 0;
  background: #0f5aa8;
}

.worldwide-social-inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-left: 0;
  padding-right: 0;
}

.worldwide-social-logo-wrap {
  background: #ffffff;
  padding: 0.2rem 1.1rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.worldwide-social-logo-wrap img {
  display: block;
  width: 136px;
  height: auto;
}

.worldwide-social-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: var(--font-14px);
  font-weight: 500;
}

.worldwide-social-text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.worldwide-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.worldwide-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.worldwide-social-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.worldwide-social-icons .social-icon-fb,
.worldwide-social-icons .social-icon-insta,
.worldwide-social-icons .social-icon-x {
  width: 34px;
  height: 34px;
}

.worldwide-social-icons .social-icon-fb {
  transform: scale(1.36);
}

.worldwide-social-icons .social-icon-insta {
  transform: scale(0.98);
}

.worldwide-social-icons .social-icon-x {
  transform: scale(0.98);
}

.site-footer {
  background: #00488c;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.footer-top {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}

.footer-top-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding: 0;
}

.footer-col {
  min-width: 0;
  color: #ffffff;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
  font-size: var(--font-21px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-16px);
  line-height: 1.35;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-services {
  flex: 1 1 auto;
  max-width: 560px;
}

.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.4rem;
}

.footer-quote-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #1081f4;
  color: #ffffff;
  border-radius: 0.3rem;
  padding: 0.55rem 0.55rem 0.55rem 0.85rem;
  font-size: var(--font-18px);
  font-weight: 600;
}

.footer-quote-arrow {
  width: 28px;
  height: 28px;
  border-radius: 0.25rem;
  background: #ffffff;
  color: #1081f4;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
}

.footer-subscribe {
  max-width: 290px;
}

.footer-subscribe-form {
  display: flex;
  align-items: stretch;
  gap: 0.3rem;
}

.footer-subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 90, 168, 0.95);
  color: #ffffff;
  padding: 0.5rem 0.55rem;
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 13px;
}

.footer-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer-subscribe-form button {
  border: 0;
  background: #1081f4;
  color: #ffffff;
  border-radius: 0.25rem;
  padding: 0.45rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  background: #00488c;
}

.footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding: 0.75rem 0;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-16px);
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-16px);
}

.about-hero-section {
  background: #ffffff;
  padding: calc(clamp(64px, 9vw, 106px) + clamp(1.2rem, 3vw, 2rem)) 0 clamp(2rem, 4vw, 3rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.about-hero-inner {
  width: min(100% - 0.4rem, 1500px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.about-breadcrumb {
  margin: 0.45rem 0 0.4rem;
  transform: translateX(-1.15rem);
  color: #737f92;
  font-size: var(--font-16px);
}

.about-breadcrumb span {
  color: #0f3f82;
  font-weight: 600;
}

.about-hero-inner h1 {
  margin: 0 0 1rem;
  text-align: center;
  color: #111827;
  font-size: var(--font-50px);
  font-weight: 700;
  line-height: 1.1;
}

.about-hero-image {
  width: 100%;
  height: clamp(200px, 25vw, 340px);
  display: block;
  border-radius: 0.15rem;
  object-fit: cover;
}

.about-stats-row {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4.2vw, 4.2rem);
  align-items: center;
}

.about-stats-left h2 {
  margin: 0.9rem 0 0.65rem;
  color: #0f3f82;
  font-size: var(--font-32px);
  line-height: 1.25;
}

.about-stats-left {
  justify-self: start;
  margin-left: -0.5rem;
}

.about-stats-left p {
  margin: 0;
  color: #4c5d7c;
  font-size: var(--font-14px);
  line-height: 1.6;
}

.about-stats-center {
  text-align: center;
}

.about-stats-center strong {
  display: block;
  color: #003267;
  margin-top: 0.35rem;
  font-size: clamp(126px, 13.2vw, 210px);
  line-height: 0.95;
  font-weight: 700;
}

.about-stats-center span {
  display: block;
  margin-top: 0.35rem;
  color: #424751;
  font-size: var(--font-40px);
  font-weight: 600;
}

.about-stats-right img {
  width: auto;
  height: 48px;
  display: block;
  margin-top: 0.9rem;
  margin-bottom: 0.55rem;
}

.about-stats-right {
  justify-self: end;
  margin-right: -1.35rem;
}

.about-stats-right p {
  margin: 0 0 0.7rem;
  color: #4c5d7c;
  font-size: var(--font-14px);
  line-height: 1.6;
}

.about-stats-right a {
  color: #0f3f82;
  font-size: var(--font-14px);
  font-weight: 700;
  text-decoration: underline;
}

.media-content-section {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.media-content-soft {
  background: #f4f4ff;
}

.media-content-white {
  background: #ffffff;
}

.ocean-media-section .media-content-media {
  margin-left: 0;
  min-height: clamp(340px, 40vw, 520px);
  overflow: visible;
}

.ocean-media-section .media-content-image-large {
  width: 82%;
  max-width: 500px;
  height: clamp(300px, 34vw, 450px);
  min-height: 0;
  margin-left: 0;
  object-fit: cover;
  display: block;
}

.ocean-media-section .media-content-image-small {
  width: clamp(210px, 24vw, 360px);
  height: clamp(150px, 18vw, 240px);
  min-height: 0;
  right: 0;
  bottom: 0.4rem;
  object-fit: cover;
}

.ocean-media-section .media-content-copy {
  margin-left: 0;
}

.media-content-inner {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3.5vw, 3.6rem);
  align-items: center;
}

.media-content-media {
  position: relative;
  min-height: clamp(320px, 42vw, 540px);
  margin-left: -1.7rem;
}

.media-content-image-large {
  width: min(100%, 520px);
  min-height: clamp(300px, 35vw, 455px);
  margin-left: -1.8rem;
  object-fit: cover;
  display: block;
}

.media-content-image-small {
  position: absolute;
  right: clamp(0.65rem, 1vw, 1rem);
  bottom: clamp(0.05rem, 0.2vw, 0.3rem);
  width: clamp(272px, 30.5vw, 560px);
  min-height: clamp(160px, 20vw, 285px);
  object-fit: cover;
  display: block;
}

.media-content-copy h2 {
  margin: 0 0 0.85rem;
  color: #0f3f82;
  font-size: var(--font-34px);
  line-height: 1.25;
}

.media-content-copy {
  margin-left: 0.55rem;
}

.media-content-copy p {
  margin: 0 0 0.7rem;
  color: #3f4d62;
  font-size: var(--font-18px);
  line-height: 1.6;
}

.media-content-btn {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #0b65d8;
  color: #ffffff;
  padding: 0.72rem 1rem;
  border-radius: 0.24rem;
  font-size: var(--font-14px);
  font-weight: 600;
}

.about-empower-section {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3.2rem) 0 clamp(2.4rem, 5vw, 4rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.about-empower-inner {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
  transform: translateX(-3.2rem);
}

.about-empower-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
}

.about-empower-top h2 {
  margin: 0;
  color: #0f3f82;
  font-size: var(--font-64px);
  line-height: 1.1;
  max-width: none;
  white-space: nowrap;
}

.about-contact-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #0b65d8;
  color: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 0.28rem;
  font-size: var(--font-14px);
  font-weight: 600;
}

.about-contact-btn span {
  font-size: 1rem;
  line-height: 1;
}

.about-empower-top p {
  margin: 0.45rem 0 0;
  margin-left: auto;
  color: #3f4d62;
  font-size: var(--font-20px);
  line-height: 1.6;
  max-width: 58ch;
  transform: translateX(1.6rem);
}

.about-empower-grid {
  margin-top: clamp(1.2rem, 2.8vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 0.6rem;
}

.about-empower-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 40vw, 520px);
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 0.24rem;
}

.about-empower-cards {
  display: grid;
  gap: 0.6rem;
  width: calc(100% + 4.8rem);
}

.about-empower-card {
  border-radius: 0.24rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-empower-card h3 {
  margin: 0 0 0.7rem;
  font-size: var(--font-36px);
  line-height: 1.2;
}

.about-empower-card p {
  margin: 0;
  font-size: var(--font-18px);
  line-height: 1.6;
}

.about-empower-card-light {
  background: #e7eef8;
}

.about-empower-card-light h3 {
  color: #0f3f82;
}

.about-empower-card-light p {
  color: #3e4d64;
}

.about-empower-card-dark {
  background: #09346f;
}

.about-empower-card-dark h3,
.about-empower-card-dark p {
  color: #ffffff;
}

.service-hero-section {
  position: relative;
  min-height: clamp(480px, 52vw, 680px);
  margin-top: clamp(64px, 9vw, 88px);
  overflow: hidden;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  color: #ffffff;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.service-hero-shade {
  display: none;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(1.1rem, 2.2vw, 1.6rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
  transform: none;
}

.service-hero-breadcrumb {
  margin: clamp(0.8rem, 2vw, 1.5rem) 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-16px);
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}

.service-hero-breadcrumb span {
  font-weight: 600;
}

.service-hero-content {
  margin-top: clamp(1.6rem, 4vw, 4.5rem);
  max-width: min(680px, 100%);
}

.service-hero-inner h1 {
  margin: 0 0 0.85rem;
  max-width: 100%;
  color: #ffffff;
  font-size: var(--font-64px);
  font-weight: 700;
  line-height: 1.12;
  word-break: break-word;
}

.service-hero-text {
  margin: 0 0 1.35rem;
  max-width: min(62ch, 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-18px);
  font-weight: 400;
  line-height: 1.6;
}

.service-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border: 1px solid #ffffff4d;
  border-radius: 0.28rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--font-14px);
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-hero-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.reliable-ocean-section {
  background: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.reliable-ocean-banner {
  position: relative;
  min-height: clamp(240px, 33vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reliable-ocean-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.reliable-ocean-overlay {
  display: none;
}

.reliable-ocean-banner-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  text-align: center;
  color: #ffffff;
  padding: clamp(2.2rem, 4.5vw, 3.8rem) 1rem clamp(4.4rem, 7vw, 6.1rem);
}

.reliable-ocean-banner-inner h2 {
  margin: 0 0 0.75rem;
  font-size: var(--font-50px);
  font-weight: 700;
  line-height: 1.15;
}

.reliable-ocean-banner-inner p {
  margin: 0 auto;
  max-width: 52ch;
  font-size: var(--font-18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.reliable-ocean-cards-wrap {
  width: min(100% - 1.2rem, 1460px);
  margin: -3.6rem 0 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  padding-left: 0;
  padding-right: 0;
}

.reliable-ocean-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.4rem;
}

.reliable-ocean-card {
  background: #ffffff;
  border: 1px solid #e7eef8;
  border-radius: 0.35rem;
  box-shadow: 0 10px 28px rgba(15, 40, 80, 0.08);
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  text-align: center;
  min-height: 260px;
}

.reliable-ocean-card img {
  width: auto;
  height: 56px;
  display: block;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.reliable-ocean-card h3 {
  margin: 0 0 0.65rem;
  color: #0a3d78;
  font-size: var(--font-22px);
  font-weight: 700;
  line-height: 1.3;
}

.reliable-ocean-card p {
  margin: 0;
  color: #3f4d62;
  font-size: var(--font-16px);
  line-height: 1.55;
}

.miami-ocean-section {
  background: #003267;
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.miami-ocean-inner {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
}

.miami-ocean-copy {
  transform: translateX(-2.6rem);
}

.miami-ocean-copy h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.2;
}

.miami-ocean-copy p {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-16px);
  line-height: 1.65;
  max-width: 72ch;
}

.miami-ocean-btn {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border: 1px solid #ffffff4d;
  border-radius: 0.28rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: var(--font-14px);
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.miami-ocean-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.blog-hero-section {
  position: relative;
  min-height: clamp(420px, 58vw, 720px);
  margin-top: clamp(64px, 9vw, 88px);
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
  transform: none;
}

.blog-hero-card {
  width: min(100%, 720px);
  min-height: clamp(280px, 34vw, 420px);
  background: #ffffff4d;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: clamp(1.5rem, 3.2vw, 2.8rem);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.blog-hero-breadcrumb {
  margin: 0 0 0.85rem;
  font-size: var(--font-16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.blog-hero-card h1 {
  margin: 0 0 1.2rem;
  font-size: var(--font-60px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  word-break: break-word;
}

.blog-hero-meta {
  margin: 0 0 0.7rem;
  font-size: var(--font-18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.blog-hero-card h2 {
  margin: 0 0 1.3rem;
  max-width: 100%;
  font-size: var(--font-30px);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
  word-break: break-word;
}

.blog-hero-link {
  display: inline-block;
  color: #ffffff;
  font-size: var(--font-18px);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.latest-blogs-section {
  background: #ffffff;
  padding: clamp(2.4rem, 5vw, 4.5rem) 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.latest-blogs-inner {
  width: min(100% - 1.5rem, 1320px);
  margin-left: clamp(0.5rem, 2.2vw, 1.75rem);
  margin-right: auto;
  padding-left: 0;
  padding-right: 1rem;
}

.latest-blogs-label {
  margin: 0 0 0.4rem;
  color: #6b778c;
  font-size: var(--font-16px);
  font-weight: 500;
}

.latest-blogs-inner > h2 {
  margin: 0 0 1.85rem;
  color: #111827;
  font-size: var(--font-45px);
  font-weight: 700;
  line-height: 1.2;
}

.latest-blogs-list {
  display: grid;
  gap: 2rem;
}

.latest-blog-item {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

.latest-blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.55rem;
  display: block;
}

.latest-blog-image-link {
  display: block;
}

.latest-blog-meta {
  margin: 0 0 0.5rem;
  color: #8a94a6;
  font-size: var(--font-16px);
}

.latest-blog-copy h3 {
  margin: 0 0 0.55rem;
  color: #111827;
  font-size: var(--font-27px);
  font-weight: 700;
  line-height: 1.3;
}

.latest-blog-copy h3 a {
  color: inherit;
}

.latest-blog-desc {
  margin: 0 0 0.85rem;
  color: #6b778c;
  font-size: var(--font-18px);
  line-height: 1.5;
}

.latest-blog-copy a {
  color: #0b65d8;
  font-size: var(--font-16px);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.blog-detail-section {
  margin-top: clamp(64px, 9vw, 120px);
  padding: clamp(1.2rem, 3vw, 2rem) 0 clamp(2.8rem, 6vw, 4.2rem);
  background: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.blog-detail-inner {
  width: min(100% - 2rem, 1360px);
  margin-left: clamp(0.8rem, 2.6vw, 2rem);
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.86fr);
  gap: clamp(1.3rem, 2.8vw, 2.3rem);
  align-items: start;
}

.blog-detail-main {
  color: #111827;
}

.blog-detail-breadcrumb {
  margin: 0 0 0.9rem;
  color: #003267;
  font-size: var(--font-14px);
  font-weight: 600;
}

.blog-detail-breadcrumb,
.blog-detail-breadcrumb a,
.blog-detail-breadcrumb span {
  color: #003267;
}

.blog-detail-main h1 {
  margin: 0 0 0.4rem;
  color: #111827;
  max-width: 38ch;
  font-size: var(--font-40px);
  line-height: 1.2;
}

.blog-detail-author {
  margin: 0 0 0.9rem;
  color: #374151;
  font-size: var(--font-14px);
}

.blog-detail-hero-image {
  width: 100%;
  border-radius: 0.38rem;
  display: block;
  margin: 0 0 1rem;
}

.blog-detail-main h2 {
  margin: 0 0 0.45rem;
  font-size: var(--font-30px);
  line-height: 1.3;
}

.blog-detail-main h3 {
  margin: 0.95rem 0 0.4rem;
  font-size: var(--font-24px);
  line-height: 1.35;
}

.blog-detail-main p {
  margin: 0 0 0.5rem;
  color: #1f2937;
  font-size: var(--font-18px);
  line-height: 1.6;
}

.blog-detail-related h2 {
  margin: 0 0 0.9rem;
  color: #111827;
  font-size: var(--font-24px);
  font-weight: 600;
}

.blog-detail-related {
  border-left: 1px solid #0000008f;
  padding-left: clamp(0.9rem, 2vw, 1.35rem);
  height: 100%;
  transform: translateX(-0.35rem);
}

.blog-detail-related h2 span {
  color: #0b65d8;
  font-weight: 700;
}

.related-blog-card {
  display: grid;
  grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  padding: 0.55rem;
  border: 1px solid #e6ecf5;
  border-radius: 0.5rem;
  background: #ffffff;
  margin-bottom: 0.55rem;
}

.related-blog-card img {
  width: 100%;
  height: 120px;
  border-radius: 0.28rem;
  object-fit: cover;
  display: block;
}

.related-blog-card h3 {
  margin: 0 0 0.3rem;
  color: #111827;
  font-size: var(--font-16px);
  line-height: 1.35;
}

.related-blog-card p {
  margin: 0 0 0.3rem;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.related-blog-card small {
  color: #9ca3af;
  font-size: 11px;
}

@media (min-width: 1200px) {
  .blog-hero-inner {
    padding-left: 0;
    padding-right: 0;
    transform: translate(-3.2rem, -1rem);
  }

  .blog-hero-card {
    width: min(100%, 820px);
  }

  .blog-hero-card h2 {
    /* white-space: nowrap; */
  }
}

@media (min-width: 1500px) {
  .blog-hero-inner {
    transform: translate(-5.2rem, -1.4rem);
  }
}

.contact-hero-section {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  margin-top: clamp(64px, 9vw, 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  color: #ffffff;
}

.contact-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  box-sizing: border-box;
}

.contact-hero-breadcrumb {
  position: absolute;
  top: clamp(1.1rem, 2.4vw, 1.8rem);
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-16px);
  font-weight: 500;
}

.contact-hero-inner h1 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: var(--font-64px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-form-section {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.contact-form-inner {
  width: min(100% - 2rem, 820px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.contact-form-inner > h2 {
  margin: 0 0 clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: #1d2b44;
  font-size: var(--font-36px);
  font-weight: 700;
  line-height: 1.25;
}

.contact-form-inner > h2 span {
  color: #1081f4;
}

.contact-form {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-bottom: 30px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field span {
  color: #4b5563;
  font-size: var(--font-14px);
  font-weight: 600;
}

.contact-field-line input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #4b5563;
  border-radius: 0;
  background: transparent;
  padding: 0.35rem 0 0.55rem;
  color: #111827;
  font-family: inherit;
  font-size: var(--font-16px);
  outline: none;
}

.contact-field-line input:focus {
  border-bottom-color: #1081f4;
}

.contact-field-message textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid #4b5563;
  border-radius: 0.35rem;
  background: #ffffff;
  padding: 0.85rem 1rem;
  color: #111827;
  font-family: inherit;
  font-size: var(--font-16px);
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.contact-field-message textarea:focus {
  border-color: #1081f4;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 150px;
  margin-top: 0.35rem;
  padding: 0.85rem 2rem;
  border: 0;
  border-radius: 0.35rem;
  background: #1081f4;
  color: #ffffff;
  font-family: inherit;
  font-size: var(--font-16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 129, 244, 0.28);
}

.contact-submit-btn:hover {
  background: #0b6fd4;
}

.contact-map-section {
  background: #ffffff;
  padding: clamp(1.2rem, 3vw, 2rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.contact-map-inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  text-align: center;
}

.contact-map-inner > h2 {
  margin: 0 0 0.4rem;
  color: #123a73;
  font-size: var(--font-50px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-map-inner > p {
  margin: 0 auto clamp(1.4rem, 3vw, 2.1rem);
  max-width: 760px;
  color: #4b5563;
  font-size: var(--font-16px);
  line-height: 1.55;
}

.contact-map-panel {
  width: min(100%, 1200px);
  margin-inline: auto;
  min-height: clamp(240px, 30vw, 340px);
  border-radius: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(18, 58, 115, 0.45) 0%, rgba(18, 58, 115, 0.18) 100%),
    url("../mapBg.png") center / cover no-repeat;
}

.contact-map-card-wrap {
  width: min(100%, 850px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.85rem;
}

.contact-map-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.8rem;
  padding: 0.95rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #ffffff;
  text-align: center;
}

.contact-map-card h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: var(--font-26px);
  font-weight: 600;
  line-height: 1.35;
	letter-spacing: 2.5px;
}

.contact-map-card p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--font-14px);
  line-height: 1.45;
}

.contact-map-card p strong {
  font-weight: 600;
}

.quote-page-section {
  margin-top: clamp(64px, 9vw, 88px);
  background: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.quote-page-head {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding-top: clamp(1.2rem, 3vw, 1.8rem);
  padding-bottom: clamp(1rem, 2.4vw, 1.5rem);
}

.quote-page-breadcrumb {
  margin: 0 0 0.65rem;
  color: #6b7280;
  font-size: var(--font-14px);
  font-weight: 500;
}

.quote-page-breadcrumb span {
  color: #0b65d8;
}

.quote-page-head h1 {
  margin: 0;
  text-align: center;
  color: #111827;
  font-size: var(--font-60px);
  font-weight: 700;
  line-height: 1.15;
}

.quote-form-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 25, 48, 0.30), rgba(7, 25, 48, 0.30)),
    url("../getQuote.png") center/cover no-repeat;
}

.quote-form-inner {
  width: min(100% - 2rem, 840px);
  margin-inline: auto;
  padding-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.8rem);
  color: #ffffff;
}

.quote-form-inner h2 {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: var(--font-45px);
  font-weight: 600;
}

.quote-form-inner > p {
  margin: 0.65rem auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-16px);
  line-height: 1.55;
}

.quote-required {
  margin-top: 0.8rem !important;
  color: #fef08a !important;
  font-size: var(--font-14px) !important;
}

.quote-form {
  margin-top: 1.15rem;
  display: grid;
  gap: 1.9rem;
}

.quote-group {
  margin: 0.85rem 0 0.2rem;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  color: #ffffff;
  font-size: var(--font-14px);
  font-weight: 600;
}

.quote-group-red {
  background: #b31217;
}

.quote-group-teal {
  background: #0f7f91;
}

.quote-group-blue {
  background: #1b4f9c;
}

.quote-group-brown {
  background: #9a5200;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 0.9rem;
}

.quote-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.quote-grid span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.quote-grid input,
.quote-grid select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  font-family: inherit;
  font-size: 12px;
  border-radius: 2px;
  padding: 0 0.75rem;
  outline: none;
}

.quote-grid input::placeholder {
  color: #9ca3af;
}

.quote-grid select:focus,
.quote-grid input:focus {
  border-color: #0b65d8;
}

.quote-cargo-title {
  margin: 0.3rem 0 -0.45rem;
  color: #ffffff;
  font-size: var(--font-24px);
  font-weight: 700;
  margin-bottom: 10px;
}

.quote-cargo-desc input {
  width: min(100%, 390px);
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  border-radius: 2px;
  padding: 0 0.75rem;
}

.quote-cargo-pack {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.quote-cargo-pack select {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  border-radius: 2px;
  padding: 0 0.75rem;
}

.quote-cargo-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--font-18px);
  font-weight: 600;
}

.quote-cargo-check input {
  width: 14px;
  height: 14px;
}

.quote-cargo-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 0.8rem;
}

.quote-cargo-four label,
.quote-cargo-pieces label {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.quote-cargo-four span,
.quote-cargo-pieces span {
  display: flex;
  align-items: flex-end;
  min-height: 2.4em;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-24px);
  font-weight: 700;
  line-height: 1.2;
}

.quote-cargo-four input,
.quote-cargo-four select,
.quote-cargo-pieces input {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  border-radius: 2px;
  padding: 0 0.75rem;
  font-size: 12px;
}

.quote-cargo-pieces {
  width: min(100%, 220px);
}

.quote-submit-btn {
  justify-self: center;
  margin-top: 0.4rem;
  min-width: 170px;
  height: 50px;
  border: 0;
  border-radius: 0.35rem;
  background: #0b65d8;
  color: #ffffff;
  font-size: var(--font-16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.quote-submit-btn:hover {
  background: #0a58bd;
}

.miami-ocean-media {
  transform: scale(1.12);
  transform-origin: center center;
}

.miami-ocean-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .service-hero-inner {
    padding-left: 0;
    padding-right: 0;
    transform: translateX(-4rem);
  }

  .service-hero-breadcrumb {
    margin-top: 2.8rem;
    font-size: var(--font-20px);
  }

  .service-hero-content {
    margin-top: clamp(3.5rem, 7vw, 6rem);
  }

  .service-hero-inner h1 {
    white-space: nowrap;
  }
}

@media (min-width: 1500px) {
  .service-hero-inner {
    transform: translateX(-7.4rem);
  }
}

/* Keep 1396–1536 looking like 1536: same left margin + font sizes */
@media (min-width: 1280px) and (max-width: 1536px) {
  :root {
    --font-14px: 14px;
    --font-16px: 14px;
    --font-18px: 16px;
    --font-20px: 16px;
    --font-21px: 17.03px;
    --font-22px: 17.59px;
    --font-23px: 18.39px;
    --font-24px: 19.2px;
    --font-26px: 20.8px;
    --font-27px: 21.81px;
    --font-30px: 24px;
    --font-32px: 25.59px;
    --font-34px: 27.19px;
    --font-36px: 28.8px;
    --font-37px: 29.64px;
    --font-40px: 32.01px;
    --font-45px: 36.04px;
    --font-50px: 52px;
    --font-53px: 42.39px;
    --font-60px: 48px;
    --font-64px: 51.2px;
    --font-72px: 57.6px;
    --font-80px: 64px;
    --font-90px: 72px;
    --font-122px: 97.6px;
    --font-150px: 120px;
  }

  .container {
    padding-left: 4.8rem;
    padding-right: 1.25rem;
  }

  .hero-section .container,
  .stats-band .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    margin-left: -2.5rem;
  }

  .main-nav,
  .quote-btn {
    left: -4rem;
  }

  .precision-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .services-section .container {
    width: min(1360px, calc(100vw - 3rem));
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .trust-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .partners-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .process-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .news-section .container {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    max-width: 1280px;
    margin-left: 128px;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .worldwide-inner {
    width: min(820px, calc(100vw - 128px - 2rem));
  }

  .footer-top-inner,
  .footer-bottom-inner {
    width: min(1280px, calc(100vw - 128px - 1.5rem));
    margin-left: 128px;
    margin-right: auto;
  }
}
