/* ==========================================================================
   Transarabe International — Translation Services V2
   Isolated stylesheet. All public selectors use the ts- prefix.
   ========================================================================== */

:root {
  --ts-navy-950: #041326;
  --ts-navy-900: #071b34;
  --ts-navy-850: #0a2444;
  --ts-navy-800: #0d2d53;
  --ts-blue-600: #175d9c;
  --ts-gold-500: #f2c34b;
  --ts-gold-400: #ffd467;
  --ts-gold-300: #ffe6a2;
  --ts-ink: #13243a;
  --ts-muted: #64748b;
  --ts-line: #dbe3ec;
  --ts-surface: #ffffff;
  --ts-soft: #f5f8fb;
  --ts-success: #20c879;
  --ts-whatsapp: #19b866;
  --ts-shadow-sm: 0 10px 30px rgba(9, 31, 59, 0.08);
  --ts-shadow-md: 0 22px 60px rgba(6, 25, 48, 0.14);
  --ts-shadow-lg: 0 35px 90px rgba(4, 19, 38, 0.25);
  --ts-radius-sm: 12px;
  --ts-radius-md: 20px;
  --ts-radius-lg: 30px;
  --ts-shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ts-ink);
  background: var(--ts-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ts-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ts-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ts-navy-950);
  font-weight: 800;
  text-decoration: none;
}

.ts-skip-link:focus {
  transform: translateY(0);
}

.ts-shell {
  width: var(--ts-shell);
  margin-inline: auto;
}

.ts-preview-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 20px;
  color: #fff6d7;
  background: linear-gradient(90deg, #855500, #a76d00, #855500);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.ts-preview-bar strong {
  color: #fff;
}

.ts-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 27, 52, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.ts-header.is-scrolled {
  height: 72px;
  box-shadow: 0 8px 25px rgba(7, 27, 52, 0.09);
}

.ts-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ts-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ts-navy-900);
  text-decoration: none;
  flex-shrink: 0;
}

.ts-brand__mark {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  filter: drop-shadow(0 8px 15px rgba(7, 27, 52, 0.18));
}

.ts-brand__mark rect {
  fill: var(--ts-navy-900);
}

.ts-brand__mark path {
  fill: #fff;
}

.ts-brand__mark .ts-brand__gold {
  fill: var(--ts-gold-500);
}

.ts-brand__text {
  display: grid;
  gap: 0;
  line-height: 1.12;
}

.ts-brand__text strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.ts-brand__text small {
  margin-top: 3px;
  color: #9a6a07;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ts-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.ts-nav > a {
  position: relative;
  color: #263b55;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.ts-nav > a:not(.ts-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--ts-gold-500);
  transition: right 180ms ease;
}

.ts-nav > a:not(.ts-button):hover::after,
.ts-nav > a:not(.ts-button):focus-visible::after {
  right: 0;
}

.ts-nav .ts-nav__global {
  color: #986700;
}

.ts-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ts-line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.ts-menu-button > span:not(.sr-only) {
  width: 21px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ts-navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.ts-menu-button[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.ts-menu-button[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.ts-menu-button[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.ts-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.ts-button:hover {
  transform: translateY(-2px);
}

.ts-button:focus-visible,
.ts-nav a:focus-visible,
.ts-brand:focus-visible,
.ts-text-link:focus-visible {
  outline: 3px solid rgba(242, 195, 75, 0.55);
  outline-offset: 4px;
}

.ts-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-button--small {
  min-height: 42px;
  padding-inline: 17px;
  color: var(--ts-navy-950) !important;
  background: var(--ts-gold-500);
  box-shadow: 0 8px 22px rgba(242, 195, 75, 0.25);
}

.ts-button--gold {
  color: var(--ts-navy-950);
  background: linear-gradient(135deg, var(--ts-gold-400), var(--ts-gold-500));
  box-shadow: 0 15px 34px rgba(242, 195, 75, 0.26);
}

.ts-button--gold:hover {
  box-shadow: 0 18px 40px rgba(242, 195, 75, 0.36);
}

.ts-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.ts-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.ts-button--navy {
  color: #fff;
  background: var(--ts-navy-900);
  box-shadow: 0 14px 30px rgba(7, 27, 52, 0.18);
}

.ts-button--full {
  width: 100%;
}

.ts-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(24, 92, 154, 0.42), transparent 32%),
    linear-gradient(118deg, var(--ts-navy-950) 0%, var(--ts-navy-900) 55%, #0d315d 100%);
}

.ts-hero::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.018),
    0 0 0 145px rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.ts-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
}

.ts-hero__glow--one {
  top: 10%;
  left: 18%;
  width: 220px;
  height: 220px;
  background: #1f77c6;
}

.ts-hero__glow--two {
  right: 12%;
  bottom: 15%;
  width: 150px;
  height: 150px;
  background: var(--ts-gold-500);
  opacity: 0.11;
}

.ts-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding-bottom: 80px;
}

.ts-eyebrow,
.ts-kicker {
  margin: 0 0 18px;
  color: #8a610d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ts-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dbe8f5;
}

.ts-eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--ts-gold-500);
}

.ts-hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(46px, 6vw, 77px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.ts-hero h1 em {
  display: block;
  color: var(--ts-gold-400);
  font-style: normal;
}

.ts-hero__lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #c9d6e5;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.ts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ts-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.ts-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce8f4;
  font-size: 13px;
  font-weight: 700;
}

.ts-trust-list svg,
.ts-check-list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  color: var(--ts-navy-950);
  background: var(--ts-gold-500);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.ts-hero__visual {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: center;
}

.ts-hero-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 500px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ts-radius-lg);
  box-shadow: var(--ts-shadow-lg);
  transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
}

.ts-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.ts-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.ts-hero-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 19, 38, 0.04) 30%, rgba(4, 19, 38, 0.92) 100%),
    linear-gradient(90deg, rgba(4, 19, 38, 0.25), transparent 45%);
}

.ts-hero-card__label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(7, 27, 52, 0.74);
  backdrop-filter: blur(14px);
}

.ts-hero-card__seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 13px;
  color: var(--ts-navy-950);
  background: var(--ts-gold-500);
}

.ts-hero-card__seal svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-hero-card__label span:last-child {
  display: grid;
  line-height: 1.25;
}

.ts-hero-card__label small {
  color: #aebed0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ts-hero-card__label strong {
  margin-top: 3px;
  font-size: 14px;
}

.ts-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: #fff;
  background: rgba(17, 51, 86, 0.78);
  box-shadow: 0 20px 45px rgba(2, 14, 29, 0.3);
  backdrop-filter: blur(16px);
}

.ts-float-card--top {
  top: 35px;
  left: -35px;
}

.ts-float-card--bottom {
  right: -30px;
  bottom: 36px;
}

.ts-float-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--ts-navy-950);
  background: var(--ts-gold-500);
}

.ts-float-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-float-card__status {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ts-success);
  box-shadow: 0 0 0 5px rgba(32, 200, 121, 0.13);
}

.ts-float-card > span:last-child {
  display: grid;
  line-height: 1.2;
}

.ts-float-card strong {
  font-size: 12px;
}

.ts-float-card small {
  margin-top: 3px;
  color: #afc0d0;
  font-size: 10px;
}

.ts-authority-strip {
  position: relative;
  z-index: 3;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: -43px;
  padding: 19px 28px;
  color: var(--ts-ink);
  background: #fff;
  border: 1px solid rgba(7, 27, 52, 0.08);
  border-radius: 18px;
  box-shadow: var(--ts-shadow-md);
}

.ts-authority-strip > span {
  color: var(--ts-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ts-authority-strip ul {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ts-authority-strip li {
  position: relative;
  color: #31465d;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ts-authority-strip li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 1px;
  height: 20px;
  background: var(--ts-line);
  transform: translateY(-50%);
}

.ts-section {
  padding: 110px 0;
}

.ts-section--light {
  padding-top: 145px;
  background:
    linear-gradient(rgba(245, 248, 251, 0.94), rgba(245, 248, 251, 0.94)),
    radial-gradient(circle at 15% 20%, rgba(23, 93, 156, 0.08), transparent 30%);
}

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

.ts-section--navy {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(37, 110, 179, 0.32), transparent 35%),
    var(--ts-navy-900);
}

.ts-section--navy::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018);
}

.ts-section--faq {
  background:
    linear-gradient(120deg, #f7f9fc, #fff 70%);
}

.ts-section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.ts-section-heading--left {
  max-width: 700px;
  margin-inline: 0;
  text-align: left;
}

.ts-section-heading h2,
.ts-pricing-intro h2,
.ts-legal-copy h2,
.ts-faq-intro h2,
.ts-contact__copy h2,
.ts-expertise-copy h2 {
  margin: 0;
  color: var(--ts-navy-900);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.ts-section-heading > p:last-child,
.ts-pricing-intro > p,
.ts-legal-copy > p,
.ts-faq-intro > p,
.ts-expertise-copy > p {
  margin: 20px 0 0;
  color: var(--ts-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ts-kicker--gold {
  color: var(--ts-gold-400);
}

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

.ts-service-card {
  position: relative;
  overflow: hidden;
  min-height: 465px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(7, 27, 52, 0.09);
  border-radius: var(--ts-radius-md);
  background: #fff;
  box-shadow: var(--ts-shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ts-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 195, 75, 0.7);
  box-shadow: var(--ts-shadow-md);
}

.ts-service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 93, 156, 0.07), transparent 70%);
  pointer-events: none;
}

.ts-service-card--featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(32, 103, 168, 0.5), transparent 40%),
    var(--ts-navy-900);
}

.ts-service-card__number {
  position: absolute;
  top: 23px;
  right: 27px;
  color: rgba(7, 27, 52, 0.1);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.ts-service-card--featured .ts-service-card__number {
  color: rgba(255, 255, 255, 0.11);
}

.ts-service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  color: var(--ts-navy-900);
  background: rgba(242, 195, 75, 0.92);
  box-shadow: 0 12px 28px rgba(242, 195, 75, 0.22);
}

.ts-service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-service-card h3 {
  margin: 0;
  color: var(--ts-navy-900);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ts-service-card--featured h3 {
  color: #fff;
}

.ts-service-card > p {
  margin: 14px 0 20px;
  color: var(--ts-muted);
  line-height: 1.7;
}

.ts-service-card--featured > p {
  color: #c6d5e4;
}

.ts-service-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ts-service-card li {
  position: relative;
  padding-left: 22px;
  color: #40556c;
  font-size: 14px;
}

.ts-service-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ts-gold-500);
}

.ts-service-card--featured li {
  color: #d5e1ec;
}

.ts-service-card > a {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #8b6009;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.ts-service-card--featured > a {
  color: var(--ts-gold-400);
}

.ts-service-card > a span {
  transition: transform 180ms ease;
}

.ts-service-card > a:hover span {
  transform: translateX(4px);
}

.ts-expertise-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.ts-expertise-copy h2 {
  color: #fff;
}

.ts-expertise-copy > p {
  color: #bdcddd;
}

.ts-expertise-points {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.ts-expertise-points > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  align-items: start;
}

.ts-expertise-points > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 195, 75, 0.35);
  border-radius: 11px;
  color: var(--ts-gold-400);
  font-size: 11px;
  font-weight: 900;
}

.ts-expertise-points p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: #aebfd0;
  font-size: 14px;
}

.ts-expertise-points strong {
  color: #fff;
  font-size: 15px;
}

.ts-expertise-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
}

.ts-expertise-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
  color: #afc0d2;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ts-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ts-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ts-success);
  box-shadow: 0 0 0 4px rgba(32, 200, 121, 0.12);
}

.ts-capability {
  margin-top: 25px;
}

.ts-capability span {
  display: block;
  margin-bottom: 9px;
  color: #dce8f3;
  font-size: 13px;
  font-weight: 700;
}

.ts-capability > i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.ts-capability > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ts-gold-500), #fff0b7);
  box-shadow: 0 0 20px rgba(242, 195, 75, 0.35);
}

.ts-expertise-panel__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ts-expertise-panel__footer span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ts-navy-950);
  background: var(--ts-gold-500);
  font-size: 12px;
  font-weight: 900;
}

.ts-expertise-panel__footer b {
  color: #97adbf;
}

.ts-expertise-panel__footer small {
  margin-left: auto;
  color: #91a6b9;
  font-size: 11px;
}

.ts-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.ts-process::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ccd8e5 12%, #ccd8e5 88%, transparent);
}

.ts-process li {
  position: relative;
  z-index: 2;
  padding: 0 25px;
  text-align: center;
}

.ts-process__number {
  display: block;
  margin-bottom: 13px;
  color: #a0afbf;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ts-process__icon {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 7px solid #fff;
  border-radius: 50%;
  color: var(--ts-navy-900);
  background: var(--ts-gold-500);
  box-shadow:
    0 0 0 1px rgba(7, 27, 52, 0.08),
    0 12px 26px rgba(7, 27, 52, 0.12);
}

.ts-process__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-process h3 {
  margin: 0;
  color: var(--ts-navy-900);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.ts-process p {
  margin: 10px 0 0;
  color: var(--ts-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ts-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.ts-pricing-intro > p {
  max-width: 500px;
}

.ts-pricing-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid #d9e2eb;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
}

.ts-pricing-note svg {
  width: 31px;
  height: 31px;
  padding: 6px;
  border-radius: 9px;
  color: #8b610b;
  background: rgba(242, 195, 75, 0.18);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-pricing-note p {
  margin: 0;
  color: #56697e;
  font-size: 13px;
  line-height: 1.55;
}

.ts-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #8c6109;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.ts-pricing-card {
  overflow: hidden;
  border: 1px solid rgba(7, 27, 52, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ts-shadow-md);
}

.ts-pricing-card__head {
  display: flex;
  justify-content: space-between;
  padding: 19px 24px;
  color: #fff;
  background: var(--ts-navy-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ts-pricing-card dl {
  margin: 0;
  padding: 10px 24px;
}

.ts-pricing-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 0;
  border-bottom: 1px solid #edf1f5;
}

.ts-pricing-card dl > div:last-child {
  border-bottom: 0;
}

.ts-pricing-card dt {
  color: #344a61;
  font-size: 14px;
}

.ts-pricing-card dd {
  margin: 0;
  color: var(--ts-navy-900);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.ts-pricing-card__extras {
  padding: 18px 24px 20px;
  background: #f5f8fb;
  border-top: 1px solid #e1e8ef;
}

.ts-pricing-card__extras p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  color: #67798d;
  font-size: 12px;
}

.ts-pricing-card__extras strong {
  color: #96680a;
  white-space: nowrap;
}

.ts-legal-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.ts-legal-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 35px;
  overflow: hidden;
  color: #fff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(44, 115, 182, 0.6), transparent 42%),
    var(--ts-navy-900);
  box-shadow: var(--ts-shadow-lg);
}

.ts-legal-visual::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.02);
}

.ts-legal-visual__seal {
  position: absolute;
  top: 39px;
  right: 38px;
  width: 170px;
  height: 170px;
  color: var(--ts-gold-500);
  opacity: 0.9;
  transform: rotate(-8deg);
}

.ts-legal-visual__seal svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ts-legal-visual__seal path {
  fill: rgba(242, 195, 75, 0.08);
}

.ts-legal-visual > span {
  position: relative;
  z-index: 2;
  color: var(--ts-gold-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ts-legal-visual > strong {
  position: relative;
  z-index: 2;
  margin-top: 9px;
  font-size: 31px;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.ts-check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ts-check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #40566d;
  font-size: 15px;
}

.ts-disclaimer {
  margin-top: 26px !important;
  padding: 14px 16px;
  border-left: 3px solid var(--ts-gold-500);
  color: #6a7b8e !important;
  background: #f7f9fb;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.ts-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.ts-faq-intro {
  position: sticky;
  top: 112px;
}

.ts-faq-intro .ts-button {
  margin-top: 27px;
}

.ts-accordion {
  display: grid;
  gap: 13px;
}

.ts-accordion details {
  overflow: hidden;
  border: 1px solid #dce4ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(9, 31, 59, 0.045);
}

.ts-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 21px 23px;
  color: var(--ts-navy-900);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.ts-accordion summary::-webkit-details-marker {
  display: none;
}

.ts-accordion summary span {
  position: relative;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #edf2f6;
}

.ts-accordion summary span::before,
.ts-accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--ts-navy-900);
  transform: translate(-50%, -50%);
}

.ts-accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.ts-accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ts-accordion details p {
  margin: 0;
  padding: 0 23px 22px;
  color: var(--ts-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ts-contact {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 25%, rgba(38, 112, 180, 0.32), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(242, 195, 75, 0.1), transparent 27%),
    var(--ts-navy-950);
}

.ts-contact::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018);
}

.ts-contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.ts-contact__copy h2 {
  color: #fff;
}

.ts-contact__copy > p {
  max-width: 550px;
  margin: 23px 0 0;
  color: #b9c9d9;
  font-size: 17px;
  line-height: 1.75;
}

.ts-contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.ts-contact-cards a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.ts-contact-cards a:hover {
  border-color: rgba(242, 195, 75, 0.35);
  background: rgba(255, 255, 255, 0.085);
}

.ts-contact-cards a > span:first-child {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--ts-navy-950);
  background: var(--ts-gold-500);
}

.ts-contact-cards svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-contact-cards a > span:last-child {
  display: grid;
  gap: 2px;
}

.ts-contact-cards small {
  color: #a8bacb;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ts-contact-cards strong {
  font-size: 14px;
}

.ts-security-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 22px;
  color: #aebfd0;
}

.ts-security-note svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid rgba(242, 195, 75, 0.3);
  border-radius: 10px;
  color: var(--ts-gold-400);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-security-note p {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.ts-security-note strong {
  color: #fff;
  font-size: 13px;
}

.ts-form-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: var(--ts-ink);
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.ts-form-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6ebf0;
}

.ts-form-card__head small {
  color: #8b610b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ts-form-card__head h3 {
  margin: 4px 0 0;
  color: var(--ts-navy-900);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ts-form-card__head > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #17794e;
  background: #e7f8f0;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.ts-form-card form {
  display: grid;
  gap: 17px;
}

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

.ts-field > label:first-child {
  color: #34485e;
  font-size: 12px;
  font-weight: 800;
}

.ts-field > label span {
  color: #a76600;
}

.ts-field input[type="text"],
.ts-field input[type="email"],
.ts-field textarea {
  width: 100%;
  border: 1px solid #d6dfe8;
  border-radius: 11px;
  color: var(--ts-ink);
  background: #fbfcfd;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ts-field input[type="text"],
.ts-field input[type="email"] {
  height: 47px;
  padding: 0 13px;
}

.ts-field textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.ts-field input:focus,
.ts-field textarea:focus {
  border-color: #c19332;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 195, 75, 0.14);
}

.ts-file-drop {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 17px;
  border: 1.5px dashed #b9c6d3;
  border-radius: 13px;
  background: #f7f9fb;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.ts-file-drop:hover,
.ts-file-drop.is-dragging {
  border-color: #b47d10;
  background: #fffaf0;
}

.ts-file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.ts-file-drop__icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--ts-navy-900);
  background: rgba(242, 195, 75, 0.82);
}

.ts-file-drop__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-file-drop > span:last-child {
  display: grid;
  gap: 3px;
  color: #32475e;
  font-size: 13px;
}

.ts-file-drop small {
  color: #7a8b9c;
  font-size: 11px;
}

.ts-file-list {
  display: grid;
  gap: 5px;
}

.ts-file-list:not(:empty) {
  margin-top: 3px;
}

.ts-file-list span {
  overflow: hidden;
  color: #566a7e;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ts-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #6a7b8e;
  font-size: 11px;
  line-height: 1.55;
}

.ts-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--ts-navy-900);
}

.ts-consent a {
  color: #805704;
  font-weight: 750;
}

.ts-form-card__foot {
  margin: -3px 0 0;
  color: #8594a4;
  font-size: 10px;
  text-align: center;
}

.ts-footer {
  color: #aebfd0;
  background: #03101f;
}

.ts-footer__top {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.13fr;
  align-items: center;
  gap: 50px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.ts-brand--footer {
  color: #fff;
}

.ts-footer__top > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.ts-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px 21px;
}

.ts-footer__links a {
  color: #bac8d6;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.ts-footer__links a:hover {
  color: var(--ts-gold-400);
}

.ts-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  padding-bottom: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #75899c;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ts-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--ts-whatsapp);
  box-shadow: 0 15px 34px rgba(2, 30, 18, 0.28);
  transition: transform 160ms ease;
}

.ts-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.ts-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .ts-nav {
    gap: 15px;
  }

  .ts-nav > a {
    font-size: 12px;
  }

  .ts-nav > a:nth-child(5),
  .ts-nav > a:nth-child(6) {
    display: none;
  }

  .ts-hero__grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 45px;
  }

  .ts-float-card--top {
    left: -15px;
  }

  .ts-float-card--bottom {
    right: -12px;
  }

  .ts-authority-strip ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 12px;
  }

  .ts-authority-strip li:nth-child(3)::after,
  .ts-authority-strip li:last-child::after {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --ts-shell: min(100% - 30px, 720px);
  }

  html {
    scroll-padding-top: 95px;
  }

  .ts-header {
    height: 70px;
  }

  .ts-header.is-scrolled {
    height: 66px;
  }

  .ts-menu-button {
    display: block;
  }

  .ts-nav {
    position: fixed;
    top: 101px;
    right: 15px;
    left: 15px;
    max-height: calc(100vh - 116px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 15px;
    overflow: auto;
    border: 1px solid #dce4ec;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ts-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .ts-header.is-scrolled .ts-nav {
    top: 97px;
  }

  .ts-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .ts-nav > a,
  .ts-nav > a:nth-child(5),
  .ts-nav > a:nth-child(6) {
    display: block;
    padding: 13px 11px;
    border-bottom: 1px solid #edf1f5;
    font-size: 14px;
  }

  .ts-nav > a::after {
    display: none;
  }

  .ts-nav .ts-button {
    margin-top: 13px;
    text-align: center;
  }

  .ts-hero {
    padding-top: 60px;
  }

  .ts-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ts-hero__copy {
    max-width: 720px;
  }

  .ts-hero__visual {
    width: min(100%, 570px);
    min-height: 550px;
    margin-inline: auto;
  }

  .ts-hero-card {
    margin-inline: auto;
    transform: none;
  }

  .ts-authority-strip {
    align-items: start;
    gap: 22px;
  }

  .ts-authority-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ts-authority-strip li:nth-child(3)::after {
    display: block;
  }

  .ts-authority-strip li:nth-child(2n)::after {
    display: none;
  }

  .ts-expertise-grid,
  .ts-pricing-layout,
  .ts-legal-grid,
  .ts-faq-layout,
  .ts-contact__grid {
    grid-template-columns: 1fr;
  }

  .ts-expertise-panel,
  .ts-pricing-card,
  .ts-legal-visual,
  .ts-form-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .ts-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 0;
  }

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

  .ts-faq-intro {
    position: static;
  }

  .ts-contact__copy {
    max-width: 650px;
  }

  .ts-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ts-footer__links {
    justify-content: start;
  }
}

@media (max-width: 650px) {
  :root {
    --ts-shell: calc(100% - 24px);
  }

  .ts-preview-bar {
    min-height: 39px;
    flex-wrap: wrap;
    gap: 3px 7px;
    font-size: 10px;
  }

  .ts-brand__text small {
    letter-spacing: 0.1em;
  }

  .ts-hero {
    padding-top: 48px;
  }

  .ts-hero h1 {
    font-size: clamp(41px, 12.6vw, 60px);
  }

  .ts-hero__lead {
    font-size: 16px;
  }

  .ts-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ts-hero__actions .ts-button {
    width: 100%;
  }

  .ts-trust-list {
    display: grid;
  }

  .ts-hero__visual {
    min-height: 450px;
  }

  .ts-hero-card {
    width: calc(100% - 14px);
  }

  .ts-hero-card img {
    aspect-ratio: 4 / 5;
  }

  .ts-float-card {
    padding: 10px 12px;
  }

  .ts-float-card--top {
    top: 7px;
    left: 0;
  }

  .ts-float-card--bottom {
    right: 0;
    bottom: 8px;
  }

  .ts-authority-strip {
    display: block;
    margin-bottom: -35px;
    padding: 19px;
  }

  .ts-authority-strip > span {
    display: block;
    margin-bottom: 13px;
  }

  .ts-authority-strip ul {
    gap: 10px 0;
  }

  .ts-authority-strip li {
    font-size: 11px;
  }

  .ts-section {
    padding: 78px 0;
  }

  .ts-section--light {
    padding-top: 110px;
  }

  .ts-section-heading {
    margin-bottom: 35px;
  }

  .ts-section-heading h2,
  .ts-pricing-intro h2,
  .ts-legal-copy h2,
  .ts-faq-intro h2,
  .ts-contact__copy h2,
  .ts-expertise-copy h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .ts-service-grid {
    grid-template-columns: 1fr;
  }

  .ts-service-card {
    min-height: 0;
    padding: 27px 23px;
  }

  .ts-process {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ts-process li {
    display: grid;
    grid-template-columns: 63px 1fr;
    gap: 0 17px;
    padding: 0;
    text-align: left;
  }

  .ts-process__number {
    grid-column: 1;
    text-align: center;
  }

  .ts-process__icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .ts-process h3,
  .ts-process p {
    grid-column: 2;
  }

  .ts-process p {
    margin-top: 6px;
  }

  .ts-legal-visual {
    min-height: 365px;
    padding: 26px;
  }

  .ts-legal-visual__seal {
    top: 30px;
    right: 25px;
    width: 135px;
    height: 135px;
  }

  .ts-legal-visual > strong {
    font-size: 27px;
  }

  .ts-form-card {
    padding: 21px 18px;
  }

  .ts-form-card__head {
    display: grid;
  }

  .ts-contact {
    padding: 80px 0;
  }

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

  .ts-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 51px;
    height: 51px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .ts-preview-bar,
  .ts-header,
  .ts-whatsapp,
  .ts-hero__glow,
  .ts-hero__actions,
  .ts-contact,
  .ts-footer {
    display: none !important;
  }

  .ts-hero {
    padding: 30px 0;
    color: #000;
    background: #fff;
  }

  .ts-hero h1,
  .ts-hero h1 em {
    color: #000;
  }

  .ts-hero__lead,
  .ts-trust-list li {
    color: #333;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Production route has no preview notice above the sticky header. */
@media (max-width: 900px) {
  body.ts-production .ts-nav {
    top: 70px;
    max-height: calc(100vh - 85px);
  }

  body.ts-production .ts-header.is-scrolled .ts-nav {
    top: 66px;
    max-height: calc(100vh - 81px);
  }
}


/* ==========================================================================
   Authority strip overlap repair — clean baseline R3
   Preserves the original intended overlap and spacing.
   ========================================================================== */

body.ts-production {
  overflow-x: hidden;
}

body.ts-production .ts-hero {
  overflow: visible;
  z-index: 2;
}

body.ts-production .ts-section--light {
  position: relative;
  z-index: 1;
}
