.elementor-5357 .elementor-element.elementor-element-02c6c0d{--display:flex;}.elementor-5357 .elementor-element.elementor-element-ff268d1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b5ef37f *//* ============================================
   GLOBAL TOKENS (reused across all sections)
   ============================================ */
:root {
  --tfs-navy: #023850;
  --tfs-navy-dark: #012838;
  --tfs-teal: #237583;
  --tfs-amber: #FFA943;
  --tfs-amber-hover: #F5941F;
  --tfs-text-dark: #1A1A1A;
  --tfs-text-gray: #595959;
  --tfs-white: #FFFFFF;
  --tfs-container-width: 1760px;
  --tfs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tfs-transition: all 0.3s ease;
}

/* ============================================
   HEADER
   ============================================ */
.tfs-header {
  width: 100%;
  background: var(--tfs-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: var(--tfs-font);
}

.tfs-header__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.tfs-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.tfs-logo__icon {
  color: var(--tfs-teal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.tfs-logo__text {
  color: var(--tfs-navy);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ---- Nav ---- */
.tfs-nav__list {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tfs-nav__link {
  color: var(--tfs-text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: var(--tfs-transition);
}

.tfs-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--tfs-teal);
  transition: width 0.3s ease;
}

.tfs-nav__link:hover {
  color: var(--tfs-teal);
}

.tfs-nav__link:hover::after {
  width: 100%;
}

/* ---- Button (reusable across whole site) ---- */
.tfs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: var(--tfs-transition);
}

.tfs-btn--primary {
  background: var(--tfs-amber);
  color: var(--tfs-white);
}

.tfs-btn--primary:hover {
  background: var(--tfs-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 169, 67, 0.35);
}

.tfs-header__cta {
  flex-shrink: 0;
}

/* ---- Mobile Toggle (hidden on desktop) ---- */
.tfs-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.tfs-menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--tfs-navy);
  border-radius: 2px;
  transition: var(--tfs-transition);
}

.tfs-menu-toggle.is-active .tfs-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.tfs-menu-toggle.is-active .tfs-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.tfs-menu-toggle.is-active .tfs-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop */
@media (max-width: 1440px) {
  .tfs-header__container {
    padding: 24px 48px;
  }
  .tfs-nav__list {
    gap: 32px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tfs-header__container {
    padding: 20px 32px;
  }

  .tfs-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--tfs-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    padding: 100px 32px 32px;
    z-index: 998;
  }

  .tfs-nav.is-open {
    right: 0;
  }

  .tfs-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .tfs-header__cta {
    display: none;
  }

  .tfs-menu-toggle {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tfs-header__container {
    padding: 16px 20px;
  }
  .tfs-logo__text {
    font-size: 16px;
  }
  .tfs-logo__icon {
    font-size: 18px;
  }
  .tfs-nav {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ea7bfe6 *//* ============================================
   HERO SECTION
   ============================================ */
.tfs-hero {
  position: relative;
  background: var(--tfs-navy);
  overflow: hidden;
  padding: 90px 0 70px;
  font-family: var(--tfs-font);
}

.tfs-hero__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* ---- Decorative elements ---- */
.tfs-hero__glow {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(80,192,179,0.12) 0%, rgba(80,192,179,0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.tfs-hero__dots {
  position: absolute;
  width: 220px;
  height: 140px;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 1;
  pointer-events: none;
}

.tfs-hero__dots--top {
  top: 40px;
  right: 60px;
}

.tfs-hero__dots--bottom {
  bottom: 30px;
  left: 20px;
  width: 140px;
}

.tfs-hero__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
  pointer-events: none;
}

/* ---- Content ---- */
.tfs-hero__content {
  position: relative;
  z-index: 2;
}

.tfs-hero__heading {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: var(--tfs-white);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.tfs-hero__subtext {
  font-size: 18px;
  line-height: 1.6;
  color: #BEE6BD;
  max-width: 480px;
  margin: 0 0 36px;
}

/* ---- Teal button variant ---- */
.tfs-btn--teal {
  background: #50C0B3;
  color: var(--tfs-white);
  gap: 10px;
}

.tfs-btn--teal:hover {
  background: #3FA99C;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(80,192,179,0.35);
}

.tfs-btn__arrow {
  transition: transform 0.3s ease;
}

.tfs-btn--teal:hover .tfs-btn__arrow {
  transform: translateX(4px);
}

/* ---- Visual / Image Card ---- */
.tfs-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tfs-hero__card {
  position: relative;
  background: #265569;
  border-radius: 24px;
  padding: 14px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.tfs-hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.tfs-hero__badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: var(--tfs-white);
  color: var(--tfs-navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* ---- Carousel Arrows ---- */
.tfs-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tfs-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 3;
  transition: var(--tfs-transition);
}

.tfs-hero__arrow:hover {
  background: #50C0B3;
}

.tfs-hero__arrow:hover svg path {
  stroke: #FFFFFF;
}

.tfs-hero__arrow--prev {
  left: -28px;
}

.tfs-hero__arrow--next {
  right: -28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop */
@media (max-width: 1440px) {
  .tfs-hero__container {
    padding: 0 48px;
    gap: 32px;
  }
  .tfs-hero__heading {
    font-size: 52px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tfs-hero {
    padding: 56px 0 60px;
  }
  .tfs-hero__container {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 48px;
    text-align: left;
  }
  .tfs-hero__heading {
    font-size: 42px;
  }
  .tfs-hero__subtext {
    max-width: 100%;
  }
  .tfs-hero__arrow {
    display: none;
  }
  .tfs-hero__card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tfs-hero__container {
    padding: 0 20px;
  }
  .tfs-hero__heading {
    font-size: 32px;
  }
  .tfs-hero__subtext {
    font-size: 16px;
  }
  .tfs-hero__badge {
    left: 16px;
    bottom: 16px;
    font-size: 12px;
    padding: 8px 14px;
  }
  .tfs-hero__dots {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f53266 *//* ============================================
   TRUST BAR / CLIENT LOGOS
   ============================================ */
.tfs-trust {
  background: var(--tfs-white);
  padding: 105px 0 125px;
  font-family: var(--tfs-font);
}

.tfs-trust__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

.tfs-trust__text {
  text-align: center;
  color: var(--tfs-navy);
  font-size: 17px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 56px;
}

.tfs-trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.tfs-trust__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 68px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  max-width: 1440px;
}

.tfs-trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tfs-trust__logo img {
  max-height: 40px;
  width: auto;
  display: block;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: var(--tfs-transition);
}

.tfs-trust__logo img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---- Arrows (reuses arrow pattern, lighter style) ---- */
.tfs-trust__arrow {
  flex-shrink: 0;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: var(--tfs-white);
  border: 1px solid #E2EAEA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tfs-transition);
}

.tfs-trust__arrow:hover {
  background: var(--tfs-teal);
  border-color: var(--tfs-teal);
}

.tfs-trust__arrow:hover svg path {
  stroke: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop */
@media (max-width: 1440px) {
  .tfs-trust__container {
    padding: 0 48px;
  }
  .tfs-trust__logos {
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tfs-trust {
    padding: 64px 0 72px;
  }
  .tfs-trust__container {
    padding: 0 32px;
  }
  .tfs-trust__text {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .tfs-trust__logos {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 44px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tfs-trust__logos::-webkit-scrollbar {
    display: none;
  }
  .tfs-trust__arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tfs-trust__container {
    padding: 0 20px;
  }
  .tfs-trust__logo img {
    max-height: 30px;
  }
  .tfs-trust__logos {
    gap: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ec66ef3 *//* ============================================
   CAPABILITIES SECTION
   ============================================ */
.tfs-capabilities {
  background: #F4F8F8;
  padding: 120px 0 100px;
  font-family: var(--tfs-font);
}

.tfs-capabilities__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

/* ---- Reusable section header pattern ---- */
.tfs-section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.tfs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tfs-teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.tfs-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #50C0B3;
  display: inline-block;
}

.tfs-heading-serif {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: var(--tfs-navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.tfs-body-text {
  font-size: 17px;
  line-height: 1.7;
  color: #41535C;
  margin: 0;
}

/* ---- Tabs Layout ---- */
.tfs-tabs {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

.tfs-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tfs-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: var(--tfs-white);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--tfs-font);
  transition: var(--tfs-transition);
  box-shadow: 0 2px 8px rgba(2,57,80,0.04);
}

.tfs-tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(35,117,131,0.1);
  color: var(--tfs-teal);
  flex-shrink: 0;
  transition: var(--tfs-transition);
}

.tfs-tab__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--tfs-navy);
  transition: var(--tfs-transition);
}

.tfs-tab:hover {
  box-shadow: 0 6px 16px rgba(2,57,80,0.1);
  transform: translateY(-1px);
}

.tfs-tab.is-active {
  background: var(--tfs-navy);
}

.tfs-tab.is-active .tfs-tab__icon {
  background: rgba(80,192,179,0.2);
  color: #50C0B3;
}

.tfs-tab.is-active .tfs-tab__label {
  color: var(--tfs-white);
}

/* ---- Detail Panel ---- */
.tfs-tabs__panel {
  background: var(--tfs-white);
  border: 1px solid #E2EAEA;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(2,57,80,0.06);
}

.tfs-tabs__panel-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--tfs-navy);
  margin: 0 0 16px;
}

.tfs-tabs__panel-text {
  font-size: 16px;
  line-height: 1.7;
  color: #41535C;
  margin: 0 0 32px;
}

.tfs-checklist {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.tfs-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tfs-checklist__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tfs-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.tfs-checklist__text {
  font-size: 15px;
  font-weight: 500;
  color: #41535C;
  line-height: 1.5;
}

.tfs-checklist__text--highlight {
  color: #1F7A52;
  font-weight: 600;
}

.tfs-tabs__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tfs-teal);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tfs-transition);
}

.tfs-tabs__panel-link svg {
  transition: transform 0.3s ease;
}

.tfs-tabs__panel-link:hover {
  color: var(--tfs-navy);
}

.tfs-tabs__panel-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop */
@media (max-width: 1440px) {
  .tfs-capabilities__container {
    padding: 0 48px;
  }
  .tfs-tabs {
    grid-template-columns: 320px 1fr;
  }
  .tfs-tabs__panel {
    padding: 36px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tfs-capabilities {
    padding: 72px 0;
  }
  .tfs-capabilities__container {
    padding: 0 32px;
  }
  .tfs-heading-serif {
    font-size: 32px;
  }
  .tfs-tabs {
    grid-template-columns: 1fr;
  }
  .tfs-tabs__list {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .tfs-tabs__list::-webkit-scrollbar {
    display: none;
  }
  .tfs-tab {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .tfs-checklist {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tfs-capabilities__container {
    padding: 0 20px;
  }
  .tfs-heading-serif {
    font-size: 26px;
  }
  .tfs-tabs__panel {
    padding: 24px;
    border-radius: 16px;
  }
  .tfs-tabs__panel-title {
    font-size: 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16f34aa *//* ============================================
   CTA BANNER SECTION
   ============================================ */
.tfs-cta-banner-wrap {
  background: var(--tfs-white);
  padding: 60px 0;
  font-family: var(--tfs-font);
}

.tfs-cta-banner-wrap__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

.tfs-cta-banner {
  background: var(--tfs-navy);
  border-radius: 28px;
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 32px rgba(2,57,80,0.15);
}

.tfs-cta-banner__text {
  color: var(--tfs-white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  max-width: 700px;
}

.tfs-cta-banner__btn {
  flex-shrink: 0;
  padding: 18px 36px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop */
@media (max-width: 1440px) {
  .tfs-cta-banner-wrap__container {
    padding: 0 48px;
  }
  .tfs-cta-banner {
    padding: 36px 44px;
  }
  .tfs-cta-banner__text {
    font-size: 26px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tfs-cta-banner-wrap {
    padding: 48px 0;
  }
  .tfs-cta-banner-wrap__container {
    padding: 0 32px;
  }
  .tfs-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 36px;
    border-radius: 20px;
  }
  .tfs-cta-banner__text {
    font-size: 24px;
    max-width: 100%;
  }
  .tfs-cta-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tfs-cta-banner-wrap__container {
    padding: 0 20px;
  }
  .tfs-cta-banner {
    padding: 28px 24px;
  }
  .tfs-cta-banner__text {
    font-size: 20px;
  }
  .tfs-cta-banner__btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a6bcfc0 *//* ============================================
   COMPARISON SECTION — PHOTO + OVERLAY (FIXED)
   ============================================ */
.tfs-comparison {
  background: var(--tfs-white);
  padding: 110px 0;
  font-family: var(--tfs-font);
}

.tfs-comparison__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

.tfs-section-header--center {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.tfs-eyebrow--center { justify-content: center; }
.tfs-heading-serif--center { text-align: center; }
.tfs-body-text--center {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* ---- Photo container ---- */
.tfs-iceberg-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 2880 / 1925;
  border-radius: 24px;
  overflow: hidden;
  background: #cfe4ec; /* visible placeholder tone while image loads */
}

.tfs-iceberg-photo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Top labels ---- */
.tfs-iceberg-photo__label {
  position: absolute;
  top: 16.8%;
  height: 7.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2,57,80,0.92);
  color: #FFFFFF;
  font-weight: 700;
  font-size: clamp(11px, 1.5vw, 20px);
  border-radius: 50px;
  text-align: center;
  padding: 0 12px;
  z-index: 2;
}

.tfs-iceberg-photo__label--left { left: 7.4%; width: 32.3%; }
.tfs-iceberg-photo__label--right { left: 61.4%; width: 30.3%; }

/* ---- Item columns ---- */
.tfs-iceberg-photo__col {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
}

.tfs-iceberg-photo__col--left { left: 9.2%; width: 28.4%; }
.tfs-iceberg-photo__col--right { left: 62.3%; width: 28.4%; }

.tfs-iceberg-photo__pill {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 3.6%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: clamp(8px, 0.95vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tfs-iceberg-photo__pill--dark { background: rgba(2,57,80,0.92); color: #FFFFFF; }
.tfs-iceberg-photo__pill--light { background: rgba(255,255,255,0.94); color: var(--tfs-navy); }

.tfs-iceberg-photo__pill:nth-child(1) { top: 37.7%; }
.tfs-iceberg-photo__pill:nth-child(2) { top: 46.2%; }
.tfs-iceberg-photo__pill:nth-child(3) { top: 54.5%; }
.tfs-iceberg-photo__pill:nth-child(4) { top: 63.4%; }
.tfs-iceberg-photo__pill:nth-child(5) { top: 72.2%; }
.tfs-iceberg-photo__pill:nth-child(6) { top: 80.3%; }

/* ---- Side icons ---- */
.tfs-iceberg-photo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tfs-iceberg-photo__icon--dark {
  background: rgba(255,255,255,0.15);
  color: #4FD1E0; /* teal accent matched from source */
}

.tfs-iceberg-photo__icon--light {
  background: rgba(35,117,131,0.1);
  color: var(--tfs-teal);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1440px) {
  .tfs-comparison__container { padding: 0 48px; }
}

@media (max-width: 992px) {
  .tfs-comparison { padding: 72px 0; }
  .tfs-comparison__container { padding: 0 32px; }
  .tfs-heading-serif--center { font-size: 30px; }
}

@media (max-width: 700px) {
  .tfs-iceberg-photo {
    aspect-ratio: auto;
    border-radius: 16px;
    background: linear-gradient(180deg, #1E6E93 0%, #062A40 100%);
  }
  .tfs-iceberg-photo__bg { display: none; }
  .tfs-iceberg-photo__label {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    font-size: 16px;
    padding: 12px;
  }
  .tfs-iceberg-photo__col {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
  .tfs-iceberg-photo__pill {
    position: static;
    width: 100%;
    font-size: 14px;
    padding: 14px 16px;
  }
  .tfs-iceberg-photo__col--right { margin-top: 8px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f6de77f *//* ============================= */
/* SECTION 8: AI EVOLUTION SECTION */
/* ============================= */

.ai-evo-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(160deg, #fbe4d8 0%, #f7ecec 40%, #f4f0ee 100%);
  box-sizing: border-box;
}

.ai-evo-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Intro Banner --- */
.ai-evo-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(168, 168, 148, 0.55);
  border-radius: 20px;
  padding: 22px 28px;
  max-width: 780px;
  margin: 0 0 56px 0;
  backdrop-filter: blur(2px);
}

.ai-evo-banner-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8493c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-evo-banner-icon svg {
  width: 18px;
  height: 18px;
}

.ai-evo-banner-text h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
}

.ai-evo-banner-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
}

/* --- Section Heading --- */
.ai-evo-heading {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px 0;
}

/* --- Cards Stack --- */
.ai-evo-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-evo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  padding: 32px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-evo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.ai-evo-card--dark {
  background: #0a1929;
}

.ai-evo-card--teal {
  background: linear-gradient(135deg, #0c3b52 0%, #0e4a63 100%);
}

.ai-evo-card-left {
  flex: 1 1 auto;
}

.ai-evo-card-left h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.ai-evo-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-evo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.ai-evo-check-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

/* --- Card 1 Right: Tag List --- */
.ai-evo-card-right {
  flex-shrink: 0;
}

.ai-evo-tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-evo-tag-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
}

.ai-evo-tag-list li:last-child {
  margin-bottom: 0;
}

.plus-icon {
  color: #4dd8e8;
  font-weight: 700;
  font-size: 15px;
}

/* --- Card 2 & 3 Right: Icon Badge --- */
.ai-evo-icon-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-evo-icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(77, 216, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-evo-icon-badge svg {
  width: 40px;
  height: 40px;
}

/* ============================= */
/* RESPONSIVE — TABLET */
/* ============================= */
@media (max-width: 1024px) {
  .ai-evo-card {
    padding: 28px 30px;
  }
  .ai-evo-heading {
    font-size: 30px;
  }
}

/* ============================= */
/* RESPONSIVE — MOBILE */
/* ============================= */
@media (max-width: 768px) {
  .ai-evo-section {
    padding: 56px 16px;
  }

  .ai-evo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .ai-evo-heading {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .ai-evo-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .ai-evo-card-right {
    align-self: center;
    margin-top: 20px;
  }

  .ai-evo-tag-list li {
    font-size: 13.5px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a9ac266 *//* ============================================
   CASE STUDIES SECTION — CORRECTED (3-COLUMN GRID)
   ============================================ */
.tfs-results {
  background: #F4F8F8;
  padding: 110px 0;
  font-family: var(--tfs-font);
}

.tfs-results__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

.tfs-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.tfs-eyebrow--navy { color: var(--tfs-navy); }

.tfs-results__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tfs-teal);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--tfs-transition);
}
.tfs-results__view-all:hover { color: var(--tfs-navy); }

/* ---- 3-column grid ---- */
.tfs-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tfs-case-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(2,57,80,0.06);
}

/* ---- Gradient header per card ---- */
.tfs-case-card__header {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tfs-case-card--navy .tfs-case-card__header { background: #01374F; }
.tfs-case-card--teal .tfs-case-card__header { background: #237583; }
.tfs-case-card--mint .tfs-case-card__header { background: #4FBFB3; }

.tfs-case-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.18);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.tfs-case-card__stat {
  color: #FFFFFF;
  font-size: 34px;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
  line-height: 1.1;
}

.tfs-case-card__caption {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

/* ---- White body ---- */
.tfs-case-card__body {
  background: #FFFFFF;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tfs-case-card__desc {
  color: #5A6B72;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.tfs-case-card__metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #EEF2F2;
}

.tfs-case-card__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tfs-case-card__metric-num {
  color: var(--tfs-navy);
  font-size: 16px;
  font-weight: 700;
}

.tfs-case-card__metric-label {
  color: #8A9AA1;
  font-size: 12px;
}

.tfs-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tfs-teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: var(--tfs-transition);
}
.tfs-case-card__link:hover { color: var(--tfs-navy); }
.tfs-case-card__link svg { transition: transform 0.3s ease; }
.tfs-case-card__link:hover svg { transform: translateX(3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1440px) {
  .tfs-results__container { padding: 0 48px; }
}

@media (max-width: 992px) {
  .tfs-results { padding: 72px 0; }
  .tfs-results__container { padding: 0 32px; }
  .tfs-results__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tfs-heading-serif { font-size: 30px; }
  .tfs-results__grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .tfs-results__container { padding: 0 20px; }
  .tfs-case-card__header { padding: 24px 20px 20px; }
  .tfs-case-card__body { padding: 20px; }
  .tfs-case-card__stat { font-size: 28px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aad15b5 *//* ============================================
   WHY FRACTIONAL SEO SECTION — CORRECTED
   ============================================ */
.tfs-why {
  background: var(--tfs-white);
  padding: 110px 0;
  font-family: var(--tfs-font);
}

.tfs-why__container {
  max-width: var(--tfs-container-width);
  margin: 0 auto;
  padding: 0 80px;
}

.tfs-section-header--center { margin-bottom: 56px; }

/* ---- Pillar Cards ---- */
.tfs-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.tfs-pillar {
  background: #FFFFFF;
  border: 1px solid #ECEFEF;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(2,57,80,0.04);
}

.tfs-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.tfs-pillar__icon--navy { background: var(--tfs-navy); }
.tfs-pillar__icon--teal { background: var(--tfs-teal); }
.tfs-pillar__icon--mint { background: #50C0B3; }

.tfs-pillar__title {
  color: var(--tfs-navy);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.tfs-pillar__desc {
  color: #6B7B82;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---- Testimonial (solid navy) ---- */
.tfs-testimonial {
  background: var(--tfs-navy);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tfs-testimonial__mark {
  display: block;
  color: #50C0B3;
  font-size: 56px;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.tfs-testimonial__quote {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 28px;
}

.tfs-testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tfs-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4EBFB3;
  color: #023950;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.tfs-testimonial__name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
}

.tfs-testimonial__title {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1440px) {
  .tfs-why__container { padding: 0 48px; }
}

@media (max-width: 992px) {
  .tfs-why { padding: 72px 0; }
  .tfs-why__container { padding: 0 32px; }
  .tfs-heading-serif--center { font-size: 30px; }
  .tfs-pillars { grid-template-columns: 1fr; }
  .tfs-testimonial { padding: 40px 32px; }
  .tfs-testimonial__quote { font-size: 18px; }
}

@media (max-width: 576px) {
  .tfs-why__container { padding: 0 20px; }
  .tfs-pillar { padding: 24px; }
  .tfs-testimonial { padding: 32px 24px; border-radius: 18px; }
  .tfs-testimonial__mark { font-size: 44px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-07a58f3 *//* ============================================
   WHO WE HELP (INDUSTRIES)
   ============================================ */
.tfs-industries {
  background: #FFFFFF;
  padding: 90px 0;
  font-family: var(--tfs-font);
}

.tfs-industries__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.tfs-heading-serif--center {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  color: #023950;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* ---- "Industries" pill tag ---- */
.tfs-industries__tag {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #E2EAEA;
  color: #6B7B82;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 40px;
}

/* ---- 2x3 grid of chip cards ---- */
.tfs-industries__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tfs-industries__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #E2EAEA;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #023950;
  text-align: left;
  transition: all 0.3s ease;
}

.tfs-industries__icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #237583;
  flex-shrink: 0;
}

.tfs-industries__chip:hover {
  border-color: #237583;
  box-shadow: 0 4px 12px rgba(35,117,131,0.08);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .tfs-industries { padding: 64px 0; }
  .tfs-heading-serif--center { font-size: 28px; }
}

@media (max-width: 576px) {
  .tfs-industries__container { padding: 0 20px; }
  .tfs-industries__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tfs-industries__chip {
    font-size: 13px;
    padding: 14px 16px;
  }
}/* End custom CSS */