:root {
  --ta-white: #ffffff;
  --ta-surface: #f5f5f7;
  --ta-surface-strong: #eceff4;
  --ta-navy: #1d365c;
  --ta-purple: #5a2682;
  --ta-blue: #0071e3;
  --ta-blue-dark: #005bb8;
  --ta-text: #1d1d1f;
  --ta-muted: #667085;
  --ta-line: #d9dde4;
  --ta-success: #2f8f64;
  --ta-shadow: 0 18px 45px rgba(29, 54, 92, 0.12);
  --ta-radius: 8px;
  --ta-content: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ta-white);
  color: var(--ta-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
textarea,
select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ta-site,
.ta-site * {
  box-sizing: border-box;
}

.ta-site a {
  color: inherit;
  text-decoration: none;
}

.ta-site button,
.ta-site a,
.ta-site input {
  -webkit-tap-highlight-color: transparent;
}

.ta-site :focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 3px;
}

.ta-shell {
  width: min(var(--ta-content), calc(100% - 48px));
  margin: 0 auto;
}

.ta-section {
  padding: 104px 0;
}

.ta-section--soft {
  background: var(--ta-surface);
}

.ta-section--tight {
  padding: 76px 0;
}

.ta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--ta-purple);
  font-size: 13px;
  font-weight: 600;
}

.ta-kicker i {
  color: var(--ta-blue);
}

.ta-heading,
.ta-section-title {
  margin: 0;
  color: var(--ta-navy);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: 0;
}

.ta-heading {
  max-width: 820px;
  font-size: 64px;
}

.ta-section-title {
  font-size: 48px;
}

.ta-copy {
  margin: 18px 0 0;
  color: var(--ta-muted);
  font-size: 19px;
  line-height: 1.62;
}

.ta-copy--lead {
  max-width: 720px;
  color: #3f4756;
  font-size: 22px;
}

.ta-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 23px;
  font-size: 15px;
  font-weight: 560;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ta-button:hover {
  transform: translateY(-1px);
}

.ta-button:active {
  transform: scale(0.98);
}

.ta-button--primary {
  background: var(--ta-blue);
  color: var(--ta-white);
}

.ta-button--primary:hover,
.ta-button--primary:focus {
  background: var(--ta-blue-dark);
  color: var(--ta-white);
}

.ta-button--primary:visited {
  background: var(--ta-blue);
  color: var(--ta-white);
}

.ta-site .ta-button--primary,
.ta-site .ta-button--primary:hover,
.ta-site .ta-button--primary:focus,
.ta-site .ta-button--primary:visited {
  color: var(--ta-white) !important;
}

.ta-button--secondary {
  border-color: rgba(29, 54, 92, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ta-navy);
}

.ta-button--secondary:hover {
  border-color: rgba(29, 54, 92, 0.34);
  background: var(--ta-white);
}

.ta-header-shell {
  position: relative;
  z-index: 50;
}

.ta-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 64px;
  border-bottom: 1px solid rgba(217, 221, 228, 0.74);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.ta-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(29, 54, 92, 0.08);
}

.ta-header__inner {
  display: grid;
  width: min(var(--ta-content), calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.ta-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ta-navy);
  font-size: 16px;
  font-weight: 650;
}

.ta-logo__image {
  display: block;
  width: 220px;
  aspect-ratio: 1126 / 112;
  background: url("../images/brand/trace-agile-logo.png") center / contain no-repeat;
}

.ta-logo__mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--ta-purple);
  color: var(--ta-white);
  font-size: 13px;
}

.ta-logo__accent {
  color: var(--ta-purple);
}

.ta-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.ta-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: #29364a;
  font-size: 15px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.ta-nav a:hover {
  background: rgba(29, 54, 92, 0.07);
  color: var(--ta-navy);
}

.ta-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.ta-header-cta {
  min-height: 40px;
  padding: 11px 18px;
  font-size: 14px;
}

.ta-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ta-navy);
  cursor: pointer;
}

.ta-menu-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ta-main {
  background: var(--ta-white);
}

.ta-hero {
  position: relative;
  min-height: 760px;
  padding: 152px 0 96px;
  overflow: hidden;
  background: #eef2f8;
}

.ta-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(ellipse at 24% 52%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 38%, rgba(255, 255, 255, 0.54) 66%, rgba(255, 255, 255, 0.16) 100%);
}

.ta-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ta-hero-slide {
  position: absolute;
  inset: 0;
  animation: taHeroFade 20s infinite both;
  background-position: 68% center;
  background-size: cover;
}

.ta-hero-slide:nth-child(1) {
  animation-delay: 0s;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06)),
    url("../images/generated/hero-banner.jpg");
}

.ta-hero-slide:nth-child(2) {
  animation-delay: 5s;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08)),
    url("../images/generated/hero-banner.jpg");
}

.ta-hero-slide:nth-child(3) {
  animation-delay: 10s;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
    url("../images/generated/hero-banner.jpg");
}

.ta-hero-slide:nth-child(4) {
  animation-delay: 15s;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.06)),
    url("../images/generated/hero-banner.jpg");
}

.ta-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  align-items: center;
}

.ta-hero-lockup {
  max-width: 760px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.ta-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ta-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.ta-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29, 54, 92, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: #33425a;
  font-size: 13px;
  font-weight: 520;
}

.ta-pill i {
  color: var(--ta-purple);
}

.ta-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 64px;
}

.ta-about-content {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
}

.ta-about-content .ta-section-title {
  font-size: 42px;
}

.ta-about-content .ta-copy {
  font-size: 17px;
}

.ta-photo-placeholder,
.ta-project-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 54, 92, 0.09);
  border-radius: var(--ta-radius);
  background:
    radial-gradient(circle at 24% 22%, rgba(90, 38, 130, 0.12), transparent 30%),
    radial-gradient(circle at 80% 76%, rgba(0, 113, 227, 0.12), transparent 34%),
    linear-gradient(135deg, #eef2f7, #ffffff 48%, #e7edf5);
}

.ta-photo-placeholder {
  min-height: 560px;
  box-shadow: var(--ta-shadow);
  background-position: center;
  background-size: cover;
}

.ta-about-grid > .ta-photo-placeholder {
  background-image: url("../images/generated/about-real-task.jpg");
}

.ta-about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 28px;
}

.ta-info-tile,
.ta-step,
.ta-news-card,
.ta-stat,
.ta-callback {
  border: 1px solid rgba(29, 54, 92, 0.09);
  border-radius: var(--ta-radius);
  background: var(--ta-white);
}

.ta-info-tile {
  padding: 18px;
}

.ta-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(90, 38, 130, 0.1);
  color: var(--ta-purple);
  font-size: 17px;
}

.ta-info-tile h3,
.ta-step h3,
.ta-news-card h3,
.ta-card h3,
.ta-project-card h3 {
  margin: 16px 0 0;
  color: var(--ta-navy);
  font-size: 21px;
  font-weight: 560;
  line-height: 1.22;
}

.ta-info-tile p,
.ta-step p,
.ta-news-card p,
.ta-card p,
.ta-project-card p {
  margin: 10px 0 0;
  color: var(--ta-muted);
  font-size: 15px;
  line-height: 1.58;
}

.ta-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.ta-section-head .ta-copy {
  max-width: 420px;
  margin: 0;
  font-size: 17px;
}

.ta-carousel-wrap {
  position: relative;
}

.ta-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ta-carousel::-webkit-scrollbar {
  display: none;
}

.ta-card {
  position: relative;
  display: flex;
  min-height: 385px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(29, 54, 92, 0.09);
  border-radius: var(--ta-radius);
  background: var(--ta-white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ta-card:hover,
.ta-project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ta-shadow);
}

.ta-card__top {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ta-card .ta-icon {
  background: var(--ta-surface);
  color: var(--ta-navy);
}

.ta-card h3 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.16;
}

.ta-service-card {
  justify-content: space-between;
}

.ta-service-card h3 {
  max-width: 100%;
  min-height: 52px;
  padding-right: 12px;
  font-size: 21px;
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.ta-service-art {
  position: relative;
  display: grid;
  min-height: 178px;
  place-items: center;
  margin: 26px 0 24px;
}

.ta-service-art::before {
  width: min(74%, 190px);
  aspect-ratio: 1.25;
  border-radius: 999px;
  content: "";
  background:
    radial-gradient(circle at 48% 40%, rgba(90, 38, 130, 0.16), transparent 38%),
    radial-gradient(circle at 58% 60%, rgba(0, 113, 227, 0.14), transparent 42%);
  filter: blur(0.2px);
}

.ta-service-card:nth-child(1) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-engineering-systems.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(2) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-information-security.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(3) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-information-infrastructure.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(4) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-telecommunications.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(5) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-ups-power.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(6) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-structured-cabling.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(7) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-unified-communications.png") center / contain no-repeat;
  filter: none;
}

.ta-service-card:nth-child(8) .ta-service-art::before {
  width: 100%;
  background: url("../images/generated/service-data-backup.png") center / contain no-repeat;
  filter: none;
}

.ta-card-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 54, 92, 0.1);
  color: #46536a;
  font-size: 14px;
  line-height: 1.58;
}

.ta-card-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #2a2a2d;
  color: var(--ta-white);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.ta-service-card .ta-card-toggle {
  align-self: flex-end;
}

.ta-service-card.is-open {
  justify-content: flex-start;
}

.ta-service-card.is-open .ta-service-art {
  min-height: 132px;
  margin-bottom: 18px;
}

.ta-card-toggle:hover {
  background: var(--ta-blue);
}

.ta-card-toggle i {
  transition: transform 180ms ease;
}

.ta-card-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.ta-carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.ta-carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #e8ebf0;
  color: var(--ta-navy);
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.ta-carousel-button:hover:not(:disabled) {
  background: #dce1e8;
  transform: translateY(-1px);
}

.ta-carousel-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.ta-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 56px;
  align-items: center;
}

.ta-why-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.ta-why-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ta-why-note {
  margin-top: 4px;
  color: #46536a;
  font-size: 17px;
  line-height: 1.62;
}

.ta-why-photo {
  min-height: 500px;
  background-image: url("../images/generated/why-no-boxed-solutions.jpg");
}

.ta-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ta-stat {
  display: grid;
  min-height: 150px;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.ta-stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(90, 38, 130, 0.1);
  color: var(--ta-purple);
  font-size: 17px;
}

.ta-stat strong {
  color: var(--ta-navy);
  font-size: 40px;
  font-weight: 560;
  line-height: 1;
}

.ta-stat span {
  color: var(--ta-muted);
  font-size: 15px;
  line-height: 1.45;
}

.ta-projects .ta-carousel {
  grid-auto-columns: calc((100% - 48px) / 3);
}

.ta-project-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: var(--ta-radius);
  background: #111827;
  color: var(--ta-white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ta-project-card--light {
  background: var(--ta-white);
  color: var(--ta-text);
}

.ta-project-visual {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  opacity: 0.88;
}

.ta-project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.58));
}

.ta-project-card--light::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.52) 45%, rgba(255, 255, 255, 0.86));
}

.ta-project-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.ta-project-card h3,
.ta-project-card p {
  color: inherit;
}

.ta-project-card .ta-card-detail {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
}

.ta-project-card--light .ta-card-detail {
  border-color: rgba(29, 54, 92, 0.1);
  color: #46536a;
}

.ta-project-meta {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.78;
}

.ta-process-timeline {
  position: relative;
  margin-top: 46px;
  padding-top: 42px;
}

.ta-process-line {
  position: absolute;
  top: 20px;
  right: 12.5%;
  left: 12.5%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe4ec;
}

.ta-process-line::after {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  content: "";
  transform-origin: left center;
  background: linear-gradient(90deg, var(--ta-purple), var(--ta-blue));
  animation: taProcessLine 3.6s ease both;
}

.ta-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.ta-step {
  position: relative;
  min-height: 270px;
  padding: 24px;
  animation: taStepReveal 520ms ease both;
}

.ta-step:nth-child(1) {
  animation-delay: 160ms;
}

.ta-step:nth-child(2) {
  animation-delay: 950ms;
}

.ta-step:nth-child(3) {
  animation-delay: 1740ms;
}

.ta-step:nth-child(4) {
  animation-delay: 2530ms;
}

.ta-step-dot {
  position: absolute;
  top: -30px;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid var(--ta-white);
  border-radius: 999px;
  background: var(--ta-purple);
  box-shadow: 0 0 0 1px rgba(29, 54, 92, 0.12), 0 8px 18px rgba(29, 54, 92, 0.14);
  animation: taStepDot 520ms ease both;
}

.ta-step:nth-child(1) .ta-step-dot {
  animation-delay: 160ms;
}

.ta-step:nth-child(2) .ta-step-dot {
  animation-delay: 950ms;
}

.ta-step:nth-child(3) .ta-step-dot {
  animation-delay: 1740ms;
}

.ta-step:nth-child(4) .ta-step-dot {
  animation-delay: 2530ms;
}

.ta-step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(29, 54, 92, 0.25);
  font-size: 44px;
  font-weight: 560;
  line-height: 1;
}

.ta-step-number i {
  color: var(--ta-purple);
  font-size: 21px;
}

.ta-cta {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 54, 92, 0.96) 0%, rgba(29, 54, 92, 0.86) 48%, rgba(90, 38, 130, 0.66) 100%),
    url("../images/generated/hero-banner.jpg") 70% center / cover no-repeat;
  color: var(--ta-white);
}

.ta-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.ta-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 42px;
  align-items: center;
}

.ta-cta .ta-heading,
.ta-cta .ta-copy {
  color: var(--ta-white);
}

.ta-cta .ta-copy {
  opacity: 0.82;
}

.ta-callback {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.ta-form {
  display: grid;
  gap: 12px;
}

.ta-field {
  display: grid;
  gap: 7px;
}

.ta-field span {
  color: #344055;
  font-size: 13px;
  font-weight: 560;
}

.ta-field input,
.ta-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(29, 54, 92, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--ta-white);
  color: var(--ta-text);
  font-size: 16px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ta-field textarea {
  min-height: 98px;
  resize: vertical;
}

.ta-field input:focus,
.ta-field textarea:focus {
  border-color: var(--ta-blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.ta-form-note {
  margin: 4px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.ta-news-carousel {
  grid-auto-columns: calc((100% - 32px) / 3);
  margin-top: 34px;
}

.ta-news-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  scroll-snap-align: start;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ta-news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ta-shadow);
}

.ta-news-card time {
  color: var(--ta-purple);
  font-size: 13px;
  font-weight: 600;
}

.ta-news-card .ta-button {
  width: fit-content;
  margin-top: 24px;
}

.ta-footer {
  background: var(--ta-surface);
  color: #3f4756;
}

.ta-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  padding: 70px 0 46px;
  border-bottom: 1px solid rgba(29, 54, 92, 0.1);
}

.ta-footer__brand {
  max-width: 520px;
}

.ta-footer__brandline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 28px;
  border-bottom: 1px solid rgba(29, 54, 92, 0.1);
}

.ta-logo--footer .ta-logo__image {
  width: 270px;
}

.ta-footer__brandline p {
  max-width: 560px;
  margin: 0;
  color: #4b5565;
  font-size: 17px;
  line-height: 1.58;
}

.ta-footer__brand p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.62;
}

.ta-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 38px 0 40px;
}

.ta-footer h3 {
  margin: 0 0 14px;
  color: var(--ta-navy);
  font-size: 16px;
  font-weight: 650;
}

.ta-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ta-footer a,
.ta-footer li,
.ta-footer p {
  color: #5a6576;
  font-size: 16px;
  line-height: 1.5;
}

.ta-footer .ta-footer__brandline p {
  color: #4b5565;
  font-size: 17px;
  line-height: 1.58;
}

.ta-footer a:hover {
  color: var(--ta-blue);
}

.ta-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(29, 54, 92, 0.1);
  color: #6b7280;
  font-size: 14px;
}

.ta-social {
  display: flex;
  gap: 10px;
}

.ta-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--ta-white);
  color: var(--ta-navy);
}

.ta-social a:hover {
  color: var(--ta-purple);
}

@keyframes taHeroFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  7%,
  25% {
    opacity: 1;
    transform: scale(1);
  }
  32%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes taProcessLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes taProcessLineVertical {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes taStepReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes taStepDot {
  0% {
    transform: translateX(-50%) scale(0.75);
    background: #c7ceda;
  }
  100% {
    transform: translateX(-50%) scale(1);
    background: var(--ta-purple);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .ta-heading {
    font-size: 56px;
  }

  .ta-section-title {
    font-size: 42px;
  }

  .ta-carousel {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

  .ta-projects .ta-carousel {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .ta-news-carousel {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .ta-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ta-shell {
    width: min(100% - 32px, var(--ta-content));
  }

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

  .ta-header__inner {
    width: min(100% - 28px, var(--ta-content));
    grid-template-columns: auto auto;
  }

  .ta-logo__image {
    width: 180px;
  }

  .ta-menu-button {
    display: grid;
  }

  .ta-header-actions {
    justify-self: end;
  }

  .ta-header-cta {
    display: none;
  }

  .ta-nav {
    position: absolute;
    top: 64px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(29, 54, 92, 0.1);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ta-shadow);
  }

  .ta-header.is-menu-open .ta-nav {
    display: flex;
  }

  .ta-nav a {
    justify-content: center;
    min-height: 44px;
  }

  .ta-hero {
    min-height: 700px;
    padding-top: 128px;
  }

  .ta-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.56) 100%);
  }

  .ta-heading {
    font-size: 46px;
  }

  .ta-section-title {
    font-size: 36px;
  }

  .ta-copy,
  .ta-copy--lead {
    font-size: 18px;
  }

  .ta-about-grid,
  .ta-why-grid,
  .ta-cta-grid,
  .ta-footer__top {
    grid-template-columns: 1fr;
  }

  .ta-footer__brandline {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 0 26px;
  }

  .ta-process-timeline {
    padding-top: 0;
    padding-left: 28px;
  }

  .ta-process-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 8px;
    width: 4px;
    height: auto;
  }

  .ta-process-line::after {
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: center top;
    animation-name: taProcessLineVertical;
  }

  .ta-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ta-step-dot {
    top: 28px;
    left: -20px;
  }

  .ta-photo-placeholder {
    min-height: 360px;
  }

  .ta-why-photo {
    min-height: 360px;
  }

  .ta-about-content {
    min-height: auto;
  }

  .ta-about-content .ta-section-title {
    font-size: 36px;
  }

  .ta-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ta-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-carousel,
  .ta-projects .ta-carousel {
    grid-auto-columns: min(82vw, 360px);
  }

  .ta-news-carousel {
    grid-auto-columns: min(82vw, 360px);
  }

  .ta-project-card {
    min-height: 520px;
  }

  .ta-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ta-section {
    padding: 64px 0;
  }

  .ta-hero {
    min-height: 680px;
    padding: 112px 0 64px;
  }

  .ta-logo__image {
    width: 154px;
  }

  .ta-logo--footer .ta-logo__image {
    width: 230px;
  }

  .ta-heading {
    font-size: 38px;
    line-height: 1.09;
  }

  .ta-section-title {
    font-size: 31px;
    line-height: 1.12;
  }

  .ta-copy,
  .ta-copy--lead {
    font-size: 17px;
  }

  .ta-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ta-button {
    width: 100%;
  }

  .ta-about-cards,
  .ta-why-tiles,
  .ta-stats,
  .ta-footer__grid {
    grid-template-columns: 1fr;
  }

  .ta-card {
    min-height: 360px;
  }

  .ta-service-card h3 {
    min-height: auto;
    font-size: 20px;
  }

  .ta-service-art {
    min-height: 150px;
  }

  .ta-project-card {
    min-height: 490px;
  }

  .ta-news-card {
    min-height: 300px;
  }

  .ta-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
