:root {
  --navy: #061a34;
  --navy-2: #001127;
  --gold: #ffb41e;
  --gold-2: #d99407;
  --ink: #07132b;
  --muted: #5d6679;
  --line: #dfe4ec;
  --soft: #f5f8fc;
  --cream: #fff7ec;
  --purple: #6424c9;
  --shadow: 0 18px 50px rgba(7, 19, 43, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 88px;
  padding: 18px clamp(20px, 4vw, 72px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, #001a35, #03172f);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  letter-spacing: 1px;
}
.brand-logo {
  width: clamp(170px, 18vw, 240px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.brand small {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
}
.hanger {
  color: var(--gold);
  font-size: 48px;
  line-height: 0.5;
  transform: rotate(-8deg);
  display: inline-block;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-weight: 700;
}
.nav a {
  position: relative;
  padding: 12px 0;
  font-size: 15px;
}
.nav a.active,
.nav a:hover {
  color: var(--gold);
}
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--gold);
}
.menu-toggle {
  display: none;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}
.btn-gold {
  background: linear-gradient(135deg, #ffd05a, var(--gold));
  color: #15110a;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-outline {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-purple {
  background: var(--purple);
  color: #fff;
}

.page {
  display: none;
}
.page.active {
  display: block;
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 105px) clamp(22px, 4vw, 76px);
  color: #fff;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 17, 39, 0.98) 0%,
      rgba(0, 25, 54, 0.9) 36%,
      rgba(0, 15, 33, 0.28) 72%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 180, 30, 0.08),
      transparent 35%
    );
}
.hero-home {
  background-image: url("img/about.jpg");
}
.hero-about {
  background-image: url("img/about_page.jpg");
}
.hero-services {
  background-image: url("img/service_page.jpg");
}
.hero-pricing {
  background-image: url("img/pricing_page.jpg");
}
.hero-whyus {
  background-image: url("img/whyus_page.jpg");
}
.hero-contact {
  background-image: url("img/contact_page.jpg");
}
.hero-audit {
  background-image: url("assets/audit.png");
}
.hero-copy {
  position: relative;
  max-width: 720px;
  z-index: 1;
}
.eyebrow {
  color: var(--gold-2);
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.eyebrow.dark {
  color: var(--ink);
}
.eyebrow.center,
.center {
  text-align: center;
}
.blue {
  color: #1f58a8;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
  margin-bottom: 24px;
}
h1 span,
h2 span {
  color: var(--gold);
}
h2 {
  font-size: clamp(28px, 3vw, 35px);
  line-height: 1.14;
  margin-bottom: 20px;
}
h3 {
  font-size: 19px;
  line-height: 1.25;
}
p {
  color: var(--muted);
  line-height: 1.75;
}
.hero p {
  color: #fff;
  font-size: clamp(17px, 1.45vw, 23px);
  max-width: 720px;
}
.crumbs {
  font-size: 14px !important;
  opacity: 0.9;
}
.badge-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px !important;
}
.badge-line::before {
  content: "◎";
  color: var(--gold);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 18px;
  margin: 38px 0;
  max-width: 720px;
}
.hero-metrics span {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding-right: 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.hero-metrics span:last-child {
  border-right: 0;
}
.hero-metrics b {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}
.hero-metrics.compact span {
  color: var(--gold);
  font-size: 34px;
}
.hero-metrics.compact strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 8px;
}

.stats-card {
  width: min(1200px, calc(100% - 48px));
  margin: 18px auto 56px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.stat {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.stat b {
  font-size: 30px;
}
.stat span {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.section,
.split,
.timeline-section,
.two-column,
.contact-grid,
.process,
.perfect,
.benefits,
.testimonials {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0;
}
.split,
.timeline-section,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.checks li {
  margin: 12px 0;
  color: var(--ink);
  line-height: 1.5;
}
.checks li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.photo-card {
  min-height: 380px;
  border-radius: 8px;
  background: url("img/about.jpg") center 42% / cover;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shirt-photo {
  background-image: url("img/about_home.jpg");
}
blockquote {
  position: absolute;
  left: 26px;
  bottom: 26px;
  max-width: 430px;
  margin: 0;
  padding: 28px;
  border-radius: 6px;
  background: rgba(3, 22, 47, 0.9);
  color: #fff;
  font-weight: 700;
  line-height: 1.7;
}
blockquote::before {
  content: "“";
  color: var(--gold);
  font-size: 50px;
  line-height: 0;
  display: block;
}
blockquote cite {
  display: block;
  color: var(--gold);
  margin-top: 14px;
  font-style: normal;
}

.soft {
  background: linear-gradient(180deg, #f5f8fc, #fff);
  max-width: none;
  width: 100%;
  padding-inline: max(24px, calc((100% - 1220px) / 2));
}
.cream {
  background: linear-gradient(90deg, #fffaf2, #fff);
  max-width: none;
  width: 100%;
  padding-inline: max(24px, calc((100% - 1220px) / 2));
}
.center-btn {
  margin: 28px auto 0;
  display: flex;
  width: max-content;
}
.lead {
  max-width: 850px;
  margin: 0 auto 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid.small {
  grid-template-columns: repeat(6, 1fr);
}
.service-grid.five {
  grid-template-columns: repeat(5, 1fr);
}
.service-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.service-grid article,
.price-cards article,
.plan-row article,
.testimonials article,
.feature-grid article,
.benefits article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 19, 43, 0.08);
}
.service-grid article {
  text-align: center;
}
.service-grid span,
.feature-grid span,
.benefits span,
.contact-info article > span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eef4fb;
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 18px;
}
.service-grid.small article {
  padding: 24px 18px;
}
.service-grid.small span {
  color: var(--gold-2);
  background: transparent;
  font-size: 48px;
  margin-bottom: 12px;
}
.service-grid.small h3 {
  font-size: 16px;
}
.service-grid.small p {
  font-size: 13px;
  line-height: 1.55;
}

.pricing-strip,
.cta-band {
  width: min(1220px, calc(100% - 48px));
  margin: 30px auto 58px;
  padding: 34px 46px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00152d, #031f40);
  color: #fff;
  box-shadow: var(--shadow);
}
.pricing-strip h2,
.cta-band h2 {
  color: #fff;
}
.plan-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-row article b,
.price-cards b {
  display: block;
  margin: 18px 0;
  font-size: 30px;
}
.plan-row article p {
  font-size: 14px;
  line-height: 1.55;
}
.visit-charge {
  margin: 22px auto 0;
  padding: 18px 24px;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(255, 180, 30, 0.55);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  font-weight: 800;
}
.visit-charge strong {
  color: var(--gold-2);
  font-size: 28px;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 0;
}
.cta-band p {
  color: #fff;
  margin-bottom: 0;
}
.image-cta {
  background-image:
    linear-gradient(90deg, rgba(0, 21, 45, 0.94), rgba(0, 31, 64, 0.94)),
    url("assets/about.png");
  background-size: cover;
  background-position: center;
}

.testimonials {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.testimonials article {
  color: var(--gold-2);
}
.testimonials article p {
  color: var(--ink);
  margin: 18px 0;
}

.timeline-section {
  align-items: start;
}
.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--line);
}
.timeline article {
  position: relative;
  margin-left: 105px;
  padding: 10px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff, #fff8ed);
}
.timeline article::before {
  content: "◎";
  position: absolute;
  left: -86px;
  top: 12px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--navy);
  font-size: 30px;
}
.timeline b {
  color: var(--gold-2);
  font-size: 28px;
}

.service-list {
  display: grid;
  gap: 12px;
}
.service-item {
  display: grid;
  grid-template-columns: 62px 1fr 280px 44px;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 19, 43, 0.08);
}
.service-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 42px;
}
.service-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3d8;
  color: var(--gold-2);
  font-weight: 900;
}
.service-thumb {
  height: 280px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}
.service-arrow {
  font-size: 34px;
}
.custom-solution {
  margin-top: 30px;
  padding: 38px 48px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(90deg, #fffaf2, #fff);
}
.custom-solution > span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px dashed var(--gold-2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 40px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 34px 0 18px;
}
.price-cards article {
  position: relative;
  text-align: center;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.price-cards .popular {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(100, 36, 201, 0.2);
}
.price-cards em {
  position: absolute;
  top: -16px;
  padding: 10px 42px;
  border-radius: 5px;
  background: var(--purple);
  color: #fff;
  font-style: normal;
  font-weight: 800;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
th:first-child,
td:first-child {
  text-align: left;
  font-weight: 800;
}
.yes {
  color: #11813a;
  font-weight: 900;
}
.no {
  color: #f0183c;
  font-weight: 900;
}
.note {
  margin-top: 34px;
  padding: 32px 46px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(90deg, #fff3dd, #fff);
  border-radius: 10px;
}
.form-check {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form-status {
  display: none;
  margin: 6px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.5;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: #e8f8ee;
  color: #176536;
}
.form-status.error {
  background: #fff0f0;
  color: #a11b1b;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 42px;
}
.feature-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  box-shadow: none;
  border: 0;
}
.feature-grid span {
  grid-row: span 2;
}
.benefits {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 18px;
  padding: 42px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fffaf2, #fff);
}
.benefits article {
  text-align: center;
}
.process .steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.steps.four {
  grid-template-columns: repeat(4, 1fr);
}
.steps article {
  text-align: center;
  position: relative;
}
.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% - 10px);
  top: 36px;
  width: 42px;
  border-top: 2px dashed #a9b2c0;
}
.perfect {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 22px;
  padding: 34px;
  border-radius: 10px;
  background: #f4f8fd;
}
.perfect article {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-left: 1px solid var(--line);
  font-weight: 800;
}

.contact-grid {
  align-items: start;
}
.contact-form,
.contact-info {
  padding: 32px;
  border-radius: 8px;
  background: #fff;
}
.contact-form {
  border-right: 1px solid var(--line);
}
.contact-form h2,
.contact-info h2 {
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
input,
select,
textarea {
  width: 100%;
  min-height: 58px;
  margin-bottom: 16px;
  padding: 0 18px;
  border: 1px solid #cdd5df;
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
}
textarea {
  min-height: 128px;
  padding-top: 18px;
  resize: vertical;
}
.agree {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 6px 0 22px;
  color: var(--muted);
}
.agree input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}
.contact-info article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  margin: 28px 0;
}
.contact-info article > span {
  width: 58px;
  height: 58px;
  color: var(--gold);
  background: var(--navy);
  font-size: 26px;
  margin: 0;
}
.carded {
  padding: 42px;
  border-radius: 10px;
  background: #f8fafc;
}
.map-card {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: var(--shadow);
}
.map-card > div:first-child {
  padding: 42px;
}
.map {
  min-height: 270px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 90px;
  background:
    radial-gradient(circle at 40% 38%, var(--navy) 0 4px, transparent 5px),
    radial-gradient(circle at 52% 58%, var(--navy) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 43%, var(--navy) 0 4px, transparent 5px),
    radial-gradient(circle at 63% 70%, var(--navy) 0 4px, transparent 5px),
    linear-gradient(135deg, #f2efe9, #cce9fb);
}

.footer {
  padding: 48px clamp(22px, 4vw, 74px) 24px;
  background: linear-gradient(90deg, #00162f, #011e3f);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.2fr 1.35fr;
  gap: 58px;
  max-width: 1220px;
  margin: 0 auto;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}
.phone-number {
  white-space: nowrap;
}
.email-id {
  overflow-wrap: anywhere;
}
.phone-separator {
  display: inline-block;
  margin: 0 4px;
}
.footer a {
  display: block;
  margin: 5px 0;
}
.footer .brand {
  display: inline-flex;
  margin: 0 0 18px;
}
.footer .brand-logo {
  width: 230px;
  max-height: 72px;
}
.footer h3 {
  color: #fff;
}
.social {
  display: flex;
  gap: 12px;
}
.social span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}
.footer-bottom {
  max-width: 1220px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1050px) {
  .site-header {
    flex-wrap: wrap;
  }
  .menu-toggle {
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 24px;
  }
  .header-cta {
    display: none;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav.open {
    display: flex;
  }
  .stats-card,
  .service-grid.small,
  .service-grid.five,
  .service-grid.four,
  .plan-row,
  .price-cards,
  .testimonials,
  .benefits,
  .process .steps,
  .perfect,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .timeline-section,
  .two-column,
  .contact-grid,
  .map-card {
    grid-template-columns: 1fr;
  }
  .service-item {
    grid-template-columns: 52px 1fr 150px 32px;
  }
  .note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 14px 18px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand small {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .brand-logo {
    width: 160px;
    max-height: 50px;
  }
  .hanger {
    font-size: 38px;
  }
  .hero {
    min-height: 610px;
    padding: 54px 22px;
    background-position: center top;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 17, 39, 0.98),
      rgba(0, 17, 39, 0.78)
    );
  }
  .hero-metrics,
  .hero-metrics.compact,
  .stats-card,
  .service-grid,
  .service-grid.small,
  .service-grid.five,
  .service-grid.four,
  .plan-row,
  .price-cards,
  .testimonials,
  .feature-grid,
  .benefits,
  .process .steps,
  .steps.four,
  .perfect,
  .footer-grid,
  .form-row,
  .custom-solution {
    grid-template-columns: 1fr;
  }
  .stats-card,
  .pricing-strip,
  .cta-band,
  .section,
  .split,
  .timeline-section,
  .two-column,
  .contact-grid,
  .process,
  .perfect,
  .benefits,
  .testimonials,
  .map-card {
    width: min(100% - 32px, 1220px);
  }
  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 18px;
  }
  .visit-charge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-num {
    margin: 0 auto;
  }
  .service-list .service-item h2 {
    font-size: clamp(24px, 2.1vw, 32px) !important;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .service-thumb {
    min-height: 180px;
  }
  .cta-band {
    display: grid;
    padding: 28px;
  }
  .timeline article {
    margin-left: 0;
  }
  .timeline::before,
  .timeline article::before,
  .steps article::after {
    display: none;
  }
  .feature-grid article {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-grid span {
    margin: 0 auto 12px;
  }
  .perfect article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-bottom {
    display: grid;
    gap: 12px;
  }
}
