/* --- Global Resets & Variables --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.5;
}

.hit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* --- Navigation --- */

.hit-logo {
  font-size: 22px;
  font-weight: bold;
  color: #0b1a30;
}

.hit-logo-blue {
  color: #0052cc;
}

.hit-logo small {
  display: block;
  font-size: 10px;
  font-weight: normal;
  color: #64748b;
}

.hit-nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.hit-nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 14px;
}

.hit-btn-nav {
  background-color: #0f172a;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* --- Hero Section Background --- */
.hit-hero-section {
  /* background: linear-gradient(135deg, #020b18 0%, #081931 100%); */
  background: linear-gradient(266deg, #020b1852 0%, #000000f2 100%);
  color: white;
  padding-bottom: 140px;
  position: relative;
}

/* --- Hero Layout --- */
.hit-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: center;
}

.hit-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0;
}

.hit-hero-desc {
  font-size: 16px;
  color: #ca9924;
  margin-bottom: 20px;
}

.hit-hero-subdesc {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hit-hero-btns {
  display: flex;
  gap: 16px;
}

.hit-btn-primary {
  background-color: #f59e0b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hit-btn-outline {
  border: 1px solid #f59e0b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* --- Dashboard Mockup --- */
.hit-db-card {
  background-color: #0b1528;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.hit-db-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hit-db-header h3 {
  font-size: 18px;
}

.hit-db-chart-section {
  background-color: #070d1a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.hit-db-chart-section h4 {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.hit-chart-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hit-donut-chart {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#10b981 0% 78%, #f59e0b 78% 90%, #ef4444 90% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hit-donut-text {
  width: 80px;
  height: 80px;
  background-color: #070d1a;
  border-radius: 50%;
  text-align: center;
  padding-top: 18px;
  font-size: 18px;
}

.hit-donut-text small {
  font-size: 10px;
  color: #94a3b8;
}

.hit-chart-legends {
  list-style: none;
  flex-grow: 1;
}

.hit-chart-legends li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.dot.green {
  background-color: #10b981;
}

.dot.orange {
  background-color: #f59e0b;
}

.dot.red {
  background-color: #ef4444;
}

.hit-db-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hit-widget {
  background-color: #070d1a;
  border-radius: 8px;
  padding: 14px;
}

.hit-widget h5 {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.hit-widget-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hit-widget-hd a {
  font-size: 11px;
  color: #f59e0b;
  text-decoration: none;
}

.hit-activities {
  list-style: none;
}

.hit-activities li {
  display: flex;
  gap: 10px;
  font-size: 11px;
  margin-bottom: 10px;
}

.act-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.act-icon.green {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.act-icon.orange {
  background-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.act-icon.red {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.hit-activities small {
  display: block;
  color: #64748b;
}

.hit-prefs {
  list-style: none;
  font-size: 11px;
}

.hit-prefs li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.txt-green {
  color: #10b981;
}

.txt-orange {
  color: #f59e0b;
}

.hit-btn-widget {
  width: 100%;
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
}

/* --- Floating Trust Badges --- */
.hit-trust-badges {
  position: absolute;
  bottom: -201px;
  left: 24px;
  right: 24px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 14%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px;
  gap: 20px;
  border: 1px solid #f1f5f9;
  font-family: emoji;
}

.hit-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge-icon {
  font-size: 24px;
  background-color: #e2bc2f29;
  padding: 10px;
  border-radius: 50%;
}

.hit-badge strong {
  font-size: 14px;
  /* color: #0f172a; */
  color: #f59e0b;

  display: block;
}

.hit-badge p {
  font-size: 14px;
  color: #64748b;
}

/* --- Section Global Layout --- */
.hit-section {
  padding: 120px 0 80px 0;
}

.hit-bg-light {
  /* background-color: #f8fafc; */
  background-color: #ddb12814;
}

.hit-bg-white {
  background-color: #ffffff;
}

.hit-section-tag {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.hit-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 48px;
}

/* --- Solutions Grid (5 Cards) --- */
.hit-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.hit-sol-card {
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.hit-sol-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #3b82f6;
}

.hit-sol-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  min-height: 48px;
}

.hit-sol-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* --- Organizations Grid (4 Cards) --- */
.hit-orgs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hit-org-card {
  background-color: white;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 20px rgb(0 0 0 / 45%);
}

.hit-org-icon-wrapper {
  width: 251px;
  height: 136px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 67px;
  margin: 0 auto 20px auto;
}

.hit-org-icon-wrapper.purple {
  background-color: #f5f3ff;
  color: #7c3aed;
}

.hit-org-icon-wrapper.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.hit-org-icon-wrapper.blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.hit-org-icon-wrapper.orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.hit-org-card h3 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 12px;
}

.hit-org-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* --- CTA Bottom Band --- */
.hit-cta-band {
  /* background: linear-gradient(135deg, #020b18 0%, #06152b 100%); */
  background: linear-gradient(355deg, #000000fc 0%, #0000008a 100%);
  color: white;
  padding: 60px 0;
}

.hit-cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hit-cta-tag {
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.hit-cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hit-cta-text p {
  color: #94a3b8;
  font-size: 14px;
}

.hit-btn-white {
  background-color: white;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hit-solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hit-orgs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hit-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    position: static;
    margin-top: 40px;
  }

  .hit-hero-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hit-hero-content {
    grid-template-columns: 1fr;
  }

  .hit-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hit-solutions-grid {
    grid-template-columns: 1fr;
  }

  .hit-orgs-grid {
    grid-template-columns: 1fr;
  }

  .hit-cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .hit-hero-title {
    font-size: 38px;
  }
}

/* ---------------------------------------------------------------- */

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

/* ─── SECTION WRAPPER ─── */
.hit-section {
  padding: 80px 0;
}

.hit-bg-light {
  background-color: #dcc17b3b;
}

.hit-container {
  max-width: 1348px;
  margin: 0 auto;
  padding: 0 24px;
}

.hit-section-tag {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hit-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 48px;
}

/* ─── SOLUTIONS GRID ─── */
.hit-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* ─── BLOG CARD ─── */
.hit-sol-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
}

.hit-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
}

/* ─── CARD IMAGE BOX ─── */
.hit-sol-imgbox {
  height: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hit-sol-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hit-sol-card:hover .hit-sol-imgbox img {
  transform: scale(1.07);
}

/* overlay gradient */
.hit-sol-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

/* hover link icon in center */
/* .hit-sol-img-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.7);
            width: 42px;
            height: 42px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s, transform 0.25s;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        } */

/* .hit-sol-img-icon svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: #f59e0b;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        } */

/* .hit-sol-card:hover .hit-sol-img-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        } */

/* ─── CARD BODY ─── */
.hit-sol-body {
  padding: 16px 18px 0;
  flex: 1;
}

.hit-sol-meta {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.hit-sol-meta span {
  color: #f59e0b;
  font-weight: 600;
}

.hit-sol-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.hit-sol-emoji {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hit-sol-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  font-family: emoji;
}

/* ─── CARD FOOTER ─── */
.hit-sol-footer {
  margin: 14px 18px 16px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  color: #94a3b8;
  gap: 4px;
}

.hit-sol-footer svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hit-solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .hit-solutions-grid {
    grid-template-columns: 1fr;
  }

  .hit-section-title {
    font-size: 24px;
  }
}
