/* =========================================
   ISHTOP — Ishchi topish page
   Dark green / black / orange / white
   ========================================= */

:root {
  --bg: #070b09;
  --panel: #0b1410;
  --panel-2: #0e1e17;
  --text: #f6f7f7;
  --muted: #b6c3be;
  --green: #0f5f43;
  --green-2: #0a3f2d;
  --orange: #ff7a18;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --r: 18px;
  --r2: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  color: var(--text);
  background:
    radial-gradient(
      1000px 800px at 15% -10%,
      rgba(15, 95, 67, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 85% 0%,
      rgba(255, 122, 24, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 50% 110%,
      rgba(15, 95, 67, 0.22),
      transparent 65%
    ),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================
   Header (same classes)
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 16px;
  background: rgba(7, 11, 9, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header__title {
  text-transform: lowercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header__title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffb15b);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.65),
    rgba(11, 20, 16, 0.55)
  );
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.header__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.header__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.header__login {
  border: 1px solid rgba(255, 122, 24, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 122, 24, 0.75)
  );
  color: #1a0f07;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  box-shadow: 0 16px 40px rgba(255, 122, 24, 0.22);
}

.header__login:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 55px rgba(255, 122, 24, 0.28);
}

.header__become {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 95, 67, 0.55);
  background: linear-gradient(
    180deg,
    rgba(15, 95, 67, 0.35),
    rgba(10, 63, 45, 0.25)
  );
  color: var(--text);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header__become:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.45);
  background: linear-gradient(
    180deg,
    rgba(15, 95, 67, 0.42),
    rgba(10, 63, 45, 0.3)
  );
}

@media (max-width: 980px) {
  .header__list {
    display: none;
  }
}

/* =========================
   Hero
   ========================= */
.findhero {
  width: min(var(--container), calc(100% - 32px));
  margin: 22px auto 0;
}

.findhero__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.findhero__left {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(
      900px 450px at 20% 20%,
      rgba(15, 95, 67, 0.55),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 90% 10%,
      rgba(255, 122, 24, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(14, 30, 23, 0.75), rgba(11, 20, 16, 0.58));
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.findhero__left::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(255, 122, 24, 0.22),
    transparent,
    rgba(15, 95, 67, 0.22),
    transparent
  );
  filter: blur(22px);
  opacity: 0.35;
  animation: heroGlow 10s linear infinite;
}

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

.findhero__left > * {
  position: relative;
  z-index: 1;
}

.findhero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.25px;
}

.findhero__badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.findhero__title {
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 950;
}

.findhero__subtitle {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  max-width: 58ch;
}

.findhero__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.findhero__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 24, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 122, 24, 0.75)
  );
  color: #1a0f07;
  font-weight: 950;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 16px 40px rgba(255, 122, 24, 0.18);
}

.findhero__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(255, 122, 24, 0.24);
}

.findhero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 247, 247, 0.92);
  font-weight: 900;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.findhero__secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.35);
  color: var(--orange);
}

.findhero__trust {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  padding: 12px;
}

.trust__num {
  display: block;
  font-weight: 950;
  font-size: 18px;
}
.trust__text {
  display: block;
  margin-top: 4px;
  color: rgba(182, 195, 190, 0.9);
  font-size: 12px;
  font-weight: 700;
}

/* Right side */
.findhero__right {
  display: grid;
  gap: 14px;
}

.heroCard {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.62),
    rgba(11, 20, 16, 0.55)
  );
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.heroCard__title {
  font-weight: 950;
  font-size: 18px;
}
.heroCard__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.heroCard__form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}
.field__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: rgba(182, 195, 190, 0.95);
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.field__input::placeholder {
  color: rgba(182, 195, 190, 0.75);
}
.field__input:focus {
  border-color: rgba(255, 122, 24, 0.45);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.1);
  transform: translateY(-1px);
}

.heroCard__btn {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 24, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 122, 24, 0.75)
  );
  color: #1a0f07;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 16px 40px rgba(255, 122, 24, 0.18);
}

.heroCard__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(255, 122, 24, 0.24);
}

.heroCard__note {
  color: rgba(182, 195, 190, 0.85);
  font-size: 12px;
  line-height: 1.5;
}

/* Mini grid */
.miniGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.mini--accent {
  border-color: rgba(255, 122, 24, 0.3);
  background: rgba(255, 122, 24, 0.08);
}

.mini__title {
  font-weight: 950;
  font-size: 14px;
}
.mini__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================
   Results
   ========================= */
.results {
  width: min(var(--container), calc(100% - 32px));
  margin: 22px auto 0;
}

.results__head {
  margin-top: 10px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(8, 12, 10, 0.65),
    rgba(8, 12, 10, 0.35)
  );
  box-shadow: var(--shadow-soft);
  padding: 18px 22px;
}

.results__title {
  font-size: 20px;
  font-weight: 950;
}
.results__subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  grid-column: span 6;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.62),
    rgba(11, 20, 16, 0.55)
  );
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card__meta {
  flex: 1;
}
.card__name {
  font-weight: 950;
  font-size: 16px;
}
.card__role {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.card__rating {
  font-weight: 950;
  color: rgba(246, 247, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  border-radius: 999px;
}

.card__tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 900;
  color: rgba(246, 247, 247, 0.9);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.tag--accent {
  border-color: rgba(255, 122, 24, 0.3);
  background: rgba(255, 122, 24, 0.1);
}

.card__desc {
  margin-top: 12px;
  color: rgba(182, 195, 190, 0.95);
  font-size: 13px;
  line-height: 1.6;
}

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

.card__price {
  font-weight: 950;
  color: rgba(246, 247, 247, 0.92);
}

.card__actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.35);
  color: var(--orange);
}

.btn--primary {
  border-color: rgba(255, 122, 24, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 122, 24, 0.75)
  );
  color: #1a0f07;
}

.btn--primary:hover {
  color: #1a0f07;
  transform: translateY(-2px);
}

.btn--ghost {
}

/* =========================
   How / Steps
   ========================= */
.how {
  width: min(var(--container), calc(100% - 32px));
  margin: 28px auto 0;
}

.how__container {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(8, 12, 10, 0.65),
    rgba(8, 12, 10, 0.35)
  );
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.how__title {
  font-size: 20px;
  font-weight: 950;
}
.how__subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
}

.step__num {
  font-weight: 950;
  font-size: 34px;
  color: rgba(255, 122, 24, 0.35);
  letter-spacing: 1px;
}

.step__title {
  margin-top: 8px;
  font-weight: 950;
  font-size: 16px;
}
.step__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   FAQ
   ========================= */
.faq {
  width: min(var(--container), calc(100% - 32px));
  margin: 22px auto 60px;
}

.faq__container {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.55),
    rgba(11, 20, 16, 0.45)
  );
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.faq__title {
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 12px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 14px 14px;
  margin-top: 12px;
}

.faq__q {
  cursor: pointer;
  font-weight: 950;
  color: rgba(246, 247, 247, 0.95);
}

.faq__a {
  margin-top: 10px;
  color: rgba(182, 195, 190, 0.95);
  line-height: 1.6;
  font-size: 13px;
}

/* =========================
   Footer (same classes)
   ========================= */
.footer {
  margin-top: 50px;
  border-top: 1px solid var(--stroke);
  background:
    radial-gradient(
      900px 400px at 20% 20%,
      rgba(15, 95, 67, 0.35),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 85% 20%,
      rgba(255, 122, 24, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(11, 20, 16, 0.85), rgba(7, 11, 9, 0.95));
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(255, 122, 24, 0.22),
    transparent,
    rgba(15, 95, 67, 0.22),
    transparent
  );
  filter: blur(22px);
  opacity: 0.35;
  animation: footerGlow 10s linear infinite;
}

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

.footer__container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 26px;
  display: grid;
  gap: 22px;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr;
}

.footer__brand {
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.55),
    rgba(11, 20, 16, 0.4)
  );
  box-shadow: var(--shadow-soft);
}

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

.footer__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffb15b);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.footer__name {
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  font-size: 18px;
}

.footer__desc {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer__desc--sm {
  font-size: 13px;
  margin-bottom: 12px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 247, 247, 0.9);
  font-weight: 700;
  font-size: 12px;
}

.footer__badge--accent {
  border-color: rgba(255, 122, 24, 0.35);
  background: rgba(255, 122, 24, 0.1);
}

.footer__col {
  padding: 10px 6px;
}

.footer__title {
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 24, 0));
}

.footer__list {
  display: grid;
  gap: 10px;
}

.footer__link {
  color: rgba(246, 247, 247, 0.82);
  font-weight: 650;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.footer__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 95, 67, 0.9);
  box-shadow: 0 0 0 6px rgba(15, 95, 67, 0.1);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.footer__link:hover {
  color: var(--orange);
  transform: translateX(3px);
}
.footer__link:hover::before {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.1);
}

/* Newsletter */
.footer__newsletter {
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(14, 30, 23, 0.55),
    rgba(11, 20, 16, 0.4)
  );
  box-shadow: var(--shadow-soft);
}

.footer__form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer__input {
  flex: 1;
  min-width: 0;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  outline: none;
}

.footer__btn {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 24, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 122, 24, 0.75)
  );
  color: #1a0f07;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(255, 122, 24, 0.18);
  white-space: nowrap;
}

.footer__note {
  margin-top: 10px;
  color: rgba(182, 195, 190, 0.8);
  font-size: 12px;
  line-height: 1.5;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copy {
  color: rgba(182, 195, 190, 0.9);
  font-size: 13px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(246, 247, 247, 0.9);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.footer__icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.35);
  background: rgba(255, 122, 24, 0.1);
  color: var(--orange);
}

/* =========================
   Scroll reveal helper
   ========================= */
.findhero__left,
.heroCard,
.mini,
.card,
.step,
.faq__item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 980px) {
  .findhero__container {
    grid-template-columns: 1fr;
  }
  .cards .card {
    grid-column: span 12;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .miniGrid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .footer__newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .footer__form {
    flex-direction: column;
  }
  .footer__btn {
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
