/* [project]/styles/Header.module.css [client] (css) */
.Header-module__vcZAwq__header {
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  background: #f4f7fbd9;
  border-bottom: 1px solid #dde3ec99;
  position: sticky;
  top: 0;
}

.Header-module__vcZAwq__nav {
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #dde3ec;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.Header-module__vcZAwq__navLogo {
  color: #1a2e4a;
  align-items: center;
  gap: 10px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.Header-module__vcZAwq__logoDot {
  background: #27ae78;
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.Header-module__vcZAwq__logoIcon {
  filter: brightness(0) invert();
}

.Header-module__vcZAwq__navLinks {
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.Header-module__vcZAwq__navLink {
  color: #6b7a8d;
  text-decoration: none;
  transition: color .2s;
}

.Header-module__vcZAwq__navLink:hover {
  color: #1a2e4a;
}

.Header-module__vcZAwq__navLink.Header-module__vcZAwq__active {
  color: #1a2e4a;
  font-weight: 700;
}

.Header-module__vcZAwq__btnPrimary {
  color: #fff;
  cursor: pointer;
  background: #27ae78;
  border: none;
  border-radius: 9px;
  padding: .55rem 1.25rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}

.Header-module__vcZAwq__btnPrimary:hover {
  background: #1a7a55;
}

.Header-module__vcZAwq__burger {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  display: none;
}

.Header-module__vcZAwq__burgerLine {
  background: #1a2e4a;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: transform .25s, opacity .25s;
  display: block;
}

.Header-module__vcZAwq__burgerOpen1 {
  transform: translateY(7px)rotate(45deg);
}

.Header-module__vcZAwq__burgerOpen2 {
  opacity: 0;
}

.Header-module__vcZAwq__burgerOpen3 {
  transform: translateY(-7px)rotate(-45deg);
}

@media (max-width: 768px) {
  .Header-module__vcZAwq__nav {
    padding: 1rem 1.5rem;
  }

  .Header-module__vcZAwq__burger {
    display: flex;
  }

  .Header-module__vcZAwq__navLinks {
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #dde3ec;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 2rem 1.5rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .Header-module__vcZAwq__navLinksOpen {
    display: flex;
  }

  .Header-module__vcZAwq__navLink:not(.Header-module__vcZAwq__btnPrimary):not(.Header-module__vcZAwq__active) {
    display: block;
  }
}

/* [project]/styles/RedesignHome.module.css [client] (css) */
:root {
  --h-navy: #1a2e4a;
  --h-green: #27ae78;
  --h-green-light: #e8f8f2;
  --h-green-dark: #1a7a55;
  --h-bg: #f4f7fb;
  --h-white: #fff;
  --h-text: #1a2e4a;
  --h-muted: #6b7a8d;
  --h-border: #dde3ec;
  --radius-card: 16px;
}

.RedesignHome-module__OANqDa__site {
  max-width: 1100px;
  margin: 0 auto;
}

.RedesignHome-module__OANqDa__hero {
  background: linear-gradient(160deg,var(--h-white) 55%,var(--h-green-light) 100%);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2.5rem 3rem;
  display: grid;
}

.RedesignHome-module__OANqDa__heroEyebrow {
  background: var(--h-green-light);
  color: var(--h-green-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  align-items: center;
  gap: 7px;
  margin-bottom: 1.3rem;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.RedesignHome-module__OANqDa__eyebrowDot {
  background: var(--h-green);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: inline-block;
}

.RedesignHome-module__OANqDa__heroH1 {
  color: var(--h-navy);
  margin-bottom: 1.1rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
}

.RedesignHome-module__OANqDa__heroH1 em {
  color: var(--h-green);
  font-style: normal;
}

.RedesignHome-module__OANqDa__heroSub {
  color: var(--h-muted);
  max-width: 440px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.RedesignHome-module__OANqDa__heroActions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.RedesignHome-module__OANqDa__btnPrimary {
  background: var(--h-green);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 9px;
  padding: .55rem 1.25rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}

.RedesignHome-module__OANqDa__btnPrimary:hover {
  background: var(--h-green-dark);
}

.RedesignHome-module__OANqDa__btnSecondary {
  color: var(--h-navy);
  border: 1.5px solid var(--h-border);
  cursor: pointer;
  background: none;
  border-radius: 9px;
  padding: .55rem 1.25rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}

.RedesignHome-module__OANqDa__btnSecondary:hover {
  border-color: var(--h-navy);
  background: var(--h-bg);
}

.RedesignHome-module__OANqDa__storeBadges {
  gap: .75rem;
  display: flex;
}

.RedesignHome-module__OANqDa__storeBadge {
  background: var(--h-navy);
  color: #fff;
  border-radius: 11px;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.RedesignHome-module__OANqDa__storeBadge:hover {
  opacity: .85;
}

.RedesignHome-module__OANqDa__storeBadge svg {
  fill: #fff;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.RedesignHome-module__OANqDa__heroVisual {
  justify-content: center;
  align-items: center;
  min-height: 420px;
  display: flex;
  position: relative;
}

.RedesignHome-module__OANqDa__phoneWrap {
  z-index: 2;
  animation: 4s ease-in-out infinite RedesignHome-module__OANqDa__float;
  position: relative;
}

@keyframes RedesignHome-module__OANqDa__float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.RedesignHome-module__OANqDa__phone {
  background: var(--h-navy);
  border-radius: 40px;
  width: 220px;
  height: 420px;
  padding: 14px 12px;
  box-shadow: 0 28px 70px #1a2e4a47;
}

.RedesignHome-module__OANqDa__phoneNotch {
  background: var(--h-navy);
  z-index: 2;
  border-radius: 0 0 14px 14px;
  width: 70px;
  height: 22px;
  margin: 0 auto 8px;
  position: relative;
}

.RedesignHome-module__OANqDa__phoneScreen {
  background: var(--h-bg);
  border-radius: 30px;
  height: calc(100% - 22px);
  padding: 12px 10px;
  overflow: hidden;
}

.RedesignHome-module__OANqDa__phoneHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.RedesignHome-module__OANqDa__phoneLogo {
  color: var(--h-navy);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.RedesignHome-module__OANqDa__phoneBell {
  background: var(--h-white);
  border: 1px solid var(--h-border);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  display: flex;
}

.RedesignHome-module__OANqDa__phoneCard {
  background: var(--h-white);
  border: 1px solid var(--h-border);
  border-radius: 11px;
  margin-bottom: 7px;
  padding: 9px 10px;
}

.RedesignHome-module__OANqDa__phoneCardLabel {
  color: var(--h-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 3px;
  font-size: .58rem;
  font-weight: 600;
}

.RedesignHome-module__OANqDa__phoneCardTitle {
  color: var(--h-navy);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.25;
}

.RedesignHome-module__OANqDa__phoneTag {
  background: var(--h-green-light);
  color: var(--h-green-dark);
  border-radius: 10px;
  margin-top: 5px;
  padding: 2px 7px;
  font-size: .53rem;
  font-weight: 700;
  display: inline-block;
}

.RedesignHome-module__OANqDa__phoneStatRow {
  gap: 6px;
  margin-top: 8px;
  display: flex;
}

.RedesignHome-module__OANqDa__phoneStat {
  background: var(--h-green-light);
  text-align: center;
  border-radius: 9px;
  flex: 1;
  padding: 7px 6px;
}

.RedesignHome-module__OANqDa__phoneStatNum {
  color: var(--h-green-dark);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .85rem;
  font-weight: 800;
}

.RedesignHome-module__OANqDa__phoneStatLbl {
  color: var(--h-muted);
  margin-top: 1px;
  font-size: .5rem;
}

.RedesignHome-module__OANqDa__pulseRing {
  border: 2px solid var(--h-green);
  opacity: 0;
  border-radius: 50%;
  animation: 3s ease-out infinite RedesignHome-module__OANqDa__pulse;
  position: absolute;
}

.RedesignHome-module__OANqDa__pulseRing:first-child {
  width: 280px;
  height: 280px;
  animation-delay: 0s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.RedesignHome-module__OANqDa__pulseRing:nth-child(2) {
  width: 340px;
  height: 340px;
  animation-delay: 1s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.RedesignHome-module__OANqDa__pulseRing:nth-child(3) {
  width: 400px;
  height: 400px;
  animation-delay: 2s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes RedesignHome-module__OANqDa__pulse {
  0% {
    opacity: .45;
    transform: translate(-50%, -50%)scale(.85);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(1.08);
  }
}

.RedesignHome-module__OANqDa__trustBar {
  background: var(--h-white);
  border-top: 1px solid var(--h-border);
  border-bottom: 1px solid var(--h-border);
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 2.5rem;
  display: flex;
}

.RedesignHome-module__OANqDa__trustLabel {
  color: var(--h-muted);
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
}

.RedesignHome-module__OANqDa__trustItems {
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.RedesignHome-module__OANqDa__trustItem {
  color: var(--h-navy);
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.RedesignHome-module__OANqDa__trustDot {
  background: var(--h-green);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
}

.RedesignHome-module__OANqDa__section {
  padding: 4rem 2.5rem;
}

.RedesignHome-module__OANqDa__sectionLabel {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--h-green-dark);
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 700;
}

.RedesignHome-module__OANqDa__sectionTitle {
  color: var(--h-navy);
  margin-bottom: .85rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.18;
}

.RedesignHome-module__OANqDa__sectionSub {
  color: var(--h-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.RedesignHome-module__OANqDa__featuresGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  display: grid;
}

.RedesignHome-module__OANqDa__featureCard {
  background: var(--h-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--h-border);
  padding: 1.6rem;
  transition: box-shadow .2s, transform .2s;
}

.RedesignHome-module__OANqDa__featureCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px #1a2e4a1a;
}

.RedesignHome-module__OANqDa__featureIcon {
  background: var(--h-green-light);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  display: flex;
}

.RedesignHome-module__OANqDa__featureIcon svg {
  width: 22px;
  height: 22px;
}

.RedesignHome-module__OANqDa__featureTitle {
  color: var(--h-navy);
  margin-bottom: .45rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.RedesignHome-module__OANqDa__featureDesc {
  color: var(--h-muted);
  font-size: .875rem;
  line-height: 1.6;
}

.RedesignHome-module__OANqDa__settlementsSection {
  background: var(--h-white);
  padding: 4rem 2.5rem;
}

.RedesignHome-module__OANqDa__settlementsGrid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  display: grid;
}

.RedesignHome-module__OANqDa__settlementCard {
  background: var(--h-bg);
  text-align: center;
  border: 1px solid var(--h-border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  transition: border-color .2s, background .2s;
}

.RedesignHome-module__OANqDa__settlementCard:hover {
  border-color: var(--h-green);
  background: var(--h-green-light);
}

.RedesignHome-module__OANqDa__settlementIcon {
  background: var(--h-green);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto .6rem;
  display: flex;
}

.RedesignHome-module__OANqDa__settlementIcon svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.RedesignHome-module__OANqDa__settlementName {
  color: var(--h-navy);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .82rem;
  font-weight: 700;
}

.RedesignHome-module__OANqDa__settlementAdd {
  background: var(--h-border);
  text-align: center;
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 1.25rem 1rem;
  display: flex;
}

.RedesignHome-module__OANqDa__settlementAddIcon {
  border: 2px dashed var(--h-muted);
  width: 42px;
  height: 42px;
  color: var(--h-muted);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
}

.RedesignHome-module__OANqDa__settlementAdd span {
  color: var(--h-muted);
  font-size: .75rem;
  font-weight: 500;
}

.RedesignHome-module__OANqDa__govGrid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  display: grid;
}

.RedesignHome-module__OANqDa__govVisual {
  background: var(--h-navy);
  color: #fff;
  border-radius: 22px;
  padding: 2.5rem;
}

.RedesignHome-module__OANqDa__govVisualTitle {
  margin-bottom: 1.5rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.RedesignHome-module__OANqDa__govSteps {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.RedesignHome-module__OANqDa__govStep {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.RedesignHome-module__OANqDa__govStepNum {
  background: var(--h-green);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
}

.RedesignHome-module__OANqDa__govStepText {
  color: #ffffffd1;
  padding-top: 4px;
  font-size: .875rem;
  line-height: 1.5;
}

.RedesignHome-module__OANqDa__govBenefits {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.RedesignHome-module__OANqDa__govBenefit {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.RedesignHome-module__OANqDa__govBenefitCheck {
  background: var(--h-green-light);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: flex;
}

.RedesignHome-module__OANqDa__govBenefitCheck svg {
  width: 13px;
  height: 13px;
}

.RedesignHome-module__OANqDa__govBenefitTitle {
  color: var(--h-navy);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .95rem;
  font-weight: 700;
}

.RedesignHome-module__OANqDa__govBenefitDesc {
  color: var(--h-muted);
  margin-top: 3px;
  font-size: .85rem;
}

.RedesignHome-module__OANqDa__statsSection {
  background: var(--h-navy);
  padding: 3rem 2.5rem;
}

.RedesignHome-module__OANqDa__statsGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  display: grid;
}

.RedesignHome-module__OANqDa__statItem {
  text-align: center;
}

.RedesignHome-module__OANqDa__statNum {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.RedesignHome-module__OANqDa__statNum span {
  color: var(--h-green);
}

.RedesignHome-module__OANqDa__statLabel {
  color: #ffffff8c;
  margin-top: 6px;
  font-size: .85rem;
}

.RedesignHome-module__OANqDa__ctaSection {
  background: var(--h-white);
  text-align: center;
  padding: 4rem 2.5rem;
}

.RedesignHome-module__OANqDa__ctaSection .RedesignHome-module__OANqDa__sectionTitle {
  margin-bottom: .6rem;
}

.RedesignHome-module__OANqDa__ctaSection .RedesignHome-module__OANqDa__sectionSub {
  margin: 0 auto 2rem;
}

.RedesignHome-module__OANqDa__ctaActions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.RedesignHome-module__OANqDa__ctaStore {
  background: var(--h-navy);
  color: #fff;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.RedesignHome-module__OANqDa__ctaStore:hover {
  opacity: .85;
}

.RedesignHome-module__OANqDa__ctaStore svg {
  fill: #fff;
  width: 22px;
  height: 22px;
}

.RedesignHome-module__OANqDa__footer {
  background: var(--h-navy);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
}

.RedesignHome-module__OANqDa__footerLogo {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.RedesignHome-module__OANqDa__footerLinks {
  gap: 1.5rem;
  display: flex;
}

.RedesignHome-module__OANqDa__footerLinks a {
  color: #ffffff80;
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}

.RedesignHome-module__OANqDa__footerLinks a:hover {
  color: #fff;
}

.RedesignHome-module__OANqDa__footerCopy {
  color: #ffffff4d;
  font-size: .78rem;
}

@media (max-width: 768px) {
  .RedesignHome-module__OANqDa__hero {
    grid-template-columns: 1fr;
  }

  .RedesignHome-module__OANqDa__heroVisual {
    display: none;
  }

  .RedesignHome-module__OANqDa__featuresGrid {
    grid-template-columns: 1fr 1fr;
  }

  .RedesignHome-module__OANqDa__settlementsGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .RedesignHome-module__OANqDa__govGrid {
    grid-template-columns: 1fr;
  }

  .RedesignHome-module__OANqDa__statsGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .RedesignHome-module__OANqDa__hero, .RedesignHome-module__OANqDa__section, .RedesignHome-module__OANqDa__settlementsSection, .RedesignHome-module__OANqDa__ctaSection {
    padding: 2.5rem 1.5rem;
  }
}

/*# sourceMappingURL=styles_0el3ofh._.css.map*/