/* Scoped reset — only applies inside .gov-wrap, won't touch your other code */
.gov-wrap,
.gov-wrap *,
.gov-wrap *::before,
.gov-wrap *::after {
  box-sizing: border-box;
}

.gov-wrap {
  --gov-blue-dark: #042c53;
  --gov-blue-mid: #0c447c;
  --gov-blue: #185fa5;
  --gov-blue-bright: #378add;
  --gov-blue-light: #85b7eb;
  --gov-blue-pale: #e6f1fb;
  --gov-teal: #0f6e56;
  --gov-teal-pale: #e1f5ee;
  --gov-purple: #534ab7;
  --gov-purple-pale: #eeedfe;
  --gov-amber: #854f0b;
  --gov-amber-pale: #faeeda;
  --gov-coral: #993c1d;
  --gov-coral-pale: #faece7;
  --gov-gray-900: #1a1a2e;
  --gov-gray-700: #374151;
  --gov-gray-500: #6b7280;
  --gov-gray-200: #e5e7eb;
  --gov-gray-100: #f3f4f6;
  --gov-white: #ffffff;

  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--gov-gray-900);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* HERO */
.gov-hero {
  min-height: 100vh;
  background: var(--gov-blue-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.gov-hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 60px
    );
  background: black;
}

.gov-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: gov-pulse 6s ease-in-out infinite;
}

.gov-orb1 {
  width: 500px;
  height: 500px;
  background: #ffffff;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.gov-orb2 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  bottom: -50px;
  left: 100px;
  animation-delay: 2s;
}

.gov-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.gov-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: gov-fadeUp 0.7s 0.3s ease both;
}

.gov-hero-badge .gov-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5dcaa5;
  animation: gov-blink 2s infinite;
}

.gov-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: gov-fadeUp 0.7s 0.5s ease both;
  margin-top: 12px;
  font-family: serif;
}

.gov-hero h1 .gov-accent {
  color: #faaf0c;
}

.gov-hero h1 .gov-underline-word {
  position: relative;
  display: inline-block;
}

.gov-hero h1 .gov-underline-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #faaf0c;
  border-radius: 2px;
  animation: gov-expandWidth 0.8s 1.2s ease both;
  transform-origin: left;
  transform: scaleX(0);
}

.gov-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: gov-fadeUp 0.7s 0.7s ease both;
}

.gov-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: gov-fadeUp 0.7s 0.9s ease both;
  margin-left: 172px;
}

@media (max-width: 768px) {
  .gov-hero-actions {
    margin-left: 19px;
  }
}

.gov-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgb(250, 175, 12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.gov-btn-hero-primary:hover {
  background: #185fa5;
  transform: translateY(-2px);
}

.gov-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.gov-btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.gov-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  opacity: 0;
  animation: gov-fadeUp 0.7s 1.1s ease both;
  flex-wrap: wrap;
}

.gov-hstat {
  flex: 1;
  padding-right: 32px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.1);
  margin-right: 32px;
  min-width: 100px;
}

.gov-hstat:last-child {
  border: none;
  margin: 0;
}

.gov-hstat .gov-val {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.gov-hstat .gov-key {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* PARTNERS STRIP */
.gov-partners {
  background: #f0f4f9;
  padding: 18px 48px;
  border-bottom: 0.5px solid #d1e0f0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.gov-partners-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gov-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.gov-p-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #c8d8ee;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gov-blue-mid);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.gov-p-chip:hover {
  border-color: var(--gov-blue-bright);
  transform: translateY(-1px);
}

.gov-p-chip svg {
  width: 14px;
  height: 14px;
  fill: var(--gov-blue-bright);
}

/* SECTION COMMONS */
.gov-section {
  padding: 80px 48px;
}

.gov-section.gov-alt-bg {
  background: #faaf0c17;
}

.gov-eyebrow {
  font-size: 31px;
  font-weight: 600;
  color: #c79205;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-family: ui-sans-serif;
}

.gov-section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--gov-gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: ui-serif;
}

.gov-section-sub {
  font-size: 15px;
  color: var(--gov-gray-500);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 48px;
  font-family: sans-serif;
}

/* FOCUS CARDS */
.gov-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gov-fcard {
  background: #fffcf6;
  border: 1px solid var(--gov-gray-200);
  border-radius: 16px;
  padding: 28px 22px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    opacity 0.6s;
  cursor: default;
}

.gov-fcard.gov-visible {
  opacity: 1;
  transform: translateY(0);
}

.gov-fcard:hover {
  transform: translateY(-6px);
  border-color: #f3990e;
  box-shadow: 0 12px 40px rgba(55, 138, 221, 0.12);
}

.gov-ficon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.gov-fi-blue {
  background: var(--gov-blue-pale);
}

.gov-fi-teal {
  background: var(--gov-teal-pale);
}

.gov-fi-purple {
  background: var(--gov-purple-pale);
}

.gov-fi-amber {
  background: var(--gov-amber-pale);
}

.gov-fi-coral {
  background: var(--gov-coral-pale);
}

.gov-fcard h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gov-gray-900);
  margin-bottom: 9px;
}

.gov-fcard p {
  font-size: 15px;
  color: var(--gov-gray-500);
  line-height: 1.6;
  font-family: sans-serif;
}

.gov-ftag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gov-blue);
  background: var(--gov-blue-pale);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* SPLIT SECTION */
.gov-split {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.gov-split-left {
  flex: 1.1;
  min-width: 280px;
}

.gov-split-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gov-gray-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

.gov-split-left p {
  font-size: 15px;
  color: var(--gov-gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gov-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.gov-split-left,
.gov-split-right {
  opacity: 1 !important;
  visibility: visible !important;
}

.gov-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--gov-gray-700);
  line-height: 1.6;

  transition: all 0.5s;
  /* font-family: serif; */
  font-family: sans-serif;
}

.gov-check-list li.gov-visible {
  opacity: 1;
  transform: translateX(0);
}

.gov-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f7b70952;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.gov-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: #f7b609;
  stroke-width: 2.5;
  fill: none;
}

.gov-split-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gov-client-card {
  background: #fff;
  border: 1px solid var(--gov-gray-200);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;

  transition: all 0.5s;
}

.gov-client-card.gov-visible {
  opacity: 1;
  transform: translateX(0);
}

.gov-client-card:hover {
  border-color: #faaf0c;
  transform: translateY(-3px) translateX(0);
}

.gov-c-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #faaf0c38;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gov-c-icon svg {
  width: 20px;
  height: 20px;
  stroke: #c79205;
  stroke-width: 1.8;
  fill: none;
}

.gov-c-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gov-gray-900);
  font-family: serif;
}

.gov-c-sub {
  font-size: 14px;
  color: var(--gov-gray-500);
  margin-top: 3px;
}

/* PROCESS SECTION */
.gov-process-grid {
  display: flex;
  gap: 0;
  position: relative;
}

.gov-process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 52px;
  right: 52px;
  height: 2px;
  background: #c79205;
  z-index: 0;
}

.gov-pstep {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;

  transition:
    opacity 0.5s,
    transform 0.5s;
  min-width: 140px;
}

.gov-pstep.gov-visible {
  opacity: 1;
  transform: translateY(0);
}

.gov-pnum {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #ffc107;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #faaf0c;
  transition: transform 0.3s;
}

.gov-pstep:hover .gov-pnum {
  transform: scale(1.12);
}

.gov-pstep h4 {
  font-size: 19px;
  font-weight: 600;
  color: #ba8d05;
  margin-bottom: 8px;
}

.gov-pstep p {
  font-size: 18px;
  color: var(--gov-gray-500);
  line-height: 1.65;
  font-family: sans-serif;
}

/* CTA */
.gov-cta-section {
  /* background: #ffc107; */
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    179deg,
    #f5ba07 0%,
    #faaf0c 35%,
    #fcab00 70%,
    #e67e22 100%
  );
}

.gov-cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #050505;
  opacity: 0.07;
  top: -100px;
  right: -100px;
}

.gov-cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.06;
  bottom: -80px;
  left: -60px;
}

.gov-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.gov-cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.gov-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gov-cta-primary {
  background: #212529;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.gov-cta-primary:hover {
  background: #ffc107;
  transform: translateY(-3px);
}

.gov-cta-secondary {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.gov-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

/* DIVIDER — scoped, so your other <hr> tags stay untouched */
.gov-wrap hr {
  border: none;
  border-top: 1px solid var(--gov-gray-200);
  margin: 0 48px;
}

/* ANIMATIONS — renamed with gov- prefix so they don't override your keyframes */
@keyframes gov-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gov-expandWidth {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes gov-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.18;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.22;
  }
}

@keyframes gov-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gov-hero,
  .gov-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gov-hero {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .gov-hero-stats {
    gap: 20px;
  }

  .gov-hstat {
    padding-right: 0;
    border: none;
    margin-right: 0;
    flex: 1 1 45%;
  }

  .gov-process-grid {
    flex-direction: column;
    gap: 32px;
  }

  .gov-process-grid::before {
    display: none;
  }

  .gov-partners {
    padding: 16px 20px;
  }

  .gov-split {
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .gov-hero-actions {
    flex-direction: column;
  }

  .gov-btn-hero-primary,
  .gov-btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .gov-cta-btns {
    flex-direction: column;
  }

  .gov-cta-primary,
  .gov-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------------------------------------------------------------ */
