/* ============================================================
   TUTOR BRIDGE — Complete New Design System
   Modern · Clean · Conversion-Optimised
   Font: Inter | Primary: #D00000 | Navy: #0D1117
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --c-red:      #e09500;
  --c-red-h:    #b50000;
  --c-red-lt:   #fff6e0;
  --c-red-bd:   #ffc673;
  --c-navy:     #0D1117;
  --c-navy2:    #161B22;
  --c-green:    #25D366;
  --c-green-d:  #1aab52;
  --c-white:    #FFFFFF;
  --c-gray50:   #F9FAFB;
  --c-gray100:  #F3F4F6;
  --c-gray200:  #E5E7EB;
  --c-gray400:  #9CA3AF;
  --c-gray600:  #4B5563;
  --c-gray900:  #111827;
  --c-text:     #0F172A;
  --sh-xs:  0 1px 4px rgba(0,0,0,.06);
  --sh-sm:  0 4px 12px rgba(0,0,0,.08);
  --sh-md:  0 10px 28px rgba(0,0,0,.10);
  --sh-lg:  0 24px 56px rgba(0,0,0,.14);
  --sh-red: 0 4px 20px rgb(75 115 220 / 41%);
  --r-xs:   6px;
  --r-sm: 0px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 9999px;
  --font:   'Inter', sans-serif;
  --max-w:  1180px;
  --gap:    32px;
  --nav-h:  72px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }
button { cursor: pointer; }

/* ── LAYOUT UTILITIES ───────────────────────────────────── */
.tb-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.tb-section {
  padding: 96px 0;
}
.tb-section-sm {
  padding: 60px 0;
}
.tb-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.tb-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}
.tb-section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.tb-section-header h2 span { color: var(--c-red); }
.tb-section-header p {
  font-size: 16px;
  color: var(--c-gray600);
  line-height: 1.7;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.tb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.tb-btn-primary {
  background: #375728;
  color: #fff;
  box-shadow: var(--sh-red);
}
.tb-btn-primary:hover {
  background: var(--c-red-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(208,0,0,.38);
  color: #fff;
}
.tb-btn-wa {
  background: var(--c-green);
  color: #fff;
}
.tb-btn-wa:hover {
  background: var(--c-green-d);
  transform: translateY(-2px);
  color: #fff;
}
.tb-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.tb-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.tb-btn-outline-red {
  background: transparent;
  color: var(--c-red);
  border: 2px solid var(--c-red);
}
.tb-btn-outline-red:hover {
  background: var(--c-red);
  color: #fff;
}
.tb-btn-lg { padding: 15px 32px; font-size: 15px; }
.tb-btn-sm { padding: 9px 18px; font-size: 13px; }
.tb-btn-full { width: 100%; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.tb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff73;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-gray200);
  transition: box-shadow .3s;
  overflow: visible;
}
.tb-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.tb-nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.tb-logo img {
  border: none;
  height: 48px;
  width: auto;
  display: block;
}
.tb-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.tb-nav-links > li > a {
  display: block;
  border-bottom: 2px dashed #d0000000;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-gray900);
  transition: color .2s, background .2s;
  position: relative;
}
.tb-nav-links > li > a:hover {
  border-bottom: 2px dashed #e09500;
  color: #e09500;
}

/* ── MEGA-MENU DROPDOWN ─────────────────────────────────── */
.tb-has-dropdown { position: relative; }
.tb-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  min-width: 700px;
  z-index: 500;
  flex-direction: column;
  overflow: hidden;
}
.tb-has-dropdown:hover .tb-dropdown,
.tb-has-dropdown.dropdown-open .tb-dropdown { display: flex; }
/* Red promo bar */
.tb-dropdown-promo {
  background: linear-gradient(135deg, #C00000 0%, #e00000 100%);
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.tb-dropdown-promo strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.tb-dropdown-promo .tb-btn-sm {
  background: rgba(255,255,255,.2);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.tb-dropdown-promo .tb-btn-sm:hover { background: rgba(255,255,255,.35); }
/* 3-column service grid */
.tb-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 12px;
}
.tb-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.tb-dropdown-item:hover { background: #FFF5F5; }
.tb-dropdown-item i {
  width: 36px;
  height: 36px;
  background: #fff6e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 14px;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.tb-dropdown-item:hover i { background: var(--c-red); color: #fff; }
.tb-dropdown-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.tb-dropdown-item-text small {
  font-size: 11.5px;
  color: #9ca3af;
  display: block;
  margin-top: 1px;
}

.tb-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.tb-nav-actions .tb-btn { padding: 9px 18px; font-size: 13.5px; }

/* Hamburger */
.tb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.tb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-gray900);
  border-radius: 2px;
  transition: all .3s;
}

/* ── MOBILE NAV DRAWER ──────────────────────────────────── */
/* The drawer must stay OUTSIDE .tb-nav in the markup: .tb-nav has a
   backdrop-filter, which makes it the containing block for fixed-position
   descendants and clips them to its 72px height. Sized by top+bottom rather
   than a vh/dvh height so it always tracks the real viewport. */
.tb-nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 40px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.tb-nav-drawer.open,
.tb-nav-drawer.active,
.tb-nav-drawer.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tb-nav-drawer > a {
  display: block;
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gray900);
  border-bottom: 1px solid var(--c-gray100);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.tb-nav-drawer a:hover { color: var(--c-red); background: var(--c-red-lt); }
.tb-nav-drawer .tb-drawer-cta {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tb-nav-drawer .tb-drawer-cta .tb-btn { flex: 1; justify-content: center; }
.tb-drawer-sub {
  padding-left: 16px;
  border-left: 2px solid var(--c-gray200);
  margin: 4px 0 12px;
}
.tb-drawer-sub a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-bottom: none;
}
/* Prevent the page behind the drawer from scrolling */
body.tb-drawer-open { overflow: hidden; }

/* The drawer is mobile-only; keep it out of the desktop layer stack entirely. */
@media (min-width: 769px) {
  .tb-nav-drawer { display: none; }
}

/* ── HERO SECTION ───────────────────────────────────────── */
.tb-hero {
  background-image: url('/assets/images/image (2).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tb-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #009ace12; /* custom colour overlay */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.tb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(75 115 220);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.tb-hero-badge .tb-badge-dot {
  width: 8px; height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}

.desktop-content h1 {
  font-size: 38px !important;
}

.tb-hero h1 {
  font-size: 38px !important;
  font-weight: 900;
  color: #000000;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.tb-hero h1 .tb-h1-accent,
.tb-hero h1 .tb-hero-h1-accent,
.tb-highlight { color: var(--c-red); }
.tb-hero-sub {
  font-size: 17px;
  color: rgb(0 0 0 / 65%);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
/* Trust chips */
.tb-trust-chips {
  display: flex;
  align-items: center;
  gap: 0;
  background: #dbe8eede;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tb-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}
.tb-chip img { width: 36px; height: 36px; object-fit: contain; }
.tb-chip-text { line-height: 1.25; }
.tb-chip-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: black;
}
.tb-chip-text span {
  font-size: 11.5px;
  color: black;
}
.tb-chip-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  margin: 0 16px;
}
/* Hero CTA buttons */
.tb-hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
/* Hero review strip */
.tb-hero-review {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 14px 16px;
  max-width: 480px;
}
.tb-review-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-green);
}
.tb-review-body { flex: 1; }
.tb-review-slide { display: none; }
.tb-review-slide.active { display: block; }
.tb-review-slide p {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 4px;
}
.tb-review-slide .tb-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-review-slide .tb-review-author {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.tb-review-slide .tb-review-stars img { height: 13px; }
.tb-verified { font-size: 11px; color: var(--c-green); font-weight: 700; }
.tb-review-nav button {
  background: var(--c-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.tb-review-nav button:hover { background: var(--c-red-h); }

/* Order form card */
.tb-order-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  position: relative;
}
.tb-order-off {
  position: absolute;
  top: -16px; right: 24px;
  background: var(--c-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  letter-spacing: .5px;
  box-shadow: var(--sh-red);
}
.tb-order-tag {
  background: linear-gradient(135deg, var(--c-red), #ff4444);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.tb-order-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 4px;
}
.tb-order-card .tb-order-sub {
  font-size: 13px;
  color: var(--c-gray400);
  margin-bottom: 20px;
}
.tb-order-card input,
.tb-order-card select {
  width: 100%;
  display: block;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-gray50);
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tb-order-card input:focus,
.tb-order-card select:focus {
  border-color: var(--c-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(208,0,0,.08);
}
.tb-order-card input::placeholder { color: var(--c-gray400); }
.tb-order-card .tb-btn {
  margin-top: 6px;
}
.tb-order-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.tb-order-trust span {
  font-size: 11.5px;
  color: var(--c-gray400);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── HERO LIGHT (sub-pages) ─────────────────────────────── */
.tb-hero-light {
  background: #fff;
}
.tb-hero-light::before,
.tb-hero-light::after { display: none; }
.tb-hero-light .tb-hero-badge {
  background: rgba(208,0,0,.07);
  border-color: rgba(208,0,0,.15);
  color: var(--c-text);
}
.tb-hero-light h1 { color: var(--c-text); }
.tb-hero-light .tb-hero-sub { color: var(--c-gray600); }
.tb-hero-light .tb-btn-ghost {
  border-color: rgba(0,0,0,.2);
  color: var(--c-text);
}
.tb-hero-light .tb-btn-ghost:hover {
  background: rgba(0,0,0,.05);
  color: var(--c-text);
}
.tb-hero-light .tb-order-card {
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border: 1px solid var(--c-gray200);
}
.tb-hero-awards {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.tb-hero-awards img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ── STATS BAR ──────────────────────────────────────────── */
.tb-stats {
  background: var(--c-gray900);
  padding: 28px 0;
}
.tb-stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.tb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tb-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tb-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-gray400);
  letter-spacing: .3px;
}
.tb-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}

/* ── AWARDS / TRUST LOGOS ───────────────────────────────── */
.tb-awards {
  background: #009ace12;
  padding: 40px 0;
  border-top: 1px solid var(--c-gray200);
  border-bottom: 1px solid var(--c-gray200);
}
.tb-awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.tb-awards-row img {
  height: 190px;
  width: 32.33%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .25s, transform .25s;
}
.tb-awards-row img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ── SERVICES SECTION ───────────────────────────────────── */
.tb-services {
  background: var(--c-gray50);
  padding: 96px 0;
}
.tb-services-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}
/* Left form column */
.tb-services-form {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-gray200);
  position: sticky;
  top: 90px;
}
.tb-services-form-head {
  background: linear-gradient(135deg, #0D1117, #1a2235);
  padding: 32px 28px;
  color: #fff;
}
.tb-services-form-head .tb-label { color: rgba(255,255,255,.5); margin-bottom: 8px; }
.tb-services-form-head h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.tb-services-form-head h2 span { color: #375728; }
.tb-services-form-head p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
}
.tb-services-form-body {
  padding: 28px;
}
.tb-services-form-body input {
  width: 100%;
  display: block;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-gray50);
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tb-services-form-body input:focus {
  border-color: var(--c-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(208,0,0,.08);
}
.tb-services-form-body input::placeholder { color: var(--c-gray400); }

/* Service cards grid */
.tb-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tb-service-card {
  background: #fff;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .28s ease;
  box-shadow: var(--sh-xs);
}
.tb-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--c-red);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .25s;
}
.tb-service-card:hover {
  border-color: var(--c-red-bd);
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}
.tb-service-card:hover::before { opacity: 1; }
.tb-service-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--c-red-lt);
  border: 1px solid var(--c-red-bd);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--c-red);
  padding: 3px 10px;
  letter-spacing: .3px;
}
.tb-service-num {
  font-size: 48px;
  font-weight: 900;
  color: #375728;
  line-height: 1;
  margin-bottom: 12px;
}
.tb-service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}
.tb-service-card h3 a {
  color: inherit;
  transition: color .2s;
}
.tb-service-card h3 a:hover { color: var(--c-red); }
.tb-service-card p {
  font-size: 14px;
  color: var(--c-gray600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.tb-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #375728;
  background: #37572836;
  border: 1.5px solid #375728;
  border-radius: var(--r-sm);
  padding: 7px 14px;
  transition: all .2s;
}
.tb-service-link:hover {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.tb-process {
  background: #fff;
  padding: 96px 0;
}
.tb-process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}
.tb-process-step {
  text-align: center;
  padding: 36px 28px;
  background: var(--c-gray50);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--c-gray200);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.tb-process-step:hover {
  border-color: var(--c-red-bd);
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}
.tb-step-num {
  width: 60px; height: 60px;
  background: var(--c-red);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--sh-red);
}
.tb-process-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}
.tb-process-step p {
  font-size: 14px;
  color: var(--c-gray600);
  line-height: 1.65;
}
.tb-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--c-red-bd);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ── SUBJECTS MARQUEE ───────────────────────────────────── */
.tb-subjects {
  background: var(--c-navy);
  padding: 80px 0;
  overflow: hidden;
}
.tb-subjects .tb-section-header { margin-bottom: 40px; }
.tb-subjects .tb-section-header h2 { color: #fff; }
.tb-subjects .tb-section-header .tb-label { color: rgba(255,255,255,.5); }
.tb-subjects .tb-section-header p { color: rgba(255,255,255,.5); }
.tb-marquee-wrap {
  overflow: hidden;
  margin: 0 -24px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.tb-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.tb-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tb-marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.tb-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform .4s;
}
.tb-marquee-item:hover img { transform: scale(1.06); }
.tb-subjects-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}
/* Guarantee strip */
.tb-guarantee {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.tb-guarantee img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.tb-guarantee h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.tb-guarantee p { font-size: 14px; color: rgba(255,255,255,.55); }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.tb-testimonials {
  background: #0D1117;
  padding: 96px 0;
}
/* Centered header */
.tb-testi-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.tb-testi-header .tb-label { color: rgba(255,255,255,.45); margin-bottom: 14px; display: block; }
.tb-testi-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.tb-testi-header h2 span { color: var(--c-red); }
.tb-testi-header p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tb-tp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 10px 22px;
}
.tb-tp-pill img { height: 20px; filter: brightness(0) invert(1); opacity: .75; }
.tb-tp-pill .tb-tp-sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); }
.tb-tp-pill span { font-size: 13px; color: rgba(255,255,255,.6); }
/* Swiper wrapper */
.tb-review-swiper { padding-bottom: 52px !important; }
.tb-review-swiper .swiper-slide { height: auto; }
/* Review card */
.tb-review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background .25s, border-color .25s;
}
.tb-review-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(208,0,0,.4);
}
.tb-review-quote {
  font-size: 56px;
  line-height: .8;
  color: var(--c-red);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 16px;
  opacity: .9;
}
.tb-review-card-stars {
  font-size: 15px;
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.tb-review-card-text {
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.tb-review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.tb-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tb-review-author-name { font-size: 14px; font-weight: 700; color: #fff; }
.tb-review-author-date { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 2px; }
/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(255,255,255,.1);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: background .2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--c-red); }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 900 !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--c-red) !important; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.tb-cta-section {
  padding: 32px 0;
  background: var(--c-gray50);
}
.tb-cta-inner {
  background: url('/assets/images/TR-Image-1 (1) (1).jpg') center/cover no-repeat !important;
  border-radius: var(--r-xl);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  align-items: center !important;
}
.tb-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.tb-cta-inner > * { position: relative; z-index: 1; }
.tb-cta-inner h2 {
  font-size: 44px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.tb-cta-inner h2 span { color: var(--c-red); }
.tb-cta-inner p { font-size: 16px; color: white; margin-bottom: 10px; }
.tb-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── EXPERTS SECTION ────────────────────────────────────── */
.tb-experts {
  background: var(--c-gray50);
  padding: 96px 0;
  border-top: 1px solid var(--c-gray200);
}
.tb-experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.tb-expert-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
  transition: transform .32s ease, box-shadow .32s ease;
  background: #fff;
}
.tb-expert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.tb-expert-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.tb-expert-card:hover .tb-expert-photo { transform: scale(1.04); }
.tb-expert-info {
  padding: 20px;
  background: #fff;
}
.tb-expert-info h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
}
.tb-expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.tb-expert-tag {
  background: var(--c-red-lt);
  color: var(--c-red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-red-bd);
}
.tb-expert-rating {
  font-size: 13px;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tb-expert-rating span { color: var(--c-gray600); font-size: 12px; }
.tb-experts-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CONTACT SECTION ────────────────────────────────────── */
.tb-contact {
  background: #fff;
  padding: 96px 0;
}
.tb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--c-gray50);
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.tb-contact-left {
  padding: 52px 48px;
  border-right: 1.5px solid var(--c-gray200);
}
.tb-contact-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.tb-contact-left h2 span { color: var(--c-red); }
.tb-contact-left > p {
  font-size: 15px;
  color: var(--c-gray600);
  margin-bottom: 28px;
  line-height: 1.7;
}
.tb-contact-left input,
.tb-contact-left textarea {
  width: 100%;
  display: block;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--c-text);
  background: #fff;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tb-contact-left input:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(208,0,0,.08);
}
.tb-contact-left input::placeholder { color: var(--c-gray400); }
.tb-contact-right {
  background: var(--c-navy);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Trustpilot trust badge */
.tb-contact-trust-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 36px;
}
.tb-contact-trust-badge .tb-tp-logo {
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: .8;
  flex-shrink: 0;
}
.tb-contact-trust-badge .tb-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.tb-contact-trust-badge .tb-tp-stars { height: 18px; display: block; margin-bottom: 4px; }
.tb-contact-trust-badge small { font-size: 12px; color: rgba(255,255,255,.45); }
/* Heading */
.tb-contact-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
/* Contact items */
.tb-contact-items { display: flex; flex-direction: column; gap: 0; }
.tb-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tb-contact-item:last-child { border-bottom: none; }
.tb-contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 18px;
  flex-shrink: 0;
  transition: background .2s;
}
.tb-contact-item:hover .tb-contact-item-icon { background: var(--c-red); color: #fff; }
.tb-contact-item-text { flex: 1; }
.tb-contact-item-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 3px;
}
.tb-contact-item-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.tb-contact-item-text a:hover { color: var(--c-red); }
/* Benefits grid */
.tb-contact-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tb-contact-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.tb-contact-benefit i { color: #22c55e; font-size: 13px; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
.tb-footer {
  background: #101218;
  padding: 72px 0 0;
}
.tb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.tb-footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 18px;
  display: block;
}
.tb-footer-tagline {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 24px;
}
.tb-footer-social {
  display: flex;
  gap: 10px;
}
.tb-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #9ca3af;
  font-size: 15px;
  transition: background .2s, color .2s;
}
.tb-footer-social a:hover {
  background: var(--c-red);
  color: #fff;
}
.tb-footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.tb-footer-col ul { list-style: none; }
.tb-footer-col li { margin-bottom: 11px; }
.tb-footer-col li a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color .2s;
}
.tb-footer-col li a:hover { color: #fff; }
.tb-footer-trust li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #6b7280;
  font-size: 13.5px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.tb-footer-trust li::before {
  content: '✓';
  color: var(--c-red);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.tb-footer-pay {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
  text-align: center;
}
.tb-footer-pay img {
  max-height: 42px;
  opacity: .4;
  filter: brightness(0) invert(1);
  margin: 0 auto;
  transition: opacity .2s;
}
.tb-footer-pay img:hover { opacity: .7; }
.tb-footer-bottom {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.tb-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tb-footer-bottom p { font-size: 13px; color: #4b5563; }
.tb-footer-bottom ul { display: flex; gap: 24px; list-style: none; }
.tb-footer-bottom ul a {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  transition: color .2s;
}
.tb-footer-bottom ul a:hover { color: var(--c-red); }

/* ── FOOTER ALIASES (subject pages) ─────────────────────── */
.tb-footer-brand { grid-column: span 1; }
.tb-footer-brand p { font-size: 14px; color: #6b7280; line-height: 1.75; margin-bottom: 24px; }
.tb-footer-col-h {
  font-size: 12px;
  font-weight: 800;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.tb-footer-nav { list-style: none; }
.tb-footer-nav li { margin-bottom: 11px; }
.tb-footer-nav li a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color .2s;
}
.tb-footer-nav li a:hover { color: #fff; }
.tb-footer-check {
  color: var(--c-red);
  font-weight: 900;
  margin-right: 8px;
}
.tb-footer-copy {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.tb-footer-copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tb-footer-copy p { font-size: 13px; color: #4b5563; }
.tb-footer-copy ul { display: flex; gap: 24px; list-style: none; }
.tb-footer-copy ul a {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  transition: color .2s;
}
.tb-footer-copy ul a:hover { color: var(--c-red); }
.tb-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #9ca3af;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.tb-footer-social-link:hover { background: var(--c-red); color: #fff; }

/* ── POPUP MODAL ────────────────────────────────────────── */
.tb-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tb-popup-overlay.open,
.tb-popup-overlay.active { display: flex; }
.tb-popup-card {
  background: url(/assets/images/TR-Images.jpg);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
  padding: 70px 20px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--sh-lg);
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
button.tb-popup-close {
  color: white !important;
}
.tb-popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: white !important;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.tb-popup-close:hover { color: var(--c-red); }
.tb-popup-card h3 { font-size: 35px; font-weight: 800; margin-bottom: 6px; text-align: center; color: white; }
.tb-popup-card p { font-size: 16px; color: white; margin-bottom: 20px; text-align: center; }
.tb-popup-card input {
  width: 100%;
  display: block;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-gray50);
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tb-popup-card input:focus {
  border-color: var(--c-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(208,0,0,.08);
}
.tb-popup-card input::placeholder { color: var(--c-gray400); }

/* ── SIDEBAR FORM ───────────────────────────────────────── */
.tb-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 300px;
  transition: transform .35s ease;
}
.tb-sidebar.collapsed { transform: translateY(-50%) translateX(-300px); }
.tb-sidebar-head {
  background: var(--c-red);
  color: #fff;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 0 var(--r-sm) 0 0;
  writing-mode: horizontal-tb;
}
.tb-sidebar-toggle-btn {
  position: absolute;
  right: -40px;
  top: 0;
  background: var(--c-red);
  color: #fff;
  width: 40px;
  height: 100%;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 14px 0;
}
.tb-sidebar-body {
  background: #fff;
  border: 1.5px solid var(--c-gray200);
  border-left: none;
  border-radius: 0 0 var(--r-sm) 0;
  padding: 24px 22px;
  box-shadow: 6px 4px 32px rgba(0,0,0,.12);
}
.tb-sidebar-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 4px;
}
.tb-sidebar-body > p {
  font-size: 12.5px;
  color: var(--c-gray400);
  margin-bottom: 16px;
}
.tb-sidebar-body input {
  width: 100%;
  display: block;
  border: 1.5px solid var(--c-gray200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-gray50);
  margin-bottom: 10px;
  outline: none;
  font-family: var(--font);
  transition: border-color .2s;
}
.tb-sidebar-body input:focus { border-color: var(--c-red); background: #fff; }
.tb-sidebar-body input::placeholder { color: var(--c-gray400); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.tb-wa-float {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9000;
  animation: waBounce 2.5s ease-in-out infinite;
}
.tb-wa-float img {
  width: 62px; height: 62px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── UTILITIES ──────────────────────────────────────────── */
.tb-text-center { text-align: center; }
.tb-mt-8  { margin-top: 8px; }
.tb-mt-16 { margin-top: 16px; }
.tb-mt-24 { margin-top: 24px; }
.tb-mt-40 { margin-top: 40px; }
.tb-gap-12 { gap: 12px; }
.tb-flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .tb-hero-grid { grid-template-columns: 1fr; }
  .tb-order-card { max-width: 480px; margin-top: 40px; }
  .tb-hero h1 { font-size: 38px; }
  .tb-services-layout { grid-template-columns: 1fr; }
  .tb-services-form { position: static; max-width: 520px; }
  .tb-testi-header { padding: 0 16px; }
  .tb-contact-right { border-left: none; border-top: 1.5px solid rgba(255,255,255,.06); }
  .tb-experts-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .tb-nav-links,
  .tb-nav-actions { display: none !important; }
  .tb-hamburger { display: flex; }
  .tb-hero { padding: 100px 0 60px; }
  .tb-hero h1 { font-size: 32px; letter-spacing: -1px; }
  .tb-hero-sub { font-size: 15px; }
  .tb-trust-chips { padding: 12px 14px; }
  .tb-chip-sep { display: none; }
  .tb-chip { min-width: 100px; }
  .tb-order-card { padding: 28px 22px; }
  .tb-section { padding: 64px 0; }
  .tb-section-header h2 { font-size: 28px; }
  .tb-process-steps { grid-template-columns: 1fr; }
  .tb-process-arrow { display: none; }
  .tb-service-grid { grid-template-columns: 1fr; }
  .tb-experts-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-contact-grid { grid-template-columns: 1fr; }
  .tb-contact-right { border-top: none; padding: 36px 28px; }
  .tb-contact-left { padding: 36px 28px; }
  .tb-contact-benefits { grid-template-columns: 1fr 1fr; }
  .tb-testi-header { padding: 0; }
  .tb-tp-pill { flex-wrap: wrap; justify-content: center; }
  .tb-cta-inner { padding: 52px 28px; }
  .tb-cta-inner h2 { font-size: 30px; }
  .tb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tb-footer-bottom-inner { flex-direction: column; text-align: center; }
  .tb-footer-bottom ul { justify-content: center; }
  .tb-sidebar { display: none; }
  .tb-has-dropdown .tb-dropdown { display: none !important; }
}

/* ── SUBJECT PAGE UTILITIES ─────────────────────────────── */
.tb-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}
.tb-section-h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.tb-section-sub {
  font-size: 16px;
  color: var(--c-gray600);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
}
/* Services layout for subject pages */
.tb-services-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.tb-services-sidebar { position: sticky; top: 96px; }
.tb-sidebar-card {
  background: #fff;
  border: 1px solid var(--c-gray100);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.tb-sidebar-card-head { margin-bottom: 24px; }
.tb-sidebar-card-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 12px 0 6px;
}
.tb-sidebar-card-head p { font-size: 14px; color: var(--c-gray600); }
.tb-badge-red {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tb-sidebar-form input,
.tb-sidebar-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-gray100);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s;
}
.tb-sidebar-form input:focus { border-color: var(--c-red); }
.tb-sidebar-trust {
  list-style: none;
  margin-top: 20px;
  border-top: 1px solid var(--c-gray100);
  padding-top: 20px;
}
.tb-sidebar-trust li {
  font-size: 13px;
  color: var(--c-gray600);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tb-sidebar-trust li i { color: #22c55e; font-size: 13px; }
.tb-services-cards { flex: 1; }
.tb-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
/* Process grid (subject pages use tb-process-grid not tb-process-steps) */
.tb-process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.tb-process-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
/* Testimonials trust badge */
.tb-tp-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
/* Contact additions */
.tb-contact-info-h {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 24px 0 16px;
}
.tb-contact-links {
  list-style: none;
}
.tb-contact-links li {
  margin-bottom: 14px;
}
.tb-contact-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-gray600);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.tb-contact-links li a:hover { color: var(--c-red); }
/* Expert card hire button */
.tb-expert-card .tb-btn { display: block; }

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .tb-hero h1 { font-size: 28px; }
  .tb-hero-btns { flex-direction: column; }
  .tb-hero-btns .tb-btn { width: 100%; }
  .tb-awards-row { gap: 24px; }
  .tb-awards-row img { height: 52px; }
  .tb-experts-grid { grid-template-columns: 1fr; }
  .tb-stats-grid .tb-stat-sep { display: none; }
  .tb-cards-grid { grid-template-columns: 1fr; }
  .tb-process-grid { grid-template-columns: 1fr; }
  .tb-process-arrow { display: none; }
}

/* Subject page services responsive */
@media (max-width: 1024px) {
  .tb-services-grid { grid-template-columns: 1fr; }
  .tb-services-sidebar { position: static; }
  .tb-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tb-cards-grid { grid-template-columns: 1fr; }
}

/* ── STUDENT SECTION ────────────────────────────────────── */
.student-section {
  background: #f5f5f5;
  padding: 50px 0 0px;
  position: relative;
  overflow: hidden;
}

.student-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.student-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.left-content {
  width: 60%;
  padding-bottom: 50px;
}

.left-content h2 {
  font-size: 55px;
  line-height: 1;
  margin-bottom: 35px;
  font-weight: 800;
  color: #09101d;
  font-style: italic;
}

.left-content h2 span {
  color: #e09500;
}

.left-content p {
  font-size: 14px;
  line-height: 1.9 !important;
  color: black;
  margin-bottom: 10px;
}

.left-content ul {
  margin: 15px 0 15px 0px;
}

.left-content ul li {
  font-size: 14px;
  color: black;
  margin-bottom: 5px;
  line-height: 1.2;
}

.left-content h4 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #2f3640;
  font-weight: 700;
}

.student-btn {
  display: inline-block;
  background: #0f7fd8;
  color: #fff;
  text-decoration: none;
  padding: 20px 45px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  transition: 0.3s ease;
}

.student-btn:hover {
  background: #066bb8;
}

.right-content {
  width: 40%;
  text-align: right;
}

.right-content img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .student-content {
    flex-direction: column;
  }

  .left-content,
  .right-content {
    width: 100%;
    text-align: left;
  }

  .left-content h2 {
    font-size: 52px;
  }

  .left-content ul {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .student-section {
    padding: 60px 0 100px;
  }

  .left-content h2 {
    font-size: 42px;
  }

  .left-content p,
  .left-content ul li {
    font-size: 16px;
  }

  .student-btn {
    font-size: 18px;
    padding: 16px 30px;
  }
}

/* ── FOOTER 4 ───────────────────────────────────────────── */
.footer4-section-area {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 50px 0 0 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 0;
}

/* Middle Column Alignment */
.footer-guarantee-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.money100 {
  width: 70px;
  height: auto;
}

.footer-guarantee-area a {
  color: #ffffff;
  text-decoration: underline;
}

/* DMCA Badge Styling */
.dmca-footer {
  width: 140px;
  height: auto;
}

/* Payment Image Center Custom Pill */
.footer-pay {
  background: #2b2b2b;
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-block;
}

.footer-pay-image {
  max-width: 100%;
  height: auto;
}

/* Bottom Bar Background & Divider Line */
.blc-bg {
  border-top: 1px solid #333333;
  padding: 20px 0;
  margin-top: 20px;
}

/* Copyright area alignment flexbox */
.copyright-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.copyright-area .pera p {
  margin: 0;
}

/* Links Styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-links li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-guarantee-area {
    flex-direction: column;
    text-align: center;
  }
  .copyright-area {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* ── DESKTOP / MOBILE CONTENT SWAP ──────────────────────── */
.mobile-content {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-content {
    display: none !important;
  }
  .mobile-content {
    display: block !important;
  }
}

/* ── SERVICES (alt block) ───────────────────────────────── */
.tb-services-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: Inter, sans-serif;
}

.tb-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styling */
.tb-service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.tb-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #E09500;
}

/* Icons */
.tb-service-icon {
  width: 60px;
  height: 60px;
  background-color: #eef2f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #0b1c3c;
}

.tb-service-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Typography */
.tb-service-card h3 {
  font-size: 20px;
  color: #0b1c3c;
  margin: 0 0 15px 0;
  line-height: 1.3;
  font-weight: 700;
}

.tb-service-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .tb-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tb-services-section {
    padding: 40px 15px;
  }
  .tb-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tb-service-card {
    padding: 30px 20px;
  }
}

/* ── WHY CHOOSE US ──────────────────────────────────────── */
.tb-why-choose-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: Inter, sans-serif;
}

.tb-why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image Side */
.tb-why-image-wrapper {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tb-why-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Side */
.tb-why-content {
  flex: 1;
}

.tb-why-content h2 {
  font-size: 36px;
  color: #0b1c3c;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 800;
}

/* Feature List Styling */
.tb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tb-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tb-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #E09500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.tb-feature-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.tb-feature-text h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #0b1c3c;
  font-weight: 700;
}

.tb-feature-text p {
  margin: 0;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .tb-why-container {
    flex-direction: column;
    gap: 40px;
  }

  .tb-why-content h2 {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .tb-why-choose-section {
    padding: 50px 15px;
  }
}

/* ── CUSTOM CTA SECTION ─────────────────────────────────── */
.custom-cta-section {
  position: relative;
  background: url('/assets/images/TR-Image-1 (1) (1).jpg') center center / cover no-repeat;
  padding: 80px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.custom-cta-section *,
.custom-cta-section *::before,
.custom-cta-section *::after {
  box-sizing: inherit;
}

/* Dark Overlay */
.custom-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.90);
  z-index: 1;
}

.custom-cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.custom-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Typography */
.custom-cta-inner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.custom-cta-highlight {
  color: #e09500;
  text-decoration: underline;
  text-decoration-color: #cc0101;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  border-radius: 10px;
}

/* Offer Box */
.custom-cta-offer-wrap {
  margin-bottom: 15px;
  width: 100%;
}

.custom-cta-offer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 10px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  margin: 0;
  color: #ffffff;
}

.custom-cta-free-text {
  color: #cc0101;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features Grid */
.custom-cta-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
}

.custom-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.custom-cta-feature-item p {
  margin: 0;
}

.custom-cta-feature-item strong {
  color: #ffffff;
  font-weight: 700;
}

.custom-cta-check-icon {
  width: 22px;
  height: 22px;
  fill: #22c55e;
  flex-shrink: 0;
}

/* Buttons */
.custom-cta-btns-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.custom-cta-btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.custom-cta-btn-primary:hover {
  background-color: #E09500;
  color: #ffffff;
}

.custom-cta-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.custom-cta-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.custom-cta-arrow-icon {
  width: 20px;
  height: 20px;
}

.custom-cta-wa-icon {
  width: 22px;
  height: 22px;
  color: #22c55e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .custom-cta-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom-cta-inner h2 {
    font-size: 2rem;
  }

  .custom-cta-offer-box {
    font-size: 15px;
    padding: 14px 10px;
  }
}

/* ── CTA MAIN CONTAINER ─────────────────────────────────── */
.main-container-cta {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.custom-cta-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  width: 100%;
}

.custom-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #f1f5f9;
}

.custom-cta-feature-item p {
  margin: 0;
}

.custom-cta-feature-item strong {
  color: #ffffff;
  font-weight: 700;
}

.custom-cta-check-icon {
  width: 22px;
  height: 22px;
  fill: #22c55e;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .custom-cta-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── PREMIUM SERVICES CARDS ─────────────────────────────── */
.custom-services-section {
  padding: 60px 20px;
  background-color: white;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
}

.custom-services-section *,
.custom-services-section *::before,
.custom-services-section *::after {
  box-sizing: inherit;
}

.custom-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout (Equal Heights) */
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* Premium Card Design */
.custom-service-card {
  position: relative;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1;
}

/* Top Gradient Accent Line on Cards */
.custom-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
.custom-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
  border-color: transparent;
}

.custom-service-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.custom-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbfee9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
  transition: transform 0.4s ease;
}

.custom-service-card:hover .custom-service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.custom-service-icon svg {
  width: 34px;
  height: 34px;
  fill: #E09500;
}

/* Typography */
.custom-service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.custom-service-card p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Mobile Responsiveness — hidden on phones */
@media (max-width: 992px) {
  .custom-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-services-section {
    display: none !important;
  }
}

/* ── EXPERTS CAROUSEL (mobile only) ─────────────────────── */
@media (max-width: 768px) {
  .tb-experts-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 15px !important;
    padding-bottom: 10px;
  }

  .tb-expert-card {
    flex: 0 0 75% !important;
    min-width: 75% !important;
  }

  .tb-experts-grid::-webkit-scrollbar {
    display: none;
  }
}

.tb-popup-card p .custom-cta-offer-box {
  font-size: 10px;
}