/* ============================================
   Govt Tenders Hero Page Styles
   ============================================ */

:root {
  --gt-navy: #0f172a;
  --gt-navy-mid: #1e293b;
  --gt-navy-light: #334155;
  --gt-orange: #2563eb;
  --gt-orange-dark: #1d4ed8;
  --gt-orange-glow: rgba(37, 99, 235, 0.1);
  --gt-red-urgent: #991b1b;
  --gt-red-soon: #9a3412;
  --gt-green: #166534;
  --gt-green-light: #f0fdf4;
  --gt-sky: #f0f9ff;
  --gt-sky-mid: #e0f2fe;
  --gt-white: #FFFFFF;
  --gt-grey-text: #475569;
  --gt-grey-light: #f8fafc;
  --gt-border: #e2e8f0;
  --gt-font-head: 'Inter', 'Poppins', sans-serif;
  --gt-font-body: 'Inter', 'Poppins', sans-serif;
  --gt-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --gt-shadow-cta: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
  --gt-radius: 12px;
  --gt-radius-sm: 8px;
}

/* ── HERO ── */
.gt-hero {
  background: linear-gradient(103.74deg, #E4F0FF 0.51%, #FFFFFF 31.43%, #EFF6FF 56.29%);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}

.gt-hero::before {
  display: none;
}

.gt-hero::after {
  display: none;
}

.gt-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--gt-orange);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gt-hero-eyebrow::before {
  content: '⚡';
}

.gt-hero-h1 {
  font-family: var(--gt-font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--gt-navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.gt-hero-h1 span {
  color: var(--gt-orange);
}

.gt-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gt-grey-text);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.gt-hero-sub strong {
  color: var(--gt-navy);
  font-weight: 600;
}

.gt-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 38px;
}

.gt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gt-orange);
  color: var(--gt-white);
  font-family: var(--gt-font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--gt-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--gt-shadow-cta);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.gt-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.gt-btn-primary:hover::after {
  transform: translateX(100%);
}

.gt-btn-primary:hover {
  background: var(--gt-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.gt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--gt-navy);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--gt-radius-sm);
  text-decoration: none;
  border: 1.5px solid var(--gt-border);
  cursor: pointer;
  transition: all 0.2s;
}

.gt-btn-secondary:hover {
  border-color: var(--gt-orange);
  background: var(--gt-sky);
  color: var(--gt-orange);
}

.gt-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gt-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--gt-border);
  color: var(--gt-grey-text);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gt-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gt-orange);
  flex-shrink: 0;
}

/* ── SECTION WRAPPER ── */
.gt-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.gt-section-block {
  margin: 32px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* ── URGENCY BANNER ── */
.gt-urgency-bar {
  background: linear-gradient(90deg, #aac3ff, #ccfffe);
  color: #000;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: gt-pulse-bar 2s ease-in-out infinite;
}

@keyframes gt-pulse-bar {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.88;
  }
}

/* ── SECTION HEADER ── */
.gt-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gt-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gt-sec-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gt-orange);
}

.gt-sec-heading {
  font-family: var(--gt-font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gt-navy);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gt-sec-sub {
  font-size: 14px;
  color: #666;
  max-width: 560px;
  line-height: 1.6;
}

/* ── TENDER TABLE ── */
.gt-tender-section {
  background: var(--gt-white);
  border-radius: var(--gt-radius);
  box-shadow: var(--gt-shadow-card);
  overflow: hidden;
}

.gt-tender-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--gt-grey-light);
  border-bottom: 1px solid var(--gt-border);
  flex-wrap: wrap;
  gap: 10px;
}

.gt-tender-count {
  font-size: 13px;
  color: #888;
}

.gt-tender-count strong {
  color: var(--gt-navy);
  font-weight: 600;
}

.gt-filter-tabs {
  display: flex;
  gap: 6px;
}

.gt-filter-tab {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1.5px solid var(--gt-border);
  background: white;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
}

.gt-filter-tab.active,
.gt-filter-tab:hover {
  background: var(--gt-navy);
  color: white;
  border-color: var(--gt-navy);
}

.gt-tender-section table {
  width: 100%;
  border-collapse: collapse;
}

.gt-tender-section thead tr {
  background: var(--gt-navy);
}

.gt-tender-section th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--gt-font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.gt-tender-section tbody tr {
  border-bottom: 1px solid var(--gt-border);
  transition: background 0.15s;
}

.gt-tender-section tbody tr:nth-child(even) {
  background: var(--gt-grey-light);
}

.gt-tender-section tbody tr:hover {
  background: var(--gt-sky);
}

.gt-tender-section td {
  padding: 13px 16px;
  font-size: 13.5px;
  vertical-align: middle;
}

.gt-tender-id {
  font-family: var(--gt-font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gt-navy-mid);
  display: block;
}

.gt-tender-title {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.gt-date-urgent {
  color: var(--gt-red-urgent);
  font-weight: 700;
}

.gt-date-soon {
  color: var(--gt-red-soon);
  font-weight: 600;
}

.gt-date-normal {
  color: var(--gt-grey-text);
}

.gt-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gt-db-urgent {
  background: #FFEBEE;
  color: var(--gt-red-urgent);
}

.gt-db-soon {
  background: #FFF3E0;
  color: var(--gt-red-soon);
}

.gt-status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.gt-sp-open {
  background: var(--gt-green-light);
  color: var(--gt-green);
}

.gt-sp-soon {
  background: #FFF3E0;
  color: var(--gt-red-soon);
}

.gt-sp-urgent {
  background: #FFEBEE;
  color: var(--gt-red-urgent);
}

.gt-value-cell {
  font-weight: 600;
  color: var(--gt-navy);
  white-space: nowrap;
}

.gt-assist-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gt-orange);
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: var(--gt-radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.gt-assist-btn:hover {
  background: var(--gt-orange-dark);
  transform: scale(1.04);
}

.gt-table-note {
  padding: 10px 20px;
  font-size: 11.5px;
  color: var(--gt-red-urgent);
  background: #FFF5F5;
  border-top: 1px solid #FFD5D5;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* mobile table scroll */
.gt-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── WHY BIDS FAIL ── */
.gt-fail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gt-fail-card {
  background: var(--gt-white);
  border: 1.5px solid var(--gt-border);
  border-radius: var(--gt-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.gt-fail-card:hover {
  box-shadow: var(--gt-shadow-card);
  border-color: var(--gt-red-urgent);
  transform: translateY(-2px);
}

.gt-fail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFEBEE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.gt-fail-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--gt-navy);
  margin-bottom: 5px;
}

.gt-fail-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
}

/* ── SOLUTION 3-COL ── */
.gt-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.gt-sol-card {
  background: var(--gt-white);
  border-radius: var(--gt-radius);
  overflow: hidden;
  box-shadow: var(--gt-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gt-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 25, 73, 0.15);
}

.gt-sol-header {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gt-sol-header--navy {
  background: var(--theme-primary-color);
}

.gt-sol-header--orange {
  background: var(--theme-primary-color);
}

.gt-sol-header--green {
  background: var(--theme-primary-color);
}

.gt-sol-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.gt-sol-title {
  font-family: var(--gt-font-head);
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.gt-sol-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.gt-sol-body {
  padding: 20px;
}

.gt-sol-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}

.gt-sol-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--gt-grey-text);
  line-height: 1.5;
}

.gt-sol-points li::before {
  content: '✓';
  color: var(--gt-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STATS ROW ── */
.gt-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.gt-stat-card {
  background: var(--gt-white);
  border-radius: var(--gt-radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--gt-shadow-card);
  border-top: 3px solid var(--gt-orange);
}

.gt-stat-num {
  font-family: var(--gt-font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--gt-navy);
  line-height: 1;
}

.gt-stat-num span {
  color: var(--gt-orange);
}

.gt-stat-label {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  font-weight: 500;
}

.faq-card {
  padding: 0 !important;
}

.client.meta-client {
  padding: 0 !important;
}

/* ── LEAD MAGNET ── */
.gt-lead-magnet {
  background: var(--theme-primary-color);
  border-radius: var(--gt-radius);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(6, 25, 73, 0.25);
}

.gt-lead-magnet::before {
  content: '📋';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  opacity: 0.06;
  pointer-events: none;
}

.gt-lead-left {
  flex: 1;
  min-width: 260px;
}

.gt-lead-pill {
  display: inline-block;
  background: rgba(5, 72, 241, 0.2);
  border: 1px solid rgba(5, 72, 241, 0.4);
  color: #6B9BFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.gt-lead-title {
  font-family: var(--gt-font-head);
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}

.gt-lead-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.gt-lead-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}

.gt-lead-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: var(--gt-radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: white;
  font-size: 14px;
  font-family: var(--gt-font-body);
  outline: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s;
}

.gt-lead-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gt-lead-input:focus {
  border-color: var(--gt-orange);
}

.gt-lead-submit {
  padding: 13px 22px;
  background: var(--gt-orange);
  color: white;
  border: none;
  border-radius: var(--gt-radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--gt-shadow-cta);
  transition: background 0.2s, transform 0.2s;
  font-family: var(--gt-font-body);
}

.gt-lead-submit:hover {
  background: var(--gt-orange-dark);
  transform: scale(1.03);
}

/* ── FAQ ── */
.gt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.gt-faq-item {
  background: var(--gt-white);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gt-faq-item:hover {
  border-color: var(--gt-orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gt-faq-item.open {
  border-color: var(--gt-orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.gt-faq-q-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--gt-navy);
  line-height: 1.4;
}

.gt-faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gt-orange);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gt-faq-item.open .gt-faq-chevron {
  transform: rotate(180deg);
}

.gt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

.gt-faq-item.open .gt-faq-a {
  max-height: 500px;
  padding: 0 24px 24px;
}

.gt-faq-a p {
  font-size: 14px;
  color: var(--gt-grey-text);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--gt-border);
  margin: 0;
}

/* Dynamic FAQ support */
.dynamic-faqs-wrapper .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dynamic-faqs-wrapper .accordion-item {
  background: var(--gt-white);
  border: 1px solid var(--gt-border);
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dynamic-faqs-wrapper .accordion-button {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gt-navy);
  background: var(--gt-white);
  box-shadow: none;
  border: none;
}

.dynamic-faqs-wrapper .accordion-button:not(.collapsed) {
  color: var(--gt-orange);
  background: var(--gt-white);
}

.dynamic-faqs-wrapper .accordion-button::after {
  filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}

.dynamic-faqs-wrapper .accordion-body {
  padding: 24px;
  font-size: 14px;
  color: var(--gt-grey-text);
  line-height: 1.7;
  border-top: 1px solid var(--gt-border);
}

/* ── PROCESS STEPS ── */
.gt-process-row {
  display: flex;
  gap: 0;
  margin-top: 28px;
  position: relative;
}

.gt-process-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gt-orange), var(--gt-navy-light));
  z-index: 0;
}

.gt-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.gt-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--theme-primary-color);
  color: white;
  font-family: var(--gt-font-head);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--gt-orange);
}

.gt-step:nth-child(2) .gt-step-num {
  background: var(--theme-primary-color);
  box-shadow: 0 0 0 3px var(--gt-navy-light);
}

.gt-step:nth-child(3) .gt-step-num {
  background: var(--theme-primary-color);
}

.gt-step:nth-child(4) .gt-step-num {
  background: var(--theme-primary-color);
  box-shadow: 0 0 0 3px var(--gt-navy-light);
}

.gt-step-title {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gt-navy);
  margin-bottom: 5px;
}

.gt-step-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

/* ── WHATSAPP FLOATING ── */
.gt-wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.gt-wa-tooltip {
  background: var(--gt-navy);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--gt-shadow-card);
  animation: gt-wa-pulse 3s ease-in-out infinite;
}

@keyframes gt-wa-pulse {

  0%,
  100% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }
}

.gt-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gt-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.gt-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── FOOTER ── */
.gt-page-footer {
  background: var(--gt-navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 18px 20px;
  font-size: 12px;
  border-top: 3px solid var(--gt-orange);
  margin-top: 48px;
}

.gt-page-footer a {
  color: var(--gt-orange);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
.gt-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gt-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .gt-hero {
    padding: 36px 16px 32px;
  }

  .gt-hero-h1 {
    font-size: 26px;
  }

  .gt-process-row {
    flex-direction: column;
    gap: 20px;
  }

  .gt-process-row::before {
    display: none;
  }

  .gt-tender-section th,
  .gt-tender-section td {
    padding: 10px 12px;
  }

  .gt-tender-section th:nth-child(3),
  .gt-tender-section td:nth-child(3),
  .gt-tender-section th:nth-child(4),
  .gt-tender-section td:nth-child(4) {
    display: none;
  }

  .gt-lead-magnet {
    padding: 28px 20px;
  }

  .gt-section-block {
    padding: 0 14px;
  }
}

@media (min-width: 900px) {
  .gt-sticky-title {
    display: block;
  }
}