/* ═══════════════════════════════════════════════════
   Tax2Win — Homepage Stylesheet
   Scoped under .hp-* to avoid navbar.css conflicts.
   Inherits CSS variables from navbar.css (:root).
   Load AFTER navbar.css.
═══════════════════════════════════════════════════ */

/* ── Page background (body already set by navbar.css) ── */
.hp-page { background: #f9f4f0; }

/* ══════════════════════════
   SHARED UTILITIES
══════════════════════════ */
.hp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-section {
  padding: 72px 0;
}

.hp-section--gray { background: #f5f0eb; }
.hp-section--white { background: var(--white); }
.hp-section--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.hp-section--dark {
  background: var(--text-dark);
}

.hp-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: var(--orange-muted);
  color: var(--orange-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 14px;
}
.hp-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hp-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.5px;
}
.hp-title em { font-style: normal; color: var(--orange); }

.hp-subtitle {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 560px;
}

.hp-center { text-align: center; }
.hp-center .hp-subtitle { margin: 10px auto 0; }

/* Buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hp-btn--primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,107,26,.38);
}
.hp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,26,.50);
}
.hp-btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.hp-btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}
.hp-btn--white {
  background: var(--white);
  color: var(--orange);
}
.hp-btn--white:hover {
  background: var(--orange-pale);
}
.hp-btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.hp-btn--ghost:hover {
  background: rgba(255,255,255,.22);
}
.hp-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════
   1. HERO
══════════════════════════ */
.hp-hero {
  background: var(--white);
  padding: 64px 0 56px;
  overflow: hidden;
  position: relative;
}
.hp-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,140,66,.13) 0%, transparent 70%);
  pointer-events: none;
}

.hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hp-hero__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 18px;
}
.hp-hero__title em { font-style: normal; color: var(--orange); }

.hp-hero__sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.hp-hero__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hp-hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-hero__stat-icon {
  width: 36px; height: 36px;
  background: var(--orange-muted);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-hero__stat-icon svg { width: 18px; height: 18px; stroke: var(--orange); }
.hp-hero__stat-text strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
}
.hp-hero__stat-text span {
  font-size: 12px;
  color: var(--text-light);
}

.hp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero cards */
.hp-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-hero__card {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(255,107,26,.08);
  transition: transform .2s, box-shadow .2s;
}
.hp-hero__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,107,26,.14);
}
.hp-hero__card--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-color: var(--orange-dark);
}
.hp-hero__card--orange h3,
.hp-hero__card--orange p { color: var(--white) !important; }

.hp-hero__card-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hp-hero__card--orange .hp-hero__card-icon { background: rgba(255,255,255,.2); }
.hp-hero__card-icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.hp-hero__card--orange .hp-hero__card-icon svg { stroke: var(--white); }

.hp-hero__card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hp-hero__card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ══════════════════════════
   2. HOW IT WORKS
══════════════════════════ */
.hp-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
}
.hp-steps__grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-muted), var(--orange), var(--orange-muted));
  z-index: 0;
}

.hp-step {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-lg);
  padding: 28px 16px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hp-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255,107,26,.14);
  border-color: var(--orange);
}
.hp-step__num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 16px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255,107,26,.35);
}
.hp-step h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.hp-step p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════
   3. SERVICES
══════════════════════════ */
.hp-services__tabs {
  display: flex;
  gap: 10px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}
.hp-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--orange-muted);
  background: var(--white);
  color: var(--text-mid);
  transition: all .2s;
}
.hp-tab.active,
.hp-tab:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.hp-services__highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.hp-service-card--big {
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: box-shadow .2s, transform .2s;
}
.hp-service-card--big:hover {
  box-shadow: 0 8px 28px rgba(255,107,26,.14);
  transform: translateY(-3px);
}
.hp-service-card--big h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hp-service-card--big p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 20px;
}

.hp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hp-service-card {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.hp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255,107,26,.12);
  border-color: var(--orange);
}
.hp-service-card__icon {
  width: 44px; height: 44px;
  background: var(--orange-muted);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hp-service-card__icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.hp-service-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hp-service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}
.hp-service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.hp-service-card__link svg { width: 13px; height: 13px; stroke: currentColor; }

/* ══════════════════════════
   4. WHY CHOOSE US
══════════════════════════ */
.hp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}
.hp-why__visual {
  background: var(--orange-pale);
  border-radius: 24px;
  border: 1.5px solid var(--orange-muted);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-why__stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1.5px solid var(--orange-muted);
}
.hp-why__stat-row-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-why__stat-row-icon svg { width: 20px; height: 20px; stroke: white; }
.hp-why__stat-row-text strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dark);
}
.hp-why__stat-row-text span { font-size: 12.5px; color: var(--text-light); }

.hp-why__list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.hp-why__check {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hp-why__check svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; }

/* ══════════════════════════
   5. TAX STATUS CHECKER
══════════════════════════ */
.hp-checker {
  background: linear-gradient(135deg, #1A1A2E 0%, #2a1f3d 100%);
  padding: 64px 0;
}
.hp-checker__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hp-checker h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hp-checker p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 28px;
}
.hp-checker__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hp-checker__input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.hp-checker__input::placeholder { color: rgba(255,255,255,.45); }
.hp-checker__input:focus { border-color: var(--orange); }

.hp-checker__visual {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px;
}
.hp-checker__visual-title {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hp-checker__bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hp-checker__bar-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  width: 90px;
  flex-shrink: 0;
}
.hp-checker__bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
}
.hp-checker__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  border-radius: 4px;
}
.hp-checker__bar-val {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange-light);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ══════════════════════════
   6. TESTIMONIALS
══════════════════════════ */
.hp-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.hp-testi-card {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.hp-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,26,.12);
}
.hp-testi__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.hp-testi__stars svg { width: 16px; height: 16px; fill: var(--orange); stroke: none; }
.hp-testi-card blockquote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.hp-testi__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-testi__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  flex-shrink: 0;
}
.hp-testi__author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.hp-testi__author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ══════════════════════════
   7. POPULAR GUIDES
══════════════════════════ */
.hp-guides__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.hp-guides__list { display: flex; flex-direction: column; gap: 0; }
.hp-guide-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--orange-muted);
  text-decoration: none;
  transition: padding-left .2s, color .2s;
}
.hp-guide-item:hover { padding-left: 6px; }
.hp-guide-item:hover .hp-guide-item__title { color: var(--orange); }
.hp-guide-item__num {
  width: 32px; height: 32px;
  background: var(--orange-muted);
  color: var(--orange-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.hp-guide-item:hover .hp-guide-item__num {
  background: var(--orange);
  color: var(--white);
}
.hp-guide-item__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  transition: color .2s;
}
.hp-guide-item__arrow {
  margin-left: auto;
  width: 18px; height: 18px;
  stroke: var(--text-light);
  flex-shrink: 0;
  transition: stroke .2s, transform .2s;
}
.hp-guide-item:hover .hp-guide-item__arrow {
  stroke: var(--orange);
  transform: translateX(3px);
}

.hp-guides__visual {
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-muted);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 90px;
}
.hp-guides__visual h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.hp-guides__visual p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 20px;
}
.hp-guides__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hp-tag {
  padding: 5px 12px;
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ══════════════════════════
   8. FAQ
══════════════════════════ */
.hp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-top: 48px;
  align-items: start;
}
.hp-faq__list { display: flex; flex-direction: column; gap: 10px; }

.hp-faq-item {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.hp-faq-item.open { border-color: var(--orange); }

.hp-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.hp-faq-item.open .hp-faq-item__q { color: var(--orange); }
.hp-faq-item__q-icon {
  width: 22px; height: 22px;
  background: var(--orange-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
}
.hp-faq-item.open .hp-faq-item__q-icon {
  background: var(--orange);
  transform: rotate(45deg);
}
.hp-faq-item__q-icon svg { width: 12px; height: 12px; stroke: var(--orange); }
.hp-faq-item.open .hp-faq-item__q-icon svg { stroke: var(--white); }

.hp-faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.hp-faq-item.open .hp-faq-item__a { display: block; }

/* ══════════════════════════
   9. CTA BANNER
══════════════════════════ */
.hp-cta {
  padding: 72px 0;
}
.hp-cta__inner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-cta__inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.hp-cta__inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hp-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.hp-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 460px;
}
.hp-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════
   10. ASSOCIATIONS
══════════════════════════ */
.hp-assoc__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hp-assoc__logo {
  padding: 14px 28px;
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.hp-assoc__logo:hover {
  box-shadow: 0 6px 20px rgba(255,107,26,.12);
  transform: translateY(-2px);
}
.hp-assoc__logo-dot {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hp-assoc__logo-dot svg { width: 18px; height: 18px; }
.hp-assoc__logo-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
}



@media (max-width: 768px) {
  .hp-section { padding: 48px 0; }
  .hp-hero__grid { grid-template-columns: 1fr; }
  .hp-hero__cards { flex-direction: row; }
  .hp-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-steps__grid::before { display: none; }
  .hp-services__highlight { grid-template-columns: 1fr; }
  .hp-services__grid { grid-template-columns: 1fr; }
  .hp-why__grid { grid-template-columns: 1fr; }
  .hp-checker__inner { grid-template-columns: 1fr; }
  .hp-testi__grid { grid-template-columns: 1fr; }
  .hp-guides__grid { grid-template-columns: 1fr; }
  .hp-faq__grid { grid-template-columns: 1fr; }
  .hp-cta__inner { grid-template-columns: 1fr; padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hp-wrap { padding: 0 16px; }
  .hp-steps__grid { grid-template-columns: 1fr; }
  .hp-hero__cards { flex-direction: column; }
  .hp-footer__bottom { flex-direction: column; text-align: center; }
}