/* ==============================================================
   HOMEPAGE CUSTOM STYLES — TECHNO TACKLE
   ============================================================== */

:root {
  --primary: #00c4a7;
  --primary-600: #019a83;
  --primary-700: #017a68;
  --primary-050: #ecfaf7;
  --ink: #17263b;
  --text: #4a5665;
  --muted: #656565;
  --line: #e4edea;
  --bg: #fff;
  --shadow: 0 8px 28px rgba(23, 38, 59, 0.08);
  --radius: 14px;
  --container: 1200px;
  --font:
    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (min-width: 961px) {
  .pad-fab {
    padding-left: 84px;
  }
}

a {
  text-decoration: none !important;
}

.section {
  padding: 70px 0;
}

.section--soft {
  background: var(--primary-050);
}

.section-title {
  font-size: clamp(25px, 3.1vw, 34px);
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-sub {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 42px;
}

.accent {
  color: var(--primary-600);
}

.title-bar::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
  margin: 14px auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  padding: 13px 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid var(--primary-600);
  text-align: center;
}

.btn--solid {
  background: var(--primary-600);
  color: #fff !important;
}

.btn--solid:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary-600);
}

.btn--ghost:hover {
  background: var(--primary-050);
  color: var(--primary-700);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 15px;
}

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  padding: 26px 0 40px;
  background: linear-gradient(180deg, #f7fdfb 0%, #fff 100%);
}

/* .hero__pad {
  padding-left: 64px;
  padding-right: 24px;
} */

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(23px, 2.45vw, 33px);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  font-weight: bold;
}

.hero h1 .child {
  color: var(--primary-600);
}

.hero p.lead {
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 540px;
  font-weight: 400 !important;
}

.hero__ratings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__ratings img {
  height: 42px;
  width: auto;
  max-width: 230px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__art {
  position: relative;
}

.hero__art svg {
  width: 100%;
  height: auto;
  max-width: 430px;
  margin-inline: auto;
  display: block;
}

/* Stats band */
.statsband {
  padding: 8px 0 60px;
}

.statsband__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.sidecards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidecards--right {
  align-items: flex-end;
}

.sidecards img {
  width: 236px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(23, 38, 59, 0.1));
  transition: transform 0.2s ease;
}

.sidecards img:hover {
  transform: translateY(-3px);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  text-align: center;
}

.stats .num {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
}

.stats .lbl {
  font-size: 14px;
  margin-top: 6px;
  color: var(--text);
}

/* ==============================================================
   TECH STACK
   ============================================================== */
.techcat {
  margin-top: 26px;
}

.techcat__h {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-600);
  font-weight: 700;
  margin-bottom: 12px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(101, 101, 101, 0.2);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.15s ease;
}

.pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.pill:hover {
  border-color: var(--primary);
  background: rgba(0, 196, 167, 0.06);
  color: var(--ink);
}

/* ==============================================================
   SERVICES & CASE STUDIES
   ============================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23, 38, 59, 0.12);
}

.svc {
  text-align: center;
}

.svc .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: block;
}

.svc h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.svc h3 a {
  color: inherit;
  font-weight: bold;
}

.svc h3 a:hover {
  color: var(--primary-600);
}

.svc p {
  font-size: 16px;
  min-height: 72px;
}

.svc .more {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: #017a68;
}

/* Case studies */
.case {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.case__tag {
  align-self: flex-start;
  background: var(--primary-050);
  color: var(--primary-700);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.case h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.case .loc {
  font-size: 13.5px;
  color: #7a8794;
  margin-bottom: 12px;
}

.case blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 14px;
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink);
  margin: 14px 0 18px;
}

.case blockquote footer {
  font-style: normal;
  font-size: 13px;
  color: #7a8794;
  margin-top: 6px;
}

.case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.case__logo {
  height: 34px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.case__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0 12px;
  flex-wrap: wrap;
}

.case__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.1;
}

.case__lbl {
  font-size: 13px;
  color: var(--text);
}

.case .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ==============================================================
   HOW STAFF AUGMENTATION WORKS
   ============================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px 28px;
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--primary-600);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 6px 13px;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  padding-right: 44px;
  font-weight: bold;
}

.step p {
  font-size: 16px;
}

.step__ic {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-050);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-600);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1081px) {
  .step:not(:last-child)::after {
    content: "\2039";
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%) scaleX(-1);
    color: var(--primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
  }
}

.note-band {
  max-width: 1080px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 14.5px;
  background: #fff;
  border: 1px dashed var(--primary);
  border-radius: 12px;
  padding: 16px 26px;
  color: var(--ink);
}

/* ==============================================================
   TESTIMONIALS SLIDER
   ============================================================== */
#testimonialSlider2 .owl-stage {
  display: flex;
}

#testimonialSlider2 .owl-item {
  display: flex;
}

.tslide {
  padding: 6px;
  width: 100%;
  display: flex;
}

.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow);
  height: 100%;
  width: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  color: inherit;
  text-align: left;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23, 38, 59, 0.13);
  color: inherit;
}

.tcard__src {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
}

.tcard__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.tcard__head img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary-050);
}

.tcard__head strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.tcard__head span {
  font-size: 12.5px;
  color: var(--text);
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 9px;
}

.tcard p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  flex-grow: 1;
}

.tcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.tcard__foot .org {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.tcard__foot .loc {
  font-size: 12.5px;
  color: var(--muted);
}

#testimonialSlider2 .owl-item img {
  width: auto;
  max-width: 100%;
}

#testimonialSlider2 .tcard__head img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

#testimonialSlider2 .tcard__src {
  width: 22px;
  height: 22px;
}

#testimonialSlider2 {
  position: relative;
  padding: 0 8px;
}

#testimonialSlider2 .owl-nav {
  margin: 0;
}

#testimonialSlider2 .owl-nav button.owl-prev,
#testimonialSlider2 .owl-nav button.owl-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  color: var(--primary-600);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

#testimonialSlider2 .owl-nav button.owl-prev {
  left: -8px;
}

#testimonialSlider2 .owl-nav button.owl-next {
  right: -8px;
}

#testimonialSlider2 .owl-nav button:hover {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600);
}

#testimonialSlider2 .owl-nav button span {
  margin-top: -3px;
}

@media (max-width: 620px) {
  #testimonialSlider2 .owl-nav button.owl-prev {
    left: -4px;
  }
  #testimonialSlider2 .owl-nav button.owl-next {
    right: -4px;
  }
}

#testimonialSlider2 .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 24px;
  margin-bottom: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#testimonialSlider2 .owl-dots::-webkit-scrollbar {
  display: none;
}

#testimonialSlider2 .owl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
}

#testimonialSlider2 .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(0, 168, 132, 0.28);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#testimonialSlider2 .owl-dot:hover span {
  background: rgba(0, 168, 132, 0.5);
}

#testimonialSlider2 .owl-dot.active span {
  width: 24px;
  height: 8px;
  border-radius: 12px;
  background: var(--primary, #00a884);
  box-shadow: 0 2px 8px rgba(0, 168, 132, 0.35);
}

@media (max-width: 576px) {
  #testimonialSlider2 .owl-dots {
    gap: 5px;
    margin-top: 18px;
  }
  #testimonialSlider2 .owl-dot span {
    width: 6px;
    height: 6px;
  }
  #testimonialSlider2 .owl-dot.active span {
    width: 18px;
    height: 6px;
    border-radius: 10px;
  }
}

/* ==============================================================
   WHY CHOOSE US
   ============================================================== */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.why__ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--primary-050);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-600);
  fill: none;
  stroke-width: 1.8;
}

.why__item h3 {
  font-size: 16.5px;
  margin-bottom: 5px;
  font-weight: bold;
}

.why__item p {
  font-size: 14px;
}

/* ==============================================================
   CLIENTS MARQUEE
   ============================================================== */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: marquee 70s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.logo-cell {
  flex: 0 0 auto;
  width: 170px;
  height: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.logo-cell img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.9;
  transition: all 0.15s ease;
}

.logo-cell:hover img {
  filter: none;
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==============================================================
   FAQ
   ============================================================== */
.faq {
  max-width: 860px;
  margin-inline: auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary-600);
  transition: transform 0.18s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  padding: 0 22px 20px;
  font-size: 15px;
}

/* ==============================================================
   CONTACT BAND
   ============================================================== */
.contact-band {
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--primary) 100%
  );
  color: #fff;
  padding: 56px 0 44px;
  position: relative;
}

.contact-band .section-title {
  color: #fff;
}

.contact-band .section-sub {
  color: rgba(255, 255, 255, 0.94);
}

.contact-tabs {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.tab {
  min-width: 220px;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tab-a {
  background: linear-gradient(
    135deg,
    rgba(0, 196, 167, 0.14),
    rgba(0, 196, 167, 0.05)
  );
  border: 1px solid rgba(0, 196, 167, 0.6);
}

.tab-b {
  background: #fff;
  border: 1px solid rgba(255, 71, 87, 0.5);
}

.tab-b:hover {
  background: rgba(255, 71, 87, 0.06);
  transform: translateY(-3px);
}

.tab .t1 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}

.tab .t2 {
  font-size: 13.5px;
  color: #009688;
}

.tab-b .apply {
  color: #ff4757;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tab .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* label.error {
  color: #e23744;
  font-size: 13px;
  display: block;
  margin: -12px 0 12px;
  font-weight: 500;
} */

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==============================================================
   FAQ SECTION STYLES (MATCHING DESIGN EXACTLY)
   ============================================================== */
#faq.section--soft {
  background-color: #eef8f6;
  padding: 80px 0;
}

#faq .section-title {
  color: #0e2a38;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  margin-bottom: 0;
}

#faq .title-bar::after {
  content: "";
  display: block;
  width: 44px;
  height: 3.5px;
  border-radius: 2px;
  background: #00b89d;
  margin: 12px auto 0;
}

#faq .section-sub {
  color: #5f6f7e;
  font-size: 16px;
  max-width: 730px;
  margin: 14px auto 44px;
  text-align: center;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq details {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.035),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: none;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  margin-bottom: 0;
}

.faq details:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 16.5px;
  font-weight: 700;
  color: #0e2a38;
  cursor: pointer;
  user-select: none;
  list-style: none;
  outline: none;
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: #00b89d;
  line-height: 1;
  margin-left: 20px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  color: #019a83;
}

.faq details p {
  padding: 0 28px 24px 28px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4b5a69;
}

@media (max-width: 620px) {
  #faq.section--soft {
    padding: 50px 0;
  }
  .faq {
    padding: 0 10px !important;
    gap: 12px;
  }
  .faq summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq summary::after {
    font-size: 20px;
    margin-left: 12px;
  }
  .faq details p {
    padding: 0 20px 20px 20px;
    font-size: 14.5px;
  }
}

/* ==============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================== */
@media (max-width: 1080px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hero Section Tablet View (768px to 960px) */
@media (min-width: 768px) and (max-width: 960px) {
  .hero {
    padding: 20px 0 30px;
  }
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
  }
  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .hero p.lead {
    font-size: 14.5px;
    margin-bottom: 18px;
  }
  .hero__ratings {
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero__ratings img {
    height: 36px;
    max-width: 180px;
  }
  .hero__cta {
    gap: 10px;
  }
  .hero__cta .btn {
    padding: 10px 18px;
    font-size: 14.5px;
  }
  .hero__art {
    order: 0;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__art svg {
    max-width: 100%;
  }
}

/* Hero Section Mobile View (max-width: 767px) */
@media (max-width: 767px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero {
    padding: 16px 0 34px;
  }
  .hero h1 {
    font-size: 28px;
    font-weight: bold;
  }
  .hero p.lead {
    font-size: 15.5px;
  }
  .hero__ratings img {
    height: 38px;
  }
  .hero__art {
    order: 2;
    max-width: 300px;
    margin: 4px auto 0;
  }
}

@media (max-width: 960px) {
  .hero__pad {
    padding-left: 20px;
    padding-right: 20px;
  }
  .statsband {
    padding: 16px 0 28px;
  }
  .statsband__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sidecards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .sidecards--right {
    justify-content: center;
  }
  .sidecards a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .sidecards img {
    width: 100%;
    max-width: 236px;
    height: auto;
  }
  .stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    background: #f4fbf9;
    border-radius: 12px;
    border: 1px solid rgba(0, 196, 167, 0.15);
  }
  .stats > div {
    flex: 1;
    text-align: center;
  }
  .stats .num {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .stats .lbl {
    font-size: 12px;
    margin-top: 2px;
    line-height: 1.25;
  }
  .why {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form {
    width: 92%;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 50px 0;
  }
  .hero {
    padding: 10px 0 28px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero__art {
    max-width: 250px;
  }
  .hero__cta {
    width: 100%;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
    text-align: center;
  }
  .grid-3,
  .grid-2,
  .steps,
  .why {
    grid-template-columns: 1fr;
  }
  .svc p {
    min-height: 0;
  }
  .contact-form {
    width: 94%;
    padding: 24px;
  }
  .tab {
    min-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card,
  .btn {
    transition: none;
  }
}
