    :root {
      --dark: #06111f;
      --dark-2: #0b1d2e;
      --dark-3: #10263b;
      --light: #f6f8fb;
      --white: #ffffff;
      --text: #101828;
      --muted: #667085;
      --muted-dark: #aab6c5;
      --border: #e5e7eb;
      --border-dark: rgba(255,255,255,0.12);
      --orange: #ff655b;
      --orange-dark: #ff655b;
      --blue: #3977ff;
      --green: #12b76a;
      --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
      --radius: 18px;
      --max: 1220px;
    }

    .dashboard {
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border: 1px solid var(--border-dark);
      border-radius: 28px;
      padding: 16px;
      box-shadow: 0 34px 90px rgba(0,0,0,0.34);
    }

    .dashboard-shell {
      background: #081727;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 22px;
      overflow: hidden;
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
    }

    .dashboard-title {
      color: #e8eef8;
      font-size: 13px;
      font-weight: 800;
    }

    .dashboard-body {
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .dash-card {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 16px;
      padding: 16px;
      min-height: 128px;
    }

    .dash-card.large {
      grid-column: span 2;
    }

    .dash-label {
      color: #9fb1c7;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .dash-value {
      color: var(--white);
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .progress {
      height: 8px;
      background: rgba(255,255,255,0.09);
      border-radius: 999px;
      overflow: hidden;
    }

    .progress span {
      display: block;
      height: 100%;
      width: 72%;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      border-radius: 999px;
    }

    .status-list {
      display: grid;
      gap: 9px;
      margin-top: 10px;
    }

    .status-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      color: #c6d1df;
      font-size: 13px;
    }

    .status {
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(18,183,106,0.12);
      color: #7ee0ae;
      font-size: 11px;
      font-weight: 800;
    }

    .status.warn {
      background: rgba(255,106,61,0.14);
      color: #ffb49b;
    }

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

    .mini-box {
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 12px;
      padding: 10px;
      color: #dce6f4;
      font-size: 12px;
      font-weight: 750;
      background: rgba(255,255,255,0.045);
    }

    .dashboard,
    .dashboard *,
    .dashboard *::before,
    .dashboard *::after {
      box-sizing: border-box;
    }

    .dashboard {
      width: 100%;
      max-width: 520px;
      margin-inline: auto;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border: 1px solid var(--border-dark);
      border-radius: 28px;
      padding: 16px;
      box-shadow: 0 34px 90px rgba(0,0,0,0.34);
    }

    .dashboard-shell {
      width: 100%;
      background: #081727;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 22px;
      overflow: hidden;
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      gap: 8px;
    }

    .window-dots {
      display: flex;
      gap: 7px;
      flex-shrink: 0;
    }

    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      flex-shrink: 0;
    }

    .dashboard-title {
      color: #e8eef8;
      font-size: clamp(11px, 1vw + 8px, 13px);
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .dashboard-body {
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .dash-card {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 16px;
      padding: 16px;
      min-height: 128px;
      min-width: 0; /* allows grid item to shrink below content size */
    }

    .dash-card.large {
      grid-column: span 2;
    }

    .dash-label {
      color: #9fb1c7;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .dash-value {
      color: var(--white);
      font-size: clamp(15px, 1.2vw + 12px, 20px);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-top: 14px;
    }

    .mini-box {
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 12px;
      padding: 10px;
      color: #dce6f4;
      font-size: clamp(10px, 0.8vw + 8px, 12px);
      font-weight: 750;
      background: rgba(255,255,255,0.045);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Internal breakpoint: restack instead of overflowing at narrow/zoomed widths */
    @media (max-width: 480px) {
      .dashboard-body {
        grid-template-columns: 1fr;
      }
      .dash-card.large {
        grid-column: span 1;
      }
      .mini-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Compact hero for laptop screens (100% zoom, ~800-950px tall) */
@media (min-width: 992px) and (max-height: 950px) {
  .display-4 {
    font-size: 2.5rem !important; /* was ~3.5rem */
    margin-bottom: 0.75rem !important;
  }

  .fs-3 {
    font-size: 1.35rem !important; /* was 1.75rem */
    margin-bottom: 0.75rem !important;
  }

  .dashboard {
    padding: 12px;
  }

  .dashboard-top {
    padding: 12px 16px;
  }

  .dashboard-body {
    padding: 14px;
    gap: 10px;
  }

  .dash-card {
    padding: 12px;
    min-height: 96px; /* was 128px */
  }

  .dash-value {
    font-size: 17px; /* was 20px */
    margin-bottom: 8px;
  }

  .mini-grid {
    margin-top: 10px;
    gap: 6px;
  }

  .mini-box {
    padding: 7px;
    font-size: 11px;
  }

  .status-list {
    gap: 6px;
    margin-top: 6px;
  }
}

/* Also tighten the outer section padding at this size, overriding Bootstrap's pt-md-5/pb-md-5 */
@media (min-width: 992px) and (max-height: 950px) {
  .container.row.align-items-center,
  .row.align-items-center.pt-4.pt-md-5.pb-4.pb-md-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
.contact-section-new {
  background-color: #011226;
  padding: 5rem 1rem;
  color: #fff;
}

.contact-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
}

.contact-subtext {
  color: #9aa7b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #dfe4ea;
  font-size: 0.98rem;
}

.check-icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form-card {
  background-color: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.form-label-new {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.form-control-new {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control-new::placeholder { color: #7d8a9a; }

.form-control-new:focus {
  outline: none;
  border-color: #FF655D;
  background-color: rgba(255, 255, 255, 0.09);
}

select.form-control-new {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'><path d='M1.5 5l6.5 6 6.5-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #FF8A65, #FF5C4D);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .5em 1em;
  border-radius: 28px;
  transition: opacity 0.2s ease;
}

.contact-submit-btn:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .contact-heading { font-size: 1.8rem; }
  .contact-form-card { padding: 1.5rem; }
}

.hero-eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#ff6a3d;
}

.hero-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color:#ffffff;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  min-height:46px;
  text-decoration:none;
  transition:.2s ease;
}
.hero-btn-secondary:hover{
  background: rgba(255,255,255,0.14);
  color:#fff;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius:999px;
  color:#d9e3f2;
  font-size:13px;
  font-weight:650;
}
.hero-pill-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#12b76a;
}

.hero-gradient-bg{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(57,119,255,0.28), transparent 34%),
    #011226;
}

.hero-gradient-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-gradient-bg > .container{
  position: relative;
  z-index: 1;
}

/* Hero CTA buttons — equal full width on mobile, auto on desktop */
.hero-cta-group .cta-buttons {
  justify-content: center;
}

@media (max-width: 767.98px) {
  .hero-cta-group {
    width: 100%;
    max-width: 100%;
  }

  .hero-cta-group .cta-buttons {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .hero-cta-group .cta-buttons {
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .dashboard-body { grid-template-columns: 1fr; }
  .dash-card.large { grid-column: span 1; }
  .mini-grid { grid-template-columns: 1fr; }
}

/* Registration journey hero visual (city/service pages) */
.hero-reg-visual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-reg-visual-shell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.hero-reg-location {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-reg-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff655b;
  background: rgba(255, 101, 91, 0.14);
  border: 1px solid rgba(255, 101, 91, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero-reg-visual-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hero-reg-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-reg-progress-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(1, 18, 38, 0.95) 58%, transparent 59%),
    conic-gradient(#ff655b 0 270deg, rgba(255, 255, 255, 0.14) 270deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-reg-progress-value {
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
}

.hero-reg-progress-copy strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-reg-progress-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.hero-reg-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-reg-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-reg-step-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-reg-step-title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-reg-step-state {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.hero-reg-step.is-done {
  border-color: rgba(255, 101, 91, 0.28);
  background: rgba(255, 101, 91, 0.08);
}

.hero-reg-step.is-done .hero-reg-step-marker {
  color: #fff;
  background: #ff655b;
  border-color: #ff655b;
}

.hero-reg-step.is-done .hero-reg-step-state {
  color: #ff9b95;
}

.hero-reg-step.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.hero-reg-step.is-active .hero-reg-step-marker {
  color: #011226;
  background: #fff;
  border-color: #fff;
}

.hero-reg-step.is-active .hero-reg-step-state {
  color: #ffd2cf;
}

.hero-reg-visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.hero-reg-visual-footer strong {
  color: #fff;
  font-size: 0.92rem;
}

.trivandrum-reg-services .services-step {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.trivandrum-reg-services .services-specialist-card {
  background: linear-gradient(135deg, #011226 0%, #0a2540 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.trivandrum-reg-services .specialist-label,
.trivandrum-reg-services .specialist-cta {
  color: #fff;
}

.trivandrum-reg-services .specialist-label {
  opacity: 0.72;
}

.trivandrum-license-services .services-step {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.trivandrum-license-services .services-specialist-card {
  background: linear-gradient(135deg, #011226 0%, #0a2540 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.trivandrum-license-services .specialist-label,
.trivandrum-license-services .specialist-cta {
  color: #fff;
}

.trivandrum-license-services .specialist-label {
  opacity: 0.72;
}

.service-tile-image .tile-image-light,
.service-tile-image .tile-image-dark {
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-tile-image .tile-image-dark {
  background: rgba(255, 255, 255, 0.06);
}

.service-tile-image .tile-image-light img,
.service-tile-image .tile-image-dark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-license-visual,
.hero-reg-visual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.partner-strip-dark .logo-item img {
  max-height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.partner-strip-dark .logo-item-icon {
  gap: 10px;
  padding: 0 24px;
}

.partner-strip-dark .logo-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff655b;
  flex-shrink: 0;
}

.partner-strip-dark .logo-icon-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

/* Kerala guide section — registration flow board */
.guide-flow-visual {
  height: 100%;
  background: linear-gradient(160deg, #0e2542 0%, #0a1d36 55%, #081628 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.guide-flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.guide-flow-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff655b;
}

.guide-flow-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.guide-flow-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.18);
}

.guide-flow-body {
  flex: 1;
  padding: 22px 20px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guide-flow-map {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-flow-map-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 101, 91, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-flow-map-copy strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.guide-flow-map-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.4;
}

.guide-flow-node {
  position: relative;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 96px;
}

.guide-flow-node-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 6px;
}

.guide-flow-node-title {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.guide-flow-node-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 4px 8px;
}

.guide-flow-node.is-done {
  border-color: rgba(18, 183, 106, 0.28);
  background: rgba(18, 183, 106, 0.08);
}

.guide-flow-node.is-done .guide-flow-node-status {
  color: #6ce9a6;
  background: rgba(18, 183, 106, 0.14);
}

.guide-flow-node.is-active {
  border-color: rgba(255, 101, 91, 0.35);
  background: rgba(255, 101, 91, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 101, 91, 0.08);
}

.guide-flow-node.is-active .guide-flow-node-status {
  color: #ffb4af;
  background: rgba(255, 101, 91, 0.16);
}

.guide-flow-node.is-next {
  opacity: 0.72;
}

.guide-flow-node.is-next .guide-flow-node-status {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.guide-flow-certificate {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 101, 91, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px dashed rgba(255, 101, 91, 0.35);
}

.guide-flow-cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-flow-cert-copy strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.guide-flow-cert-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.guide-flow-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
}

.guide-flow-footer strong {
  color: #fff;
}

@media (max-width: 767.98px) {
  .guide-flow-body {
    grid-template-columns: 1fr;
  }
}

/* Trivandrum registration page — shared section UI */
.reg-section-header-light .services-subtext,
.reg-section-header-light .company-intro,
.reg-section-header-dark .wtl-intro-text {
  max-width: 900px;
}

.targo-services-light .reg-section-header-light .services-subtext,
.targo-services-light .reg-section-header-light .company-intro {
  color: #344054;
  font-size: 1rem;
  line-height: 1.7;
}

.targo-services-light .reg-section-header-light .company-intro a {
  color: #101828;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 101, 93, 0.45);
  text-underline-offset: 3px;
}

.targo-services-light .reg-section-header-light .company-intro a:hover {
  color: var(--orange, #ff655b);
}

.reg-light-grid {
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.reg-light-grid .reg-light-grid-item {
  padding: 26px 24px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.reg-light-grid .reg-light-grid-item-last-col { border-right: none; }
.reg-light-grid .reg-light-grid-item-bottom { border-bottom: none; }

.reg-light-grid .reg-grid-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange, #ff655b);
  margin-bottom: 8px;
  display: block;
}

.reg-light-grid .reg-grid-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.reg-light-grid .reg-grid-text {
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.reg-cost-table-shell,
.reg-table-shell {
  border-radius: 5px;
}

.reg-table-shell.table-responsive,
.reg-cost-table-shell.table-responsive {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.reg-table-shell.table-responsive {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  border-radius: 5px;
}

.reg-table-shell .comparison-table {
  min-width: 680px;
  margin-bottom: 0;
}

.reg-cost-table-shell {
  border: 1px solid #e5e7eb;
  background: #fff;
}

.reg-cost-table-shell.table-responsive {
  background: #fff;
  border-radius: 5px;
  box-shadow: none;
}

.reg-cost-table-shell .comparison-table {
  margin-bottom: 0;
  background: #fff;
  box-shadow: none;
  padding-top: 0;
  border-radius: 0;
}

.reg-cost-table-shell .comparison-table thead {
  background: #011226;
}

.reg-cost-table-shell .comparison-table th {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.reg-cost-table-shell .comparison-table td {
  color: #344054;
  background: #fff;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.reg-cost-table-shell .comparison-table td:last-child {
  font-weight: 600;
  color: #101828;
}

.reg-cost-table-shell .comparison-table th:last-child,
.reg-cost-table-shell .comparison-table td:last-child {
  border-right: none;
}

.reg-cost-table-shell .comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.reg-cost-table-shell .comparison-table tbody tr:nth-child(even) td {
  background: #f9fafb;
}

.reg-table-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.reg-cta-light {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reg-cta-light {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.reg-cta-light .founders-cta-small { color: #667085; }
.reg-cta-light .founders-cta-large { color: #101828; font-weight: 700; }
.reg-cta-light .founders-cta-link { color: #101828; }

.reg-compare-shell {
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  background: #fff;
  padding: 1.25rem 1.25rem 1.5rem;
}

.reg-compare-shell .company-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reg-compare-shell .company-tab-buttons label {
  border-radius: 999px !important;
  border: 1px solid #e5e7eb !important;
  background: #fff !important;
  color: #344054 !important;
  font-weight: 600 !important;
  padding: 0.55rem 1rem !important;
  margin: 0 !important;
}

.reg-compare-shell .company-tab-buttons label:hover {
  border-color: var(--orange, #ff655b) !important;
  color: #101828 !important;
}

.reg-compare-shell #pvt:checked ~ .company-tab-buttons label[for="pvt"],
.reg-compare-shell #llp:checked ~ .company-tab-buttons label[for="llp"],
.reg-compare-shell #partnership:checked ~ .company-tab-buttons label[for="partnership"],
.reg-compare-shell #opc:checked ~ .company-tab-buttons label[for="opc"],
.reg-compare-shell #sole:checked ~ .company-tab-buttons label[for="sole"] {
  background: var(--orange, #ff655b) !important;
  border-color: var(--orange, #ff655b) !important;
  color: #fff !important;
}

.reg-compare-shell .company-panel {
  margin-top: 1rem;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.reg-compare-shell .company-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0;
  color: #344054;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.reg-compare-shell .company-table th {
  width: 38%;
  background: #f9fafb;
  color: #101828;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.reg-compare-shell .company-table td {
  background: #fff;
  color: #475467;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.reg-compare-shell .company-table tr:last-child th,
.reg-compare-shell .company-table tr:last-child td {
  border-bottom: none;
}

.reg-compare-shell .company-table tbody tr:nth-child(even) td {
  background: #fcfcfd;
}

.reg-compare-shell .company-table .intro-link {
  color: var(--orange, #ff655b);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 101, 93, 0.35);
}

.intro-link{
  color: #e5534c;
}

.reg-compare-shell .company-table .intro-link:hover {
  color: #e5534c;
  border-bottom-color: #e5534c;
  opacity: 1;
}

.reg-compare-shell .company-panel .text-end {
  padding-top: 1rem;
}

@media (max-width: 767.98px) {
  .reg-table-shell .comparison-table {
    min-width: 620px;
  }

  .reg-table-shell .comparison-table th,
  .reg-table-shell .comparison-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .reg-compare-shell {
    padding: 1rem 0.85rem 1.15rem;
  }

  .reg-compare-shell .company-tab-buttons {
    gap: 0.5rem;
  }

  .reg-compare-shell .company-tab-buttons label {
    font-size: 0.82rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  .reg-compare-shell .company-table,
  .reg-compare-shell .company-table tbody,
  .reg-compare-shell .company-table tr {
    display: block;
    width: 100%;
  }

  .reg-compare-shell .company-table th,
  .reg-compare-shell .company-table td {
    display: block;
    width: 100% !important;
    border-right: none;
  }

  .reg-compare-shell .company-table th {
    border-bottom: none;
    padding: 12px 14px 6px;
  }

  .reg-compare-shell .company-table td {
    padding: 0 14px 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  .reg-compare-shell .company-table tbody tr:nth-child(even) td {
    background: #fff;
  }

  .reg-compare-shell .company-table tbody tr:nth-child(even) th {
    background: #f9fafb;
  }

  .reg-compare-shell .company-table tr:last-child td {
    border-bottom: none;
  }

  .reg-compare-shell .company-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
  }

  .reg-compare-shell .company-table tbody tr:last-child {
    border-bottom: none;
  }
}

.reg-support-grid .wtl-problem-card {
  height: 100%;
}

@media (max-width: 767.98px) {
  .reg-light-grid .reg-light-grid-item { border-right: none; }
  .reg-light-grid .reg-light-grid-item-bottom { border-bottom: 1px solid #e5e7eb; }
  .reg-light-grid .reg-light-grid-item.reg-light-grid-item-bottom.reg-light-grid-item-last-col { border-bottom: none; }
}

@media (max-width: 767.98px) {
  .hero-reg-visual-shell {
    padding: 18px 16px 14px;
  }
}

/* Remove any stray line/border near the testimonials heading and cards */
.container-fluid.pt-0.pb-4.pb-sm-5.pb-md-5 hr {
  display: none;
}


.testimonial-container {
  border: none !important;
  box-shadow: none !important;
}

h2.text-start.mb-3.mb-sm-4.mb-md-5.fw-bold.for-head {
  border-bottom: none !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {

    .trust-subservice-grid{
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .trust-subservice-link{
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
        min-height: auto;
    }

    .trust-subservice-icon{
        width: 42px;
        height: 42px;
        min-width: 42px;
        flex-shrink: 0;
    }

    .trust-subservice-name{
        font-size: 16px;
        line-height: 1.35;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .trust-subservice-desc{
        font-size: 13px;
        line-height: 1.5;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }
}

.trust-subservice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 0.85rem;
}

@media (min-width: 600px) {
  .trust-subservice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .trust-subservice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trust-subservice-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  height: 100%;
  min-width: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.trust-subservice-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.trust-subservice-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ff655b;
}

.trust-subservice-name {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.3rem;
  min-width: 0;
  word-break: break-word;
  transition: color 0.2s ease;
}

.trust-subservice-desc {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  min-width: 0;
  word-break: break-word;
}

.trust-subservice-link:hover {
  background-color: rgba(255, 107, 107, 0.08);
  border-color: #ff655b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.trust-subservice-link:hover .trust-subservice-icon {
  background: #ff655b;
  border-color: #ff655b;
}

.trust-subservice-link:hover .trust-subservice-icon svg {
  stroke: #fff;
}

.trust-subservice-link:hover .trust-subservice-name {
  color: #ff655b;
}

.trust-subservice-link:hover .trust-subservice-desc {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 380px) {
  .trust-subservice-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .trust-subservice-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Trust tab buttons — pill style, matches hero-btn-secondary ===== */
.trust-tabs-section .trust-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border-radius: 999px;              /* pill shape, was 4px */
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.trust-tabs-section .trust-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.trust-tabs-section .trust-tab-btn.active {
  background: linear-gradient(90deg, #ff8a65, #ff5c4d) !important;
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
  transform: translateY(-1px);
}

.trust-tabs-section .trust-tab-btn:focus,
.trust-tabs-section .trust-tab-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.35);
}

.trust-tabs-section{
    border-top: none !important;
    box-shadow: none !important;
}


/* ===== Why Choose Us — Desktop Cards ===== */
.why-choose-card-desktop {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.why-choose-card-desktop:hover {
  background-color: rgba(255, 107, 107, 0.06);
  border-color: #ff655b;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.why-choose-card-desktop .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.14);
  border: 1px solid rgba(255, 107, 107, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.why-choose-card-desktop .why-icon img {
  width: 26px;
  height: 26px;
}

.why-choose-card-desktop h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.why-choose-card-desktop p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Why Choose Us — Mobile Carousel Cards ===== */
.why-choose-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-choose-card .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.14);
  border: 1px solid rgba(255, 107, 107, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.why-choose-card .why-icon img {
  width: 26px;
  height: 26px;
}

.why-choose-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.why-choose-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Dots for the mobile carousel */
#whyChooseDots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
  padding: 0;
  transition: background-color 0.2s ease, width 0.2s ease;
}

#whyChooseDots button.active {
  background-color: #ff655b;
  width: 20px;
  border-radius: 999px;
}

 .targo-services-light {
    background-color: #fdfdfd;
    color: #344054;
  }

  .services-eyebrow-line {
    width: 22px;
    height: 3px;
    background: var(--orange, #ff655d);
    display: inline-block;
  }
  .services-eyebrow-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange, #ff655d);
  }

  .services-heading {
    color: #101828;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.12;
  }

  .services-subtext {
    color: #667085;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
  }

  .services-specialist-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 100%;
    min-height: 84px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 18px 20px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  }
  .services-specialist-card:hover {
    border-color: var(--orange, #ff655d);
    box-shadow: 0 10px 24px rgba(16,24,40,0.08);
    transform: translateY(-2px);
  }
  .specialist-label {
    color: #667085;
    font-size: 0.82rem;
  }
  .specialist-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #101828;
    font-weight: 700;
    font-size: 0.98rem;
  }
  .specialist-cta svg { color: var(--orange, #ff655d); flex-shrink: 0; }

  .cta-section-informative{
    
    border-radius: 5px;
  }
  /* 3-step strip */
  .services-steps-row {
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
  }
  .services-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }
  .services-step-last { border-right: none; }
  @media (min-width: 768px) {
    .services-step { border-bottom: none; }
  }
  .step-num {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--orange, #ff655d);
    border: 1px solid rgba(255,106,61,0.35);
    background: rgba(255,106,61,0.08);
    border-radius: 5px;
    padding: 4px 8px;
    flex-shrink: 0;
  }
  .step-title {
    font-weight: 700;
    color: #101828;
    font-size: 0.95rem;
  }
  .step-sub {
    color: #667085;
    font-size: 0.82rem;
  }

  /* Tiles shared */
  .service-tile-light,
  .service-tile-dark {
    width: 100%;
    border-radius: 5px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
  }

  .service-tile-light {
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  }
  .service-tile-light:hover {
    border-color: var(--orange, #ff655d);
    box-shadow: 0 12px 28px rgba(16,24,40,0.08);
    transform: translateY(-3px);
  }

  .tile-icon-light {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: rgba(255,106,61,0.1);
    color: var(--orange, #ff655d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .tile-eyebrow-light {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--orange, #ff655d);
    margin-bottom: 6px;
  }
  .tile-title-light {
    font-size: 1.2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
  }
  .tile-desc-light {
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .tile-tag {
    font-size: 0.76rem;
    font-weight: 600;
    color: #344054;
    background: #f2f4f7;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 4px 10px;
  }
  .service-tile-dark .tile-tag {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .tile-link-light {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #101828;
    text-decoration: none;
    padding-top: 14px;
    border-top: 1px solid #eef0f3;
  }
  .tile-link-light svg { transition: transform .2s ease; }
  .tile-link-light:hover svg { transform: translateX(3px); }
  .tile-link-light:hover { color: var(--orange, #ff655d); }

  /* Featured dark Targo 360 */
  .service-tile-dark {
    background: #011226;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .tile-icon-dark {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: rgba(255,106,61,0.18);
    color: var(--orange, #ff655d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .tile-eyebrow-dark {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    max-width: 70%;
  }
  .tile-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--orange, #ff655d);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
  }
  .tile-title-dark {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .tile-desc-dark {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .tile-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .tile-checklist li {
    position: relative;
    padding-left: 22px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
  }
  .tile-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange, #ff655d);
    font-weight: 800;
  }
  .tile-link-dark {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    text-decoration: none;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .tile-link-dark svg { transition: transform .2s ease; color: var(--orange, #ff655d); }
  .tile-link-dark:hover svg { transform: translateX(3px); }
  .tile-link-dark:hover { color: var(--orange, #ff655d); }

  /* Trust strip */
  .services-trust-strip {
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
  }
  .trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-right: 1px solid #e5e7eb;
    color: #101828;
    font-size: 0.9rem;
  }
  .trust-strip-item-last { border-right: none; }
  .trust-strip-item svg { color: var(--orange, #ff655d); flex-shrink: 0; }
  .trust-strip-item strong { font-weight: 800; }

  @media (max-width: 767.98px) {
    .trust-strip-item { border-right: none; border-bottom: 1px solid #e5e7eb; }
    .trust-strip-item-last { border-bottom: none; }
  }

  .why-targolegal-section { background-color: #011226; color: #fff; }

  .wtl-eyebrow-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange, #ff655b);
  }

  .wtl-heading {
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.14;
  }

  .wtl-intro-text {
    color: #9fb1c7;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .wtl-problem-card {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 22px;
    display: flex;
    flex-direction: column;
  }

  .wtl-problem-icon {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: rgba(255,106,61,0.14);
    color: var(--orange, #ff655b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .wtl-problem-eyebrow {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--orange, #ff655b);
    margin-bottom: 8px;
  }

  .wtl-problem-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  .wtl-problem-text {
    color: #9fb1c7;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .wtl-solution-card {
    width: 100%;
    background: linear-gradient(180deg, #0e2542, #0a1d36);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 22px;
    display: flex;
    flex-direction: column;
  }

  .wtl-solution-diagram {
    background: rgba(255,255,255,0.03);
    border-radius: 5px;
    margin-bottom: 18px;
    padding: 6px 0;
  }

  .wtl-solution-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  .wtl-solution-text {
    color: #9fb1c7;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .wtl-solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
  }

  .wtl-solution-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.85rem;
  }

  .wtl-solution-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    color: #12b76a;
    font-weight: 800;
  }

  .wtl-solution-list li strong {
    color: #fff;
    font-weight: 700;
  }

  .wtl-solution-list li span {
    color: #9fb1c7;
    line-height: 1.5;
  }

  .wtl-solution-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .wtl-solution-link svg { color: var(--orange, #ff655b); flex-shrink: 0; transition: transform .2s ease; }
  .wtl-solution-link:hover { color: var(--orange, #ff655b); }
  .wtl-solution-link:hover svg { transform: translateX(3px); }

  .wtl-bottom-strip {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
  }

  .wtl-bottom-item {
    padding: 18px 22px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .wtl-bottom-item-last { border-right: none; }

  .wtl-bottom-title { font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 4px; }
  .wtl-bottom-sub { font-size: 0.8rem; color: #9fb1c7; }

  @media (max-width: 767.98px) {
    .wtl-bottom-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .wtl-bottom-item-last { border-bottom: none; }
  }

  .founders-section { background-color: #011226; color: #fff; }

  .founders-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: .2s ease;
  }
  .founders-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

  .founders-checkmarks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #c6d1df;
  }

  /* Journey illustration */
  .journey-card {
    background: linear-gradient(180deg, #0e2542, #0a1d36);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .journey-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .journey-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); }
  .journey-dot-orange { background: #ff655b; }
  .journey-topbar-line { flex: 1; height: 8px; border-radius: 5px; background: rgba(255,255,255,0.08); margin-left: 10px; }

  .journey-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
  }

  .journey-profile {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 34%;
  }
  .journey-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff655b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }
  .journey-line-bar { display: block; height: 6px; border-radius: 5px; background: rgba(255,255,255,0.15); }
  .journey-line-bar.w-100 { width: 100%; }
  .journey-line-bar.w-75 { width: 75%; }
  .journey-cta-box { width: 60%; height: 22px; border: 1px solid #ff655b; border-radius: 5px; margin-top: 8px; }

  .journey-arrow { flex: 0 0 auto; }

  .journey-steps { flex: 1; display: flex; flex-direction: column; gap: 14px; }
  .journey-step-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 12px 14px;
  }
  .journey-step-icon {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: rgba(255,106,61,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .journey-step-row .journey-line-bar { flex: 1; }
  .journey-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(18,183,106,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .journey-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 0.75rem;
    color: #9fb1c7;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* Feature grid */
  .founders-feature-grid {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
  }
  .founders-feature-item {
    padding: 26px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .founders-feature-item-last-col { border-right: none; }
  .founders-feature-item-bottom { border-bottom: none; }
  .founders-feature-tag { font-size: 0.8rem; font-weight: 700; color: #fff; margin-top: 6px; }

  @media (max-width: 767.98px) {
    .founders-feature-item { border-right: none; }
    .founders-feature-item-bottom { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .founders-feature-item.founders-feature-item-last-col.founders-feature-item-bottom { border-bottom: none; }
  }

  /* CTA strip */
  .founders-cta-strip {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
  }
  .founders-cta-small { font-size: 0.8rem; color: #9fb1c7; margin-bottom: 4px; }
  .founders-cta-large { font-weight: 700; color: #fff; font-size: 0.98rem; }
  .founders-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    flex-shrink: 0;
  }
  .founders-cta-link svg { color: var(--orange, #ff655b); transition: transform .2s ease; }
  .founders-cta-link:hover { color: var(--orange, #ff655b); }
  .founders-cta-link:hover svg { transform: translateX(3px); }

  .why-targolegal-section {
  position: relative;
  overflow: hidden;
}

.why-targolegal-section::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -220px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
}

.founders-cta-strip {
  padding: 13px ;
}

/* ============ NEW FOOTER STYLES ============ */
.main-footer-new{
  background:#011226;
  color:#c7d0dc;
  padding-top:56px;
  font-family:'Manrope', sans-serif;
  
  border-top:1px solid rgba(255,255,255,.08);
}
.main-footer-new .container{max-width:1200px;}
 
/* ---- top grid ---- */
.footer-top-new{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;   /* brand + 4 columns, tightened ratio */
  gap:24px;                                        /* slightly reduced from 32px to fit 5 comfortably */
  padding-bottom:40px;
}
.footer-logo-text{
  color:#fff;
  font-weight:800;
  font-size:1.9rem;
  margin-bottom:14px;
}
.footer-tagline{
  font-size:.92rem;
  line-height:1.6;
  color:#a9b4c2;
  max-width:340px;
  margin-bottom:18px;
}
.footer-contact-new p{
  display:flex;
  align-items:center;
  color:#fff;
  font-weight:600;
  font-size:.95rem;
  margin-bottom:10px;
}
.footer-contact-new a{color:#fff;text-decoration:none;}
.footer-contact-new svg{color:#FF655D;flex-shrink:0;}
 
.footer-social-new{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap;}
.footer-social-new a{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:5px;
  transition:border-color .2s, background .2s;
}
.footer-social-new a:hover{border-color:#FF655D;background:rgba(255,101,93,.08);}
 
.footer-col-new h4{
  color:#fff;
  font-size:.78rem;          
  letter-spacing:.05em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:18px;
  white-space: nowrap;     
}
.footer-col-new ul{list-style:none;padding:0;margin:0;}
.footer-col-new li{margin-bottom:12px;}
.footer-col-new a{
  color:#a9b4c2;
  text-decoration:none;
  font-size:.88rem;         
  transition:color .2s;
}
.footer-col-new a:hover{color:#FF655D;}
 
/* ---- CTA banner ---- */
.footer-cta-banner-new{
  background-color: #001a33;
  border-radius:5px;
  padding:26px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:32px;
}
.footer-cta-banner-new h3{
  color:#fff;
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:6px;
}
.footer-cta-banner-new p{
  color:#a9b4c2;
  font-size:.92rem;
  margin:0;
}
.footer-cta-btn{
  background:#FF655D;
  color:#fff;
  font-weight:600;
  padding:.5em 1em;
  border-radius:28px;
  text-decoration:none;
  white-space:nowrap;
  transition:background .2s;
}
.footer-cta-btn:hover{background:#e94e46;color:#fff;}
 
/* ---- locations strip ---- */
.footer-locations-new{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
}
.footer-locations-new h5{
  color:#fff;
  font-size:.98rem;
  font-weight:700;
  margin-bottom:4px;
}
.footer-locations-new p{
  color:#a9b4c2;
  font-size:.85rem;
  margin:0;
}
.location-pills-new{display:flex;flex-wrap:wrap;gap:10px;}
.location-pills-new span{
  border:1px solid rgba(255,255,255,.2);
  border-radius:5px;
  padding:6px 14px;
  font-size:.82rem;
  color:#c7d0dc;
}
 
/* ---- bottom bar ---- */
.footer-bottom-new{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
}
.footer-bottom-new .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
}
.footer-bottom-links-new{display:flex;flex-wrap:wrap;gap:22px;}
.footer-bottom-links-new a{
  color:#a9b4c2;
  text-decoration:none;
  font-size:.85rem;
}
.footer-bottom-links-new a:hover{color:#fff;}
.footer-bottom-copy-new{text-align:right;}
.footer-bottom-copy-new p{
  margin:0;
  font-size:.8rem;
  color:#7d8797;
}
.footer-bottom-copy-new a{color:#c7d0dc;text-decoration:none;font-weight:600;}
 
/* ---- responsive ---- */
@media (max-width: 1199px){
  .footer-top-new{grid-template-columns: 1.4fr 1fr 1fr;} 
  .footer-brand-new{grid-column: 1 / -1;}
}
/* ---- responsive ---- */
@media (max-width: 1200px){
  .footer-top-new{
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap:18px;
  }
  .footer-col-new h4{
    font-size:.72rem;
  }
  .footer-col-new a{
    font-size:.85rem;
  }
}

@media (max-width: 991px){
  .footer-top-new{grid-template-columns: 1fr 1fr 1fr 1fr;}
  .footer-brand-new{grid-column: 1 / -1;}
  .footer-col-new h4{
    font-size:.7rem;
  }
  .footer-col-new a{
    font-size:.82rem;
  }
}

@media (max-width: 767px){
  .footer-top-new{grid-template-columns: 1fr 1fr;}
  .footer-brand-new{grid-column: 1 / -1;}
}

@media (max-width: 576px){
  .footer-top-new{grid-template-columns: 1fr;}
  .footer-bottom-new .container{flex-direction:column;align-items:flex-start;}
  .footer-bottom-copy-new{text-align:left;}
  .footer-cta-banner-new{flex-direction:column;align-items:flex-start;}
}

.main-footer-new .container,
.footer-bottom-new .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}
