body.index-body {
  background: #ffffff !important;
  overflow-x: hidden;
  padding-top: 0 !important;
}

body.index-body .main-wrapper {
  background: #ffffff !important;
  overflow-x: clip;
}

body.th-auth-lock {
  overflow: hidden;
}

.th-landing-page {
  --thimago-primary: #6c3ef4;
  --thimago-primary-dark: #552dc9;
  --thimago-primary-light: #8b68f8;
  --thimago-primary-soft: #f1ecff;
  --thimago-black: #111111;
  --thimago-text: #1a1a1a;
  --thimago-text-secondary: #626262;
  --thimago-border: #e9e9ee;
  --thimago-surface: #ffffff;
  --thimago-surface-soft: #f8f8fa;
  --thimago-background: #ffffff;
  --thimago-success: #26c281;
  --thimago-radius-small: 12px;
  --thimago-radius-medium: 20px;
  --thimago-radius-large: 30px;
  --thimago-shadow-small: 0 8px 24px rgba(28, 20, 52, 0.06);
  --thimago-shadow-medium: 0 18px 50px rgba(28, 20, 52, 0.09);
  --th-primary: var(--thimago-primary);
  --th-primary-dark: var(--thimago-primary-dark);
  --th-primary-soft: var(--thimago-primary-soft);
  --th-primary-glow: rgba(108, 62, 244, 0.18);
  --th-bg: var(--thimago-background);
  --th-bg-soft: var(--thimago-surface-soft);
  --th-text: var(--thimago-text);
  --th-muted: var(--thimago-text-secondary);
  --th-border: var(--thimago-border);
  --th-card: var(--thimago-surface);
  --th-shadow-sm: var(--thimago-shadow-small);
  --th-shadow-md: var(--thimago-shadow-medium);
  --th-radius-sm: var(--thimago-radius-small);
  --th-radius-md: var(--thimago-radius-medium);
  --th-radius-lg: var(--thimago-radius-large);
  width: 100%;
  min-height: 100vh;
  color: var(--th-text);
  background:
    radial-gradient(circle at 75% 8%, rgba(108, 62, 244, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #fafafe 100%);
  font-family: Poppins, Arial, sans-serif;
  overflow-x: hidden;
}

.th-landing-page *,
.th-landing-page *::before,
.th-landing-page *::after {
  box-sizing: border-box;
}

.th-landing-page a {
  color: inherit;
  text-decoration: none;
}

.th-landing-page img {
  display: block;
  max-width: 100%;
}

.th-landing-page button,
.th-landing-page input,
.th-landing-page select {
  font-family: inherit;
}

.th-landing-container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.th-landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(236, 236, 243, 0.92);
  backdrop-filter: blur(22px);
}

.th-landing-header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.th-landing-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--th-primary) !important;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.th-landing-brand span {
  line-height: 1;
}

.th-landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  min-width: 0;
}

.th-landing-nav a {
  color: var(--th-text);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.th-landing-nav a:hover,
.th-landing-footer a:hover {
  color: var(--th-primary);
}

.th-landing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.th-landing-menu {
  display: none;
  position: relative;
}

.th-landing-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--th-text);
  background: var(--th-card);
  border: 1px solid var(--th-border);
  border-radius: 16px;
  box-shadow: var(--th-shadow-sm);
  cursor: pointer;
  list-style: none;
}

.th-landing-menu summary::-webkit-details-marker {
  display: none;
}

.th-landing-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 230px;
  padding: 10px;
  display: grid;
  gap: 6px;
  background: var(--th-card);
  border: 1px solid var(--th-border);
  border-radius: 20px;
  box-shadow: var(--th-shadow-md);
}

.th-landing-menu-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--th-text);
  font-weight: 700;
}

.th-landing-menu-panel a:hover {
  color: var(--th-primary);
  background: var(--th-primary-soft);
}

.th-landing-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  color: var(--th-text);
  background: var(--th-card);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(20, 18, 35, 0.08);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.th-landing-btn:hover,
.th-landing-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(20, 18, 35, 0.12);
}

.th-landing-btn:focus-visible,
.th-landing-menu summary:focus-visible,
.th-landing-page a:focus-visible,
.th-landing-close:focus-visible {
  outline: 3px solid rgba(108, 62, 244, 0.28);
  outline-offset: 3px;
}

.th-landing-btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
  box-shadow: 0 16px 34px rgba(108, 62, 244, 0.28);
}

.th-landing-btn-soft {
  color: var(--th-text);
  background: #ffffff;
}

.th-landing-btn-white {
  color: var(--th-text);
  background: #ffffff;
}

.th-landing-btn-lg {
  min-height: 58px;
  padding-inline: 42px;
  border-radius: 18px;
}

.th-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(70px, 8vw, 112px) 0 52px;
}

.th-landing-hero-copy {
  position: relative;
  z-index: 2;
}

.th-landing-kicker,
.th-landing-dark-kicker {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: #47405e;
  background: var(--th-primary-soft);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.th-landing-kicker i,
.th-landing-section-icon i,
.th-landing-dark-kicker i {
  color: var(--th-primary);
}

.th-landing-hero h1 {
  margin: 30px 0 24px;
  color: var(--th-text);
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.th-landing-hero h1 strong {
  display: inline-block;
  color: var(--th-primary);
}

.th-landing-hero p,
.th-landing-feature-copy p,
.th-landing-register-content p {
  max-width: 560px;
  margin: 0;
  color: var(--th-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.th-landing-cta-row,
.th-landing-store-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
}

.th-landing-store-row {
  margin-top: 34px;
}

.th-landing-store {
  min-width: 230px;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--th-card);
  border: 1px solid var(--th-border);
  border-radius: 18px;
  box-shadow: var(--th-shadow-sm);
}

.th-landing-store i {
  font-size: 34px;
}

.th-landing-store .fa-google-play {
  color: #2bc277;
}

.th-landing-store .fa-apple {
  color: #000000;
}

.th-landing-store strong,
.th-landing-store small {
  display: block;
}

.th-landing-store strong {
  color: var(--th-text);
  font-size: 15px;
  font-weight: 800;
}

.th-landing-store small {
  margin-top: 3px;
  color: var(--th-muted);
  font-size: 12px;
}

.th-landing-hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.th-landing-hero-visual::before {
  content: "";
  position: absolute;
  inset: 40px 78px 56px 158px;
  z-index: -2;
  background: linear-gradient(135deg, rgba(108, 62, 244, 0.12), rgba(108, 62, 244, 0.02));
  border-radius: 42% 58% 48% 52%;
  transform: rotate(-10deg);
}

.th-landing-photo {
  position: absolute;
  overflow: hidden;
  background: #f2f2f6;
  box-shadow: var(--th-shadow-md);
}

.th-landing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-landing-photo-main {
  top: 12px;
  right: 68px;
  width: min(45vw, 310px);
  height: 440px;
  border-radius: 30px;
}

.th-landing-photo-secondary {
  top: 150px;
  left: 36px;
  width: min(35vw, 260px);
  height: 270px;
  border: 10px solid #ffffff;
  border-radius: 26px;
}

.th-landing-float,
.th-landing-orb,
.th-landing-service-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  background: var(--th-card);
  box-shadow: var(--th-shadow-md);
}

.th-landing-float {
  padding: 18px 20px;
  border: 1px solid rgba(236, 236, 243, 0.86);
  border-radius: 18px;
}

.th-landing-float strong,
.th-landing-float small {
  display: block;
}

.th-landing-float strong {
  color: var(--th-text);
  font-size: 14px;
  font-weight: 800;
}

.th-landing-float small {
  margin-top: 6px;
  color: var(--th-muted);
  font-size: 12px;
}

.th-landing-float-people {
  left: 0;
  bottom: 138px;
  gap: 12px;
}

.th-landing-avatar-stack {
  display: flex;
  align-items: center;
}

.th-landing-avatar-stack img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin-left: -8px;
}

.th-landing-avatar-stack img:first-child {
  margin-left: 0;
}

.th-landing-float-local {
  right: 0;
  bottom: 86px;
  width: 210px;
  display: block;
}

.th-landing-mini-icon,
.th-landing-section-icon,
.th-landing-orb,
.th-landing-service-dot {
  color: var(--th-primary);
  background: var(--th-primary-soft);
}

.th-landing-mini-icon,
.th-landing-section-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 24px;
}

.th-landing-float-local .th-landing-mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  font-size: 18px;
}

.th-landing-float-like {
  top: 126px;
  right: -42px;
  gap: 10px;
  color: var(--th-text);
  font-size: 13px;
  font-weight: 800;
}

.th-landing-float-like i {
  color: var(--th-primary);
}

.th-landing-orb {
  width: 78px;
  height: 78px;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
  font-size: 28px;
}

.th-landing-orb-heart {
  right: 56px;
  top: 330px;
}

.th-landing-orb-smile {
  left: 104px;
  top: 72px;
  color: #ffb000;
  background: #ffffff;
}

.th-landing-dots {
  position: absolute;
  left: 218px;
  bottom: 40px;
  width: 110px;
  height: 78px;
  background-image: radial-gradient(var(--th-primary) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.9;
}

.th-landing-feature {
  padding: 36px 0;
}

.th-landing-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: 430px;
  padding: clamp(36px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(236, 236, 243, 0.92);
  border-radius: var(--th-radius-lg);
  box-shadow: 0 16px 46px rgba(22, 18, 39, 0.05);
}

.th-landing-feature-copy h2,
.th-landing-register-content h2 {
  margin: 28px 0 20px;
  color: var(--th-text);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.th-landing-feature-copy .th-landing-btn {
  margin-top: 34px;
}

.th-landing-feature-media {
  position: relative;
  min-height: 300px;
}

.th-landing-feature-media > img {
  width: 100%;
  height: min(36vw, 365px);
  min-height: 290px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--th-shadow-sm);
}

.th-landing-post-chip,
.th-landing-product-card,
.th-landing-order-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(236, 236, 243, 0.86);
  border-radius: 18px;
  box-shadow: var(--th-shadow-md);
}

.th-landing-post-chip {
  left: -68px;
  bottom: -22px;
  min-width: 250px;
  padding: 18px 20px;
}

.th-landing-post-chip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--th-text);
  font-size: 14px;
}

.th-landing-post-chip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 18px;
  color: var(--th-text);
  font-size: 13px;
}

.th-landing-post-chip i,
.th-landing-product-card a,
.th-landing-footer-brand a {
  color: var(--th-primary);
}

.th-landing-feature-market {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
}

.th-landing-product-card {
  left: -42px;
  bottom: 24px;
  width: 170px;
  padding: 20px;
}

.th-landing-product-image {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--th-text);
  background: #f4f4f7;
  border-radius: 18px;
  font-size: 36px;
}

.th-landing-product-card strong,
.th-landing-product-card b,
.th-landing-product-card a {
  display: block;
}

.th-landing-product-card strong {
  color: var(--th-text);
  font-size: 13px;
  line-height: 1.35;
}

.th-landing-product-card b {
  margin: 9px 0 12px;
  color: var(--th-text);
  font-size: 18px;
}

.th-landing-product-card a {
  width: max-content;
  padding: 10px 13px;
  color: #ffffff !important;
  background: var(--th-primary);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.th-landing-service-visual {
  position: relative;
  min-height: 400px;
}

.th-landing-phone {
  position: absolute;
  inset: 0;
  width: min(360px, 70%);
  height: 360px;
  margin: auto;
  padding: 22px;
  background: #ffffff;
  border: 10px solid #111118;
  border-radius: 42px;
  box-shadow: var(--th-shadow-md);
}

.th-landing-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 72px;
  height: 8px;
  border-radius: 99px;
  background: #111118;
  transform: translateX(-50%);
}

.th-landing-map {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(108, 62, 244, 0.08) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 0 43%, rgba(108, 62, 244, 0.08) 43% 47%, transparent 47%),
    #f7f7fb;
  border-radius: 28px;
}

.th-landing-map-road,
.th-landing-route {
  position: absolute;
  height: 4px;
  background: #d9d9e8;
  border-radius: 99px;
  transform-origin: left center;
}

.road-a {
  top: 92px;
  left: 20px;
  width: 260px;
  transform: rotate(18deg);
}

.road-b {
  top: 184px;
  left: 16px;
  width: 290px;
  transform: rotate(-16deg);
}

.road-c {
  top: 246px;
  left: 52px;
  width: 220px;
  transform: rotate(10deg);
}

.th-landing-route {
  top: 170px;
  left: 78px;
  width: 190px;
  height: 5px;
  background: var(--th-primary);
  transform: rotate(-24deg);
}

.th-landing-pin {
  position: absolute;
  top: 92px;
  right: 82px;
  color: var(--th-primary);
  font-size: 42px;
  filter: drop-shadow(0 10px 18px rgba(108, 62, 244, 0.28));
}

.th-landing-order-card {
  left: 50%;
  bottom: 38px;
  width: 250px;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  transform: translateX(-50%);
}

.th-landing-order-card span,
.th-landing-driver {
  overflow: hidden;
  border-radius: 50%;
}

.th-landing-order-card span {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.th-landing-order-card img,
.th-landing-driver {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-landing-order-card strong,
.th-landing-order-card small {
  display: block;
}

.th-landing-order-card strong {
  color: var(--th-text);
  font-size: 13px;
}

.th-landing-order-card small {
  margin-top: 5px;
  color: var(--th-muted);
  font-size: 12px;
}

.th-landing-driver {
  position: absolute;
  width: 76px;
  height: 76px;
  border: 4px solid #ffffff;
  box-shadow: var(--th-shadow-sm);
}

.driver-a {
  top: 22px;
  left: 100px;
}

.driver-b {
  top: 56px;
  right: 94px;
}

.driver-c {
  right: 124px;
  bottom: 28px;
}

.th-landing-service-dot {
  width: 46px;
  height: 46px;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.dot-a {
  left: 70px;
  top: 190px;
}

.dot-b {
  right: 44px;
  top: 206px;
}

.th-landing-register {
  padding: 46px 0 34px;
}

.th-landing-register-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(36px, 5vw, 70px);
  color: #ffffff;
  background: #0f1016;
  border-radius: 28px;
  box-shadow: var(--th-shadow-md);
  isolation: isolate;
}

.th-landing-register-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 16, 22, 0.96) 0%, rgba(15, 16, 22, 0.82) 42%, rgba(15, 16, 22, 0.18) 100%);
}

.th-landing-register-collage {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 16px;
  padding: 24px;
  transform: rotate(-7deg) scale(1.08);
  opacity: 0.72;
}

.th-landing-register-collage img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: 22px;
}

.th-landing-dark-kicker {
  color: #ffffff;
  background: rgba(108, 62, 244, 0.24);
}

.th-landing-register-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.th-landing-register-content h2,
.th-landing-register-content p {
  color: #ffffff;
}

.th-landing-register-content p {
  opacity: 0.84;
}

.th-landing-register-content .th-landing-btn {
  margin-top: 34px;
}

.th-landing-footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: end;
  gap: 36px;
  padding: 12px 0 46px;
}

.th-landing-footer-brand a {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
}

.th-landing-footer-brand p,
.th-landing-copyright,
.th-landing-footer-links a {
  color: var(--th-muted);
  font-size: 13px;
  line-height: 1.7;
}

.th-landing-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.th-landing-socials span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--th-primary);
  border-radius: 50%;
  font-size: 12px;
}

.th-landing-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 14px 34px;
}

.th-landing-copyright {
  margin: 0;
  text-align: right;
}

.th-landing-modal[hidden] {
  display: none !important;
}

.th-landing-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.th-landing-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 18, 0.58);
  backdrop-filter: blur(14px);
}

.th-landing-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: min(92vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  overflow: hidden;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(7, 6, 15, 0.28);
}

.th-landing-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--th-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--th-border);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.th-landing-dialog-main {
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 52px);
}

.th-landing-dialog-side {
  min-height: 620px;
  padding: 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(108, 62, 244, 0.92), rgba(83, 36, 214, 0.88)),
    url("../images/landing/pin-community.jpg") center/cover;
}

.th-landing-dialog-side h3 {
  margin: 28px 0 12px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.th-landing-dialog-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.th-landing-dialog-phone {
  width: 190px;
  height: 260px;
  position: relative;
  margin-inline: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.15);
  border: 9px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  box-shadow: 0 24px 55px rgba(26, 12, 72, 0.22);
}

.th-landing-dialog-phone span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 18px auto 34px;
  color: var(--th-primary);
  background: #ffffff;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
}

.th-landing-dialog-phone i {
  display: block;
  width: 100%;
  height: 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.44);
  border-radius: 99px;
}

.th-landing-dialog-phone b {
  display: inline-flex;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  font-size: 12px;
}

.th-landing-dialog-main .fr_auth_form,
.th-landing-dialog-main .fr_auth_form *,
.th-landing-dialog-main .card-register,
.th-landing-dialog-main .card-register * {
  font-family: Poppins, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.th-landing-dialog-main .fr_auth_form,
.th-landing-dialog-main .card-register {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.th-landing-dialog-main .card-register .card-header,
.th-landing-dialog-main .card-register .card-body {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.th-landing-dialog-main .card-register .card-header {
  margin-bottom: 24px !important;
}

.th-landing-dialog-main .fr_welcome_title,
.th-landing-dialog-main .card-register .card-title {
  color: var(--th-text) !important;
  font-size: clamp(28px, 4vw, 38px) !important;
  font-weight: 900 !important;
}

.th-landing-dialog-main .card-register .card-title {
  margin: 0 0 8px !important;
}

.th-landing-dialog-main .card-register .card-header p {
  margin: 0 !important;
  color: var(--th-muted) !important;
  font-size: 15px !important;
}

.th-landing-dialog-main .fr_welcome_field {
  position: relative;
  margin-bottom: 16px !important;
  border-radius: 18px !important;
}

.th-landing-dialog-main .fr_welcome_field input,
.th-landing-dialog-main .fr_welcome_field select,
.th-landing-dialog-main .form-control,
.th-landing-dialog-main .form-select,
.th-landing-dialog-main .input-group-text {
  width: 100% !important;
  min-height: 58px !important;
  color: var(--th-text) !important;
  background: #f8f8fb !important;
  border: 1px solid var(--th-border) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.th-landing-dialog-main .input-group {
  border-radius: 18px !important;
}

.th-landing-dialog-main .input-group-text {
  width: auto !important;
  flex: 0 0 auto !important;
  color: var(--th-primary) !important;
  border-right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.th-landing-dialog-main .input-group .form-control {
  border-left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.th-landing-dialog-main .input-group .input-group-text:first-child {
  border-top-left-radius: 18px !important;
  border-bottom-left-radius: 18px !important;
}

.th-landing-dialog-main .input-group .input-group-text:last-child {
  border-right: 1px solid var(--th-border) !important;
  border-left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 18px !important;
  border-bottom-right-radius: 18px !important;
}

.th-landing-dialog-main .input-group .form-control:not(:last-child) {
  border-right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.th-landing-dialog-main .fr_welcome_field svg {
  color: var(--th-primary) !important;
}

.th-landing-dialog-main .btn-primary,
.th-landing-dialog-main .fr_welcome_btn {
  min-height: 58px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark)) !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 34px rgba(108, 62, 244, 0.28) !important;
  font-weight: 900 !important;
}

.th-landing-dialog-main a,
.th-landing-dialog-main .text-link {
  color: var(--th-primary) !important;
  font-weight: 800 !important;
}

.th-landing-dialog-main .form-check-input:checked {
  background-color: var(--th-primary) !important;
  border-color: var(--th-primary) !important;
}

.th-landing-legal {
  margin-top: 18px;
  color: var(--th-muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.th-landing-legal a {
  color: var(--th-primary);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .th-landing-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .th-landing-nav {
    gap: 24px;
  }

  .th-landing-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 58px;
  }

  .th-landing-hero-visual {
    min-height: 570px;
  }

  .th-landing-photo-main {
    right: 12%;
  }

  .th-landing-photo-secondary {
    left: 14%;
  }
}

@media (max-width: 960px) {
  .th-landing-container {
    width: min(100% - 36px, 760px);
  }

  .th-landing-header-inner {
    min-height: 72px;
  }

  .th-landing-nav {
    display: none;
  }

  .th-landing-menu {
    display: block;
  }

  .th-landing-feature-card,
  .th-landing-feature-market {
    grid-template-columns: 1fr;
  }

  .th-landing-feature-market .th-landing-feature-media {
    order: 2;
  }

  .th-landing-post-chip,
  .th-landing-product-card {
    left: 22px;
  }

  .th-landing-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .th-landing-copyright {
    text-align: left;
  }

  .th-landing-dialog {
    grid-template-columns: 1fr;
  }

  .th-landing-dialog-side {
    display: none;
  }
}

@media (max-width: 720px) {
  .th-landing-container {
    width: min(100% - 28px, 540px);
  }

  .th-landing-header {
    position: relative;
  }

  .th-landing-header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .th-landing-brand {
    font-size: 26px;
  }

  .th-landing-actions {
    gap: 8px;
  }

  .th-landing-actions > .th-landing-btn {
    min-height: 40px;
    padding-inline: 12px;
    border-radius: 14px;
    font-size: 12px;
  }

  .th-landing-menu {
    display: block;
  }

  .th-landing-menu-panel {
    right: -2px;
  }

  .th-landing-hero {
    gap: 34px;
    padding: 42px 0 24px;
  }

  .th-landing-hero h1 {
    margin-top: 22px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .th-landing-hero p,
  .th-landing-feature-copy p,
  .th-landing-register-content p {
    font-size: 16px;
  }

  .th-landing-cta-row,
  .th-landing-store-row {
    gap: 12px;
    margin-top: 28px;
  }

  .th-landing-btn,
  .th-landing-btn-lg,
  .th-landing-store {
    width: 100%;
  }

  .th-landing-hero-visual {
    min-height: 470px;
  }

  .th-landing-photo-main {
    right: 0;
    width: 240px;
    height: 342px;
  }

  .th-landing-photo-secondary {
    left: 0;
    top: 126px;
    width: 210px;
    height: 220px;
  }

  .th-landing-float-like {
    right: 4px;
    top: 72px;
  }

  .th-landing-orb-heart {
    right: 48px;
    top: 292px;
  }

  .th-landing-orb-smile {
    left: 72px;
    top: 28px;
  }

  .th-landing-float-people {
    bottom: 64px;
  }

  .th-landing-float-local {
    right: 4px;
    bottom: 24px;
    width: 178px;
  }

  .th-landing-dots {
    display: none;
  }

  .th-landing-feature {
    padding: 22px 0;
  }

  .th-landing-feature-card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .th-landing-feature-copy h2,
  .th-landing-register-content h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .th-landing-feature-media > img {
    height: 285px;
  }

  .th-landing-post-chip,
  .th-landing-product-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -26px;
  }

  .th-landing-service-visual {
    min-height: 390px;
  }

  .th-landing-phone {
    width: min(310px, 88%);
    height: 330px;
  }

  .driver-a {
    left: 0;
  }

  .driver-b {
    right: 0;
  }

  .driver-c {
    right: 26px;
  }

  .th-landing-register-card {
    min-height: 460px;
    padding: 30px 22px;
  }

  .th-landing-register-card::before {
    background: linear-gradient(180deg, rgba(15, 16, 22, 0.98) 0%, rgba(15, 16, 22, 0.9) 52%, rgba(15, 16, 22, 0.58) 100%);
  }

  .th-landing-register-collage {
    inset: 44% -44% -6% 6%;
  }

  .th-landing-footer-links {
    grid-template-columns: 1fr;
  }

  .th-landing-modal {
    padding: 14px;
  }

  .th-landing-dialog {
    border-radius: 24px;
  }

  .th-landing-dialog-main {
    padding: 24px 18px;
  }
}

@media (max-width: 420px) {
  .th-landing-container {
    width: min(100% - 22px, 390px);
  }

  .th-landing-brand {
    font-size: 21px;
  }

  .th-landing-actions {
    gap: 6px;
  }

  .th-landing-actions > .th-landing-btn {
    padding-inline: 10px;
    font-size: 11px;
  }

  .th-landing-menu summary {
    width: 40px;
    height: 40px;
  }

  .th-landing-hero-visual {
    min-height: 440px;
  }

  .th-landing-photo-main {
    width: 218px;
    height: 316px;
  }

  .th-landing-photo-secondary {
    width: 188px;
    height: 204px;
  }

  .th-landing-orb,
  .th-landing-section-icon {
    width: 56px;
    height: 56px;
  }

  .th-landing-float {
    padding: 13px 14px;
  }

  .th-landing-float-local {
    width: 158px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .th-landing-page *,
  .th-landing-page *::before,
  .th-landing-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
