:root {
  --tt-v2-deep: #064d61;
  --tt-v2-deeper: #033d4e;
  --tt-v2-cyan: #1db4da;
  --tt-v2-cyan-bright: #6adcf5;
  --tt-v2-orange: #f47a3d;
  --tt-v2-gold: #ffc83d;
  --tt-v2-white: #ffffff;
  --tt-v2-shadow: 0 32px 80px rgba(0, 27, 36, 0.34);
}

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

.tt-v2-hero,
.tt-v2-hero * {
  box-sizing: border-box;
}

.tt-v2-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 142px 24px 72px;
  color: var(--tt-v2-white);
  background:
    radial-gradient(circle at 72% 18%, rgba(29, 180, 218, 0.22), transparent 31%),
    linear-gradient(145deg, var(--tt-v2-deeper) 0%, var(--tt-v2-deep) 56%, #07586c 100%);
}

.tt-v2-hero::before,
.tt-v2-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(106, 220, 245, 0.16);
  border-radius: 50%;
  content: "";
}

.tt-v2-hero::before {
  width: 520px;
  height: 520px;
  right: -145px;
  top: -110px;
  box-shadow: 0 0 0 72px rgba(106, 220, 245, 0.025), 0 0 0 150px rgba(106, 220, 245, 0.018);
}

.tt-v2-hero::after {
  width: 360px;
  height: 360px;
  left: -250px;
  bottom: -150px;
  box-shadow: 0 0 0 58px rgba(244, 122, 61, 0.03), 0 0 0 118px rgba(244, 122, 61, 0.02);
}

.tt-v2-hero-glow {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  min-width: 500px;
  min-height: 500px;
  right: 3vw;
  bottom: -36%;
  border-radius: 50%;
  background: rgba(29, 180, 218, 0.11);
  filter: blur(2px);
}

.tt-v2-hero-inner {
  width: min(100%, 1376px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 0.82fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.tt-v2-hero-copy {
  max-width: 720px;
}

.tt-v2-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 6px 13px 6px 10px;
  border: 1px solid rgba(106, 220, 245, 0.36);
  border-radius: 999px;
  color: var(--tt-v2-cyan-bright);
  background: rgba(0, 28, 37, 0.22);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tt-v2-kicker::before {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--tt-v2-orange);
  box-shadow: 0 0 0 5px rgba(244, 122, 61, 0.13);
  content: "";
}

.tt-v2-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--tt-v2-white);
  font-size: clamp(46px, 4.55vw, 72px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.tt-v2-hero h1 span {
  display: block;
  margin: 8px 0;
  color: var(--tt-v2-cyan-bright);
}

.tt-v2-claim-support {
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid rgba(106, 220, 245, 0.25);
  border-left: 4px solid var(--tt-v2-orange);
  border-radius: 8px;
  background: rgba(1, 34, 44, 0.3);
}

.tt-v2-claim-support > p {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.tt-v2-claim-support > p svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--tt-v2-cyan-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tt-v2-claim-support strong {
  color: var(--tt-v2-white);
}

.tt-v2-hero-lead {
  max-width: 630px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.tt-v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tt-v2-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.tt-v2-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tt-v2-button-primary {
  color: #092f3a !important;
  background: var(--tt-v2-orange);
  box-shadow: 0 13px 26px rgba(244, 122, 61, 0.23);
}

.tt-v2-button-primary:hover,
.tt-v2-button-primary:focus-visible {
  color: #092f3a !important;
  background: #ff8a4f;
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(244, 122, 61, 0.32);
}

.tt-v2-button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--tt-v2-white) !important;
  background: rgba(255, 255, 255, 0.06);
}

.tt-v2-button-secondary:hover,
.tt-v2-button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--tt-v2-white) !important;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.tt-v2-button:focus-visible {
  outline: 3px solid var(--tt-v2-gold);
  outline-offset: 4px;
}

.tt-v2-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tt-v2-rating-score {
  font-size: 18px;
  font-weight: 900;
}

.tt-v2-stars {
  color: var(--tt-v2-gold);
  font-size: 19px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.tt-v2-rating-label {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.tt-v2-rating-count {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.tt-v2-mobile-showcase {
  display: none;
}

.tt-v2-mobile-trust {
  display: none;
}

.tt-v2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.tt-v2-badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(1, 34, 44, 0.25);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.tt-v2-badges svg { width: 15px; height: 15px; fill: none; stroke: var(--tt-v2-cyan-bright); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }

.tt-v2-hero-visual { position: relative; width: min(100%, 560px); margin: 0; justify-self: end; }

.tt-v2-photo-frame { position: relative; overflow: hidden; aspect-ratio: 1; padding: 0; border: 1px solid rgba(255, 255, 255, 0.19); border-radius: 30px; background: #fff; box-shadow: var(--tt-v2-shadow); }

.tt-v2-product-shot { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 29px; }

.tt-v2-hero-visual figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 15px 6px 0; color: var(--tt-v2-white); }

.tt-v2-hero-visual figcaption strong {
  font-size: 16px;
}

.tt-v2-hero-visual figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.tt-v2-flow,
.tt-v2-flow * {
  box-sizing: border-box;
}

.tt-v2-flow { padding: 64px 24px 72px; color: #0b4050; background: linear-gradient(180deg, #f7fcfd 0%, #eef8fa 100%); }

.tt-v2-flow-inner { width: min(100%, 1376px); margin: 0 auto; }

.tt-v2-flow-header { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 7vw, 110px); align-items: end; padding-bottom: 32px; border-bottom: 1px solid #cce2e7; }

.tt-v2-flow-kicker { margin: 0 0 12px; color: #087c9b; font-size: 13px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }

.tt-v2-flow h2 { max-width: 720px; margin: 0; color: #063e4f; font-size: clamp(40px, 5vw, 68px); font-weight: 900; letter-spacing: -0.045em; line-height: 0.98; }

.tt-v2-flow-intro p { margin: 0 0 18px; color: #48636c; font-size: 18px; line-height: 1.55; }
.tt-v2-flow-intro strong { display: inline-flex; padding: 9px 13px; border-radius: 999px; color: #063e4f; background: #bceefa; font-size: 14px; }

.tt-v2-flow-steps { display: grid; grid-template-columns: 0.84fr 1.16fr 0.84fr; gap: 22px; align-items: stretch; margin: 46px 0 0; padding: 0; list-style: none; }

.tt-v2-flow-step { position: relative; min-width: 0; min-height: 570px; display: flex; flex-direction: column; padding: 24px; border: 1px solid #d3e5e9; border-radius: 24px; background: #fff; box-shadow: 0 18px 46px rgba(2, 61, 77, 0.09); }

.tt-v2-flow-step:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -34px; width: 44px; height: 44px; display: grid; place-items: center; border: 5px solid #eef8fa; border-radius: 50%; color: #063e4f; background: var(--tt-v2-orange); content: ">"; font-size: 22px; font-weight: 900; }

.tt-v2-flow-step-main { border-color: #8fd9e9; box-shadow: 0 24px 60px rgba(2, 61, 77, 0.15); }
.tt-v2-step-heading { display: flex; gap: 13px; align-items: flex-start; }
.tt-v2-step-heading > span { flex: 0 0 42px; display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; color: #fff; background: #087c9b; font-size: 13px; font-weight: 900; }
.tt-v2-step-heading h3 { margin: 2px 0 6px; color: #063e4f; font-size: 22px; line-height: 1.1; }
.tt-v2-step-heading p { margin: 0; color: #56717a; font-size: 14px; line-height: 1.45; }

.tt-v2-tap-stage { position: relative; overflow: hidden; min-height: 330px; display: grid; place-items: center; margin: 24px 0 0; border-radius: 20px; background: #eef8fa; }

.tt-v2-tap-stage img { position: relative; z-index: 1; width: min(100%, 310px); height: auto; display: block; }
.tt-v2-tap-ring { position: absolute; width: 250px; height: 250px; border: 1px solid #9bdcea; border-radius: 50%; box-shadow: 0 0 0 38px rgba(29,180,218,.08), 0 0 0 76px rgba(29,180,218,.04); }

.tt-v2-phone { width: min(100%, 316px); margin: 24px auto 0; padding: 12px; border: 9px solid #063e4f; border-radius: 38px; background: #063e4f; box-shadow: 0 24px 42px rgba(2, 43, 55, 0.2); }

.tt-v2-phone-speaker { width: 62px; height: 5px; margin: -3px auto 9px; border-radius: 99px; background: #7ca0aa; }
.tt-v2-phone-screen { min-height: 414px; padding: 15px; border-radius: 23px; background: #f7fbfc; }
.tt-v2-phone-bar { display: flex; justify-content: space-between; color: #607780; font-size: 9px; font-weight: 800; }
.tt-v2-example-review { margin-top: 14px; padding: 10px; border: 2px solid #f4a077; border-radius: 12px; background: #fff7f2; }
.tt-v2-screen-notice { margin: 0 0 10px; padding: 0 0 9px; border-bottom: 2px solid #f4a077; }
.tt-v2-screen-notice strong { display: block; color: #8b3209; font-size: 12px; font-weight: 900; letter-spacing: .045em; line-height: 1.3; text-transform: uppercase; }
.tt-v2-screen-notice span { display: block; margin-top: 4px; color: #493a33; font-size: 12px; font-weight: 800; line-height: 1.35; }
.tt-v2-phone-screen h4 { margin: 0; color: #063e4f; font-size: 20px; line-height: 1.1; }
.tt-v2-screen-stars,
.tt-v2-posted-stars { margin-top: 8px; color: #f6b900; font-size: 20px; letter-spacing: .05em; }
.tt-v2-phone-screen blockquote { margin: 12px 0; padding: 12px; border: 1px solid #d5e5e9; border-radius: 12px; color: #294f5b; background: #fff; font-size: 12px; font-style: normal; line-height: 1.45; }
.tt-v2-suggestion-label { margin: 0 0 7px; color: #49666f; font-size: 12px; font-weight: 900; }
.tt-v2-suggestions { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.tt-v2-suggestions li { padding: 8px 9px; border: 1px solid #cbe2e7; border-radius: 9px; color: #45616a; background: #fff; font-size: 12px; font-weight: 700; }
.tt-v2-post-control { min-height: 42px; display: grid; place-items: center; margin-top: 12px; border-radius: 10px; color: #072f3a; background: var(--tt-v2-orange); font-size: 12px; font-weight: 900; }

.tt-v2-posted-state { min-height: 330px; display: grid; place-items: center; align-content: center; margin: 24px 0 0; padding: 28px; border-radius: 20px; color: #fff; text-align: center; background: linear-gradient(145deg, #064d61, #087c9b); }
.tt-v2-posted-state svg { width: 76px; height: 76px; fill: rgba(106,220,245,.12); stroke: #6adcf5; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.tt-v2-posted-state p { margin: 16px 0 4px; font-size: 34px; font-weight: 900; }
.tt-v2-posted-state span { color: rgba(255,255,255,.77); font-size: 13px; }
.tt-v2-flow-note { max-width: 850px; margin: 26px auto 0; color: #607780; font-size: 12px; line-height: 1.5; text-align: center; }

.tt-v2-future,
.tt-v2-future * { box-sizing: border-box; }
.tt-v2-future { position: relative; overflow: hidden; padding: 92px 24px 100px; color: #fff; background: linear-gradient(145deg, #033d4e, #06586d); }
.tt-v2-future::before { position: absolute; width: 520px; height: 520px; right: -190px; top: -230px; border: 1px solid rgba(106,220,245,.16); border-radius: 50%; box-shadow: 0 0 0 72px rgba(106,220,245,.03), 0 0 0 150px rgba(106,220,245,.02); content: ""; }
.tt-v2-future-inner { position: relative; width: min(100%, 1376px); margin: 0 auto; }
.tt-v2-future-header { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px,7vw,110px); align-items: end; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.18); }
.tt-v2-future-kicker { margin: 0 0 13px; color: var(--tt-v2-cyan-bright); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.tt-v2-future h2 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(48px,5.6vw,76px); font-weight: 900; letter-spacing: -.047em; line-height: .96; }
.tt-v2-future-header > p { margin: 0; color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.55; }
.tt-v2-future-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; margin-top: 46px; }
.tt-v2-future-card { min-width: 0; padding: 32px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px; }
.tt-v2-card-label { margin: 0 0 10px; color: var(--tt-v2-cyan-bright); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tt-v2-future-card h3 { margin: 0 0 13px; color: inherit; font-size: clamp(28px,3vw,40px); font-weight: 900; letter-spacing: -.025em; line-height: 1.05; }
.tt-v2-future-card > p:not(.tt-v2-card-label) { margin: 0; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.55; }
.tt-v2-reputation-card { display: flex; flex-direction: column; background: rgba(1,34,44,.44); }
@media (min-width: 901px) {
  .tt-home .tt-v2-reputation-card { align-self: stretch; }
  .tt-v2-decision-path { flex: 1; }
  .tt-home .tt-v2-decision-path li { display: flex; flex-direction: column; justify-content: space-around; }
  .tt-home .tt-v2-future-grid > .tt-v2-always-ready { grid-column: 1 / -1; justify-self: center; width: max-content; max-width: 100%; margin-top: -8px; }
}
.tt-v2-decision-path { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.tt-v2-decision-path li { min-width: 0; padding: 18px; border: 1px solid rgba(106,220,245,.18); border-radius: 16px; background: rgba(255,255,255,.055); }
.tt-v2-decision-path li > span { display: block; margin-bottom: 14px; color: var(--tt-v2-orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tt-v2-decision-path svg { width: 28px; height: 28px; display: block; margin-bottom: 14px; fill: none; stroke: var(--tt-v2-cyan-bright); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tt-v2-decision-path strong { display: block; margin-bottom: 7px; color: #fff; font-size: 16px; line-height: 1.2; }
.tt-v2-decision-path p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.45; }
.tt-v2-time-card { color: #063e4f; background: #fff; box-shadow: 0 28px 60px rgba(0,25,33,.24); }
.tt-v2-time-card .tt-v2-card-label { color: #b64d18; }
.tt-v2-time-card > p:not(.tt-v2-card-label) { color: #56717a; }
.tt-v2-time-savers { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.tt-v2-time-savers li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; padding: 12px; border: 1px solid #d6e7eb; border-radius: 13px; background: #f7fbfc; }
.tt-v2-time-savers svg { width: 40px; height: 40px; padding: 10px; border-radius: 50%; fill: none; stroke: #087c9b; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; background: #d9f3f8; }
.tt-v2-time-savers strong,
.tt-v2-always-ready strong { display: block; color: #063e4f; font-size: 15px; line-height: 1.25; }
.tt-v2-time-savers span { display: block; margin-top: 3px; color: #607780; font-size: 12px; line-height: 1.4; }
.tt-v2-always-ready span { display: block; margin-top: 3px; color: #4a5c63; font-size: 12px; line-height: 1.4; }
.tt-v2-always-ready { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; margin-top: 18px; padding: 6px 8px; border-radius: 13px; background: #bceefa; }
.tt-v2-always-ready svg { width: 32px; height: 32px; padding: 7px; border-radius: 50%; fill: none; stroke: #063e4f; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; background: #d9f3f8; }

.tt-page .tt-prod-btn,
.tt-page .tt-acc-q,
.tt-page .tt-reviews select,
.tt-page .tt-rev-more { min-height: 44px; }
.tt-page .tt-rev-more { display: inline-flex; align-items: center; justify-content: center; }

.tt-intro h2 { margin: 0 0 24px; color: var(--tt-title); font-size: 28px; font-weight: 500; line-height: 1.4; }



.tt-intro .tt-trusted {
  color: #686868;
}

.tt-page .tt-eyebrow {
  color: #686868;
}

.tt-faq-head .tt-eyebrow {
  color: #bfeaf5;
}

.tt-disclaimer h2 {
  color: #bdbdbd;
}

@media (max-width: 1180px) {
  .tt-v2-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
    gap: 52px;
  }

  .tt-v2-hero h1 {
    font-size: clamp(44px, 5.3vw, 62px);
  }

}

@media (max-width: 900px) {
  html { scroll-padding-top: 70px; }

  .tt-v2-hero {
    min-height: auto;
    padding: 128px 28px 78px;
  }

  .tt-v2-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tt-v2-hero-copy {
    max-width: 760px;
  }

  .tt-v2-hero h1 {
    max-width: 760px;
  }

  .tt-v2-hero-visual {
    width: min(88%, 620px);
    justify-self: center;
  }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 58px; }

  .tt-header-inner {
    height: 58px;
    gap: 14px;
    padding: 0 13px;
  }

  .tt-logo img {
    width: 164px;
    height: 48px;
    filter: brightness(1.18) contrast(1.08) saturate(1.16) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.12));
  }

  .tt-burger {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    gap: 0;
    justify-content: center;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.72);
    font-size: 0;
  }

  .tt-head-tools {
    gap: 0;
    margin-left: auto;
  }

  .tt-page .tt-tool {
    width: 48px;
    height: 48px;
    color: var(--tt-v2-white) !important;
  }

  .tt-tool svg {
    width: 23px;
    height: 23px;
    stroke-width: 2.1;
  }

  .tt-v2-hero {
    padding-top: 36px;
  }
}

@media (max-width: 580px) {
  .tt-v2-hero {
    padding: 22px 20px 44px;
  }

  .tt-v2-hero-copy {
    display: flex;
    flex-direction: column;
  }

  .tt-v2-kicker {
    order: 1;
  }

  .tt-v2-hero h1 {
    order: 2;
  }

  .tt-v2-mobile-showcase {
    order: 3;
  }

  .tt-v2-hero-actions {
    order: 4;
  }

  .tt-v2-mobile-trust {
    order: 5;
  }

  .tt-v2-claim-support {
    order: 6;
  }

  .tt-v2-hero-lead {
    order: 6;
  }

  .tt-v2-badges {
    order: 7;
  }

  .tt-v2-kicker {
    min-height: 34px;
    margin-bottom: 12px;
    padding: 5px 10px 5px 8px;
    font-size: 12px;
    letter-spacing: 0.052em;
  }

  .tt-v2-hero h1 {
    font-size: clamp(30px, 8.5vw, 35px);
    line-height: 0.98;
    letter-spacing: -0.042em;
  }

  .tt-v2-hero h1 span {
    margin: 3px 0;
  }

  .tt-v2-claim-support {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 11px;
  }

  .tt-v2-claim-support > p {
    gap: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .tt-v2-claim-support > p svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .tt-v2-hero-lead {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.4;
  }

  .tt-v2-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .tt-v2-button {
    width: 100%;
    min-height: 50px;
    padding: 10px 8px;
    font-size: 14px;
  }

  .tt-v2-mobile-showcase {
    width: min(86%, 310px);
    min-height: 0;
    display: grid;
    grid-template-rows: 200px auto;
    gap: 8px;
    align-self: center;
    margin: 14px auto 0;
    padding: 0;
  }

  .tt-v2-mobile-photo {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 42px rgba(0, 27, 36, 0.24);
  }

  .tt-v2-mobile-showcase img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: scale(1.08);
  }

  .tt-v2-mobile-showcase figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0 4px;
    color: #fff;
  }

  .tt-v2-mobile-showcase strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .tt-v2-mobile-showcase span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }

  .tt-v2-rating {
    gap: 6px;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .tt-v2-rating-label {
    padding-left: 6px;
    font-size: 12px;
  }

  .tt-v2-rating-count {
    margin-top: -2px;
  }

  .tt-v2-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 8px;
    margin-top: 16px;
  }

  .tt-v2-badges li {
    min-height: 44px;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 12px;
  }

  .tt-v2-badges li:last-child {
    grid-column: 1 / -1;
  }

  .tt-v2-mobile-trust {
    display: grid;
    gap: 3px;
    margin-top: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(106, 220, 245, 0.32);
    border-left: 4px solid var(--tt-v2-orange);
    border-radius: 8px;
    background: rgba(1, 34, 44, 0.34);
  }

  .tt-v2-mobile-trust p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .tt-v2-mobile-trust p:first-child::before {
    margin-right: 7px;
    color: var(--tt-v2-gold);
    content: "★";
  }

  .tt-v2-mobile-trust p:last-child::before {
    margin-right: 7px;
    color: var(--tt-v2-cyan-bright);
    content: "✓";
  }

  .tt-v2-claim-support,
  .tt-v2-hero-lead,
  .tt-v2-badges {
    display: none;
  }

  .tt-v2-hero-inner {
    gap: 0;
  }

  .tt-v2-hero-visual {
    display: none;
  }
}

@media (max-width: 900px) {
  .tt-v2-flow-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .tt-v2-flow-steps { max-width: 680px; grid-template-columns: 1fr; gap: 36px; margin-inline: auto; }
  .tt-v2-flow-step { min-height: 0; }
  .tt-v2-flow-step:not(:last-child)::after { top: auto; right: 50%; bottom: -39px; transform: translateX(50%) rotate(90deg); }
  .tt-v2-tap-stage,
  .tt-v2-posted-state { min-height: 300px; margin-top: 24px; }
  .tt-v2-future-header,
  .tt-v2-future-grid { grid-template-columns: 1fr; }
  .tt-v2-future-header { gap: 22px; align-items: start; }
}

@media (max-width: 580px) {
  .tt-v2-flow { padding: 42px 16px 44px; }
  .tt-v2-flow-header { padding-bottom: 24px; }
  .tt-v2-flow h2 { font-size: 40px; }
  .tt-v2-flow-intro p { font-size: 16px; }
  .tt-v2-flow-steps { gap: 28px; margin-top: 30px; }
  .tt-v2-flow-step { padding: 20px; border-radius: 20px; }
  .tt-v2-step-heading h3 { font-size: 21px; }
  .tt-v2-tap-stage,
  .tt-v2-posted-state { min-height: 250px; }
  .tt-v2-phone { max-width: 300px; margin-top: 20px; }
  .tt-v2-posted-state p { font-size: 28px; }
  .tt-v2-future { padding: 58px 16px 64px; }
  .tt-v2-future h2 { font-size: 44px; }
  .tt-v2-future-header > p { font-size: 16px; }
  .tt-v2-future-grid { gap: 16px; margin-top: 30px; }
  .tt-v2-future-card { padding: 21px; border-radius: 20px; }
  .tt-v2-decision-path { grid-template-columns: 1fr; gap: 8px; margin-top: 22px; }
  .tt-v2-decision-path li { display: grid; grid-template-columns: 58px 1fr; column-gap: 12px; padding: 14px; }
  .tt-v2-decision-path li > span,
  .tt-v2-decision-path svg { grid-row: 1 / 3; align-self: center; margin: 0; }
  .tt-v2-decision-path svg { grid-column: 1; }
  .tt-v2-decision-path li > span { display: none; }
}

@media (max-width: 900px) {
  .tt-home .tt-v2-time-card { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .tt-home .tt-v2-future-grid > .tt-v2-always-ready {
    margin-top: -16px;
    padding-bottom: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tt-v2-button {
    transition: none;
  }

  .tt-v2-button:hover,
  .tt-v2-button:focus-visible {
    transform: none;
  }
}
.tt-home .tt-prod-media{width:100%;max-width:444px;margin-inline:auto;}
