/* hero.css */

/* ── Variables ── */
:root {
  --hero-blue: #00349d;
  --hero-transition: 150ms ease;
}

/* ── Section ── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 600px;
  }
}

/* ── Background ── */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    color-mix(in srgb, #00349d 95%, transparent),
    color-mix(in srgb, #111827 90%, transparent),
    color-mix(in srgb, #000 95%, transparent)
  );
}

/* ── Inner wrapper ── */
.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .hero__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding-inline: 2rem;
  }
}

/* ── Content ── */
.hero__content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.25);
}

.hero__badge-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ── Heading ── */
.hero__heading {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero__heading {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero__heading {
    font-size: 3.75rem;
  }
}

/* ── Subheading ── */
.hero__subheading {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .hero__subheading {
    font-size: 1.25rem;
  }
}

/* ── Actions ── */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

/* ── Buttons ── */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--hero-transition),
    color var(--hero-transition),
    box-shadow var(--hero-transition),
    transform var(--hero-transition);
}

.hero__btn:hover {
  transform: translateY(-4px);
}

/* Primary */
.hero__btn--primary {
  background-color: #ffffff;
  color: var(--hero-blue);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.hero__btn--primary:hover {
  background-color: #f3f4f6;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Outline */
.hero__btn--outline {
  background-color: rgb(255 255 255 / 0.1);
  color: #ffffff;
  border: 2px solid rgb(255 255 255 / 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero__btn--outline:hover {
  background-color: #ffffff;
  color: #111827;
}

/* Button icons */
.hero__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform var(--hero-transition);
}

.hero__btn--primary:hover .hero__btn-icon {
  transform: translateX(4px);
}

.hero__btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* ── Stats Grid ── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Stat Card ── */
.hero__stat {
  background-color: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero__stat-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  margin: 0 auto 0.5rem;
  display: block;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* comparison.css */

/* ── Variables ── */
:root {
  --cmp-blue: #00349d;
  --cmp-transition: 150ms ease;
}

/* ── Section ── */
.comparison {
  padding-block: 4rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

@media (min-width: 1024px) {
  .comparison {
    padding-block: 6rem;
  }
}

/* ── Container ── */
.comparison__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .comparison__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .comparison__container {
    padding-inline: 2rem;
  }
}

/* ── Header ── */
.comparison__header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cmp-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.comparison__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .comparison__heading {
    font-size: 3rem;
  }
}

.comparison__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

/* ── Cards Grid ── */
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .comparison__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ── Card Base ── */
.comparison__card {
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .comparison__card {
    padding: 2.5rem;
  }
}

/* Bad card */
.comparison__card--bad {
  background-color: #ffffff;
  border: 2px solid #fecaca;
}

/* Good card */
.comparison__card--good {
  background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5);
  border: 2px solid #4ade80;
}

/* ── Card Badge (good card only) ── */
.comparison__card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #16a34a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transform: rotate(3deg);
}

/* ── Card Header ── */
.comparison__card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* ── Card Icon ── */
.comparison__card-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.comparison__card-icon--bad {
  background-color: #fee2e2;
}
.comparison__card-icon--good {
  background-color: #22c55e;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
}

.comparison__card-icon-svg {
  width: 32px;
  height: 32px;
}

.comparison__card-icon--bad .comparison__card-icon-svg {
  color: #dc2626;
}
.comparison__card-icon--good .comparison__card-icon-svg {
  color: #ffffff;
}

.comparison__card-icon-svg--flipped {
  transform: rotate(180deg);
}

/* ── Card Title / Subtitle ── */
.comparison__card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

@media (min-width: 1024px) {
  .comparison__card-title {
    font-size: 1.875rem;
  }
}

.comparison__card-subtitle {
  font-weight: 700;
}

.comparison__card-subtitle--bad {
  color: #dc2626;
}
.comparison__card-subtitle--good {
  color: #15803d;
}

/* ── Items List ── */
.comparison__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Item Row ── */
.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.comparison__item--bad {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
}

.comparison__item--good {
  background-color: #ffffff;
  border: 2px solid #bbf7d0;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}

/* ── Item Dot ── */
.comparison__item-dot {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.15);
}

.comparison__item-dot--bad {
  background-color: #ef4444;
  border: 2px solid #ffffff;
}

.comparison__item-dot--bad span {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.comparison__item-dot--good {
  background-color: #22c55e;
}

.comparison__check-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

/* ── Item Text ── */
.comparison__item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.comparison__item-title--flex {
  flex: 1;
  line-height: 1.5;
  margin-bottom: 0;
}

.comparison__item-desc {
  font-size: 0.75rem;
  color: #4b5563;
  margin: 0;
}

.comparison__item-body {
  flex: 1;
}

.comparison__item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ── Item Tag ── */
.comparison__item-tag {
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.1);
}

.comparison__item-tag--good {
  background-color: #22c55e;
  color: #ffffff;
}

/* ── Stats Bar ── */
.comparison__stats {
  margin-top: 3rem;
  background: linear-gradient(to right, var(--cmp-blue), #1d4ed8);
  border-radius: 1.5rem;
  padding: 2rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .comparison__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Stat ── */
.comparison__stat-icon {
  width: 32px;
  height: 32px;
  color: rgb(255 255 255 / 0.8);
  margin: 0 auto 0.5rem;
  display: block;
}

.comparison__stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .comparison__stat-value {
    font-size: 2.25rem;
  }
}

.comparison__stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
}

/* process.css */

/* ── Variables ── */
:root {
  --prc-blue: #00349d;
  --prc-transition: 150ms ease;
}

/* ── Section ── */
.process {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  background: linear-gradient(to bottom right, #111827, #1f2937, #00349d);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .process {
    padding-block: 6rem;
  }
}

/* ── Dot Pattern ── */
.process__dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 2px 2px,
    white 1px,
    transparent 0px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── Container ── */
.process__container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .process__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .process__container {
    padding-inline: 2rem;
  }
}

/* ── Header ── */
.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.process__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .process__heading {
    font-size: 3rem;
  }
}

.process__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.8);
  max-width: 48rem;
  margin-inline: auto;
}

/* ── Steps Grid ── */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Connector Line (desktop) ── */
.process__connector {
  display: none;
}

@media (min-width: 1024px) {
  .process__connector {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    pointer-events: none;
  }
}

.process__connector-line {
  position: absolute;
  inset: 0;
  left: 8%;
  right: 8%;
  background: linear-gradient(to right, #00349d, #60a5fa, #a78bfa, #22c55e);
  border-radius: 9999px;
}

/* ── Step ── */
.process__step {
  position: relative;
}

/* ── Step Card ── */
.process__step-card {
  background-color: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  height: 100%;
  transition: background-color var(--prc-transition);
}

@media (min-width: 1024px) {
  .process__step-card {
    padding: 2rem;
  }
}

.process__step-card:hover {
  background-color: rgb(255 255 255 / 0.1);
}

.process__step-card:hover .process__step-icon {
  transform: scale(1.1);
}

/* ── Step Top Row ── */
.process__step-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* ── Step Icon ── */
.process__step-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  position: relative;
  z-index: 10;
  transition: transform var(--prc-transition);
  flex-shrink: 0;
}

.process__step-icon--blue {
  background: linear-gradient(to bottom right, #00349d, #2563eb);
}
.process__step-icon--blue2 {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}
.process__step-icon--purple {
  background: linear-gradient(to bottom right, #a855f7, #9333ea);
}
.process__step-icon--green {
  background: linear-gradient(to bottom right, #22c55e, #16a34a);
}

.process__step-svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

/* ── Step Number Badge ── */
.process__step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  font-size: 1.125rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

/* ── Step Time Pill ── */
.process__step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgb(255 255 255 / 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.process__time-icon {
  width: 12px;
  height: 12px;
  color: #ffffff;
  flex-shrink: 0;
}

.process__step-time span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgb(255 255 255 / 0.9);
}

/* ── Step Title ── */
.process__step-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .process__step-title {
    font-size: 1.5rem;
  }
}

/* ── Step Description ── */
.process__step-desc {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

/* ── Step List ── */
.process__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.process__step-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.process__check-icon {
  width: 16px;
  height: 16px;
  color: #4ade80;
  flex-shrink: 0;
}

.process__step-list-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.8);
}

/* ── CTA Block ── */
.process__cta {
  background: linear-gradient(to bottom right, #dc2626, #b91c1c);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

@media (min-width: 1024px) {
  .process__cta {
    padding: 3rem;
  }
}

.process__cta-inner {
  max-width: 48rem;
  margin: 0 auto;
}

/* ── CTA Badge ── */
.process__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(255 255 255 / 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.process__cta-badge-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.process__cta-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

/* ── CTA Heading ── */
.process__cta-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .process__cta-heading {
    font-size: 2.25rem;
  }
}

/* ── CTA Description ── */
.process__cta-desc {
  font-size: 1rem;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  margin-bottom: 2rem;
}

/* ── CTA Actions ── */
.process__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .process__cta-actions {
    flex-direction: row;
  }
}

/* ── CTA Buttons ── */
.process__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--prc-transition),
    box-shadow var(--prc-transition),
    transform var(--prc-transition);
}

.process__cta-btn:hover {
  transform: translateY(-4px);
}

.process__cta-btn--primary {
  background-color: #ffffff;
  color: #dc2626;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.process__cta-btn--primary:hover {
  background-color: #f3f4f6;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.3);
}

.process__cta-btn--dark {
  background-color: #111827;
  color: #ffffff;
}

.process__cta-btn--dark:hover {
  background-color: #000000;
}

.process__cta-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform var(--prc-transition);
}

.process__cta-btn--primary:hover .process__cta-btn-icon {
  transform: translateX(4px);
}

.process__cta-btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* ── CTA Perks ── */
.process__cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.875rem;
}

.process__cta-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.process__cta-perk-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

/* features.css */

/* ── Variables ── */
:root {
  --ftr-blue: #00349d;
  --ftr-transition: 150ms ease;
}

/* ── Section ── */
.features {
  padding-block: 4rem;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .features {
    padding-block: 6rem;
  }
}

/* ── Container ── */
.features__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .features__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .features__container {
    padding-inline: 2rem;
  }
}

/* ── Header ── */
.features__header {
  text-align: center;
  margin-bottom: 3rem;
}

.features__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ftr-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.features__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .features__heading {
    font-size: 3rem;
  }
}

.features__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

/* ── Grid ── */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Card ── */
.features__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition:
    border-color var(--ftr-transition),
    box-shadow var(--ftr-transition);
}

@media (min-width: 1024px) {
  .features__card {
    padding: 2rem;
  }
}

.features__card:hover {
  border-color: var(--ftr-blue);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.features__card:hover .features__card-icon {
  transform: scale(1.1);
}

/* ── Card Badge ── */
.features__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #16a34a;
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
}

/* ── Card Icon ── */
.features__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  transition: transform var(--ftr-transition);
  flex-shrink: 0;
}

.features__card-icon--blue {
  background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}
.features__card-icon--purple {
  background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}
.features__card-icon--green {
  background: linear-gradient(to bottom right, #22c55e, #15803d);
}
.features__card-icon--red {
  background: linear-gradient(to bottom right, #ef4444, #b91c1c);
}
.features__card-icon--orange {
  background: linear-gradient(to bottom right, #f97316, #c2410c);
}
.features__card-icon--indigo {
  background: linear-gradient(to bottom right, #6366f1, #4338ca);
}

.features__card-icon-svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

/* ── Card Title ── */
.features__card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}

/* ── Card Description ── */
.features__card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1rem;
}

/* ── Card List ── */
.features__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.features__card-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features__check-icon {
  width: 16px;
  height: 16px;
  color: #16a34a;
  flex-shrink: 0;
}

.features__card-list-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
}

/* testimonials.css */

/* ── Variables ── */
:root {
  --tst-blue: #00349d;
  --tst-transition: 150ms ease;
}

/* ── Section ── */
.testimonials {
  padding-block: 4rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

@media (min-width: 1024px) {
  .testimonials {
    padding-block: 6rem;
  }
}

/* ── Container ── */
.testimonials__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .testimonials__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__container {
    padding-inline: 2rem;
  }
}

/* ── Header ── */
.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tst-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonials__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

@media (min-width: 1024px) {
  .testimonials__heading {
    font-size: 3rem;
  }
}

/* ── Grid ── */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Card ── */
.testimonials__card {
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--tst-transition),
    box-shadow var(--tst-transition);
}

@media (min-width: 1024px) {
  .testimonials__card {
    padding: 2rem;
  }
}

.testimonials__card:hover {
  border-color: var(--tst-blue);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ── Stars ── */
.testimonials__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonials__star {
  width: 20px;
  height: 20px;
  fill: #facc15;
  color: #facc15;
  flex-shrink: 0;
}

/* ── Quote ── */
.testimonials__quote {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.625;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

/* ── Footer ── */
.testimonials__footer {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.testimonials__footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.testimonials__name {
  font-weight: 900;
  color: #111827;
  margin: 0 0 2px 0;
  font-size: 0.9375rem;
}

.testimonials__location {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
}

.testimonials__savings {
  background-color: #dcfce7;
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.testimonials__project {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tst-blue);
  margin: 0;
}
/* faq.css */

/* ── Variables ── */
:root {
  --faq-blue: #00349d;
  --faq-transition: 150ms ease;
}

/* ── Section ── */
.faq {
  padding-block: 4rem;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .faq {
    padding-block: 6rem;
  }
}

/* ── Container ── */
.faq__container {
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .faq__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq__container {
    padding-inline: 2rem;
  }
}

/* ── Header ── */
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--faq-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.faq__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

@media (min-width: 1024px) {
  .faq__heading {
    font-size: 3rem;
  }
}

/* ── List ── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Item ── */
.faq__item {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color var(--faq-transition);
}

.faq__item:hover {
  border-color: var(--faq-blue);
}

/* ── Question ── */
.faq__question {
  font-size: 1.125rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* ── Answer ── */
.faq__answer {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}

/* final-cta.css */

/* ── Variables ── */
:root {
  --fcta-blue: #00349d;
  --fcta-transition: 150ms ease;
}

/* ── Section ── */
.final-cta {
  padding-block: 4rem 5rem;
  background: linear-gradient(to bottom right, #00349d, #1e3a8a);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .final-cta {
    padding-block: 5rem;
  }
}

/* ── Container ── */
.final-cta__container {
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .final-cta__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .final-cta__container {
    padding-inline: 2rem;
  }
}

/* ── Badge ── */
.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgb(255 255 255 / 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.final-cta__badge-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.final-cta__badge span {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ── Heading ── */
.final-cta__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .final-cta__heading {
    font-size: 3rem;
  }
}

/* ── Subheading ── */
.final-cta__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* ── Actions ── */
.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .final-cta__actions {
    flex-direction: row;
  }
}

/* ── Buttons ── */
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--fcta-transition),
    color var(--fcta-transition),
    box-shadow var(--fcta-transition),
    transform var(--fcta-transition);
}

.final-cta__btn:hover {
  transform: translateY(-4px);
}

.final-cta__btn--primary {
  background-color: #ffffff;
  color: var(--fcta-blue);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35);
}

.final-cta__btn--primary:hover {
  background-color: #f3f4f6;
  box-shadow: 0 25px 50px -12px rgb(255 255 255 / 0.2);
}

.final-cta__btn--primary:hover .final-cta__btn-icon {
  transform: translateX(4px);
}

.final-cta__btn--outline {
  background-color: rgb(255 255 255 / 0.1);
  color: #ffffff;
  border: 2px solid rgb(255 255 255 / 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.final-cta__btn--outline:hover {
  background-color: #ffffff;
  color: var(--fcta-blue);
}

/* ── Button Icons ── */
.final-cta__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform var(--fcta-transition);
}

.final-cta__btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* ── Perks ── */
.final-cta__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: rgb(255 255 255 / 0.9);
}

.final-cta__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.final-cta__perk-icon {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}
