/* ============================================================
   Tably — Landing Page v2
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --t-primary: #FF6B35;
  --t-primary-dark: #E55A2B;
  --t-primary-glow: rgba(255, 107, 53, .25);
  --t-bg: #14151F;
  --t-surface: #1A1B28;
  --t-surface-2: #22233A;
  --t-card: #1E1F2D;
  --t-text: #F8F8FC;
  --t-text-2: #C8C9DD;
  --t-text-3: #8E8FA8;
  --t-border: rgba(255, 255, 255, .06);
  --t-green: #10B981;
  --t-blue: #3B82F6;
  --t-purple: #8B5CF6;
  --t-red: #EF4444;

  /* Radius */
  --t-radius: 16px;
  --t-radius-sm: 10px;
  --t-radius-xs: 6px;

  /* Spacing (8px base) */
  --t-sp-1: 8px;
  --t-sp-2: 16px;
  --t-sp-3: 24px;
  --t-sp-4: 32px;
  --t-sp-5: 48px;
  --t-sp-6: 64px;
  --t-sp-7: 80px;

  /* Typography */
  --t-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --t-h1: clamp(2.4rem, 5vw, 3.6rem);
  --t-h2: clamp(1.6rem, 3vw, 2.2rem);
  --t-h3: 1.15rem;
  --t-body: .95rem;
  --t-caption: .78rem;

  /* Transitions */
  --t-transition: .3s cubic-bezier(.4, 0, .2, 1);
  --t-transition-fast: .15s ease;
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--t-bg);
  color: var(--t-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.t-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- Navbar ---- */
.t-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(20, 21, 31, .88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--t-border);
  transition: transform .3s ease;
}
.t-nav--hidden { transform: translateY(-100%); }
.t-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
}
.t-nav__logo { font-size: 1.4rem; font-weight: 800; color: var(--t-text); text-decoration: none; letter-spacing: -.02em; }
.t-nav__logo span { color: var(--t-primary); }
.t-nav__menu {
  display: flex; align-items: center; gap: 28px;
}
.t-nav__link {
  font-size: .85rem; font-weight: 500; color: var(--t-text-3);
  text-decoration: none; transition: color var(--t-transition);
  position: relative;
}
.t-nav__link:hover, .t-nav__link.active { color: var(--t-text); }
.t-nav__link.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--t-primary); border-radius: 1px;
}
.t-nav__actions { display: flex; align-items: center; gap: 10px; }

.t-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--t-radius-sm); border: none;
  font-family: inherit; font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: all .2s cubic-bezier(.4, 0, .2, 1); text-decoration: none;
  position: relative; overflow: hidden;
}
.t-btn--primary {
  background: linear-gradient(135deg, var(--t-primary) 0%, #FF8F65 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, .2);
}
.t-btn--primary:hover {
  background: linear-gradient(135deg, var(--t-primary-dark) 0%, var(--t-primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, .3);
}
.t-btn--primary:active { transform: translateY(0) scale(.98); box-shadow: 0 2px 8px rgba(255, 107, 53, .2); }
.t-btn--ghost {
  background: transparent; color: var(--t-text-2);
  border: 1.5px solid rgba(255, 255, 255, .08);
}
.t-btn--ghost:hover { border-color: var(--t-primary); color: var(--t-primary); background: rgba(255, 107, 53, .04); }
.t-btn--sm { padding: 8px 16px; font-size: .8rem; }
.t-btn--lg { padding: 14px 32px; font-size: 1rem; }
.t-lang-btn {
  padding: 6px 14px; border-radius: 20px; border: 1.5px solid var(--t-border);
  background: transparent; color: var(--t-text-2); font-size: .75rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all var(--t-transition);
}
.t-lang-btn:hover { border-color: var(--t-primary); color: var(--t-primary); }

/* ---- Hero ---- */
.t-hero {
  padding: 120px 0 var(--t-sp-7);
  position: relative; overflow: hidden;
}
.t-hero__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,53,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 60%);
  mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 60%);
}
.t-hero__layout {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--t-sp-6);
  align-items: center; position: relative;
}
.t-hero__content { text-align: left; }
.t-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 24px;
  background: rgba(255,107,53,.08); border: 1px solid rgba(255,107,53,.2);
  color: var(--t-text-2); font-size: var(--t-caption); font-weight: 500;
  margin-bottom: var(--t-sp-3);
}
.t-hero__badge-ai {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--t-primary); font-weight: 700;
}
.t-hero__badge-ai i {
  font-size: .65rem;
  animation: pulse-icon 1.8s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.t-hero__badge-sep { color: var(--t-text-3); }

.t-hero__title {
  font-size: var(--t-h1); font-weight: 800;
  line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: var(--t-sp-2);
}
.t-hero__title span { color: var(--t-primary); }
.t-hero__sub {
  font-size: clamp(.95rem, 2vw, 1.1rem); color: var(--t-text-2);
  max-width: 520px; margin-bottom: var(--t-sp-4); line-height: 1.7;
}
.t-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.t-hero__demo-group {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06);
}
.t-hero__demo-label { font-size: .78rem; color: var(--t-text-3); font-weight: 500; }
.t-hero__demo-link {
  font-size: .82rem; font-weight: 600; color: var(--t-text-2);
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.t-hero__demo-link:hover { color: var(--t-primary); }
.t-hero__demo-link i { font-size: .75rem; }
.t-hero__demo-sep { color: var(--t-text-3); font-size: .7rem; }
.t-hero__trust {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: var(--t-sp-5);
}
.t-trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--t-text-3); font-weight: 500;
}
.t-trust-chip i { font-size: .7rem; }

/* Hero phone mockup */
.t-hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.t-hero__phone {
  width: 280px; height: 560px;
  background: #1a1a1e; border-radius: 44px; padding: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.t-hero__phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden;
  background: #f8f7fc;
}
.t-hero__phone-screen img {
  width: 100%; height: 100%; object-fit: cover;
}
.t-hero__phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px; background: #1a1a1e; border-radius: 14px; z-index: 2;
}
/* ---- Section ---- */
.t-section { padding: var(--t-sp-7) 0; }
.t-section--alt { background: var(--t-surface); }
.t-section__label {
  font-size: var(--t-caption); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--t-primary); margin-bottom: var(--t-sp-1);
}
.t-section__title {
  font-size: var(--t-h2); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.t-section__sub { color: var(--t-text-2); max-width: 520px; font-size: var(--t-body); margin-bottom: var(--t-sp-5); line-height: 1.7; }
.t-section--center { text-align: center; }
.t-section--center .t-section__sub { margin-left: auto; margin-right: auto; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Trust Bar (Logo Strip) ---- */
.t-trust-bar {
  padding: var(--t-sp-4) 0;
  border-bottom: 1px solid var(--t-border);
}
.t-trust-bar__inner {
  display: flex; align-items: center; gap: var(--t-sp-4);
  justify-content: center; flex-wrap: wrap;
}
.t-trust-bar__label {
  font-size: var(--t-caption); color: var(--t-text-3);
  font-weight: 500; white-space: nowrap;
}
.t-trust-bar__logos {
  display: flex; align-items: center; gap: var(--t-sp-4); flex-wrap: wrap;
}
.t-trust-bar__logo {
  font-size: .9rem; font-weight: 700; color: var(--t-text-3);
  opacity: .5; transition: opacity var(--t-transition);
  white-space: nowrap;
}
.t-trust-bar__logo:hover { opacity: 1; }

/* ---- How It Works ---- */
.t-steps {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-top: 8px;
}
.t-step-card {
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: var(--t-radius); padding: 32px 24px;
  flex: 1; min-width: 210px; max-width: 300px; text-align: center;
  transition: all var(--t-transition);
  display: flex; flex-direction: column;
}
.t-step-card:hover {
  border-color: rgba(255,107,53,.3); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.t-step-card__num {
  font-size: .65rem; font-weight: 800; letter-spacing: .2em;
  color: var(--t-text-3); margin-bottom: 18px;
}
.t-step-card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto 18px;
}
.t-step-card__icon--orange { background: rgba(255,107,53,.12); color: var(--t-primary); }
.t-step-card__icon--blue   { background: rgba(59,130,246,.12);  color: var(--t-blue); }
.t-step-card__icon--green  { background: rgba(16,185,129,.12);  color: var(--t-green); }
.t-step-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.t-step-card__desc { font-size: .83rem; color: var(--t-text-2); line-height: 1.6; }
.t-step-connector {
  display: flex; align-items: center; justify-content: center;
  color: var(--t-text-3); font-size: .85rem;
  padding: 0 12px; flex-shrink: 0; align-self: center;
}

/* ---- AI Layout ---- */
.t-ai-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.t-ai-layout__left .t-section__sub { margin-left: 0; }
.t-ai-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.t-ai-feature { display: flex; align-items: flex-start; gap: 14px; }
.t-ai-feature__icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,107,53,.1); color: var(--t-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; margin-top: 1px;
}
.t-ai-feature__name { font-size: .88rem; font-weight: 600; color: var(--t-text); margin-bottom: 3px; }
.t-ai-feature__desc { font-size: .78rem; color: var(--t-text-3); line-height: 1.5; }

/* ---- Terminal ---- */
.t-terminal {
  background: #0B0B12;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03);
}
.t-terminal__header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.t-terminal__dots { display: flex; gap: 6px; }
.tdot { width: 11px; height: 11px; border-radius: 50%; }
.tdot--red    { background: #FF5F57; }
.tdot--yellow { background: #FEBC2E; }
.tdot--green  { background: #28C840; }
.t-terminal__title {
  font-size: .72rem; color: rgba(255,255,255,.25);
  margin: 0 auto; font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: .02em;
}
.t-terminal__body {
  padding: 20px 20px 24px; min-height: 260px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .8rem; line-height: 1.9;
  overflow: hidden;
}
.tm-row  { color: rgba(255,255,255,.65); }
.tm-g    { color: rgba(255,255,255,.55); }
.tm-g .tm-ok { color: #28C840; }
.tm-p    { color: var(--t-primary); margin-right: 6px; }
.tm-cmd  { color: rgba(255,255,255,.9); }
.tm-ok   { color: #28C840; margin-right: 6px; }
.tm-plus { color: var(--t-blue); margin-right: 8px; }
.tm-spacer { height: 4px; }
.tm-item { display: flex; align-items: center; color: rgba(255,255,255,.75); }
.tm-nm   { flex: 1; }
.tm-pr   { color: var(--t-primary); font-weight: 600; margin-left: 8px; font-size: .78rem; }
.tm-done { color: #28C840; font-weight: 600; }

/* ---- Customer Flow ---- */
.t-flow-demo {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap; margin-top: 16px;
}
.t-phone-wrap { flex-shrink: 0; }
.t-phone {
  width: 224px; height: 452px;
  background: #0B0B14;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    0 0 0 6px rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.t-phone__notch {
  width: 80px; height: 22px;
  background: #0B0B14;
  border: 2px solid rgba(255,255,255,.12);
  border-top: none;
  border-radius: 0 0 14px 14px;
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.t-phone__screen {
  position: absolute; inset: 0; overflow: hidden;
}
.t-phone-screen {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .55s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px 20px;
}
.t-phone-screen--active { opacity: 1; pointer-events: auto; }

/* Screen 1: QR Scan */
.t-phone-screen__center {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; width: 100%;
}
.t-qr-frame {
  position: relative; width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.t-qr-frame i { font-size: 3.2rem; color: rgba(255,255,255,.25); }
.t-scan-line {
  position: absolute; left: -4px; right: -4px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-primary), transparent);
  animation: scanMove 2s ease-in-out infinite;
}
@keyframes scanMove {
  0%   { top: 5%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 95%; opacity: 0; }
}
.t-phone-screen__label {
  font-size: .68rem; color: var(--t-text-3); text-align: center;
  font-family: inherit;
}

/* Screen 2: Menu */
.t-phone-menu { width: 100%; }
.t-phone-menu__header {
  padding: 0 4px 10px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.t-phone-menu__logo { font-size: .82rem; font-weight: 700; color: var(--t-text); }
.t-phone-menu__sub  { font-size: .65rem; color: var(--t-text-3); margin-top: 2px; }
.t-phone-menu__items { display: flex; flex-direction: column; gap: 3px; }
.t-phone-menu__item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 8px;
  font-size: .73rem; color: var(--t-text-2);
  border: 1px solid transparent; transition: all .2s;
}
.t-phone-menu__item--hl {
  background: rgba(255,107,53,.1); border-color: rgba(255,107,53,.2);
  color: var(--t-text);
}
.t-phone-menu__add {
  color: var(--t-primary); font-weight: 700; font-size: .7rem;
}

/* Screen 3: Cart */
.t-phone-cart { width: 100%; }
.t-phone-cart__title { font-size: .8rem; font-weight: 700; color: var(--t-text); margin-bottom: 12px; }
.t-phone-cart__item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: var(--t-text-2);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.t-phone-cart__price { color: var(--t-text); font-weight: 600; }
.t-phone-cart__total {
  font-size: .78rem; font-weight: 700; color: var(--t-primary);
  padding: 9px 0; text-align: right;
}
.t-phone-cart__btn {
  width: 100%; padding: 9px; margin-top: 2px;
  background: var(--t-primary); color: #fff;
  border-radius: 9px; font-size: .75rem; font-weight: 700;
  text-align: center; font-family: inherit;
}

/* Screen 4: Success */
.t-phone-success {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.t-phone-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(16,185,129,.12); border: 2px solid rgba(16,185,129,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--t-green);
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.t-phone-success__title { font-size: .82rem; font-weight: 700; color: var(--t-text); }
.t-phone-success__sub   { font-size: .7rem; color: var(--t-text-3); }

/* Flow Steps */
.t-flow-steps { display: flex; flex-direction: column; text-align: left; min-width: 220px; }
.t-flow-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 6px 0; opacity: .35; transition: opacity .5s;
}
.t-flow-step--active { opacity: 1; }
.t-flow-step__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--t-border); flex-shrink: 0; margin-top: 5px;
  transition: background .5s, box-shadow .5s;
}
.t-flow-step--active .t-flow-step__dot {
  background: var(--t-primary);
  box-shadow: 0 0 0 4px rgba(255,107,53,.15);
}
.t-flow-step__line {
  width: 1px; height: 28px; background: var(--t-border); margin-left: 5px;
}
.t-flow-step__name { font-size: .85rem; font-weight: 600; color: var(--t-text); line-height: 1.4; }
.t-flow-step__desc { font-size: .74rem; color: var(--t-text-3); margin-top: 2px; }

/* ---- Services Grid ---- */
.t-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.t-service-card {
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: var(--t-radius); padding: 28px 24px;
  transition: all var(--t-transition); position: relative; overflow: hidden;
}
.t-service-card:hover {
  border-color: rgba(255,107,53,.3); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.t-service-card--upcoming { opacity: .6; }
.t-service-card--upcoming:hover { opacity: .8; }
.t-service-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
}
.t-service-card__icon--orange { background: rgba(255,107,53,.12); color: var(--t-primary); }
.t-service-card__icon--green  { background: rgba(16,185,129,.12);  color: var(--t-green); }
.t-service-card__icon--blue   { background: rgba(59,130,246,.12);  color: var(--t-blue); }
.t-service-card__icon--purple { background: rgba(139,92,246,.12);  color: var(--t-purple); }
.t-service-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.t-service-card__desc { font-size: .85rem; color: var(--t-text-2); line-height: 1.6; }
.t-service-card__badge {
  position: absolute; top: 16px; right: 16px;
  padding: 3px 10px; border-radius: 12px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.t-service-card__ai-tag {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; padding: 4px 10px; border-radius: 8px;
  background: rgba(255,107,53,.08); border: 1px solid rgba(255,107,53,.15);
  color: var(--t-primary); font-size: .68rem; font-weight: 700;
}
.t-badge--active { background: rgba(16,185,129,.12); color: var(--t-green); }
.t-badge--soon   { background: rgba(139,92,246,.12);  color: var(--t-purple); }

/* ---- Partners Grid ---- */
.t-partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.t-partner-card {
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: var(--t-radius-sm); padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--t-transition);
}
.t-partner-card:hover { border-color: rgba(255,107,53,.3); }
.t-partner-card__avatar {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--t-surface-2); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--t-primary); flex-shrink: 0;
}
.t-partner-card__name { font-size: .9rem; font-weight: 600; }
.t-partner-card__plan { font-size: .72rem; color: var(--t-text-3); margin-top: 2px; }

/* ---- Auth Modal ---- */
.t-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.t-modal-overlay.active { display: flex; opacity: 1; }

.t-modal {
  background: var(--t-surface);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 36px 32px 32px;
  width: 100%; max-width: 440px;
  position: relative;
  animation: modalIn .35s cubic-bezier(.16, 1, .3, 1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .04) inset,
    0 1px 0 rgba(255, 255, 255, .06) inset;
  overflow: hidden;
}
.t-modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--t-primary), #FF8F65, var(--t-primary));
  border-radius: 20px 20px 0 0;
  opacity: .85;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.t-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--t-surface-2); color: var(--t-text-3);
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
  z-index: 2;
}
.t-modal__close:hover {
  background: rgba(255, 107, 53, .12);
  color: var(--t-primary);
  transform: rotate(90deg);
}

.t-modal__title {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 6px;
  color: var(--t-text); letter-spacing: -.01em;
}
.t-modal__sub {
  font-size: .85rem; color: var(--t-text-2); margin-bottom: 24px;
  line-height: 1.5;
}

.t-modal__tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  background: var(--t-bg); border-radius: var(--t-radius-sm);
  padding: 4px;
}
.t-modal__tab {
  flex: 1; padding: 11px 16px; text-align: center; cursor: pointer;
  font-size: .84rem; font-weight: 600;
  border: none; border-bottom: none;
  border-radius: var(--t-radius-xs);
  color: var(--t-text-3);
  transition: all .2s ease;
  position: relative;
}
.t-modal__tab:hover:not(.active) {
  color: var(--t-text-2);
  background: rgba(255, 255, 255, .03);
}
.t-modal__tab.active {
  background: var(--t-surface-2);
  color: var(--t-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.t-form-group { margin-bottom: 16px; }
.t-form-group label {
  display: block; font-size: .78rem; font-weight: 500;
  color: var(--t-text-2); margin-bottom: 6px;
  letter-spacing: .01em;
}

/* Form link (e.g. "Forgot password") */
.t-form-link {
  background: none; border: none; color: var(--t-primary);
  font-size: .75rem; font-weight: 500; cursor: pointer;
  font-family: inherit; padding: 2px 4px; border-radius: 4px;
  transition: opacity .2s;
}
.t-form-link:hover { opacity: .75; }

/* Input toggle button (password eye) */
.t-input-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--t-text-3); cursor: pointer;
  padding: 6px; line-height: 1; font-size: .9rem; border-radius: 6px;
  transition: color .2s;
}
.t-input-toggle:hover { color: var(--t-primary); }

/* OTP-style input (centered, spaced digits) */
.t-input--otp {
  text-align: center; letter-spacing: .3em;
  font-size: 1.2rem; font-weight: 600;
  padding-top: 20px; padding-bottom: 8px;
}

/* Form hint text */
.t-form-hint {
  color: var(--t-text-2); font-size: .88rem; margin-bottom: 16px;
  line-height: 1.5;
}

/* Text button (back, resend) */
.t-text-btn {
  width: 100%; margin-top: 8px; background: none; border: none;
  color: var(--t-text-3); font-size: .85rem; cursor: pointer;
  font-family: inherit; padding: 10px; border-radius: var(--t-radius-xs);
  transition: color .2s, background .2s;
}
.t-text-btn:hover { color: var(--t-text-2); background: rgba(255, 255, 255, .03); }
.t-text-btn--primary { color: var(--t-primary); }
.t-text-btn--primary:hover { color: var(--t-primary); background: rgba(255, 107, 53, .06); }

.t-input {
  width: 100%; padding: 13px 16px;
  border-radius: var(--t-radius-sm);
  border: 1.5px solid rgba(255, 255, 255, .08);
  background: var(--t-bg);
  color: var(--t-text); font-family: inherit; font-size: .88rem;
  outline: none !important;
  -webkit-appearance: none;
  transition: border-color .2s ease;
}
.t-input:hover {
  border-color: rgba(255, 255, 255, .14);
}
.t-input:focus {
  border-color: var(--t-primary);
  outline: none !important;
}
.t-input::placeholder { color: var(--t-text-3); }

.t-form-msg {
  padding: 12px 14px; border-radius: var(--t-radius-sm);
  margin-bottom: 14px; font-size: .82rem;
  display: none; line-height: 1.4;
  border: 1px solid transparent;
}
.t-form-msg--error {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .2);
  color: #F87171;
  display: block;
}
.t-form-msg--success {
  background: rgba(16, 185, 129, .08);
  border-color: rgba(16, 185, 129, .2);
  color: #34D399;
  display: block;
}

/* ---- Footer ---- */
.t-footer {
  border-top: 1px solid var(--t-border); padding: 40px 0;
  text-align: center; color: var(--t-text-3); font-size: .82rem;
}
.t-footer a { color: var(--t-text-2); text-decoration: none; }
.t-footer a:hover { color: var(--t-primary); }

/* ══════════════════════════════════
   Pricing
══════════════════════════════════ */
.t-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.t-price-card {
  position: relative;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.t-price-card:hover {
  border-color: rgba(255,107,53,.3);
  transform: translateY(-4px);
}
.t-price-card--featured {
  background: linear-gradient(160deg, rgba(255,107,53,.08) 0%, var(--t-surface) 60%);
  border-color: rgba(255,107,53,.45);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,107,53,.12);
}
.t-price-card--featured:hover { transform: translateY(-12px); }

.t-price-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--t-primary);
  color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.t-price-card__plan {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--t-primary); margin-bottom: 10px;
}
.t-price-card__price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 10px;
}
.t-price-card__amount {
  font-size: 3rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--t-text);
  line-height: 1;
}
.t-price-card__currency {
  font-size: .88rem; color: var(--t-text-2); font-weight: 500;
}
.t-price-card__desc {
  font-size: .82rem; color: var(--t-text-2);
  line-height: 1.55; margin: 0;
}
.t-price-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.t-price-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--t-text);
}
.t-price-card__features li i {
  width: 16px; text-align: center; flex-shrink: 0;
  color: var(--t-green); font-size: .75rem;
}
.t-price-card__feat--off { opacity: .38; }
.t-price-card__feat--off i { color: var(--t-text-3) !important; }
.t-price-card .t-btn--full { width: 100%; justify-content: center; }

/* Coming soon state */
.t-price-card--soon {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(30%);
}
.t-price-card--soon .t-price-card__amount { color: var(--t-text-2); }
.t-price-card__badge--soon {
  background: var(--t-surface-2);
  color: var(--t-text-2);
  border: 1px solid var(--t-border);
}

/* Personal service spotlight banner */
.t-personal-service {
  margin-top: 48px;
  background: linear-gradient(135deg, #1a0e08 0%, #1e1208 40%, #0f0f0f 100%);
  border: 1px solid rgba(255,107,53,.25);
  border-radius: 22px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,107,53,.07);
}
.t-personal-service::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.18) 0%, transparent 70%);
  pointer-events: none;
}
.t-personal-service__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.t-personal-service__left {
  flex: 1;
  min-width: 0;
}
.t-personal-service__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-primary);
  margin-bottom: 10px;
}
.t-personal-service__label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--t-primary);
}
.t-personal-service__title {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; line-height: 1.25;
  margin-bottom: 14px;
}
.t-personal-service__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.t-ps-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 13px; border-radius: 20px;
}
.t-ps-chip i { color: var(--t-primary); font-size: .72rem; }
.t-personal-service__right {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
}
.t-personal-service__price {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}
.t-personal-service__price strong {
  display: block;
  font-size: 1.45rem; font-weight: 800;
  color: #fff; letter-spacing: -.01em;
  line-height: 1.1; margin-bottom: 2px;
}

@media (max-width: 700px) {
  .t-personal-service { padding: 28px 22px; }
  .t-personal-service__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .t-personal-service__right { align-items: flex-start; flex-direction: row; gap: 14px; }
}

/* Custom request callout */
.t-custom-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px 0 48px;
  text-align: left;
}
.t-custom-callout__left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.t-custom-callout__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,107,53,.1);
  color: var(--t-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.t-custom-callout__title {
  font-size: .92rem; font-weight: 700;
  color: var(--t-text); margin-bottom: 4px;
}
.t-custom-callout__desc {
  font-size: .8rem; color: var(--t-text-2);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .t-custom-callout { flex-direction: column; align-items: flex-start; }
  .t-custom-callout .t-btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 900px) {
  .t-pricing { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .t-price-card--featured { transform: none; }
  .t-price-card--featured:hover { transform: translateY(-4px); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .t-ai-layout { grid-template-columns: 1fr; gap: 40px; }
  .t-ai-layout__left { text-align: center; }
  .t-ai-layout__left .t-section__sub { margin: 0 auto 32px; }
  .t-ai-features { max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .t-step-connector { display: none; }
  .t-steps { gap: 12px; }
  .t-flow-demo { flex-direction: column; gap: 40px; }
  .t-flow-steps { align-items: flex-start; width: 100%; max-width: 260px; }
}
@media (max-width: 640px) {
  .t-hero { padding: 100px 0 48px; }
  .t-hero__actions { flex-direction: column; align-items: stretch; }
  .t-hero__actions .t-btn { width: 100%; justify-content: center; }
  .t-hero__trust { flex-direction: column; gap: 8px; align-items: center; }
  .t-hero__title { font-size: 1.8rem; }
  .t-hero__phone { width: 180px; height: 360px; border-radius: 30px; }
  .t-hero__phone-notch { width: 52px; height: 16px; top: 10px; border-radius: 8px; }
  .t-hero__phone-screen { border-radius: 24px; }
  .t-section { padding: 56px 0; }
  .t-section__title { font-size: 1.4rem; }
  .t-modal { padding: 20px; margin: 12px; }
  .t-nav__inner { padding: 12px 16px; }
  .t-nav__link { font-size: .8rem; }
  .t-nav__actions .t-btn--sm { padding: 6px 12px; font-size: .75rem; }
  .t-trust-bar__inner { flex-direction: column; gap: 8px; }
  .t-trust-bar__logos { justify-content: center; gap: 12px; }
  .t-solution-steps { flex-direction: column; align-items: center; }
  .t-final-cta__title { font-size: 1.3rem; }
  .t-container { padding: 0 16px; }
  .t-btn--lg { padding: 12px 24px; font-size: .9rem; }
}

@media (max-width: 420px) {
  .t-hero__title { font-size: 1.5rem; }
  .t-hero__sub { font-size: .88rem; }
  .t-hero__phone { width: 150px; height: 300px; border-radius: 26px; }
  .t-nav__actions .t-lang-btn { display: none; }
  .t-pain-card__quote { font-size: .82rem; }
  .t-section__title { font-size: 1.25rem; }
}

/* ============================================================
   Registration Wizard
   ============================================================ */

.reg-steps {
  display: flex; align-items: center; margin-bottom: 28px; max-width: 260px;
  margin-left: auto; margin-right: auto;
  padding: 12px 16px;
  background: var(--t-bg);
  border-radius: var(--t-radius-sm);
}
.reg-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.reg-step__dot {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .08);
  background: var(--t-surface-2); color: var(--t-text-3);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.reg-step__label { font-size: .68rem; color: var(--t-text-3); font-weight: 500; transition: color .3s; }
.reg-step.active .reg-step__dot {
  border-color: var(--t-primary);
  background: rgba(255, 107, 53, .12);
  color: var(--t-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .1), 0 2px 8px rgba(255, 107, 53, .2);
}
.reg-step.active .reg-step__label { color: var(--t-primary); }
.reg-step.done .reg-step__dot {
  border-color: var(--t-green);
  background: rgba(16, 185, 129, .12);
  color: var(--t-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .08);
}
.reg-step.done .reg-step__label  { color: var(--t-green); }
.reg-step__line {
  flex: 1; height: 2px; margin: 0 8px; margin-bottom: 20px;
  background: rgba(255, 255, 255, .06);
  border-radius: 1px;
  transition: background .3s;
  position: relative;
}
.reg-step__line.done { background: var(--t-green); }

/* Floating label inputs */
.t-float-group { position: relative; margin-bottom: 18px; }
.t-float-input {
  width: 100%; padding: 20px 16px 8px; border-radius: var(--t-radius-sm);
  border: 1.5px solid rgba(255, 255, 255, .08); background: var(--t-bg);
  color: var(--t-text); font-family: inherit; font-size: .93rem;
  outline: none !important; -webkit-appearance: none;
  transition: border-color .2s ease;
}
.t-float-input:hover { border-color: rgba(255, 255, 255, .14); }
.t-float-input:focus {
  border-color: var(--t-primary);
  outline: none !important;
}
.t-float-input--error { border-color: #EF4444 !important; }
.t-float-input--error + .t-float-label { color: #EF4444 !important; }

.t-float-input:-webkit-autofill,
.t-float-input:-webkit-autofill:hover,
.t-float-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--t-bg) inset !important;
  -webkit-text-fill-color: var(--t-text) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.t-input:-webkit-autofill,
.t-input:-webkit-autofill:hover,
.t-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--t-bg) inset !important;
  -webkit-text-fill-color: var(--t-text) !important;
}

.t-float-label {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--t-text-3); font-size: .88rem; pointer-events: none;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  background: var(--t-bg); padding: 0 5px; line-height: 1;
  z-index: 1;
}
.t-float-input:focus + .t-float-label,
.t-float-input:not(:placeholder-shown) + .t-float-label {
  top: 0; font-size: .68rem; color: var(--t-primary); transform: translateY(-50%);
  background: linear-gradient(to bottom, var(--t-surface) 50%, var(--t-bg) 50%);
}
.t-float-group--pwd { position: relative; }
.t-float-group--pwd .t-float-label { top: 50%; transform: translateY(-50%); }
.t-float-group--pwd .t-float-input:focus ~ .t-float-label,
.t-float-group--pwd .t-float-input:not(:placeholder-shown) ~ .t-float-label {
  top: 0; font-size: .68rem; color: var(--t-primary); transform: translateY(-50%);
  background: linear-gradient(to bottom, var(--t-surface) 50%, var(--t-bg) 50%);
}

.reg-field-err {
  font-size: .73rem; color: #F87171; margin-top: 6px; padding-left: 2px;
  display: flex; align-items: center; gap: 4px;
}
.reg-static-label { display: block; font-size: .75rem; font-weight: 500; color: var(--t-text-2); margin-bottom: 6px; }
.reg-pwd-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--t-text-3); cursor: pointer;
  padding: 6px; line-height: 1; font-size: .9rem; transition: color .2s;
  border-radius: 6px;
}
.reg-pwd-toggle:hover { color: var(--t-primary); background: rgba(255, 107, 53, .06); }
.reg-pwd-extras {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
  padding: 8px 12px; background: var(--t-bg); border-radius: var(--t-radius-xs);
}
.reg-pwd-strength-bar { flex: 1; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .06); overflow: hidden; }
.reg-pwd-strength-bar div { height: 100%; width: 0; transition: width .4s cubic-bezier(.4,0,.2,1), background .3s; border-radius: 2px; }
.reg-pwd-label { font-size: .7rem; color: var(--t-text-3); min-width: 60px; font-weight: 500; }
.reg-nav { display: flex; gap: 10px; margin-top: 8px; }
.reg-nav .t-btn { flex: 1; justify-content: center; }
.reg-nav .t-btn--ghost { flex: 0 0 auto; padding-left: 18px; padding-right: 18px; }
.reg-next-btn { width: 100%; justify-content: center; margin-top: 8px; }

/* Social Networks Section */
.reg-social-section {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.reg-social-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.reg-social-title {
  font-size: .8rem; font-weight: 500; color: var(--t-text-2);
}
.reg-social-optional {
  font-size: .72rem; color: var(--t-text-3); font-weight: 400;
}
.reg-social-info {
  background: none; border: none; color: var(--t-text-3);
  cursor: pointer; font-size: .8rem; padding: 4px;
  border-radius: 50%; transition: color .2s;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}
.reg-social-info:hover { color: var(--t-primary); }

/* Social icon buttons (horizontal) */
.reg-social-icons {
  display: flex; gap: 10px; margin-bottom: 10px;
}
.reg-social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .06);
  background: var(--t-bg); color: #3B82F6;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer;
  transition: all .2s ease;
}
.reg-social-btn:hover { border-color: rgba(255, 255, 255, .14); }
.reg-social-btn--active { border-color: var(--t-primary); background: rgba(255, 107, 53, .06); }
.reg-social-btn--ig { color: #E1306C; }
.reg-social-btn--tt { color: var(--t-text-2); }

/* Social input fields (shown on icon click) */
.reg-social-input-wrap {
  margin-bottom: 8px;
  animation: fadeIn .2s ease;
}
.reg-social-input {
  width: 100%; height: 38px; padding: 0 12px;
  border: 1.5px solid rgba(255, 255, 255, .06); border-radius: var(--t-radius-xs);
  background: var(--t-bg); color: var(--t-text);
  font-family: inherit; font-size: .82rem;
  outline: none !important; -webkit-appearance: none;
  transition: border-color .2s;
}
.reg-social-input:focus { border-color: var(--t-primary); }
.reg-social-input::placeholder { color: var(--t-text-3); font-size: .78rem; }

/* Toast notification */
.reg-toast {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--t-surface-2); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--t-radius-xs); padding: 12px 16px;
  font-size: .78rem; color: var(--t-text-2); line-height: 1.4;
  z-index: 10; animation: fadeIn .2s ease;
  transition: opacity 1s ease;
}
.reg-toast--fade { opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.reg-phone-group {
  display: flex; align-items: center;
  border: 1.5px solid rgba(255, 255, 255, .08); border-radius: var(--t-radius-sm);
  overflow: hidden; transition: border-color .2s; height: 48px;
}
.reg-phone-group:focus-within {
  border-color: var(--t-primary);
}
.reg-phone-cc {
  display: flex; align-items: center; padding: 0 14px;
  background: var(--t-surface-2); color: var(--t-text-2);
  font-size: .88rem; font-weight: 700; flex-shrink: 0; height: 100%;
  border-right: 1.5px solid rgba(255, 255, 255, .06); letter-spacing: .01em; white-space: nowrap;
}
.t-phone-bare {
  flex: 1; height: 100%; padding: 0 14px;
  border: none; outline: none !important; background: var(--t-bg);
  color: var(--t-text); font-family: inherit; font-size: .93rem;
  -webkit-appearance: none;
}
.t-phone-bare:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--t-bg) inset !important;
  -webkit-text-fill-color: var(--t-text) !important;
}
.t-phone-bare::placeholder { color: var(--t-text-3); }
.reg-send-sms-btn {
  padding: 0 18px; border: none; border-left: 1.5px solid rgba(255, 255, 255, .06);
  background: linear-gradient(135deg, var(--t-primary) 0%, #FF8F65 100%);
  color: #fff;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; flex-shrink: 0;
  transition: all .2s; border-radius: 0;
}
.reg-send-sms-btn:hover { background: linear-gradient(135deg, var(--t-primary-dark) 0%, var(--t-primary) 100%); }
.reg-send-sms-btn:disabled { opacity: .5; cursor: default; }
.reg-step-hint {
  font-size: .82rem; color: var(--t-text-3); margin-bottom: 18px;
  line-height: 1.6; padding: 10px 14px;
  background: var(--t-bg); border-radius: var(--t-radius-xs);
  border-left: 3px solid var(--t-primary);
}
.reg-otp-wrap { margin-top: 14px; }
.reg-otp-input {
  text-align: center; letter-spacing: .4em; font-size: 1.4rem !important;
  font-weight: 700; padding: 14px !important;
  border: 1.5px solid rgba(255, 255, 255, .08) !important;
  transition: border-color .2s !important;
}
.reg-otp-input:focus {
  border-color: var(--t-primary) !important;
}
.reg-otp-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.reg-field-hint { font-size: .78rem; color: var(--t-text-3); margin-top: 6px; }
.reg-field-hint--ok { color: var(--t-green); font-weight: 500; }
.reg-link-btn {
  background: none; border: none; color: var(--t-primary);
  font-size: .78rem; font-weight: 600; cursor: pointer;
  font-family: inherit; padding: 4px 8px; border-radius: 4px;
  transition: all .2s;
}
.reg-link-btn:hover { background: rgba(255, 107, 53, .06); text-decoration: none; }
.reg-panel { overflow: hidden; padding-top: 14px; }
.reg-panel--hidden { display: none !important; }
@keyframes regSlideInFwd  { from { opacity: 0; transform: translateX(20px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes regSlideInBack { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
.reg-panel--anim-fwd  { animation: regSlideInFwd  .28s cubic-bezier(.16, 1, .3, 1); }
.reg-panel--anim-back { animation: regSlideInBack .28s cubic-bezier(.16, 1, .3, 1); }

@media (max-width: 420px) {
  .reg-step__label { display: none; }
  .reg-step__dot { width: 28px; height: 28px; font-size: .72rem; }
}

/* ============================================================
   AI Section — DishCollect Animation
   ============================================================ */
.t-ai-animation {
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 480px;
  border-radius: var(--t-radius);
  overflow: hidden;
  position: relative;
}

.t-ai-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Paper menu */
.t-paper {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-1.5deg);
  width: 160px;
  padding: 18px 14px 14px 26px;
  background: #faf7f0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 8px 32px rgba(0,0,0,0.2);
  animation: tPaperLife 12s ease-in-out infinite;
}
.t-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(transparent 0px, transparent 20px, rgba(100,130,170,0.12) 20px, rgba(100,130,170,0.12) 21px);
  background-position: 0 24px;
  border-radius: 4px;
  pointer-events: none;
}
.t-paper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 26px;
  width: 1px;
  background: rgba(200,80,80,0.25);
}

@keyframes tPaperLife {
  0%   { transform: translateY(-50%) rotate(-1.5deg) scale(0.92); opacity: 0; }
  8%   { transform: translateY(-50%) rotate(-1.5deg) scale(1); opacity: 1; }
  42%  { transform: translateY(-50%) rotate(-1.5deg) scale(1); opacity: 1; }
  55%  { transform: translateY(-50%) rotate(-1.5deg) scale(0.96); opacity: 0.3; }
  60%  { transform: translateY(-50%) rotate(-1.5deg) scale(0.94); opacity: 0; }
  100% { transform: translateY(-50%) rotate(-1.5deg) scale(0.94); opacity: 0; }
}

.t-paper__title {
  font-size: 14px; font-weight: 700; color: #1a1a2e;
  text-align: center; margin-bottom: 10px; font-style: italic;
}
.t-paper__cat {
  font-size: 7.5px; font-weight: 700; color: #1a1a2e;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin: 8px 0 2px; font-style: italic; opacity: 0.7;
}
.t-paper__item {
  display: flex; justify-content: space-between;
  font-size: 8.5px; color: #3a3a4a; line-height: 20px; font-style: italic;
}
.t-paper__item:nth-child(odd) { transform: rotate(-0.3deg); }
.t-paper__item:nth-child(even) { transform: rotate(0.2deg); }
.t-paper__price { font-weight: 700; font-style: normal; color: #1a1a2e; }

/* Phone animation */
.t-phone-anim {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: tPhoneMove 12s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes tPhoneMove {
  0%   { transform: translate(-50%,-50%) translateX(60px) translateY(30px) rotate(5deg); opacity: 0; }
  12%  { transform: translate(-50%,-50%) translateX(60px) translateY(30px) rotate(5deg); opacity: 0; }
  22%  { transform: translate(-50%,-50%) translateX(-120px) translateY(0) rotate(0deg); opacity: 1; }
  30%  { transform: translate(-50%,-50%) translateX(-120px) translateY(0) rotate(0deg); opacity: 1; }
  35%  { transform: translate(-50%,-50%) translateX(-120px) translateY(-3px) rotate(0deg); }
  42%  { transform: translate(-50%,-50%) translateX(-120px) translateY(3px) rotate(0deg); }
  55%  { transform: translate(-50%,-50%) translateX(0) translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translate(-50%,-50%) translateX(0) translateY(0) rotate(0deg); opacity: 1; }
}

.t-phone-anim__body {
  width: 160px; height: 320px;
  background: #1a1a1e; border-radius: 28px; padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 20px 60px rgba(0,0,0,0.4);
}
.t-phone-anim__screen {
  width: 100%; height: 100%;
  border-radius: 22px; background: #000; overflow: hidden; position: relative;
}
.t-phone-anim__island {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 18px; background: #000; border-radius: 10px; z-index: 100;
}

/* Scan view */
.t-scan-view {
  position: absolute; inset: 0;
  background: #faf7f0; opacity: 0;
  animation: tScreenScan 12s ease-in-out infinite;
  overflow: hidden;
}
.t-scan-view::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(transparent 0px, transparent 18px, rgba(100,130,170,0.10) 18px, rgba(100,130,170,0.10) 19px);
  pointer-events: none;
}
@keyframes tScreenScan {
  0%, 18% { opacity: 0; }
  24%     { opacity: 1; }
  50%     { opacity: 1; }
  55%     { opacity: 0; }
  100%    { opacity: 0; }
}

.t-scan-view__frame {
  position: absolute; inset: 32px 10px 10px;
}
.t-scan-corner {
  position: absolute; width: 16px; height: 16px; border: 2px solid #7c3aed;
}
.t-scan-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 3px 0 0 0; }
.t-scan-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 3px 0 0; }
.t-scan-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 3px; }
.t-scan-corner--br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 3px 0; }

.t-scan-view__content {
  position: absolute; inset: 10px 10px 10px 24px;
}
.t-scan-view__title {
  font-size: 11px; font-weight: 700; color: #1a1a2e;
  text-align: center; font-style: italic; margin-bottom: 6px;
}
.t-scan-view__cat {
  font-size: 6.5px; font-weight: 700; color: #1a1a2e;
  opacity: 0.7; margin: 5px 0 1px; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.t-scan-view__item {
  display: flex; justify-content: space-between;
  font-size: 7px; color: #3a3a4a; line-height: 15px; font-style: italic;
}
.t-scan-view__item span:last-child { font-weight: 700; font-style: normal; color: #1a1a2e; }

.t-scan-view__line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  box-shadow: 0 0 10px #a78bfa;
  animation: tScanLine 12s ease-in-out infinite; opacity: 0;
}
@keyframes tScanLine {
  0%, 26% { top: 0; opacity: 0; }
  30%     { top: 0; opacity: 1; }
  46%     { top: 100%; opacity: 1; }
  48%     { opacity: 0; }
  100%    { opacity: 0; }
}

.t-scan-view__label {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 7px; font-weight: 600; color: #7c3aed;
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
}

/* App result view */
.t-app-view {
  position: absolute; inset: 0;
  background: #16161F; display: flex; flex-direction: column;
  opacity: 0; animation: tScreenApp 12s ease-out infinite; overflow: hidden;
  padding: 28px 8px 0;
}
@keyframes tScreenApp {
  0%, 54% { opacity: 0; }
  60%     { opacity: 1; }
  100%    { opacity: 1; }
}

.t-app-view__topbar {
  display: flex; justify-content: flex-end; gap: 6px; padding: 0 2px 5px;
  font-size: 7px; color: #A0A0B8;
}
.t-app-view__topbar span {
  background: #252535; border-radius: 5px; padding: 2px 6px; font-weight: 600;
}

.t-app-view__promo {
  background: linear-gradient(135deg, #FF6B35, #E55A2B);
  border-radius: 8px; padding: 7px 10px; margin-bottom: 6px;
  position: relative; overflow: hidden;
}
.t-app-view__promo::after {
  content: ''; position: absolute; top: -15px; right: -8px;
  width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,.12);
}
.t-app-view__promo-badge {
  font-size: 5px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.25); border-radius: 3px;
  padding: 1px 4px; display: inline-block; margin-bottom: 2px;
}
.t-app-view__promo-title { font-size: 9px; font-weight: 800; color: #fff; }
.t-app-view__promo-desc { font-size: 6px; color: rgba(255,255,255,.8); }

.t-app-view__social {
  display: flex; gap: 5px; justify-content: center; padding: 6px 0 4px;
}
.t-app-view__social-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; color: #fff;
}

.t-app-view__cats {
  display: flex; gap: 4px; padding: 8px 8px 4px; flex-shrink: 0;
}
.t-app-pill {
  padding: 3px 8px; border-radius: 10px; font-size: 6.5px; font-weight: 600;
  background: #252535; color: #A0A0B8;
  opacity: 0; transform: translateY(6px);
  animation: tCatPillIn 12s ease-out infinite;
}
.t-app-pill--active { background: #FF6B35; color: #fff; }
.t-app-pill:nth-child(1) { animation-delay: 0s; }
.t-app-pill:nth-child(2) { animation-delay: 0.08s; }
.t-app-pill:nth-child(3) { animation-delay: 0.16s; }
@keyframes tCatPillIn {
  0%, 62% { opacity: 0; transform: translateY(6px); }
  68%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 1; transform: translateY(0); }
}

.t-app-view__cards {
  flex: 1; padding: 6px 8px; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
}
.t-app-card {
  display: flex; align-items: center; gap: 6px;
  background: #252535; border-radius: 10px; padding: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  opacity: 0; transform: translateY(10px);
  animation: tCardIn 12s cubic-bezier(0.34,1.2,0.64,1) infinite;
}
.t-app-card:nth-child(1) { animation-delay: 0.1s; }
.t-app-card:nth-child(2) { animation-delay: 0.2s; }
.t-app-card:nth-child(3) { animation-delay: 0.3s; }
.t-app-card:nth-child(4) { animation-delay: 0.4s; }
@keyframes tCardIn {
  0%, 64% { opacity: 0; transform: translateY(10px); }
  72%     { opacity: 1; transform: translateY(-1px); }
  76%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 1; transform: translateY(0); }
}

.t-app-card__icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.t-app-card__icon--1 { background: linear-gradient(135deg, #1a3a2e, #2d6a4f); }
.t-app-card__icon--2 { background: linear-gradient(135deg, #1a2e3a, #2d4f6a); }
.t-app-card__icon--3 { background: linear-gradient(135deg, #3a2e1a, #6a4f2d); }
.t-app-card__icon--4 { background: linear-gradient(135deg, #3a1a28, #6a2d4f); }

.t-app-card__info { flex: 1; min-width: 0; }
.t-app-card__name { font-size: 7.5px; font-weight: 700; color: #E8E8F0; }
.t-app-card__desc { font-size: 6px; color: #6E6E88; margin-top: 1px; }
.t-app-card__price { font-size: 7.5px; font-weight: 800; color: #FF6B35; flex-shrink: 0; }

/* Flow dots */
.t-flow-dots {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: tFlowArrow 12s ease-in-out infinite; z-index: 5;
}
@keyframes tFlowArrow {
  0%, 45% { opacity: 0; }
  52%     { opacity: 1; }
  58%     { opacity: 1; }
  65%     { opacity: 0; }
  100%    { opacity: 0; }
}
.t-flow-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: #a78bfa;
  animation: tDotPulse 0.8s ease-in-out infinite alternate;
}
.t-flow-dots span:nth-child(2) { animation-delay: 0.15s; }
.t-flow-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes tDotPulse {
  from { opacity: 0.3; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1.2); }
}

/* Success badge */
.t-ai-badge {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(34,197,94,0.95); color: white;
  font-size: 10px; font-weight: 700; padding: 6px 14px; border-radius: 16px;
  display: flex; align-items: center; gap: 5px; z-index: 30;
  opacity: 0; animation: tBadgeIn 12s cubic-bezier(0.34,1.4,0.64,1) infinite;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
@keyframes tBadgeIn {
  0%, 72% { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(0.9); }
  78%     { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  90%     { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  95%     { opacity: 0; transform: translateX(-50%) translateY(-4px) scale(0.95); }
  100%    { opacity: 0; }
}

/* Particles container */
.t-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 20;
}

/* Responsive */
@media (max-width: 768px) {
  .t-ai-animation { aspect-ratio: 4/3; }
  .t-paper { width: 120px; left: 4%; padding: 12px 10px 10px 20px; }
  .t-paper__title { font-size: 11px; }
  .t-paper__cat { font-size: 6px; }
  .t-paper__item { font-size: 7px; line-height: 16px; }
  .t-phone-anim__body { width: 120px; height: 240px; border-radius: 22px; }
  .t-phone-anim__screen { border-radius: 18px; }
}

/* ════════════════════════════════════════════
   Refactor — added high-impact sales sections
══════════════════════════════════════════════ */

/* Hero stats inline */
.t-hero__stats {
  display: flex; justify-content: center; gap: 36px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--t-border);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.t-hero__stat { text-align: center; }
.t-hero__stat strong {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: var(--t-text); letter-spacing: -.02em; line-height: 1.1;
}
.t-hero__stat span {
  display: block; font-size: .75rem; color: var(--t-text-2);
  margin-top: 4px; letter-spacing: .02em;
}

/* Comparison table */
.t-compare-wrap { overflow-x: auto; margin-top: 32px; }
.t-compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: var(--t-radius); overflow: hidden;
  font-size: .9rem; min-width: 540px;
}
.t-compare th, .t-compare td {
  padding: 14px 16px; text-align: center;
  border-bottom: 1px solid var(--t-border);
}
.t-compare thead th {
  background: var(--t-surface-2); color: var(--t-text);
  font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.t-compare thead th:first-child { text-align: left; }
.t-compare tbody td:first-child {
  text-align: left; color: var(--t-text-2); font-weight: 500;
}
.t-compare tbody tr:last-child td { border-bottom: none; }
.t-compare__col-tably {
  background: rgba(255,107,53,.08);
  position: relative;
}
.t-compare__col-tably::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--t-primary);
}
.t-compare .t-yes { color: var(--t-green); font-size: 1.15rem; font-weight: 700; }
.t-compare .t-no  { color: var(--t-text-3); font-size: 1.15rem; }
.t-compare .t-mid { color: var(--t-amber, #F59E0B); font-size: 1rem; font-weight: 600; }

/* FAQ accordion */
.t-faq {
  max-width: 760px; margin: 32px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.t-faq__item {
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: var(--t-radius-sm); overflow: hidden;
}
.t-faq__item[open] { border-color: rgba(255,107,53,.4); }
.t-faq__q {
  padding: 16px 20px; cursor: pointer; user-select: none;
  font-size: .92rem; font-weight: 600; color: var(--t-text);
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.t-faq__q::-webkit-details-marker { display: none; }
.t-faq__q::after {
  content: "067"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--t-primary); font-size: .75rem; transition: transform var(--t-transition);
}
.t-faq__item[open] .t-faq__q::after { transform: rotate(45deg); }
.t-faq__a {
  padding: 0 20px 18px; font-size: .88rem;
  color: var(--t-text-2); line-height: 1.65;
}

/* Trust strip (logos quick row under hero) */
.t-trust-strip {
  padding: 24px 0; border-top: 1px solid var(--t-border);
  border-bottom: 1px solid var(--t-border);
  background: var(--t-surface);
}
.t-trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.t-trust-strip__label {
  font-size: .72rem; color: var(--t-text-3);
  text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap;
}
.t-trust-strip__items {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  font-size: .8rem; color: var(--t-text-2); font-weight: 500;
}
.t-trust-strip__items i { color: var(--t-primary); margin-right: 6px; }

@media (max-width: 768px) {
  .t-hero__layout { grid-template-columns: 1fr; gap: var(--t-sp-5); }
  .t-hero__content { text-align: center; }
  .t-hero__sub { margin-left: auto; margin-right: auto; }
  .t-hero__actions { justify-content: center; }
  .t-hero__trust { justify-content: center; }
  .t-hero__phone { width: 220px; height: 440px; border-radius: 36px; }
  .t-hero__phone-screen { border-radius: 28px; }
  .t-hero__phone-notch { width: 64px; height: 20px; top: 12px; }
  .t-trust-strip__inner { justify-content: center; text-align: center; }
}


/* ════════════════════════════════════════════
   Feature showcase — alternating zig-zag rows
═══════════════════════════════════════════════ */
.t-section__label--center { text-align: center; display: block; }
.t-section__title--center { text-align: center; }

.t-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}
.t-feat-row:first-of-type { margin-top: 32px; }
.t-feat-row--reverse .t-feat-row__visual { order: 2; }

.t-feat-row__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--t-border);
  background: linear-gradient(135deg, var(--t-surface) 0%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--ai {
  background: linear-gradient(135deg, rgba(255,107,53,.15) 0%, rgba(255,107,53,.02) 60%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--qr {
  background: linear-gradient(135deg, rgba(59,130,246,.12) 0%, rgba(59,130,246,.02) 60%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--promo {
  background: linear-gradient(135deg, rgba(16,185,129,.12) 0%, rgba(16,185,129,.02) 60%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--res {
  background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(139,92,246,.02) 60%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--analytics {
  background: linear-gradient(135deg, rgba(245,158,11,.12) 0%, rgba(245,158,11,.02) 60%, var(--t-surface-2) 100%);
}
.t-feat-row__visual--chain {
  background: linear-gradient(135deg, rgba(255,107,53,.12) 0%, rgba(59,130,246,.06) 60%, var(--t-surface-2) 100%);
}

.t-feat-visual-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--t-text);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.t-feat-row__visual--ai .t-feat-visual-icon { color: var(--t-primary); }
.t-feat-row__visual--qr .t-feat-visual-icon { color: var(--t-blue); }
.t-feat-row__visual--promo .t-feat-visual-icon { color: var(--t-green); }
.t-feat-row__visual--res .t-feat-visual-icon { color: var(--t-purple); }
.t-feat-row__visual--analytics .t-feat-visual-icon { color: #F59E0B; }

.t-feat-visual-tag {
  position: absolute;
  padding: 6px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--t-text);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.t-feat-visual-tag--1 { top: 14%; left: 10%; animation: feat-float 4s ease-in-out infinite; }
.t-feat-visual-tag--2 { top: 22%; right: 12%; animation: feat-float 4s ease-in-out infinite .8s; }
.t-feat-visual-tag--3 { bottom: 18%; left: 16%; animation: feat-float 4s ease-in-out infinite 1.6s; }

.t-feat-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
}
.t-feat-visual-orb--1 { width: 140px; height: 140px; top: -20px; right: -20px; background: var(--t-primary); }
.t-feat-visual-orb--2 { width: 100px; height: 100px; bottom: -10px; left: 20%; background: var(--t-blue); opacity: .35; }
.t-feat-visual-orb--3 { width: 80px; height: 80px; top: 40%; left: -20px; background: var(--t-purple); opacity: .3; }

@keyframes feat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.t-feat-row__label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-primary);
  background: rgba(255,107,53,.08);
  border: 1px solid rgba(255,107,53,.2);
  padding: 4px 12px; border-radius: 16px;
  margin-bottom: 14px;
}
.t-feat-row__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--t-text);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.t-feat-row__desc {
  font-size: .95rem;
  color: var(--t-text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.t-feat-row__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.t-feat-row__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--t-text);
  line-height: 1.5;
}
.t-feat-row__bullets i {
  color: var(--t-green);
  font-size: .75rem;
  margin-top: 5px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .t-feat-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  .t-feat-row--reverse .t-feat-row__visual { order: 0; }
  .t-feat-row__visual { aspect-ratio: 16/10; }
  .t-feat-visual-icon { width: 70px; height: 70px; font-size: 1.8rem; }
  .t-feat-visual-tag { font-size: .68rem; padding: 4px 10px; }
}

/* ════════════════════════════════════════════
   Header menu links + burger
═══════════════════════════════════════════════ */
.t-nav__menu {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.t-nav__link {
  font-size: .85rem; font-weight: 500;
  color: var(--t-text-2); text-decoration: none;
  transition: color var(--t-transition);
}
.t-nav__link:hover { color: var(--t-primary); }
.t-nav__burger {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%; border: 1.5px solid var(--t-border);
  background: transparent; color: var(--t-text);
  cursor: pointer; font-size: .9rem;
}

@media (max-width: 900px) {
  .t-nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--t-surface); border-bottom: 1px solid var(--t-border);
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .t-nav__menu.open { max-height: 360px; }
  .t-nav__link {
    padding: 14px 24px; width: 100%;
    border-bottom: 1px solid var(--t-border);
  }
  .t-nav__link:last-child { border-bottom: none; }
  .t-nav__burger { display: flex; align-items: center; justify-content: center; }
  .t-nav__actions .t-btn--ghost { display: inline-flex; }
  .t-nav__actions { gap: 8px; }
}

/* ════════════════════════════════════════════
   Contact channel buttons (WhatsApp, Messenger, Email)
═══════════════════════════════════════════════ */
.t-contact-channels {
  display: flex; gap: 8px; flex-shrink: 0;
}
.t-channel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  text-decoration: none;
  transition: transform var(--t-transition), box-shadow var(--t-transition);
}
.t-channel-btn:hover { transform: translateY(-2px); }
.t-channel-btn--wa { background: #25D366; }
.t-channel-btn--wa:hover { box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.t-channel-btn--ms { background: linear-gradient(135deg, #00C6FF 0%, #0078FF 50%, #A933FF 100%); }
.t-channel-btn--ms:hover { box-shadow: 0 8px 20px rgba(0,120,255,.35); }
.t-channel-btn--em { background: var(--t-surface-2); border: 1px solid var(--t-border); color: var(--t-text); }
.t-channel-btn--em:hover { border-color: var(--t-primary); color: var(--t-primary); }

/* ════════════════════════════════════════════
   Before/After banner (Why Tably)
═══════════════════════════════════════════════ */
.t-ba-banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 32px; margin-bottom: 48px;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 22px;
  overflow: hidden;
  text-align: left;
}
.t-ba-side {
  padding: 28px 26px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.t-ba-side--before {
  background: linear-gradient(135deg, rgba(239,68,68,.04) 0%, transparent 60%);
}
.t-ba-side--after {
  background: linear-gradient(135deg, rgba(255,107,53,.06) 0%, transparent 60%);
}
.t-ba-side__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--t-red);
  margin-bottom: 16px;
  align-self: flex-start;
}
.t-ba-side__label--good { color: var(--t-green); }
.t-ba-side__visual {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  min-height: 140px;
}
.t-ba-side__items {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: .85rem; color: var(--t-text-2);
}
.t-ba-side__items li {
  position: relative; padding-left: 18px;
}
.t-ba-side--before .t-ba-side__items li::before {
  content: "—"; position: absolute; left: 0; color: var(--t-text-3);
}
.t-ba-side--after .t-ba-side__items li {
  color: var(--t-text);
}
.t-ba-side--after .t-ba-side__items li::before {
  content: "✓"; position: absolute; left: 0; color: var(--t-green); font-weight: 700;
}

.t-ba-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 12px;
  color: var(--t-primary); font-size: 1.4rem;
  background: var(--t-bg);
  position: relative;
}
.t-ba-arrow::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px;
  background: var(--t-border); left: 50%; transform: translateX(-50%);
}

/* Visual: paper menu mockup (Before) */
.t-ba-paper {
  width: 130px; height: 160px;
  background: #ECE2C8;
  border-radius: 4px;
  padding: 14px 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transform: rotate(-3deg);
}
.t-ba-paper__line {
  height: 5px; background: rgba(0,0,0,.4);
  border-radius: 2px; margin-bottom: 7px;
}
.t-ba-paper__line--xl { width: 80%; height: 8px; background: rgba(0,0,0,.55); }
.t-ba-paper__line--short { width: 50%; }
.t-ba-paper__stain {
  position: absolute; top: 30%; right: 12%;
  width: 24px; height: 24px;
  background: rgba(139,92,46,.5);
  border-radius: 50%;
  filter: blur(3px);
}
.t-ba-paper__cross {
  position: absolute; bottom: 14px; right: 12px;
  color: var(--t-red); font-size: .9rem;
  transform: rotate(-15deg);
}

/* Visual: phone mockup (After) */
.t-ba-phone {
  width: 100px; height: 180px;
  background: #0A0A0F;
  border-radius: 18px;
  border: 2px solid #2A2A3A;
  padding: 14px 8px 8px;
  position: relative;
  box-shadow: 0 12px 36px rgba(255,107,53,.18);
}
.t-ba-phone__notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px;
  background: #2A2A3A; border-radius: 2px;
}
.t-ba-phone__screen {
  background: #14151F; border-radius: 10px;
  padding: 8px 6px;
  height: 100%;
  display: flex; flex-direction: column; gap: 5px;
}
.t-ba-phone__header { height: 8px; background: var(--t-primary); border-radius: 2px; width: 70%; }
.t-ba-phone__cat { height: 6px; background: rgba(255,107,53,.4); border-radius: 2px; width: 90%; }
.t-ba-phone__item { height: 4px; background: rgba(255,255,255,.25); border-radius: 1px; width: 100%; }
.t-ba-phone__price { height: 4px; background: var(--t-green); border-radius: 1px; width: 40%; align-self: flex-end; }

/* ════════════════════════════════════════════
   Pain → Solution grid
═══════════════════════════════════════════════ */
.t-ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
  text-align: left;
}
.t-ps-tile {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 18px;
  overflow: hidden;
}
.t-ps-tile__pain,
.t-ps-tile__sol {
  padding: 18px 22px;
}
.t-ps-tile__pain {
  background: rgba(239,68,68,.04);
  border-bottom: 1px dashed var(--t-border);
}
.t-ps-tile__sol {
  background: rgba(255,107,53,.04);
}
.t-ps-tile__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 14px;
  margin-bottom: 10px;
}
.t-ps-tile__tag--pain { background: rgba(239,68,68,.12); color: var(--t-red); }
.t-ps-tile__tag--sol { background: rgba(255,107,53,.12); color: var(--t-primary); }
.t-ps-tile__text {
  font-size: .9rem; color: var(--t-text); line-height: 1.55;
}
.t-ps-tile__pain .t-ps-tile__text {
  font-style: italic; color: var(--t-text-2);
}

@media (max-width: 768px) {
  .t-ba-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .t-ba-side { min-height: auto; padding: 24px 20px; }
  .t-ba-side__label, .t-ba-side__items li { text-align: left; }
  .t-ba-side__items { align-items: flex-start; }
  .t-ba-arrow {
    padding: 14px 0;
    transform: rotate(90deg);
    background: transparent;
  }
  .t-ba-arrow::before { display: none; }
  .t-ps-grid { grid-template-columns: 1fr; }
}

/* Personal service — custom request footnote (replaces standalone callout) */
.t-personal-service__custom {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,.1);
  font-size: .82rem; color: var(--t-text-2);
  line-height: 1.6;
}
.t-personal-service__custom i {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,107,53,.1);
  color: var(--t-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; margin-top: 1px;
}
.t-personal-service__custom strong {
  color: var(--t-text); font-weight: 700;
}

/* ============================================================
   Problem Section — Pain Cards
   ============================================================ */
.t-pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--t-sp-3);
  margin-top: var(--t-sp-4);
}
.t-pain-card {
  background: var(--t-card); border: 1px solid var(--t-border);
  border-radius: var(--t-radius); padding: var(--t-sp-3);
  transition: all var(--t-transition);
}
.t-pain-card:hover {
  border-color: rgba(239, 68, 68, .3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.t-pain-card__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(239, 68, 68, .1); color: var(--t-red);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin-bottom: var(--t-sp-2);
}
.t-pain-card__quote {
  font-size: .9rem; font-style: italic; color: var(--t-text);
  line-height: 1.6; margin-bottom: var(--t-sp-1);
}
.t-pain-card__result {
  font-size: .8rem; color: var(--t-red); font-weight: 600;
}

@media (max-width: 768px) {
  .t-pain-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Solution Section — Step Chips + CTA
   ============================================================ */
.t-solution-steps {
  display: flex; gap: var(--t-sp-3); justify-content: center;
  margin-top: var(--t-sp-5); flex-wrap: wrap;
}
.t-solution-step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 24px;
  background: var(--t-surface); border: 1px solid var(--t-border);
  font-size: .85rem; font-weight: 500; color: var(--t-text-2);
}
.t-solution-step__num {
  font-size: .7rem; font-weight: 800; color: var(--t-primary);
  letter-spacing: .05em;
}
.t-solution-cta {
  display: inline-block; margin-top: var(--t-sp-4);
  font-size: .95rem; font-weight: 600; color: var(--t-primary);
  text-decoration: none; transition: all var(--t-transition);
}
.t-solution-cta:hover { color: var(--t-primary-dark); transform: translateX(4px); }

/* Animation container — centered, max 720px */
.t-section--center .t-ai-animation {
  max-width: 720px; margin: 0 auto;
}

/* ============================================================
   Mid-page CTA Banner
   ============================================================ */
.t-mid-cta {
  padding: var(--t-sp-5) 0;
  background: linear-gradient(135deg, var(--t-surface) 0%, var(--t-surface-2) 100%);
  border-top: 1px solid var(--t-border);
  border-bottom: 1px solid var(--t-border);
}
.t-mid-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--t-sp-3); flex-wrap: wrap;
}
.t-mid-cta__text {
  font-size: 1.05rem; font-weight: 600; color: var(--t-text);
}
@media (max-width: 768px) {
  .t-mid-cta__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   Demo Section
   ============================================================ */
.t-demo-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 700px; margin: 32px auto 0;
}
.t-demo-card {
  background: var(--t-surface); border: 1px solid var(--t-border);
  border-radius: 18px; padding: 32px 24px; text-align: center;
  text-decoration: none; color: var(--t-text);
  transition: all .25s ease; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.t-demo-card:hover {
  border-color: rgba(255, 107, 53, .4); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, .12);
}
.t-demo-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255, 107, 53, .1); color: var(--t-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.t-demo-card__title { font-size: 1.05rem; font-weight: 700; }
.t-demo-card__desc { font-size: .82rem; color: var(--t-text-2); line-height: 1.5; }
.t-demo-card__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--t-primary); margin-top: 8px;
}
@media (max-width: 500px) { .t-demo-cards { grid-template-columns: 1fr; } }

/* ============================================================
   Final CTA Section
   ============================================================ */
.t-final-cta {
  padding: var(--t-sp-7) 0;
  background: linear-gradient(135deg, rgba(255,107,53,.08) 0%, rgba(255,107,53,.02) 100%);
  border-top: 1px solid rgba(255,107,53,.15);
}
.t-final-cta__title {
  font-size: var(--t-h2); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: var(--t-sp-2);
  color: var(--t-text);
}
.t-final-cta__sub {
  font-size: 1rem; color: var(--t-text-2);
  margin-bottom: var(--t-sp-4); line-height: 1.7;
}
.t-final-cta__alt {
  font-size: .85rem; color: var(--t-text-3);
  margin-top: var(--t-sp-3);
}

/* Channel button — email variant */
.t-channel-btn--email { background: var(--t-surface-2); border: 1px solid var(--t-border); }
.t-channel-btn--email:hover { box-shadow: 0 8px 20px rgba(255,255,255,.1); }

/* ============================================================
   Phase 4 — Polish & Performance
   ============================================================ */

/* ---- Mobile Sticky CTA Bar ---- */
.t-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 16px;
  background: rgba(20, 21, 31, .95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--t-border);
  transform: translateY(100%);
  transition: transform .3s ease;
  display: none;
}
.t-sticky-cta--visible { transform: translateY(0); }
.t-sticky-cta__actions {
  display: grid;
  grid-template-columns: minmax(92px, .75fr) minmax(0, 1.35fr);
  gap: 10px;
}
.t-sticky-cta__actions .t-btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 768px) {
  .t-sticky-cta { display: block; }
}

/* ---- Skip to content (accessibility) ---- */
.t-skip-link {
  position: absolute; top: -100px; left: 16px;
  padding: 8px 16px; background: var(--t-primary); color: #fff;
  border-radius: 8px; font-size: .85rem; font-weight: 600;
  z-index: 9999; text-decoration: none;
  transition: top .2s ease;
}
.t-skip-link:focus { top: 8px; }

/* ---- Focus visible (accessibility) ---- */
:focus-visible {
  outline: 2px solid var(--t-primary);
  outline-offset: 2px;
}

/* ---- Reduced motion (accessibility) ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .t-hero__phone { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Lazy load placeholder ---- */
img[loading="lazy"] {
  background: var(--t-surface);
  min-height: 100px;
}

/* ---- Card hover lift ---- */
.t-pain-card:hover,
.t-step-card:hover,
.t-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

/* ---- FAQ smooth expand ---- */
.t-faq__item {
  transition: all var(--t-transition);
}
.t-faq__item summary {
  cursor: pointer;
  transition: color var(--t-transition);
}
.t-faq__item[open] summary {
  color: var(--t-primary);
}
.t-faq__a {
  animation: faqExpand .3s ease;
}
@keyframes faqExpand {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Nav active section highlighting ---- */
.t-nav__link.active { color: var(--t-text); }

/* ---- Stagger reveal for pain cards ---- */
.t-pain-grid.visible .t-pain-card {
  opacity: 0; animation: staggerIn .5s ease forwards;
}
.t-pain-grid.visible .t-pain-card:nth-child(1) { animation-delay: 0ms; }
.t-pain-grid.visible .t-pain-card:nth-child(2) { animation-delay: 80ms; }
.t-pain-grid.visible .t-pain-card:nth-child(3) { animation-delay: 160ms; }
.t-pain-grid.visible .t-pain-card:nth-child(4) { animation-delay: 240ms; }

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Mobile: extra bottom padding for sticky CTA bar ---- */
@media (max-width: 768px) {
  .t-footer { padding-bottom: 84px; }
}

/* ============================================================
   Hero Phone Mockup — Realistic Tably Menu UI
   ============================================================ */
.t-mockup {
  width: 100%; height: 100%;
  background: #16161F;
  display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  padding: 28px 10px 0;
}

/* Top bar */
.t-mockup__topbar {
  display: flex; justify-content: flex-end; gap: 6px;
  padding: 0 2px 6px;
}
.t-mockup__topbar-btn {
  font-size: 7px; color: #A0A0B8;
  background: #252535; border-radius: 6px;
  padding: 3px 7px; font-weight: 600;
}

/* Promo banner */
.t-mockup__promo {
  background: linear-gradient(135deg, #FF6B35, #E55A2B);
  border-radius: 10px; padding: 10px 12px;
  margin-bottom: 8px; position: relative; overflow: hidden;
}
.t-mockup__promo::after {
  content: ''; position: absolute; top: -20px; right: -10px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.t-mockup__promo-badge {
  font-size: 6px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.25); border-radius: 4px;
  padding: 1px 5px; display: inline-block; margin-bottom: 3px;
}
.t-mockup__promo-title { font-size: 11px; font-weight: 800; color: #fff; }
.t-mockup__promo-desc { font-size: 7px; color: rgba(255,255,255,.8); margin-top: 1px; }

/* Categories scroll */
.t-mockup__cats {
  display: flex; gap: 6px; padding: 4px 0 8px;
  overflow: hidden;
}
.t-mockup__cat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 5px 8px; border-radius: 10px;
  background: #252535; min-width: 42px;
  font-size: 6.5px; font-weight: 600; color: #A0A0B8;
  flex-shrink: 0;
}
.t-mockup__cat--active {
  background: #FF6B35; color: #fff;
}
.t-mockup__cat-icon { font-size: 12px; }

/* Items list */
.t-mockup__items {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.t-mockup__item {
  display: flex; align-items: center; gap: 8px;
  background: #252535; border-radius: 10px; padding: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.t-mockup__item-img {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.t-mockup__item-info { flex: 1; min-width: 0; overflow: hidden; }
.t-mockup__item-name {
  display: block; font-size: 8px; font-weight: 700; color: #E8E8F0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.t-mockup__item-desc {
  display: block; font-size: 6.5px; color: #6E6E88; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.t-mockup__item-price {
  font-size: 9px; font-weight: 800; color: #FF6B35; flex-shrink: 0;
}

/* Social links */
.t-mockup__social {
  display: flex; gap: 6px; justify-content: center; padding: 8px 0 6px;
}
.t-mockup__social-chip {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff;
}
.t-mockup__social-chip--fb { background: #1877F2; }
.t-mockup__social-chip--ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.t-mockup__social-chip--tt { background: #000; }

/* Bottom nav */
.t-mockup__nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 0 6px;
  border-top: 1px solid #3A3A4E;
  margin-top: auto;
}
.t-mockup__nav-item {
  font-size: 11px; color: #6E6E88;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.t-mockup__nav-item--active { color: #FF6B35; }

/* ============================================================
   Solution Section — 2-column layout (animation + benefits)
   ============================================================ */
.t-solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--t-sp-6);
  align-items: center;
}
.t-solution-layout__anim {
  position: relative;
}
.t-solution-layout__anim .t-ai-animation {
  max-width: 100%;
  aspect-ratio: 16/10;
}
.t-solution-layout__text .t-section__sub {
  margin-left: 0;
}

/* Benefits list */
.t-benefits {
  display: flex; flex-direction: column; gap: 18px;
}
.t-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: var(--t-radius-sm);
  border: 1px solid transparent;
  transition: all var(--t-transition);
}
.t-benefit:hover {
  background: var(--t-surface);
  border-color: var(--t-border);
}
.t-benefit__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255, 107, 53, .1); color: var(--t-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.t-benefit__title {
  font-size: .92rem; font-weight: 700; color: var(--t-text);
  margin-bottom: 3px;
}
.t-benefit__desc {
  font-size: .82rem; color: var(--t-text-2); line-height: 1.6;
}

@media (max-width: 900px) {
  .t-solution-layout {
    grid-template-columns: 1fr;
    gap: var(--t-sp-4);
  }
  .t-solution-layout__anim {
    max-width: 500px;
    margin: 0 auto;
  }
  .t-solution-layout__anim .t-ai-animation {
    aspect-ratio: 4/3;
    min-height: 280px;
  }
  .t-solution-layout__text {
    text-align: center;
  }
  .t-benefit {
    text-align: left;
  }
  .t-solution-steps {
    justify-content: center;
  }
  /* Ensure animation is always visible on mobile */
  .t-solution-layout.reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Customer Flow — 2-column layout (phone left, steps right)
   ============================================================ */
.t-flow-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--t-sp-6);
  align-items: center;
}
.t-flow-layout__phone {
  display: flex; justify-content: center;
}
.t-flow-layout__phone .t-phone {
  width: 220px; height: 440px;
}
.t-flow-layout__text .t-section__sub {
  margin-left: 0;
}

/* Vertical steps */
.t-flow-steps-v {
  display: flex; flex-direction: column; gap: 16px;
}
.t-flow-step-v {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--t-radius-sm);
  border: 1px solid transparent;
  transition: all var(--t-transition);
}
.t-flow-step-v--active,
.t-flow-step-v:hover {
  background: var(--t-surface);
  border-color: var(--t-border);
}
.t-flow-step-v__num {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255, 107, 53, .1); color: var(--t-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.t-flow-step-v__name {
  font-size: .9rem; font-weight: 700; color: var(--t-text);
  margin-bottom: 3px;
}
.t-flow-step-v__desc {
  font-size: .8rem; color: var(--t-text-2); line-height: 1.5;
}

@media (max-width: 768px) {
  .t-flow-layout {
    grid-template-columns: 1fr;
    gap: var(--t-sp-4);
  }
  .t-flow-layout__phone .t-phone {
    width: 180px; height: 360px;
  }
  .t-flow-layout__phone {
    order: -1;
  }
  /* Ensure flow animation is always visible on mobile */
  .t-flow-layout.reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Feature Mini-Scenes — Rich animated visuals
   ============================================================ */
.t-feat-mini-scene {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 32px 24px;
  min-height: 200px;
}

/* Shared elements */
.t-mini-arrow {
  color: var(--t-primary); font-size: 1.2rem; opacity: .6;
  animation: miniArrowPulse 2s ease-in-out infinite;
}
@keyframes miniArrowPulse {
  0%, 100% { opacity: .4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

.t-mini-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--t-primary); color: #fff;
  font-size: .65rem; font-weight: 800; padding: 3px 8px;
  border-radius: 6px; letter-spacing: .05em;
}

/* Paper (AI row) */
.t-mini-paper {
  width: 60px; padding: 12px 8px;
  background: #faf7f0; border-radius: 4px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transform: rotate(-2deg);
}
.t-mini-paper__line {
  height: 3px; background: #ccc; border-radius: 2px;
}
.t-mini-paper__line--short { width: 60%; }

/* Mini phone */
.t-mini-phone {
  width: 56px; padding: 8px 6px;
  background: #252535; border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.t-mini-phone__bar { height: 3px; background: var(--t-primary); border-radius: 2px; width: 60%; }
.t-mini-phone__item { height: 8px; background: #3a3a4e; border-radius: 3px; }
.t-mini-phone__item--hl { background: rgba(255,107,53,.3); }
.t-mini-phone__btn {
  margin-top: 4px; padding: 3px; text-align: center;
  background: var(--t-primary); color: #fff; border-radius: 4px;
  font-size: 5px; font-weight: 700;
}

/* QR icon */
.t-mini-qr {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--t-surface); border: 1px solid var(--t-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--t-text-2);
}

/* Check icon */
.t-mini-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16, 185, 129, .15); color: var(--t-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  animation: miniCheckPop 3s ease-in-out infinite;
}
@keyframes miniCheckPop {
  0%, 70%, 100% { transform: scale(1); }
  80% { transform: scale(1.15); }
}

/* Promo cards */
.t-mini-promo-card {
  padding: 12px 14px; border-radius: 10px;
  background: linear-gradient(135deg, #FF6B35, #E55A2B);
  color: #fff; min-width: 100px;
  animation: miniPromoFloat 4s ease-in-out infinite;
}
.t-mini-promo-card--alt {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  animation-delay: 1s;
}
@keyframes miniPromoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.t-mini-promo-card__badge {
  font-size: .65rem; font-weight: 800; background: rgba(255,255,255,.25);
  padding: 1px 6px; border-radius: 4px; display: inline-block; margin-bottom: 4px;
}
.t-mini-promo-card__title { font-size: .8rem; font-weight: 700; }
.t-mini-promo-card__desc { font-size: .65rem; opacity: .8; }

/* Floor plan (reservations) */
.t-feat-mini-scene--floor {
  flex-wrap: wrap; gap: 8px; max-width: 220px;
  margin: 0 auto; position: relative;
}
.t-mini-table {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: var(--t-text);
  border: 2px solid;
}
.t-mini-table--free { border-color: var(--t-green); background: rgba(16,185,129,.08); }
.t-mini-table--busy { border-color: var(--t-red); background: rgba(239,68,68,.08); color: var(--t-text-3); }
.t-mini-table--reserved { border-color: var(--t-primary); background: rgba(255,107,53,.08); animation: miniTablePulse 3s ease-in-out infinite; }
@keyframes miniTablePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,.2); }
  50% { box-shadow: 0 0 0 6px rgba(255,107,53,0); }
}
.t-mini-floor-legend {
  width: 100%; display: flex; gap: 10px; justify-content: center;
  margin-top: 8px;
}
.t-mini-legend {
  font-size: .6rem; color: var(--t-text-3); display: flex; align-items: center; gap: 4px;
}
.t-mini-legend::before {
  content: ''; width: 8px; height: 8px; border-radius: 3px;
}
.t-mini-legend--free::before { background: rgba(16,185,129,.3); border: 1px solid var(--t-green); }
.t-mini-legend--busy::before { background: rgba(239,68,68,.3); border: 1px solid var(--t-red); }
.t-mini-legend--reserved::before { background: rgba(255,107,53,.3); border: 1px solid var(--t-primary); }

/* Analytics chart */
.t-feat-mini-scene--chart {
  flex-direction: column; gap: 16px;
}
.t-mini-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 80px;
  padding: 0 8px;
}
.t-mini-chart__bar {
  flex: 1; background: var(--t-surface-2); border-radius: 4px 4px 0 0;
  position: relative; transition: height 1s ease;
  animation: miniBarGrow 3s ease-out infinite alternate;
}
.t-mini-chart__bar--hl { background: var(--t-primary); }
@keyframes miniBarGrow {
  0% { opacity: .7; }
  100% { opacity: 1; }
}
.t-mini-chart__bar::after {
  content: attr(data-label);
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  font-size: .5rem; color: var(--t-text-3); white-space: nowrap;
}
.t-mini-stats {
  display: flex; gap: 16px; justify-content: center;
}
.t-mini-stat { text-align: center; }
.t-mini-stat__val { display: block; font-size: .85rem; font-weight: 800; color: var(--t-primary); }
.t-mini-stat__label { font-size: .6rem; color: var(--t-text-3); }

/* Analytics extended row */
.t-mini-analytics-row {
  display: flex; align-items: center; gap: 16px; margin-top: 14px;
  padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .04);
}
.t-mini-donut { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.t-mini-donut__svg { width: 52px; height: 52px; }
.t-mini-donut__label { font-size: .55rem; color: var(--t-text-3); }
.t-mini-top-items { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.t-mini-top-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .62rem; color: var(--t-text-2);
}
.t-mini-top-item__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.t-mini-top-item__val { margin-left: auto; font-weight: 700; color: var(--t-text); font-size: .6rem; }

/* Multi-venue tree */
.t-feat-mini-scene--tree {
  flex-direction: column; gap: 12px; align-items: center;
}
.t-mini-node {
  padding: 8px 14px; border-radius: 8px; font-size: .7rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.t-mini-node--hq {
  background: var(--t-primary); color: #fff;
}
.t-mini-node--branch {
  background: var(--t-surface); border: 1px solid var(--t-border); color: var(--t-text-2);
}
.t-mini-tree-lines {
  width: 2px; height: 16px; background: var(--t-border);
  position: relative;
}
.t-mini-tree-lines::before, .t-mini-tree-lines::after {
  content: ''; position: absolute; bottom: 0;
  width: 40px; height: 2px; background: var(--t-border);
}
.t-mini-tree-lines::before { right: 0; }
.t-mini-tree-lines::after { left: 0; }
.t-mini-branches {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}

/* Auth modal uses the standalone auth-card visual while keeping the landing 2-step flow. */
#auth-modal {
  background: rgba(9, 10, 18, .78);
}
#auth-modal .t-modal {
  width: min(100%, 540px);
  max-width: 540px;
  padding: 52px 44px 40px;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
#auth-modal .t-modal::before {
  height: 3px;
  background: var(--t-primary);
  opacity: 1;
}
.t-modal__logo {
  display: block;
  text-align: center;
  margin: 0 0 28px;
  color: var(--t-text);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.t-modal__logo span {
  color: var(--t-primary);
}
#auth-modal .t-modal__close {
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--t-surface-2);
  color: var(--t-text-3);
  font-size: 1rem;
}
#auth-modal .t-modal__tabs {
  margin-bottom: 30px;
  padding: 8px;
  gap: 8px;
  background: var(--t-bg);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--t-radius-sm);
}
#auth-modal .t-modal__tab {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--t-radius-xs);
  font-size: 1.05rem;
  font-weight: 700;
}
#auth-modal .t-modal__tab.active {
  background: var(--t-surface-2);
  color: var(--t-primary);
}
#auth-modal .t-float-input,
#auth-modal .t-input,
#auth-modal .reg-social-input {
  min-height: 56px;
  background: var(--t-bg);
  border-color: var(--t-border);
  border-radius: var(--t-radius-sm);
  font-size: 1rem;
}
#auth-modal .t-float-input:focus,
#auth-modal .t-input:focus,
#auth-modal .reg-social-input:focus,
#auth-modal .reg-phone-group:focus-within {
  border-color: var(--t-primary);
}
#auth-modal .t-btn--primary {
  min-height: 56px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
#auth-modal .reg-phone-group {
  min-height: 56px;
  height: 56px;
  border-color: var(--t-border);
  border-radius: var(--t-radius-sm);
}
#auth-modal .t-phone-bare {
  font-size: 1rem;
}

@media (max-width: 640px) {
  #auth-modal {
    padding: 14px;
    align-items: flex-start;
  }
  #auth-modal .t-modal {
    margin: 0;
    padding: 42px 24px 28px;
    border-radius: 18px;
  }
  #auth-modal .t-modal__tabs {
    padding: 6px;
  }
  #auth-modal .t-modal__tab {
    min-height: 48px;
    font-size: .95rem;
  }
  .t-modal__logo {
    margin-bottom: 22px;
    font-size: 1.65rem;
  }
}
