:root {
  --navy: #06204d;
  --gold: #e1a30b;
  --white: #FFFFFF;
  --bg-alt: #F4F5F7;
  --text-secondary: #4A4A4A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  margin-top: 0;
}

p {
  margin-top: 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imgslider.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 77, 0.75);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  max-width: 920px;
  padding: 0 12px;
}

.hero-kicker {
  margin-bottom: 14px;
}

.hero-kicker__text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: 12px;
  color: var(--gold);
}

.hero-kicker__text::before,
.hero-kicker__text::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(225, 163, 11, 0.8);
}

.hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
}

.hero-btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.hero-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.hero-btn--outline:hover,
.hero-btn--outline:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
  padding: 10px 12px;
}

.hero-scroll:hover,
.hero-scroll:focus {
  color: rgba(255, 255, 255, 1);
}

.hero-scroll i {
  display: inline-block;
  animation: heroBounce 1.6s ease-in-out infinite;
}

@keyframes heroBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-kicker__text::before,
  .hero-kicker__text::after {
    width: 28px;
  }
}

/* STATS */
.stats {
  background: var(--navy);
  padding: 60px 0;
}

.stats-item {
  padding: 22px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-number {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}

.stats-label {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 767.98px) {
  .stats-col:nth-child(2n) .stats-item {
    border-right: 0;
  }
}

@media (min-width: 768px) {
  .stats-col:last-child .stats-item {
    border-right: 0;
  }
}

/* SERVICES */
.services {
  background: var(--white);
  padding: 80px 0;
}

.services-header {
  margin-bottom: 42px;
}

.services-pretitle {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}

.services-title {
  font-weight: 600;
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 14px;
}

.services-line {
  width: 84px;
  height: 3px;
  background: var(--gold);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-top: 3px solid transparent;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11, 30, 61, 0.12);
}

.service-icon {
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.service-link:hover,
.service-link:focus {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .services-title {
    font-size: 36px;
  }
}

/* WHY US */
.whyus {
  background: var(--bg-alt);
  padding: 80px 0;
}

.whyus-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(11, 30, 61, 0.22);
}

.whyus-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  background-image: linear-gradient(rgba(6, 32, 77, 0.6), rgba(6, 32, 77, 0.6)), url("../imgbanner1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  padding: 24px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  box-shadow: 0 26px 60px rgba(11, 30, 61, 0.22);
}

.whyus-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 14px;
}

.whyus-text {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.whyus-list {
  display: grid;
  gap: 16px;
}

.whyus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
}

.whyus-item i {
  margin-top: 3px;
  color: var(--gold);
  font-size: 18px;
}

.whyus-btn {
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 500;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.whyus-btn:hover,
.whyus-btn:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 575.98px) {
  .whyus-title {
    font-size: 34px;
  }
}

/* PROCESS */
.process {
  background: var(--white);
  padding: 80px 0;
}

.process-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.process-col {
  position: relative;
}

@media (min-width: 992px) {
  .process-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 64px;
    right: -18px;
    width: 36px;
    border-top: 2px dotted rgba(225, 163, 11, 0.45);
  }
}

.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 26px 22px 22px;
  overflow: hidden;
}

.process-num {
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: rgba(225, 163, 11, 0.15);
  pointer-events: none;
  user-select: none;
}

.process-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 14px;
}

.process-step-title {
  position: relative;
  z-index: 1;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step-desc {
  position: relative;
  z-index: 1;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg-alt);
  padding: 80px 0;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 28px 24px 22px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.testimonial-quote {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.testimonial-divider {
  border: 0;
  border-top: 1px solid rgba(11, 30, 61, 0.12);
  margin: 0 0 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.testimonial-name {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.testimonial-company {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 2px;
}

.cert-band {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 12px;
  padding: 18px 18px;
}

.cert-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.cert-sep {
  color: rgba(11, 30, 61, 0.35);
}

/* CTA */
.cta-final {
  position: relative;
  background-image: linear-gradient(rgba(6, 32, 77, 0.82), rgba(6, 32, 77, 0.82)), url("../imgbanner2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(225, 163, 11, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.18;
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 840px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-inner.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cta-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-subtitle {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 26px;
}

.cta-btn {
  background: var(--gold);
  color: var(--white);
  padding: 16px 48px;
  font-size: 18px;
  border-radius: 4px;
  border: 1px solid var(--gold);
}

.cta-btn:hover,
.cta-btn:focus {
  background: #c28d09;
  border-color: #c28d09;
  color: var(--white);
}

@media (max-width: 575.98px) {
  .cta-title {
    font-size: 40px;
  }
}

/* INNER PAGES */
.page-hero {
  position: relative;
  height: 350px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero--about {
  background-image: linear-gradient(rgba(6, 32, 77, 0.78), rgba(6, 32, 77, 0.78)), url("../imgbanner2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--about::before {
  opacity: 0.28;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(225, 163, 11, 0.14) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px, 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--white);
  margin: 10px 0 0;
}

.page-hero__breadcrumb {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover,
.page-hero__breadcrumb a:focus {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.page-hero__sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.45);
}

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

.inner-section--alt {
  background: var(--bg-alt);
}

.inner-h2 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.inner-p {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.inner-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.inner-card__icon {
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
}

.inner-card__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}

.inner-card__text {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.inner-card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

.inner-card__list li {
  margin-bottom: 8px;
}

.inner-cta {
  background: var(--bg-alt);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 12px;
  padding: 18px 18px;
  text-align: center;
}

.inner-cta__text {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
}

.inner-cta__text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(11, 30, 61, 0.18);
}

.about-placeholder {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  padding: 24px;
  box-shadow: 0 22px 54px rgba(11, 30, 61, 0.18);
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.value-icon {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-text {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.75;
}

.cert-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(225, 163, 11, 0.12);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.cert-text {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-info {
  background: var(--bg-alt);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--navy);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.contact-info__item + .contact-info__item {
  border-top: 1px solid rgba(11, 30, 61, 0.08);
}

.contact-info__item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
}

.contact-btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 500;
}

.contact-btn:hover,
.contact-btn:focus {
  background: #c28d09;
  border-color: #c28d09;
  color: var(--white);
}

@media (max-width: 575.98px) {
  .page-hero__title {
    font-size: 40px;
  }
}

.navbar .nav-link.active {
  color: var(--gold);
  font-weight: 500;
}

.navbar.scrolled {
  background: var(--navy) !important;
  box-shadow: 0 10px 30px rgba(11, 30, 61, 0.24);
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
  color: rgba(255, 255, 255, 1);
}

.navbar.scrolled .nav-link.active {
  color: var(--gold);
}

.navbar.scrolled .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand {
  height: 40px;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  transform: scale(1.3);
  transform-origin: left center;
}

.footer-logo {
  transform: none;
  transform-origin: left center;
}

.navbar.scrolled #siteLogo {
  filter: brightness(0) invert(1);
}

@media (max-width: 575.98px) {
  .navbar-brand {
    height: 32px;
  }

  .navbar-brand img {
    height: 32px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tracking-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.tracking-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
}

.tracking-btn:hover,
.tracking-btn:focus {
  background: #c28d09;
  border-color: #c28d09;
  color: var(--white);
}

.tracking-note {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-secondary);
}

.tracking-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.tracking-result {
  background: var(--white);
  border: 1px solid rgba(11, 30, 61, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 14px 28px rgba(11, 30, 61, 0.06);
}

.tracking-result__header {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.tracking-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 6px 0;
}

.tracking-timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(11, 30, 61, 0.12);
}

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

.tracking-step__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(225, 163, 11, 0.12);
  border: 1px solid rgba(225, 163, 11, 0.35);
  font-size: 18px;
}

.tracking-step.is-done .tracking-step__icon {
  background: rgba(11, 30, 61, 0.08);
  border-color: rgba(11, 30, 61, 0.18);
  color: var(--navy);
}

.tracking-step.is-active .tracking-step__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.tracking-step__label {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .tracking-timeline {
    flex-direction: column;
    gap: 14px;
    padding-top: 0;
  }

  .tracking-timeline::before {
    display: none;
  }

  .tracking-step {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .tracking-step__icon {
    margin: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    height: 280px;
  }

  .inner-section {
    padding: 56px 0;
  }

  .services,
  .whyus,
  .process,
  .testimonials {
    padding: 56px 0;
  }

  .stats {
    padding: 44px 0;
  }

  .cta-final {
    padding: 76px 0;
  }

  .hero-btn {
    width: 100%;
  }

  .cert-band__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .whyus-img,
  .whyus-placeholder {
    height: 360px;
  }

  .about-img,
  .about-placeholder {
    height: 320px;
  }

  .stats-number {
    font-size: 44px;
  }
}
