:root {
  --tba-bg: #ffffff;
  --tba-ink: #101828;
  --tba-muted: #667085;
  --tba-line: #e5eaf0;
  --tba-soft: #f5f8fb;
  --tba-navy: #0a2235;
  --tba-blue: #145078;
  --tba-teal: #0f766e;
  --tba-green: #16a34a;
  --tba-gold: #d6a541;
  --tba-white: #ffffff;
  --tba-shadow: 0 18px 48px rgba(16, 24, 40, .09);
  --tba-radius: 8px;
  --tba-container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--tba-bg);
  color: var(--tba-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--tba-blue);
}

a:hover {
  color: var(--tba-teal);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--tba-navy);
  color: #fff;
  z-index: 1000;
  clip: auto;
}

.container {
  width: min(var(--tba-container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 234, 240, .82);
}

.top-strip {
  background: var(--tba-navy);
  color: #d8e6ed;
  font-size: 13px;
}

.top-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: #fff;
  text-decoration: none;
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--tba-ink);
  text-decoration: none;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--tba-radius);
  background: linear-gradient(135deg, var(--tba-blue), var(--tba-teal));
  color: #fff;
  letter-spacing: 0;
}

.brand__text {
  font-size: 20px;
}

.primary-nav {
  justify-self: end;
}

.menu,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--tba-ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: var(--tba-soft);
  color: var(--tba-blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
}

.header-cta,
.btn-primary {
  background: var(--tba-green);
  color: #fff;
}

.header-cta:hover,
.btn-primary:hover {
  background: #12833d;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--tba-navy);
  border-color: var(--tba-line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--tba-line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--tba-ink);
}

.tba-hero,
.archive-hero,
.single-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 34, 53, .98), rgba(20, 80, 120, .92)),
    radial-gradient(circle at 80% 20%, rgba(22, 163, 74, .24), transparent 36%);
  color: #fff;
  padding: 96px 0 72px;
}

.tba-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.tba-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #bff6e3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.tba-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--tba-gold);
}

.tba-hero h1,
.archive-hero h1,
.single-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
}

.tba-lead,
.archive-hero p,
.single-hero p {
  max-width: 760px;
  margin: 0;
  color: #dcebf1;
  font-size: 18px;
}

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

.hero-panel {
  background: #fff;
  color: var(--tba-ink);
  border-radius: var(--tba-radius);
  box-shadow: var(--tba-shadow);
  padding: 28px;
}

.hero-panel--image {
  overflow: hidden;
  padding: 0;
  background: #0f2537;
}

.hero-panel--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-card,
.tba-card,
.post-card,
.info-card {
  background: #fff;
  border: 1px solid var(--tba-line);
  border-radius: var(--tba-radius);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .045);
}

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  color: var(--tba-teal);
  font-size: 28px;
  line-height: 1.1;
}

.content-section {
  padding: 76px 0;
}

.content-section.alt {
  background: var(--tba-soft);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.visual-frame {
  overflow: hidden;
  border: 1px solid var(--tba-line);
  border-radius: var(--tba-radius);
  box-shadow: var(--tba-shadow);
  background: #fff;
}

.visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-band .section-heading {
  display: block;
  margin-bottom: 22px;
}

.image-band .section-heading h2 {
  max-width: 520px;
}

.image-band .section-heading p {
  max-width: 560px;
  margin-top: 14px;
}

.article-visual {
  margin: 0 0 28px;
}

.article-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--tba-radius);
}

.home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(10, 34, 53, .98), rgba(15, 85, 105, .94) 55%, rgba(11, 53, 70, .98)),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  color: #fff;
  padding: 96px 0 74px;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(245, 248, 251, .14));
  pointer-events: none;
  z-index: -1;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.home-hero__copy {
  animation: tbaFadeUp .75s ease both;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.home-hero .btn-secondary {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #dcebf1;
  font-size: 14px;
  font-weight: 800;
}

.home-hero__visual {
  position: relative;
  min-height: 470px;
  animation: tbaFloatVisual 7s ease-in-out infinite;
}

.home-hero__image {
  display: block;
  width: 100%;
  min-height: 470px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.scan-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(191, 246, 227, .95), transparent);
  box-shadow: 0 0 18px rgba(191, 246, 227, .45);
  animation: tbaScan 4.8s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 178px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(10, 34, 53, .82);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  animation: tbaBadge 5.8s ease-in-out infinite;
}

.floating-badge strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--tba-gold);
  color: #162437;
  line-height: 1;
}

.floating-badge span {
  color: #e7f2f6;
  font-weight: 800;
  line-height: 1.25;
}

.badge-a {
  top: 24px;
  left: -18px;
}

.badge-b {
  right: -18px;
  top: 42%;
  animation-delay: .9s;
}

.badge-c {
  left: 34px;
  bottom: 24px;
  animation-delay: 1.6s;
}

.home-focus {
  background: #fff;
  padding: 0 0 26px;
}

.focus-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -34px;
}

.focus-grid article {
  padding: 24px;
  border: 1px solid var(--tba-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--tba-shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.focus-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, .32);
  box-shadow: 0 22px 44px rgba(16, 24, 40, .12);
}

.focus-grid span,
.home-service-card span,
.process-step span {
  color: var(--tba-teal);
  font-weight: 900;
  font-size: 13px;
}

.focus-grid h2 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.22;
}

.focus-grid p {
  margin: 0;
  color: var(--tba-muted);
}

.home-services {
  padding-top: 58px;
}

.featured-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--tba-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    linear-gradient(90deg, var(--tba-teal), transparent);
  color: var(--tba-ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tba-teal), var(--tba-gold));
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .25s ease;
}

.home-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 80, 120, .28);
  box-shadow: 0 24px 46px rgba(16, 24, 40, .12);
}

.home-service-card:hover::after {
  transform: scaleX(1);
}

.home-service-card h3 {
  margin: 12px 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.home-service-card p {
  margin: 0 0 18px;
  color: var(--tba-muted);
}

.home-service-card strong {
  color: var(--tba-blue);
  font-size: 14px;
}

.home-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, .18), rgba(214, 165, 65, .55), rgba(15, 118, 110, .18));
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--tba-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .045);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--tba-navy);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(15, 118, 110, .08);
  animation: tbaPulse 2.6s ease-in-out infinite;
}

.process-step:nth-child(2) span {
  animation-delay: .25s;
}

.process-step:nth-child(3) span {
  animation-delay: .5s;
}

.process-step:nth-child(4) span {
  animation-delay: .75s;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--tba-muted);
}

.home-visual-cta {
  padding: 80px 0;
  background: #fff;
}

.home-visual-cta h2,
.home-final-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
}

.home-visual-cta p,
.home-final-cta p {
  max-width: 760px;
  color: var(--tba-muted);
}

.home-final-cta {
  background: linear-gradient(135deg, var(--tba-navy), #145078);
  color: #fff;
  padding: 72px 0;
}

.home-final-cta p {
  color: #dcebf1;
}

.home-final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, .52);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

@keyframes tbaFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tbaFloatVisual {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes tbaBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes tbaScan {
  0% {
    top: 14%;
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  100% {
    top: 82%;
    opacity: 0;
  }
}

@keyframes tbaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(15, 118, 110, .08);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(15, 118, 110, .02);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .22fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: var(--tba-muted);
}

.tba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(229, 234, 240, .95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 251, .98));
  color: var(--tba-ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(16, 24, 40, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tba-teal), var(--tba-gold));
  opacity: .12;
  pointer-events: none;
}

.service-card::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tba-soft);
  color: var(--tba-blue);
  font-size: 22px;
  line-height: 1;
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, .28);
  background: #fff;
  color: var(--tba-ink);
  box-shadow: 0 26px 56px rgba(16, 24, 40, .13);
}

.service-card:hover::after {
  transform: translateX(4px);
  background: var(--tba-green);
  color: #fff;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .1);
  color: var(--tba-teal);
  font-size: 12px;
  font-weight: 900;
}

.service-card span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--tba-gold);
  box-shadow: 0 0 0 5px rgba(214, 165, 65, .14);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--tba-ink);
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  max-width: calc(100% - 30px);
  margin: 0 0 28px;
  color: var(--tba-muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card p::after {
  content: "Detaylı bilgi al";
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(20, 80, 120, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--tba-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.tba-card {
  padding: 26px;
}

.tba-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.tba-card p {
  margin: 0;
  color: var(--tba-muted);
}

.answer-box,
.geo-faq,
.intent-panel,
.entity-panel,
.proof-list,
.service-summary {
  border: 1px solid var(--tba-line);
  border-radius: var(--tba-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.answer-box {
  padding: 24px;
  border-left: 5px solid var(--tba-green);
  margin: 0 0 28px;
}

.answer-box strong,
.service-summary strong {
  display: block;
  color: var(--tba-teal);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.answer-box p,
.intent-panel p,
.entity-panel p {
  margin: 0;
}

.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 28px 0;
  background: var(--tba-line);
}

.service-summary > div {
  background: #fff;
  padding: 20px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.intent-panel,
.entity-panel {
  padding: 22px;
}

.intent-panel h3,
.entity-panel h3,
.geo-faq h3 {
  margin-top: 0;
}

.proof-list {
  padding: 24px;
  margin: 28px 0;
}

.proof-list ul {
  columns: 2;
  column-gap: 34px;
}

.geo-faq {
  padding: 8px 22px;
  margin: 28px 0;
}

.geo-faq details {
  border-bottom: 1px solid var(--tba-line);
  padding: 16px 0;
}

.geo-faq details:last-child {
  border-bottom: 0;
}

.geo-faq summary {
  cursor: pointer;
  color: var(--tba-navy);
  font-weight: 800;
}

.geo-faq p {
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  overflow: hidden;
  border-radius: var(--tba-radius);
  box-shadow: 0 0 0 1px var(--tba-line);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--tba-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--tba-soft);
  color: var(--tba-navy);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--tba-radius);
  background: #e8f7f0;
  color: var(--tba-teal);
  font-weight: 800;
}

.steps {
  counter-reset: item;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--tba-radius);
  overflow: hidden;
}

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

.dark-section .section-heading p {
  color: #c8d6de;
}

.step {
  counter-increment: item;
  padding: 28px;
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.step:last-child {
  border-right: 0;
}

.step::before {
  content: counter(item, decimal-leading-zero);
  display: block;
  color: var(--tba-gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.step h3 {
  margin: 0 0 10px;
  color: #fff;
}

.step p {
  margin: 0;
  color: #d7e3ea;
}

.entry-content {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: 64px 0;
}

.entry-content h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.entry-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 22px;
}

.entry-content p,
.entry-content li {
  color: #344054;
}

.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 130px;
  padding: 22px;
  background: var(--tba-soft);
  border: 1px solid var(--tba-line);
  border-radius: var(--tba-radius);
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--tba-line);
  border-radius: 6px;
  background: #fff;
  color: var(--tba-ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

label {
  font-weight: 650;
}

button.btn {
  cursor: pointer;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--tba-teal), var(--tba-blue));
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-box h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
}

.cta-box p {
  margin: 0;
  color: #e0f3ef;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.post-card {
  overflow: hidden;
}

.post-card__media {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: linear-gradient(135deg, #ecf8f4, #eef4fb);
  color: var(--tba-blue);
  font-weight: 800;
  text-decoration: none;
}

.post-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card__body {
  padding: 22px;
}

.post-card__date {
  margin: 0 0 8px;
  color: var(--tba-muted);
  font-size: 13px;
}

.post-card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.post-card h2 a {
  color: var(--tba-ink);
  text-decoration: none;
}

.site-footer {
  padding: 60px 0 28px;
  background: #071a29;
  color: #d9e5ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.site-footer h2 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  color: #abc0cb;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 90;
}

.floating-contact a {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--tba-green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--tba-shadow);
}

.floating-contact a:first-child {
  background: var(--tba-navy);
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    display: grid;
    gap: 4px;
    padding: 12px 0 18px;
  }

  .header-cta {
    display: none;
  }

  .tba-hero-grid,
  .home-hero__grid,
  .section-heading,
  .image-band,
  .service-layout,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    min-height: 390px;
  }

  .home-hero__image {
    min-height: 390px;
  }

  .focus-grid,
  .featured-service-grid,
  .service-grid,
  .process-grid,
  .service-summary,
  .intent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--tba-container));
  }

  .top-strip__inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tba-hero,
  .home-hero,
  .archive-hero,
  .single-hero {
    padding: 70px 0 52px;
  }

  .tba-hero h1,
  .home-hero h1,
  .archive-hero h1,
  .single-hero h1 {
    font-size: 36px;
  }

  .home-hero__grid {
    gap: 36px;
  }

  .home-hero__visual,
  .home-hero__image {
    min-height: 330px;
  }

  .floating-badge {
    min-width: 142px;
    padding: 10px;
    font-size: 13px;
  }

  .floating-badge strong {
    width: 34px;
    height: 34px;
  }

  .badge-a {
    left: 10px;
  }

  .badge-b {
    right: 10px;
  }

  .badge-c {
    left: 18px;
    bottom: 14px;
  }

  .focus-grid,
  .featured-service-grid,
  .service-grid,
  .process-grid,
  .service-summary,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .proof-list ul {
    columns: 1;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .focus-grid {
    margin-top: 18px;
  }

  .home-visual-cta,
  .home-final-cta {
    padding: 56px 0;
  }

  .hero-panel__grid {
    grid-template-columns: 1fr;
  }

  .hero-panel--image img {
    min-height: 240px;
  }

  .content-section {
    padding: 56px 0;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
  }

  .floating-contact a {
    flex: 1;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
