/* Callback / conversion landing page (callback_page.html) */

:root {
  --tg-navy: #011226;
  --tg-navy-2: #061a31;
  --tg-navy-3: #0b2744;
  --tg-coral: #ff655d;
  --tg-coral-dark: #e94f48;
  --tg-ink: #10243b;
  --tg-muted: #63758a;
  --tg-line: #dce4ec;
  --tg-soft: #ffffff;
  --tg-white: #fff;
  --tg-green: #128a61;
  --tg-shadow: 0 24px 70px rgba(1, 18, 38, 0.12);
}

.tg-conversion-page {
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--tg-ink);
  overflow: hidden;
  background: #fff;
}

.tg-conversion-page * {
  box-sizing: border-box;
}

.tg-wrap {
  width: min(1650px, calc(100% - 32px));
  margin: auto;
}

@media (max-width: 1600px) {
  .tg-wrap {
    padding-inline: clamp(40px, 4vw, 64px);
  }
}

@media (max-width: 1400px) {
  .tg-wrap {
    padding-inline: clamp(32px, 4vw, 56px);
  }
}

@media (max-width: 1200px) {
  .tg-wrap {
    padding-inline: clamp(24px, 4vw, 48px);
  }

  .tg-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .tg-wrap {
    padding-inline: 24px;
  }

  .tg-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .tg-wrap {
    padding-inline: 16px;
  }
}

.tg-section {
  padding: 88px 0;
}

.tg-dark {
  background: var(--tg-navy);
  color: #fff;
}

.tg-soft {
  background: var(--tg-soft);
}

.tg-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--tg-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tg-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--tg-coral);
}

.tg-title {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
  margin: 0 0 22px;
}

.tg-section-title {
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 750;
  margin: 0 0 18px;
}

.tg-lead {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.75;
  color: #b9c9d9;
  max-width: 750px;
}

.tg-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--tg-muted);
}

.tg-copy-max {
  max-width: 760px;
}

.tg-hero {
  position: relative;
  background: linear-gradient(135deg, #011226 0%, #061b34 58%, #092844 100%);
  color: #fff;
  padding: 72px 0 52px;
}

.tg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.tg-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.tg-hero h1 span {
  color: #ff817a;
}

.tg-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 28px 0;
}

.tg-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: #dce7f1;
}

.tg-point svg {
  flex: 0 0 18px;
  margin-top: 2px;
  color: #64d3a1;
}

.tg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 7px;
  text-decoration: none !important;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.tg-btn-primary {
  background: var(--tg-coral);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(255, 101, 93, 0.25);
}

.tg-btn-primary:hover {
  background: #ff766f;
  transform: translateY(-2px);
}

.tg-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.tg-btn-secondary:hover {
  background: #fff;
  color: var(--tg-navy) !important;
}

.tg-btn-whatsapp {
  background: #138a61;
  color: #fff !important;
}

.tg-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 17px;
  font-size: 12px;
  color: #9fb2c5;
}

.tg-microcopy span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tg-form-shell {
  position: relative;
  background: #fff;
  color: var(--tg-ink);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.tg-form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5ebf1;
  margin-bottom: 22px;
}

.tg-form-top h2 {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}

.tg-form-top p {
  font-size: 13px;
  color: var(--tg-muted);
  margin: 0;
}

.tg-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
  color: #08734f;
  background: #eaf8f2;
  border: 1px solid #ccecdf;
  padding: 7px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.tg-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #14a873;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(20, 168, 115, 0.12);
}

.tg-form-shell label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: #334a61;
  margin: 0 0 7px;
}

.tg-form-shell .label-optional {
  color: #7b8b9a;
}

.tg-form-shell .modern-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ced9e4 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #10243b !important;
  padding: 0 13px !important;
  box-shadow: none !important;
}

.tg-form-shell .modern-input:focus {
  border-color: var(--tg-coral) !important;
  box-shadow: 0 0 0 3px rgba(255, 101, 93, 0.12) !important;
}

.tg-form-shell .form-group {
  margin-bottom: 16px !important;
}

.tg-submit {
  width: 100%;
  min-height: 51px;
  border: 0;
  border-radius: 6px;
  background: var(--tg-coral);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(255, 101, 93, 0.2);
}

.tg-form-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid #e5ebf1;
}

.tg-assure {
  text-align: center;
  font-size: 10px;
  line-height: 1.35;
  color: #65788b;
}

.tg-assure svg {
  display: block;
  margin: 0 auto 6px;
  color: var(--tg-coral);
}

.tg-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--tg-line);
}

.tg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tg-trust-item {
  padding: 21px 24px;
  border-right: 1px solid var(--tg-line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-trust-item:last-child {
  border-right: 0;
}

.tg-trust-item svg {
  color: var(--tg-coral);
  flex: 0 0 22px;
}

.tg-trust-item strong {
  display: block;
  font-size: 13px;
}

.tg-trust-item span {
  display: block;
  font-size: 11px;
  color: var(--tg-muted);
  margin-top: 2px;
}

.tg-problem-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.tg-friction-list {
  border-top: 1px solid var(--tg-line);
}

.tg-friction {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 21px 0;
  border-bottom: 1px solid var(--tg-line);
}

.tg-friction-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--tg-coral);
  padding-top: 3px;
}

.tg-friction h3 {
  font-size: 17px;
  margin: 0 0 7px;
  font-weight: 750;
}

.tg-friction p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tg-muted);
  margin: 0;
}

.tg-model-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.tg-model-head .tg-copy {
  color: #aebfd0;
}

.tg-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #294058;
}

.tg-model-card {
  padding: 28px 24px;
  border-right: 1px solid #294058;
  min-height: 280px;
}

.tg-model-card:last-child {
  border-right: 0;
}

.tg-model-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 101, 93, 0.55);
  color: var(--tg-coral);
  margin-bottom: 31px;
}

.tg-model-card small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7790a8;
  font-weight: 800;
}

.tg-model-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 9px 0 12px;
  font-weight: 750;
}

.tg-model-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #aebfd0;
  margin: 0;
}

.tg-operating-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border: 1px solid #294058;
}

.tg-operating-item {
  padding: 20px 22px;
  border-right: 1px solid #294058;
}

.tg-operating-item:last-child {
  border-right: 0;
}

.tg-operating-item strong {
  font-size: 13px;
}

.tg-operating-item p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #91a7bb;
}

.tg-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.tg-process-card {
  position: relative;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--tg-line);
  min-height: 220px;
  transition: 0.2s;
}

.tg-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tg-shadow);
  border-color: #ffc1bd;
}

.tg-process-card::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 42px;
  width: 13px;
  height: 1px;
  background: #cbd6e1;
}

.tg-process-card:last-child::after {
  display: none;
}

.tg-process-no {
  font-size: 11px;
  font-weight: 800;
  color: var(--tg-coral);
  letter-spacing: 0.1em;
}

.tg-process-card h3 {
  font-size: 17px;
  margin: 25px 0 10px;
}

.tg-process-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--tg-muted);
}

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

.tg-outcome {
  background: #fff;
  border: 1px solid var(--tg-line);
  padding: 28px;
}

.tg-outcome svg {
  color: var(--tg-coral);
  margin-bottom: 22px;
}

.tg-outcome h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.tg-outcome p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--tg-muted);
  margin: 0;
}

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

.tg-service {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--tg-line);
  font-size: 13px;
  font-weight: 700;
}

.tg-service svg {
  color: var(--tg-coral);
  flex: 0 0 19px;
}

.tg-final {
  background: linear-gradient(120deg, #061a31, #011226);
  color: #fff;
}

.tg-final-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.tg-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.tg-contact-card {
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid #294058;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none !important;
  color: #fff !important;
}

.tg-contact-card svg {
  color: var(--tg-coral);
  flex: 0 0 22px;
}

.tg-contact-card strong {
  display: block;
  font-size: 13px;
}

.tg-contact-card span {
  display: block;
  font-size: 11px;
  color: #9cb0c2;
  margin-top: 4px;
}

.tg-final-panel {
  padding: 30px;
  background: #fff;
  color: var(--tg-ink);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.tg-final-panel h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.tg-final-panel p {
  font-size: 13px;
  color: var(--tg-muted);
  line-height: 1.65;
}

.tg-final-panel .tg-btn {
  width: 100%;
  margin-top: 8px;
}

.tg-mobile-bar {
  display: none;
}

@media (max-width: 991px) {
  .tg-section {
    padding: 68px 0;
  }

  .tg-hero-grid,
  .tg-problem-grid,
  .tg-model-head,
  .tg-final-grid {
    grid-template-columns: 1fr;
  }

  .tg-hero-grid {
    gap: 36px;
  }

  .tg-form-shell {
    max-width: 620px;
  }

  .tg-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-model-card:nth-child(2) {
    border-right: 0;
  }

  .tg-model-card:nth-child(-n + 2) {
    border-bottom: 1px solid #294058;
  }

  .tg-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-process-card::after {
    display: none;
  }

  .tg-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-trust-item:nth-child(2) {
    border-right: 0;
  }

  .tg-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--tg-line);
  }
}

@media (max-width: 640px) {
  .tg-wrap {
    width: min(100% - 24px, 1180px);
  }

  .tg-section {
    padding: 54px 0;
  }

  .tg-hero {
    padding: 43px 0 30px;
  }

  .tg-title {
    font-size: 39px;
  }

  .tg-section-title {
    font-size: 30px;
  }

  .tg-hero-points,
  .tg-model-grid,
  .tg-operating-strip,
  .tg-outcomes,
  .tg-services,
  .tg-contact-cards,
  .tg-trust-grid,
  .tg-process-grid {
    grid-template-columns: 1fr;
  }

  .tg-point {
    font-size: 13px;
  }

  .tg-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tg-actions .tg-btn:first-child {
    grid-column: 1 / -1;
  }

  .tg-btn {
    padding: 0 12px;
  }

  .tg-form-shell {
    padding: 21px 17px;
  }

  .tg-form-top {
    display: block;
  }

  .tg-status {
    display: inline-flex;
    margin-top: 11px;
  }

  .tg-form-assurance {
    gap: 3px;
  }

  .tg-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--tg-line);
  }

  .tg-model-card {
    border-right: 0 !important;
    border-bottom: 1px solid #294058 !important;
    min-height: auto;
  }

  .tg-model-card:last-child {
    border-bottom: 0 !important;
  }

  .tg-operating-item {
    border-right: 0;
    border-bottom: 1px solid #294058;
  }

  .tg-operating-item:last-child {
    border-bottom: 0;
  }

  .tg-final-grid {
    gap: 30px;
  }

  .tg-mobile-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #d6e0e9;
    box-shadow: 0 -8px 24px rgba(1, 18, 38, 0.12);
    padding: 8px;
  }

  .tg-mobile-bar a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    color: var(--tg-navy);
  }

  .tg-mobile-bar a:last-child {
    background: var(--tg-coral);
    color: #fff;
    border-radius: 5px;
  }

  .tg-conversion-page {
    padding-bottom: 60px;
  }
}
