@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.httc-bottom-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.httc-bottom-content,
.httc-bottom-content div,
.httc-bottom-content section,
.httc-bottom-content article {
  box-sizing: border-box;
}

.httc-bottom-content .httc-section {
  position: relative;
  width: 100%;
}

.httc-bottom-content .httc-section-white {
  background: #ffffff;
}

.httc-bottom-content .httc-section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.httc-bottom-content .httc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.httc-bottom-content .httc-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.httc-bottom-content .httc-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 197, 94, 0.1));
  color: #036985;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.httc-bottom-content .httc-section-head h2 {
  margin: 0;
  color: #111827;
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
}

.httc-bottom-content .httc-section-head p {
  margin: 16px auto 0;
  color: #5b6475;
  line-height: 1.7;
}

.httc-bottom-content .httc-grid {
  display: grid;
  align-items: stretch;
}

.httc-bottom-content .httc-card,
.httc-bottom-content .httc-trust-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.httc-bottom-content .httc-card::before,
.httc-bottom-content .httc-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #22c55e);
  opacity: 0.9;
}

.httc-bottom-content .httc-card:hover,
.httc-bottom-content .httc-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.httc-bottom-content .httc-card h3,
.httc-bottom-content .httc-trust-card h3,
.httc-bottom-content .httc-step-content h3 {
  margin: 0;
  color: #111827;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: 0;
}

.httc-bottom-content .httc-card p,
.httc-bottom-content .httc-trust-card p,
.httc-bottom-content .httc-step-content p {
  margin: 10px 0 0;
  color: #606a7c;
  line-height: 1.65;
}

.httc-bottom-content .httc-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f7ff, #ecfdf3);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.16);
}

.httc-bottom-content .httc-icon::before,
.httc-bottom-content .httc-icon::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease;
}

.httc-bottom-content .httc-card:hover .httc-icon::before,
.httc-bottom-content .httc-card:hover .httc-icon::after {
  transform: translateY(-2px);
}

.httc-bottom-content .httc-icon-code::before {
  width: 18px;
  height: 12px;
  left: 14px;
  top: 17px;
  border-left: 3px solid #0891b2;
  border-right: 3px solid #16a34a;
  transform: skewX(-14deg);
}

.httc-bottom-content .httc-icon-copy::before {
  width: 16px;
  height: 18px;
  left: 16px;
  top: 14px;
  border: 2px solid #0891b2;
  border-radius: 5px;
}

.httc-bottom-content .httc-icon-focus::before {
  width: 20px;
  height: 20px;
  left: 13px;
  top: 13px;
  border: 2px solid #16a34a;
  border-radius: 50%;
}

.httc-bottom-content .httc-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #0891b2;
  border-radius: 50%;
  border-left-color: transparent;
}

.httc-bottom-content .httc-icon-shield::before {
  width: 20px;
  height: 24px;
  left: 13px;
  top: 11px;
  background: linear-gradient(135deg, #06b6d4, #22c55e);
  clip-path: polygon(50% 0, 90% 16%, 82% 72%, 50% 100%, 18% 72%, 10% 16%);
}

.httc-bottom-content .httc-icon-seo::before {
  width: 22px;
  height: 14px;
  left: 12px;
  top: 16px;
  border-bottom: 3px solid #16a34a;
  border-left: 3px solid #0891b2;
  transform: rotate(-8deg);
}

.httc-bottom-content .httc-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.httc-bottom-content .httc-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fcff 100%);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.httc-bottom-content .httc-step-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16), rgba(14, 165, 233, 0));
}

.httc-bottom-content .httc-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.34);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.httc-bottom-content .httc-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #0891b2, #22c55e);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.28);
}

.httc-bottom-content .httc-card-soft-accent {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.httc-bottom-content .httc-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecfeff;
  color: #047481;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.18);
}

.httc-bottom-content .httc-trust-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #22c55e);
  position: relative;
  box-shadow: 0 14px 26px rgba(14, 165, 233, 0.22);
}

.httc-bottom-content .httc-trust-mark::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 10px;
  height: 17px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(42deg);
}

.httc-bottom-content .httc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.httc-bottom-content .httc-reveal.httc-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 320px) and (max-width: 374px) {
  .httc-bottom-content .httc-section {
    padding: 48px 0;
  }

  .httc-bottom-content .httc-container {
    padding: 0 14px;
  }

  .httc-bottom-content .httc-section-head h2 {
    font-size: 26px;
  }

  .httc-bottom-content .httc-section-head p {
    font-size: 14px;
  }

  .httc-bottom-content .httc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .httc-bottom-content .httc-card,
  .httc-bottom-content .httc-trust-card {
    padding: 24px 20px;
  }

  .httc-bottom-content .httc-card h3,
  .httc-bottom-content .httc-trust-card h3,
  .httc-bottom-content .httc-step-content h3 {
    font-size: 18px;
  }

  .httc-bottom-content .httc-card p,
  .httc-bottom-content .httc-trust-card p,
  .httc-bottom-content .httc-step-content p {
    font-size: 14px;
  }

  .httc-bottom-content .httc-steps {
    gap: 16px;
    margin-top: 28px;
  }

  .httc-bottom-content .httc-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .httc-bottom-content .httc-step-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .httc-bottom-content .httc-section {
    padding: 54px 0;
  }

  .httc-bottom-content .httc-container {
    padding: 0 18px;
  }

  .httc-bottom-content .httc-section-head h2 {
    font-size: 29px;
  }

  .httc-bottom-content .httc-section-head p {
    font-size: 15px;
  }

  .httc-bottom-content .httc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .httc-bottom-content .httc-card,
  .httc-bottom-content .httc-trust-card {
    padding: 26px 22px;
  }

  .httc-bottom-content .httc-card h3,
  .httc-bottom-content .httc-trust-card h3,
  .httc-bottom-content .httc-step-content h3 {
    font-size: 19px;
  }

  .httc-bottom-content .httc-card p,
  .httc-bottom-content .httc-trust-card p,
  .httc-bottom-content .httc-step-content p {
    font-size: 15px;
  }

  .httc-bottom-content .httc-steps {
    gap: 18px;
    margin-top: 30px;
  }

  .httc-bottom-content .httc-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px;
  }

  .httc-bottom-content .httc-step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .httc-bottom-content .httc-section {
    padding: 60px 0;
  }

  .httc-bottom-content .httc-container {
    padding: 0 22px;
  }

  .httc-bottom-content .httc-section-head h2 {
    font-size: 32px;
  }

  .httc-bottom-content .httc-section-head p {
    font-size: 16px;
  }

  .httc-bottom-content .httc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .httc-bottom-content .httc-card,
  .httc-bottom-content .httc-trust-card {
    padding: 28px 24px;
  }

  .httc-bottom-content .httc-card h3,
  .httc-bottom-content .httc-trust-card h3,
  .httc-bottom-content .httc-step-content h3 {
    font-size: 20px;
  }

  .httc-bottom-content .httc-card p,
  .httc-bottom-content .httc-trust-card p,
  .httc-bottom-content .httc-step-content p {
    font-size: 15.5px;
  }

  .httc-bottom-content .httc-steps {
    gap: 20px;
    margin-top: 34px;
  }

  .httc-bottom-content .httc-step-card {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .httc-bottom-content .httc-step-number {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .httc-bottom-content .httc-section {
    padding: 76px 0;
  }

  .httc-bottom-content .httc-container {
    padding: 0 28px;
  }

  .httc-bottom-content .httc-section-head h2 {
    font-size: 40px;
  }

  .httc-bottom-content .httc-section-head p {
    font-size: 17px;
  }

  .httc-bottom-content .httc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .httc-bottom-content .httc-card,
  .httc-bottom-content .httc-trust-card {
    padding: 30px 26px;
  }

  .httc-bottom-content .httc-card h3,
  .httc-bottom-content .httc-trust-card h3,
  .httc-bottom-content .httc-step-content h3 {
    font-size: 21px;
  }

  .httc-bottom-content .httc-card p,
  .httc-bottom-content .httc-trust-card p,
  .httc-bottom-content .httc-step-content p {
    font-size: 16px;
  }

  .httc-bottom-content .httc-steps {
    gap: 22px;
    margin-top: 42px;
  }

  .httc-bottom-content .httc-step-card {
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 32px 30px;
  }

  .httc-bottom-content .httc-step-number {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .httc-bottom-content .httc-section {
    padding: 92px 0;
  }

  .httc-bottom-content .httc-container {
    padding: 0 32px;
  }

  .httc-bottom-content .httc-section-head h2 {
    font-size: 46px;
  }

  .httc-bottom-content .httc-section-head p {
    font-size: 18px;
  }

  .httc-bottom-content .httc-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .httc-bottom-content .httc-grid {
    gap: 24px;
    margin-top: 46px;
  }

  .httc-bottom-content .httc-card,
  .httc-bottom-content .httc-trust-card {
    padding: 32px 28px;
  }

  .httc-bottom-content .httc-card h3,
  .httc-bottom-content .httc-trust-card h3,
  .httc-bottom-content .httc-step-content h3 {
    font-size: 22px;
  }

  .httc-bottom-content .httc-card p,
  .httc-bottom-content .httc-trust-card p,
  .httc-bottom-content .httc-step-content p {
    font-size: 16px;
  }

  .httc-bottom-content .httc-steps {
    gap: 22px;
    margin-top: 46px;
  }

  .httc-bottom-content .httc-step-card {
    grid-template-columns: auto 1fr;
    gap: 26px;
    padding: 34px 36px;
  }

  .httc-bottom-content .httc-step-number {
    width: 66px;
    height: 66px;
    font-size: 19px;
  }
}