/* Trivania landing — mockup v3 */
:root {
  --tv-navy: #0c1f3d;
  --tv-navy-deep: #081528;
  --tv-blue: #1a6dff;
  --tv-blue-dark: #0f4fc4;
  --tv-blue-light: #3d8bff;
  --tv-white: #ffffff;
  --tv-bg: #f4f7fb;
  --tv-text: #1a2b42;
  --tv-muted: #5a6a7e;
  --tv-border: rgba(12, 31, 61, 0.1);
  --tv-font: 'Inter', system-ui, sans-serif;
  --tv-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --tv-radius: 8px;
  --tv-radius-lg: 14px;
  --tv-container: 1180px;
  --tv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.tv-page {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--tv-font);
  color: var(--tv-text);
  background: var(--tv-white);
  -webkit-font-smoothing: antialiased;
}
body.tv-nav-open { overflow: hidden; }
body.tv-nav-open .tv-header { z-index: 220; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.tv-container {
  width: 100%;
  max-width: var(--tv-container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header */
.tv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--tv-white);
  border-bottom: 1px solid var(--tv-border);
}
.tv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: var(--tv-container);
  margin: 0 auto;
  padding: 12px 16px;
}
.tv-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.tv-brand__logo { height: 40px; width: auto; }
.tv-brand__tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tv-muted);
}
.tv-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tv-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tv-text);
  transition: color 0.2s;
}
.tv-nav a:hover { color: var(--tv-blue); }
.tv-nav a.tv-nav__signin { display: none; }
.tv-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--tv-radius);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--tv-ease);
  white-space: nowrap;
}
.tv-btn--ghost {
  background: var(--tv-white);
  border-color: var(--tv-navy);
  color: var(--tv-navy);
}
.tv-btn--ghost:hover { background: var(--tv-bg); }
.tv-btn--primary {
  background: var(--tv-blue);
  color: var(--tv-white);
  border-color: var(--tv-blue);
}
.tv-btn--primary:hover { background: var(--tv-blue-dark); }
.tv-btn--outline {
  background: var(--tv-white);
  border-color: var(--tv-blue);
  color: var(--tv-blue);
}
.tv-btn--outline:hover { background: #eef4ff; }
.tv-btn--white {
  background: var(--tv-white);
  color: var(--tv-navy);
  border-color: var(--tv-white);
}
.tv-btn--lg { padding: 13px 26px; font-size: 0.85rem; }
.tv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
}
.tv-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tv-navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.tv-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.tv-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  image-rendering: auto;
}
.tv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.35) 58%,
    transparent 75%
  );
}
.tv-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: 48px 0 56px;
}
.tv-hero__content { min-width: 0; }
.tv-hero__title {
  font-family: var(--tv-display);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--tv-navy);
  margin: 0 0 16px;
}
.tv-hero__lead {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--tv-muted);
  margin: 0 0 24px;
  max-width: 520px;
}
.tv-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.tv-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}
.tv-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.tv-hero__trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--tv-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.tv-hero__trust-item span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--tv-navy);
  line-height: 1.3;
}
.tv-hero__card {
  background: var(--tv-navy);
  color: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 24px 22px;
  box-shadow: 0 16px 40px rgba(8, 21, 40, 0.25);
  min-width: 0;
}
.tv-hero__card h3 {
  margin: 0 0 16px;
  font-family: var(--tv-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.tv-hero__card ul { display: flex; flex-direction: column; gap: 10px; }
.tv-hero__card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.tv-hero__card li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(26, 109, 255, 0.25);
  color: #7eb8ff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Stats bar */
.tv-stats-bar {
  background: var(--tv-navy);
  color: var(--tv-white);
  padding: 22px 0;
}
.tv-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tv-stats-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}
.tv-stats-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 109, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.tv-stats-bar__val {
  font-family: var(--tv-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}
.tv-stats-bar__lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

/* Products */
.tv-products {
  background: var(--tv-bg);
  padding: 64px 0 72px;
}
.tv-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.tv-section-head h2 {
  margin: 0 0 10px;
  font-family: var(--tv-display);
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  font-weight: 700;
  color: var(--tv-navy);
}
.tv-section-head p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 0.88rem;
  color: var(--tv-muted);
  line-height: 1.7;
}
.tv-section-head::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--tv-blue);
  border-radius: 2px;
}
.tv-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tv-pcard {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tv-border);
  box-shadow: 0 6px 28px rgba(12, 31, 61, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--tv-ease), box-shadow 0.25s;
}
.tv-pcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(12, 31, 61, 0.12);
}
.tv-pcard__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.tv-pcard__img--hotels { background-position: center 55%; }
.tv-pcard__img--flights { background-position: center 40%; }
.tv-pcard__img--omra { background-position: center 35%; }
.tv-pcard__icon {
  position: absolute;
  left: 18px;
  bottom: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tv-blue);
  color: var(--tv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(26, 109, 255, 0.35);
  z-index: 2;
}
.tv-pcard__icon--omra { background: #0d8f6e; box-shadow: 0 4px 12px rgba(13, 143, 110, 0.35); }
.tv-pcard__body {
  padding: 32px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tv-pcard__body h3 {
  margin: 0 0 8px;
  font-family: var(--tv-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tv-navy);
}
.tv-pcard__body > p {
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--tv-muted);
}
.tv-pcard__list {
  margin: 0 0 16px;
  flex: 1;
}
.tv-pcard__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.74rem;
  color: var(--tv-text);
  line-height: 1.45;
}
.tv-pcard__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tv-blue);
  font-weight: 700;
  font-size: 0.7rem;
}
.tv-pcard__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tv-blue);
}
.tv-pcard__link:hover { color: var(--tv-blue-dark); }

/* Platform / why */
.tv-platform {
  padding: 72px 0;
  background: var(--tv-white);
}
.tv-platform__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.tv-platform h2 {
  font-family: var(--tv-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--tv-navy);
  margin: 0 0 14px;
  line-height: 1.25;
}
.tv-platform p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--tv-muted);
  margin: 0;
}
.tv-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}
.tv-benefit {
  text-align: center;
}
.tv-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #eef4ff;
  border: 1px solid rgba(26, 109, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.tv-benefit strong {
  display: block;
  font-size: 0.82rem;
  color: var(--tv-navy);
  margin-bottom: 4px;
}
.tv-benefit span {
  font-size: 0.72rem;
  color: var(--tv-muted);
  line-height: 1.45;
}

/* CTA */
.tv-cta {
  position: relative;
  background: linear-gradient(135deg, #0c1f3d 0%, #14325c 50%, #0c1f3d 100%);
  color: var(--tv-white);
  padding: 56px 0;
  overflow: hidden;
}
.tv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26, 109, 255, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 109, 255, 0.4) 0%, transparent 35%);
  pointer-events: none;
}
.tv-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.tv-cta h2 {
  font-family: var(--tv-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 24px;
}
.tv-cta__steps {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.tv-cta__step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tv-cta__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tv-blue);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tv-cta__step span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Trust bar */
.tv-trust {
  background: var(--tv-blue);
  color: var(--tv-white);
  padding: 14px 0;
}
.tv-trust__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}
.tv-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact */
.tv-contact {
  padding: 72px 0;
  background: var(--tv-bg);
}
.tv-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.tv-contact h2 {
  font-family: var(--tv-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tv-navy);
  margin: 0 0 12px;
}
.tv-contact > .tv-container > .tv-contact__grid > div > p {
  font-size: 0.88rem;
  color: var(--tv-muted);
  line-height: 1.7;
}
.tv-form {
  background: var(--tv-white);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(12, 31, 61, 0.06);
}
.tv-form h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--tv-navy); }
.tv-form > p { margin: 0 0 20px; font-size: 0.8rem; color: var(--tv-muted); }
.tv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tv-field { margin-bottom: 12px; }
.tv-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--tv-muted);
}
.tv-field input,
.tv-field select,
.tv-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  background: var(--tv-white);
  color: var(--tv-text);
  font-family: inherit;
  font-size: 0.84rem;
}
.tv-field input:focus,
.tv-field select:focus,
.tv-field textarea:focus {
  outline: none;
  border-color: var(--tv-blue);
}
.tv-field textarea { min-height: 90px; resize: vertical; }
.tv-form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: none;
  border-radius: var(--tv-radius);
  background: var(--tv-blue);
  color: var(--tv-white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.tv-form-submit:hover { background: #0f5ee6; }
.tv-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.tv-field-optional {
  font-weight: 400;
  color: var(--tv-muted);
  font-size: 0.68rem;
}
.tv-form-alert {
  padding: 12px 14px;
  border-radius: var(--tv-radius);
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.tv-form-alert--success {
  background: #e8f7f0;
  border: 1px solid #b8e6cf;
  color: #1a6b45;
}
.tv-form-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b42318;
}
.tv-tiles { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.tv-tile {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--tv-white);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
}
.tv-tile strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--tv-blue);
  margin-bottom: 3px;
}
.tv-tile span, .tv-tile a { font-size: 0.84rem; color: var(--tv-muted); }

/* Footer */
.tv-footer {
  background: var(--tv-white);
  color: var(--tv-text);
  border-top: 1px solid var(--tv-border);
  padding: 48px 0 0;
}
.tv-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 8px;
}
.tv-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.tv-footer__logo {
  height: 40px;
  width: auto;
  display: block;
}
.tv-footer__tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tv-muted);
  line-height: 1.2;
}
.tv-footer__desc {
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 280px;
  color: var(--tv-muted);
  margin: 0;
}
.tv-footer h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tv-navy);
  margin: 0 0 12px;
}
.tv-footer li { margin-bottom: 8px; }
.tv-footer a {
  font-size: 0.8rem;
  color: var(--tv-muted);
  transition: color 0.2s;
}
.tv-footer a:hover { color: var(--tv-blue); }
.tv-footer__bottom {
  margin-top: 36px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--tv-border);
  background: var(--tv-bg);
  font-size: 0.72rem;
  color: var(--tv-muted);
}
.tv-footer__bottom p { margin: 0; }

.whatsapp-float {
  position: fixed;
  left: max(20px, env(safe-area-inset-left));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 190;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 190;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--tv-blue);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s var(--tv-ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.tv-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(8, 21, 40, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--tv-ease), visibility 0.3s;
}
.tv-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .tv-hero__grid { grid-template-columns: 1fr; }
  .tv-hero__card { max-width: 400px; }
  .tv-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .tv-product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .tv-platform__grid { grid-template-columns: 1fr; }
  .tv-cta__inner { grid-template-columns: 1fr; }
  .tv-contact__grid { grid-template-columns: 1fr; }
  .tv-footer__grid { grid-template-columns: 1fr 1fr; }
  .tv-hero__trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tv-brand__tag { display: none; }
  .tv-brand__logo { height: 34px; }
  .tv-header__inner { padding: 10px 16px; gap: 8px; }
  .tv-header__actions .tv-btn--primary {
    padding: 8px 12px;
    font-size: 0.68rem;
  }
  .tv-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 86vw);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 24px calc(28px + env(safe-area-inset-bottom));
    background: var(--tv-white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s var(--tv-ease);
    z-index: 210;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tv-nav.open { transform: translateX(0); }
  .tv-nav a { font-size: 0.92rem; padding: 4px 0; }
  .tv-nav a.tv-nav__signin {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 11px 18px;
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .tv-burger { display: flex; z-index: 220; }
  .tv-header__actions .tv-btn--ghost { display: none; }
  .tv-hero { min-height: auto; }
  .tv-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.82) 100%
    );
  }
  .tv-hero__grid { padding: 28px 0 36px; gap: 20px; }
  .tv-hero__title { font-size: 1.55rem; }
  .tv-hero__lead { font-size: 0.85rem; max-width: none; }
  .tv-hero__ctas { flex-direction: column; }
  .tv-hero__ctas .tv-btn {
    width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .tv-hero__card { max-width: none; }
  .tv-hero__trust { max-width: none; gap: 10px; }
  .tv-hero__trust-item span { font-size: 0.58rem; }
  .tv-btn { white-space: normal; }
  .tv-products { padding: 48px 0 56px; }
  .tv-platform { padding: 48px 0; }
  .tv-contact { padding: 48px 0; }
  .tv-cta { padding: 40px 0; }
  .tv-cta__steps { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tv-stats-bar__grid { grid-template-columns: 1fr; }
  .tv-benefits { grid-template-columns: 1fr; }
  .tv-form-row { grid-template-columns: 1fr; }
  .tv-footer__grid { grid-template-columns: 1fr; }
  .tv-trust__grid { flex-direction: column; align-items: center; }
  .tv-container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .tv-hero__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tv-hero__trust-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .tv-header__actions .tv-btn--primary { padding: 7px 10px; font-size: 0.64rem; }
  .tv-stats-bar__item { justify-content: flex-start; }
}
