html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: #09111f;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.transportera-shell {
  --tp-bg: #07111f;
  --tp-bg-alt: #0c1728;
  --tp-surface: rgba(13, 24, 42, 0.75);
  --tp-surface-strong: rgba(15, 28, 48, 0.96);
  --tp-surface-soft: rgba(119, 140, 174, 0.12);
  --tp-border: rgba(155, 181, 219, 0.18);
  --tp-text: #eff6ff;
  --tp-text-soft: #adc0dd;
  --tp-heading: #ffffff;
  --tp-accent: #44c0ff;
  --tp-accent-strong: #17e0c4;
  --tp-shadow: 0 24px 60px rgba(2, 10, 24, 0.35);
  --tp-button-text: #04101d;
  min-height: 100vh;
  overflow: hidden;
  color: var(--tp-text);
  background: radial-gradient(circle at top left, rgba(68, 192, 255, 0.18), transparent 32%), radial-gradient(circle at 85% 10%, rgba(23, 224, 196, 0.14), transparent 28%), linear-gradient(180deg, var(--tp-bg) 0%, #050b15 100%);
}

.transportera-shell[data-theme=light] {
  --tp-bg: #eef4fb;
  --tp-bg-alt: #ffffff;
  --tp-surface: rgba(255, 255, 255, 0.78);
  --tp-surface-strong: rgba(255, 255, 255, 0.95);
  --tp-surface-soft: rgba(68, 192, 255, 0.08);
  --tp-border: rgba(52, 82, 124, 0.12);
  --tp-text: #29415f;
  --tp-text-soft: #5f7592;
  --tp-heading: #10233f;
  --tp-accent: #0d8fe0;
  --tp-accent-strong: #08bda5;
  --tp-shadow: 0 24px 50px rgba(55, 88, 129, 0.14);
  --tp-button-text: #ffffff;
  background: radial-gradient(circle at top left, rgba(68, 192, 255, 0.18), transparent 30%), radial-gradient(circle at 100% 0%, rgba(8, 189, 165, 0.12), transparent 24%), linear-gradient(180deg, #f2f7fd 0%, #eaf1f9 100%);
}

.tp-container {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
}

.tp-topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  background: rgba(6, 13, 25, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.transportera-shell[data-theme=light] .tp-topbar {
  background: rgba(238, 244, 251, 0.75);
  border-bottom-color: rgba(16, 35, 63, 0.06);
}

.tp-topbar__inner,
.tp-topbar__actions,
.tp-nav,
.tp-brand,
.tp-section-heading,
.tp-chip,
.tp-feature-card__icon,
.tp-benefit-card__top,
.tp-contact-card__actions,
.tp-theme-toggle,
.tp-button {
  display: flex;
  align-items: center;
}

.tp-topbar__inner {
  justify-content: space-between;
  gap: 18px;
}

.tp-brand {
  gap: 14px;
  min-width: 0;
}

.tp-brand strong,
.tp-brand small {
  display: block;
}

.tp-brand strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--tp-heading);
  font-size: 1rem;
}

.tp-brand small {
  color: var(--tp-text-soft);
  font-size: 0.82rem;
  margin-top: 2px;
}

.tp-brand__mark,
.tp-feature-card__icon,
.tp-benefit-card__top .tp-icon,
.tp-gallery-card__placeholder .tp-icon {
  display: inline-flex;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  justify-content: center;
  background: linear-gradient(135deg, var(--tp-accent), var(--tp-accent-strong));
  color: #fff;
  box-shadow: var(--tp-shadow);
}

.tp-nav {
  gap: 22px;
}

.tp-nav__link {
  color: var(--tp-text-soft);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.tp-nav__link:hover,
.tp-nav__link:focus-visible {
  color: var(--tp-heading);
}

.tp-topbar__actions {
  gap: 12px;
}

.tp-theme-toggle,
.tp-nav-toggle {
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-heading);
  border-radius: 999px;
  cursor: pointer;
}

.tp-topbar__actions .tp-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.tp-theme-toggle {
  gap: 10px;
  padding: 10px 16px;
}

.tp-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  justify-content: center;
}

.tp-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tp-icon svg {
  width: 100%;
  height: 100%;
}

.tp-button {
  gap: 10px;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--tp-accent), var(--tp-accent-strong));
  color: var(--tp-button-text);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--tp-shadow);
}

.tp-button:hover,
.tp-button:focus-visible {
  transform: translateY(-2px);
}

.tp-button--ghost {
  background: var(--tp-surface);
  color: var(--tp-heading);
  border-color: var(--tp-border);
  box-shadow: none;
}

.tp-button--small {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.tp-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 32px;
}

.tp-hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tp-orb,
.tp-grid {
  position: absolute;
}

.tp-orb {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
  -webkit-animation: tp-float 10s ease-in-out infinite;
          animation: tp-float 10s ease-in-out infinite;
}

.tp-orb--one {
  width: 280px;
  height: 280px;
  background: rgba(68, 192, 255, 0.2);
  top: 40px;
  right: -60px;
}

.tp-orb--two {
  width: 180px;
  height: 180px;
  background: rgba(23, 224, 196, 0.16);
  left: -40px;
  bottom: 120px;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.tp-grid {
  inset: 6% 8% auto;
  height: 420px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
          mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0.2;
}

.tp-hero__content,
.tp-about__grid,
.tp-contact-card,
.tp-gallery-card__body,
.tp-panel-card__row,
.tp-hero__mini-cards,
.tp-metric-grid,
.tp-steps,
.tp-card-grid,
.tp-gallery-grid {
  display: grid;
}

.tp-hero__content {
  position: relative;
  z-index: 1;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.tp-kicker,
.tp-section-tag,
.tp-chip span {
  color: var(--tp-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tp-hero__copy h1,
.tp-section-heading h2,
.tp-contact-card h2,
.tp-panel-card h2 {
  margin: 0;
  color: var(--tp-heading);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
}

.tp-hero__copy h1 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 12ch;
}

.tp-hero__copy p,
.tp-panel-card p,
.tp-section-heading p,
.tp-glass-card p,
.tp-contact-card p,
.tp-step-card p,
.tp-gallery-card__body p {
  color: var(--tp-text-soft);
  line-height: 1.75;
}

.tp-hero__copy p {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.tp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tp-inline-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tp-inline-list li {
  padding: 10px 14px;
  background: var(--tp-surface-soft);
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  color: var(--tp-heading);
  font-size: 0.92rem;
}

.tp-panel-card,
.tp-glass-card,
.tp-gallery-card,
.tp-step-card,
.tp-contact-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  box-shadow: var(--tp-shadow);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.tp-panel-card {
  border-radius: 28px;
  padding: 28px;
}

.tp-hero__panel {
  display: grid;
  gap: 18px;
}

.tp-chip {
  gap: 10px;
}

.tp-panel-card h2 {
  margin-top: 18px;
  font-size: 2rem;
}

.tp-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.tp-metric-grid article,
.tp-hero__mini-cards article {
  padding: 16px;
  border-radius: 18px;
  background: var(--tp-surface-soft);
  border: 1px solid var(--tp-border);
}

.tp-metric-grid strong,
.tp-about__metrics strong {
  display: block;
  color: var(--tp-heading);
  font-size: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.tp-metric-grid span,
.tp-hero__mini-cards small {
  display: block;
  margin-top: 6px;
  color: var(--tp-text-soft);
}

.tp-panel-card__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.tp-panel-card__row strong,
.tp-hero__mini-cards strong {
  color: var(--tp-heading);
}

.tp-progress {
  height: 10px;
  background: var(--tp-surface-soft);
  border-radius: 999px;
  overflow: hidden;
  margin: 20px 0 24px;
}

.tp-progress span {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tp-accent), var(--tp-accent-strong));
  -webkit-animation: tp-progress 3s ease-in-out infinite alternate;
          animation: tp-progress 3s ease-in-out infinite alternate;
}

.tp-hero__mini-cards {
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tp-section {
  padding: 34px 0 88px;
}

.tp-section-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 34px;
}

.tp-section-heading h2,
.tp-contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.tp-section-heading p,
.tp-contact-card p {
  margin: 0;
  font-size: 1rem;
}

.tp-about__grid {
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.tp-about__story,
.tp-about__metrics article,
.tp-feature-card,
.tp-benefit-card {
  border-radius: 24px;
  padding: 28px;
}

.tp-about__story p {
  margin: 0;
  font-size: 1.02rem;
}

.tp-about__metrics {
  display: grid;
  gap: 18px;
}

.tp-card-grid {
  gap: 20px;
}

.tp-card-grid--features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-card-grid--benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-feature-card__icon {
  display: inline-flex;
  margin-bottom: 18px;
}

.tp-feature-card h3,
.tp-benefit-card h3,
.tp-gallery-card__body h3,
.tp-step-card h3 {
  margin: 0;
  color: var(--tp-heading);
  font-size: 1.2rem;
}

.tp-feature-card p,
.tp-benefit-card p,
.tp-step-card p,
.tp-gallery-card__body p {
  margin: 12px 0 0;
}

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

.tp-gallery-card {
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tp-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(68, 192, 255, 0.35);
}

.tp-gallery-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 192, 255, 0.15), rgba(23, 224, 196, 0.1));
}

.tp-gallery-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 16, 30, 0.68);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.transportera-shell[data-theme=light] .tp-gallery-card__label {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(52, 82, 124, 0.14);
  color: #153052;
}

.tp-gallery-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tp-gallery-card:hover .tp-gallery-card__media img {
  transform: scale(1.04);
}

.tp-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  color: var(--tp-heading);
}

.tp-gallery-card__placeholder span {
  color: var(--tp-text-soft);
  font-size: 0.9rem;
}

.tp-gallery-card__body {
  gap: 10px;
  padding: 24px;
}

.tp-benefit-card__top {
  gap: 14px;
}

.tp-steps {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-step-card {
  padding: 28px;
  border-radius: 24px;
}

.tp-step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 22px;
  background: var(--tp-surface-soft);
  border: 1px solid var(--tp-border);
  color: var(--tp-accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.tp-section--contact {
  padding-bottom: 110px;
}

.tp-contact-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
}

.tp-contact-card__actions {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tp-footer {
  padding: 0 0 40px;
}

.tp-footer__card {
  padding: 30px 32px 18px;
  border-radius: 30px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  box-shadow: var(--tp-shadow);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.tp-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.tp-footer__brand p,
.tp-footer__bottom p {
  margin: 0;
  color: var(--tp-text-soft);
  line-height: 1.75;
}

.tp-footer__brand p {
  margin-top: 18px;
  margin-bottom: 18px;
  max-width: 56ch;
}

.tp-footer__column {
  display: grid;
  gap: 12px;
}

.tp-footer__link,
.tp-footer__info,
.tp-footer__back {
  color: var(--tp-text-soft);
  transition: color 0.25s ease, transform 0.25s ease;
}

.tp-footer__link:hover,
.tp-footer__info:hover,
.tp-footer__back:hover,
.tp-footer__link:focus-visible,
.tp-footer__info:focus-visible,
.tp-footer__back:focus-visible {
  color: var(--tp-heading);
  transform: translateX(2px);
}

.tp-footer__info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tp-footer__info .tp-icon {
  color: var(--tp-accent);
}

.tp-footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--tp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tp-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #19d16f, #0ba360);
  color: #fff;
  box-shadow: 0 22px 45px rgba(10, 41, 21, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tp-whatsapp-float:hover,
.tp-whatsapp-float:focus-visible {
  transform: translateY(-2px);
  color: #fff;
}

.tp-whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.tp-whatsapp-float__icon .tp-icon {
  width: 22px;
  height: 22px;
}

.tp-whatsapp-float__text {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.tp-whatsapp-fade-enter-active,
.tp-whatsapp-fade-leave-active {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tp-whatsapp-fade-enter-from,
.tp-whatsapp-fade-leave-to {
  opacity: 0;
  transform: translateY(16px);
}

.tp-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 20, 0.72);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.tp-auth-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 920px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 28px;
  background: var(--tp-surface-strong);
  border: 1px solid var(--tp-border);
  box-shadow: var(--tp-shadow);
}

.tp-auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tp-border);
  border-radius: 50%;
  background: var(--tp-surface);
  color: var(--tp-heading);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tp-auth-modal__header h2 {
  margin: 10px 0 8px;
  color: var(--tp-heading);
  font-family: "Space Grotesk", sans-serif;
}

.tp-auth-modal__header p {
  margin: 0;
  color: var(--tp-text-soft);
  line-height: 1.7;
}

.tp-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 18px;
}

.tp-auth-tabs__button {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-heading);
  cursor: pointer;
  font-weight: 700;
}

.tp-auth-tabs__button.is-active {
  background: linear-gradient(135deg, var(--tp-accent), var(--tp-accent-strong));
  color: var(--tp-button-text);
  border-color: transparent;
}

.tp-auth-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.tp-auth-alert--success {
  background: rgba(23, 224, 196, 0.12);
  color: var(--tp-heading);
}

.tp-auth-alert--error {
  background: rgba(255, 107, 107, 0.12);
  color: #ffb3b3;
}

.transportera-shell[data-theme=light] .tp-auth-alert--error {
  color: #b13949;
}

.tp-auth-form {
  display: grid;
  gap: 14px;
}

.tp-auth-form__section {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
}

.tp-auth-form__section-title {
  color: var(--tp-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tp-auth-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tp-auth-form label {
  display: grid;
  gap: 8px;
}

.tp-auth-form label span {
  color: var(--tp-heading);
  font-weight: 700;
  font-size: 0.94rem;
}

.tp-auth-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-heading);
  outline: none;
}

.tp-auth-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-heading);
  outline: none;
  resize: vertical;
  min-height: 88px;
}

.tp-auth-form input::-moz-placeholder {
  color: var(--tp-text-soft);
}

.tp-auth-form input::placeholder {
  color: var(--tp-text-soft);
}

.tp-auth-form textarea::-moz-placeholder {
  color: var(--tp-text-soft);
}

.tp-auth-form textarea::placeholder {
  color: var(--tp-text-soft);
}

.tp-auth-form__logo-preview {
  border-radius: 20px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface-soft);
  padding: 16px;
}

.tp-auth-form__logo-preview img {
  display: block;
  max-width: 100%;
  max-height: 140px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.tp-auth-form__switch {
  margin-top: 2px;
  background: transparent;
  border: 0;
  color: var(--tp-accent);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.tp-modal-fade-enter-active,
.tp-modal-fade-leave-active {
  transition: opacity 0.25s ease;
}

.tp-modal-fade-enter-from,
.tp-modal-fade-leave-to {
  opacity: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@-webkit-keyframes tp-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes tp-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}
@-webkit-keyframes tp-progress {
  from {
    width: 68%;
  }
  to {
    width: 84%;
  }
}
@keyframes tp-progress {
  from {
    width: 68%;
  }
  to {
    width: 84%;
  }
}
@media (max-width: 1080px) {
  .tp-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    padding: 18px;
    border-radius: 24px;
    background: var(--tp-surface-strong);
    border: 1px solid var(--tp-border);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--tp-shadow);
  }
  .tp-nav.is-open {
    display: flex;
  }
  .tp-nav-toggle {
    display: inline-flex;
  }
  .tp-topbar__actions .tp-button--small {
    display: none;
  }
  .tp-hero__content,
  .tp-about__grid,
  .tp-contact-card,
  .tp-footer__grid {
    grid-template-columns: 1fr;
  }
  .tp-card-grid--features,
  .tp-card-grid--benefits,
  .tp-steps,
  .tp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-contact-card__actions {
    justify-content: flex-start;
  }
  .tp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .tp-container {
    width: min(100% - 24px, 1180px);
  }
  .tp-topbar {
    padding: 14px 0;
  }
  .tp-theme-toggle span {
    display: none;
  }
  .tp-hero {
    padding-top: 34px;
  }
  .tp-panel-card,
  .tp-about__story,
  .tp-about__metrics article,
  .tp-feature-card,
  .tp-benefit-card,
  .tp-step-card,
  .tp-contact-card,
  .tp-footer__card {
    padding: 22px;
  }
  .tp-metric-grid,
  .tp-hero__mini-cards,
  .tp-card-grid--features,
  .tp-card-grid--benefits,
  .tp-steps,
  .tp-gallery-grid {
    grid-template-columns: 1fr;
  }
  .tp-inline-list {
    gap: 10px;
  }
  .tp-contact-card__actions {
    display: grid;
  }
  .tp-contact-card__actions .tp-button {
    width: 100%;
  }
  .tp-footer__brand .tp-button {
    width: 100%;
  }
  .tp-auth-modal__dialog {
    padding: 22px;
  }
  .tp-auth-form__grid {
    grid-template-columns: 1fr;
  }
  .tp-whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 14px;
  }
  .tp-whatsapp-float__text {
    font-size: 0.92rem;
  }
}
