/* ================================================================
   Register for Work — standalone landing page styles
   Scoped entirely under .tc-lp to avoid theme conflicts.
   Brand colours: navy #112967, blue #0065E4, white #ffffff.
   Headings: font-weight 400 (regular) throughout.
   ================================================================ */


/* ── Reset (scoped to avoid breaking the site nav/header) ── */
.tc-lp *, .tc-lp *::before, .tc-lp *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.tc-register-landing {
  background: #F7F9FC;
  overflow-x: hidden;
}

/* Hide the "I'm looking for work" search bar in the site nav on this page */
body.tc-register-landing .jobs_archive_showing_but_not_in_jobpage_shortcode {
  display: none !important;
}

.tc-lp {
  font-family: 'Oakes Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #1a202c;
  --navy: #112967;
  --navy-deep: #0a1f54;
  --blue: #0065E4;
  --bg: #F7F9FC;
  --card: #ffffff;
  --text: #1a202c;
  --muted: #6b7280;
  --border: #E2E8F0;
}

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

.tc-lp ul { list-style: none; }
.tc-lp img { max-width: 100%; display: block; }

/* ── Shared container ── */
.tc-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ================================================================
   SECTION 1 — MINI NAV
   ================================================================ */
.tc-nav {
  position: sticky;
  top: 0;
  height: 64px;
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.tc-nav__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tc-nav__mark {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.tc-nav__wordmark {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}

.tc-nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.tc-nav__cta {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.tc-lp .tc-nav__cta:hover {
  text-decoration: underline;
  color: #fff;
}

/* ================================================================
   SECTION 2 — HERO
   ================================================================ */
.tc-hero {
  background: #fff;
  padding: 24px 5% 60px;
  position: relative;
  overflow: hidden;
}

.tc-hero__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 101, 228, 0.07), transparent 70%);
  pointer-events: none;
}

.tc-hero__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .tc-hero {
    padding: 32px 5% 80px;
  }
  .tc-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1600px) {
  .tc-hero {
    min-height: calc(100vh - 126px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.tc-hero h1 {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.tc-hero__sub {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.tc-hero__sub--cta {
  font-weight: 600;
  color: #112967;
}

.tc-hero__app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}


/* ── Hero buttons: exact match to site's Elementor global kit button style ── */
.tc-lp .tc-hero__ctas .elementor-button {
  background-color: #0065E4;
  color: #ffffff !important;
  border-style: solid;
  border-width: 1px;
  border-color: #0065E4;
  border-radius: 99px;
  padding: 20px 32px;
  font-family: 'Oakes Grotesk', Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  text-align: center;
  cursor: pointer;
}

.tc-lp .tc-hero__ctas .elementor-button:hover,
.tc-lp .tc-hero__ctas .elementor-button:focus {
  background-color: transparent;
  color: #0065E4 !important;
  border-color: #0065E4;
}

/* Ghost / outline variant for the "How it works" scroll link */
.tc-lp .tc-hero__ctas .tc-hero-btn-ghost {
  background-color: transparent !important;
  color: #0065E4 !important;
}

.tc-lp .tc-hero__ctas .tc-hero-btn-ghost:hover,
.tc-lp .tc-hero__ctas .tc-hero-btn-ghost:focus {
  background-color: #0065E4 !important;
  color: #ffffff !important;
}

/* Phone mockups — two images side by side */
.tc-hero__mockups {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.tc-hero__mockups img {
  display: block;
  max-height: 480px;
  width: auto;
}

@media (max-width: 899px) {
  .tc-hero {
    padding: 32px 5% 48px;
  }
  .tc-hero__grid {
    gap: 28px;
  }
  .tc-hero__mockups {
    gap: 12px;
  }
  .tc-hero__mockups img {
    width: calc(50% - 6px);
    height: auto;
    max-height: none;
  }
}

/* ================================================================
   SECTION 2B — BENEFITS TICKER BANNER
   ================================================================ */
.tc-ticker {
  background: #f3f7fd;
  overflow: hidden;
}

.tc-ticker__track {
  display: flex;
  width: max-content;
  animation: tc-ticker-scroll 28s linear infinite;
}


.tc-ticker__set {
  display: flex;
  align-items: center;
  padding: 14px 0;
  white-space: nowrap;
}

.tc-ticker__sep {
  display: flex;
  align-items: center;
  padding: 0 32px;
  flex-shrink: 0;
}

.tc-ticker__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #132965;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Oakes Grotesk', sans-serif;
  font-weight: 400;
  white-space: nowrap;
  min-width: 320px;
}

@media (max-width: 899px) {
  .tc-ticker__item {
    min-width: 0;
    padding: 0 16px;
  }
}

@keyframes tc-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ================================================================
   SECTION 3 — HOW IT WORKS
   ================================================================ */
.tc-how {
  background: #fff;
  padding: 64px 5%;
}

.tc-how__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.tc-how__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.tc-how__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

.tc-how__heading {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  color: #132965;
  margin: 0;
}

.tc-how__sub {
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  max-width: 393px;
  margin: 0;
  flex-shrink: 0;
}

.tc-how__divider {
  height: 1px;
  background: #cfe2ff;
  width: 100%;
  margin-bottom: 40px;
}

.tc-how__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .tc-how__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tc-step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tc-step-card__img {
  height: 227px;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-step-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-step-card__line {
  height: 1px;
  background: #cfe2ff;
  flex-shrink: 0;
}

.tc-step-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-step-card__body h3 {
  font-size: 24px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
  margin: 0;
}

.tc-step-card__body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 699px) {
  .tc-how__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-how__sub {
    max-width: 100%;
  }
}

/* ================================================================
   SECTION 4 — INDUSTRIES
   ================================================================ */
.tc-industries {
  background: #f3f7fd;
  padding: 64px 5%;
  text-align: center;
}

.tc-industries__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tc-industries__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #112967;
  line-height: 1.2;
  margin: 0 0 16px;
}

.tc-industries__sub {
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 32px;
}

.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.tc-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 400;
  color: var(--navy);
  font-size: 14px;
}

/* ================================================================
   SECTION 5 — REGISTER CTA
   ================================================================ */
.tc-register {
  background: #fff;
  padding: 64px 5%;
}

.tc-register__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .tc-register__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tc-register__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tc-register__left h2 {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  color: #112967;
  margin: 0;
  line-height: 1.2;
}

.tc-register__left > p {
  color: #6b7280;
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
}

.tc-register__checklist {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-register__checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a202c;
  font-size: 16px;
  line-height: 1.5;
}

.tc-register__checklist li svg {
  flex-shrink: 0;
}

.tc-lp .tc-register__btn {
  display: inline-flex;
  align-self: flex-start;
  background-color: #0065E4;
  color: #ffffff !important;
  border: 1px solid #0065E4;
  border-radius: 99px;
  padding: 20px 32px;
  font-family: 'Oakes Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none !important;
  transition: all 0.3s;
}

.tc-lp .tc-register__btn:hover {
  background-color: transparent;
  color: #0065E4 !important;
}

.tc-register__proof {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.tc-register__image {
  border-radius: 8px;
  overflow: hidden;
  height: 614px;
}

.tc-register__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 899px) {
  .tc-register__image {
    height: 300px;
  }
}

/* Form card */
.tc-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.tc-form-card h3 {
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.tc-form-card__lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.tc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .tc-form-row {
    grid-template-columns: 1fr;
  }
}

.tc-form-group {
  margin-bottom: 14px;
}

.tc-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tc-form-group input,
.tc-form-group select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.tc-form-group input:focus,
.tc-form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 101, 228, 0.12);
}

.tc-form-group input::placeholder {
  color: #aab0c8;
}

.tc-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}

.tc-lp .tc-form-card .tc-form-card__btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  background-color: #0065E4;
  color: #ffffff !important;
  border-style: solid;
  border-width: 1px;
  border-color: #0065E4;
  border-radius: 99px;
  padding: 20px 32px;
  font-family: 'Oakes Grotesk', Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  justify-content: center;
  transition: all .3s;
  cursor: pointer;
}

.tc-lp .tc-form-card .tc-form-card__btn:hover,
.tc-lp .tc-form-card .tc-form-card__btn:focus {
  background-color: transparent;
  color: #0065E4 !important;
  border-color: #0065E4;
}

.tc-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

#tc-form-error {
  color: #dc2626;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Success card */
.tc-success-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.tc-success-card__icon {
  width: 64px;
  height: 64px;
  background: #e8f0fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.tc-success-card h3 {
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.tc-success-card > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.tc-msg-preview {
  background: #f8fafc;
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text);
  text-align: left;
}

.tc-btn-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 400;
  border-radius: 12px;
  padding: 13px 24px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  font-size: 15px;
}

.tc-lp .tc-btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 101, 228, 0.35);
  color: #fff;
}

/* ================================================================
   SECTION 6 — MEET THE TEAM
   ================================================================ */
.tc-team {
  background: #f3f7fd;
  padding: 64px 5%;
}

.tc-team__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.tc-team__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.tc-team__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

.tc-team__heading {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  color: #132965;
  margin: 0;
}

.tc-team__sub {
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  max-width: 393px;
  margin: 0;
  flex-shrink: 0;
}

.tc-team__divider {
  height: 1px;
  background: #cfe2ff;
  width: 100%;
  margin-bottom: 40px;
}

.tc-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .tc-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tc-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tc-team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tc-team-card:hover {
  border-color: #0065e4;
  box-shadow: 0 14px 40px rgba(17, 41, 103, 0.12);
}

.tc-team-card:hover .tc-team-card__icon path {
  stroke: #0065e4;
}

.tc-team-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  flex-shrink: 0;
}

.tc-team-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  background: #0065e4;
  flex-shrink: 0;
  overflow: hidden;
}

.tc-team-card__avatar--photo {
  background: none;
}

.tc-team-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-team-card__name {
  font-size: 20px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
  margin: 0 0 4px;
}

.tc-team-card__role {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.tc-team-card__spec {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.tc-team-card__phone-wrap {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.tc-team-card__phone {
  font-size: 16px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
}

@media (max-width: 699px) {
  .tc-team__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-team__sub {
    max-width: 100%;
  }
}

/* ================================================================
   SECTION 7 — WHATSAPP COMMUNITY
   ================================================================ */
.tc-whatsapp {
  background: #fff;
  padding: 64px 5%;
}

.tc-whatsapp__container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.tc-whatsapp__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tc-whatsapp__icon-lg svg {
  width: 64px;
  height: 64px;
  display: block;
}

.tc-whatsapp__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #112967;
  line-height: 1.2;
  margin: 0;
}

.tc-whatsapp__green {
  color: #25d366;
}

.tc-whatsapp__sub {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}

.tc-whatsapp__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .tc-whatsapp__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.tc-whatsapp-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tc-whatsapp-card__img {
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-whatsapp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-whatsapp-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-whatsapp-card__title-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tc-whatsapp-card__wa-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.tc-whatsapp-card__name {
  font-size: 20px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
}

.tc-lp .tc-whatsapp-card__btn {
  display: inline-flex;
  align-self: flex-start;
  background-color: #0065e4;
  color: #ffffff !important;
  border: 1px solid #0065e4;
  border-radius: 99px;
  padding: 16px 28px;
  font-family: 'Oakes Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none !important;
  transition: all 0.3s;
  cursor: pointer;
}

.tc-lp .tc-whatsapp-card__btn:hover {
  background-color: transparent;
  color: #0065e4 !important;
}

/* ================================================================
   SECTION 8 — FAQ
   ================================================================ */
.tc-faq {
  background: #fff;
  padding: 112px 5%;
  overflow-x: hidden;
}

.tc-faq__inner {
  display: grid;
  grid-template-columns: 5fr 6.5fr;
  gap: 80px;
  align-items: start;
}

.tc-faq__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.tc-faq__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

.tc-faq__heading {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: #132965;
  line-height: 1.2;
  margin: 0;
}

.tc-faq__sub {
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  margin: 0;
}

.tc-faq__item {
  border-bottom: 1px solid #0065e4;
}

.tc-faq__item:first-child {
  border-top: 1px solid #0065e4;
}

.tc-faq__q {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 20px 0 !important;
  margin: 0;
  font-family: 'Oakes Grotesk', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #132965 !important;
  text-align: left !important;
  cursor: pointer;
  line-height: 1.5 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
}

.tc-faq__q-text {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
}

.tc-faq__chevron {
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.35s ease;
}

.tc-faq__item--open .tc-faq__chevron {
  transform: rotate(0deg);
}

.tc-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.tc-faq__item--open .tc-faq__a {
  max-height: 400px;
}

.tc-faq__a-inner {
  padding-bottom: 24px;
}

.tc-faq__a p {
  font-size: 16px;
  color: #132965;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 899px) {
  .tc-faq {
    padding: 64px 5%;
  }
  .tc-faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    min-width: 0;
  }
  .tc-faq__left {
    position: static;
    width: 100%;
    min-width: 0;
  }
  .tc-faq__list {
    width: 100%;
    min-width: 0;
  }
  .tc-faq__item {
    width: 100%;
    min-width: 0;
  }
}

/* ================================================================
   SECTION 9 — APP DOWNLOAD
   ================================================================ */
.tc-app {
  background: #f3f7fd;
  padding: 64px 5%;
  text-align: center;
}

.tc-app .tc-container {
  max-width: 620px;
}

.tc-app h2 {
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: #112967;
  margin: 0 0 12px;
}

.tc-app__sub {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.tc-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  padding-top: 20px;
}

.tc-app-badge-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.tc-app-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.tc-app-badge-link img {
  display: block;
  height: 53px;
  width: auto;
}



/* ================================================================
   SECTION 9 — FOOTER STRIP
   ================================================================ */
.tc-footer {
  background: var(--navy);
  padding: 32px 5%;
  text-align: center;
}

.tc-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.tc-footer__mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  flex-shrink: 0;
}

.tc-footer__wordmark {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
}

.tc-footer__company {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 12px;
}

.tc-footer__links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.tc-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}

.tc-footer__links a:hover {
  color: #fff;
}
