
:root{
  --tx-blue-950:#081f57;
  --tx-blue-900:#0b2f86;
  --tx-blue-850:#0b3c97;
  --tx-blue-800:#1657c5;
  --tx-blue-700:#2d77f2;
  --tx-blue-100:#eaf2ff;
  --tx-bg:#f6f9ff;
  --tx-surface:#ffffff;
  --tx-surface-2:#f2f7ff;
  --tx-text:#10203d;
  --tx-muted:#61708e;
  --tx-line:rgba(12,42,111,.12);
  --tx-yellow:#ffc400;
  --tx-yellow-2:#f0b400;
  --tx-red:#f04d4d;
  --tx-green:#2bb673;
  --tx-radius-xl:32px;
  --tx-radius-lg:24px;
  --tx-radius-md:18px;
  --tx-radius-sm:14px;
  --tx-shadow:0 30px 80px rgba(13,54,137,.15);
  --tx-shadow-hover:0 35px 90px rgba(13,54,137,.24);
  --tx-container:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--tx-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(45,119,242,.08), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(255,196,0,.08), transparent 18%),
    linear-gradient(180deg,#f8fbff 0%, #f3f8ff 100%);
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.tx-site-main{overflow:clip}

.tx-container,.tx-container-fluid{
  width:min(calc(100% - 32px), var(--tx-container));
  margin:0 auto;
}
.tx-container-fluid{width:min(calc(100% - 24px), 1480px)}

.tx-header{
  position:sticky;top:0;z-index:80;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(12,42,111,.08);
  transition:box-shadow .25s ease, background .25s ease;
}
.tx-header.is-scrolled{box-shadow:0 14px 44px rgba(11,47,134,.08)}
.tx-header-inner{
  min-height:86px;
  display:flex;align-items:center;gap:20px;justify-content:space-between;
}
.tx-brand img{height:54px;width:auto}
.tx-nav{margin-left:auto}
.tx-menu{display:flex;align-items:center;list-style:none;gap:28px;margin:0;padding:0}
.tx-menu a{
  font-size:.98rem;font-weight:700;color:#27467b;position:relative;transition:.25s ease
}
.tx-menu a:after{
  content:'';position:absolute;left:0;bottom:-10px;width:100%;height:3px;
  background:linear-gradient(90deg,var(--tx-blue-800),var(--tx-yellow));
  transform:scaleX(0);transform-origin:left;transition:transform .28s ease;border-radius:999px;
}
.tx-menu a:hover{color:var(--tx-blue-900)}
.tx-menu a:hover:after{transform:scaleX(1)}
.tx-header-actions{display:flex;align-items:center;gap:10px}
.tx-menu-toggle{
  display:none;border:1px solid var(--tx-line);background:#fff;border-radius:14px;
  width:50px;height:50px;padding:0;cursor:pointer;
}
.tx-menu-toggle span{display:block;width:18px;height:2px;background:var(--tx-blue-900);margin:4px auto;border-radius:2px}

.tx-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:54px;padding:0 22px;border-radius:16px;font-weight:800;border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  cursor:pointer;
}
.tx-btn:hover{transform:translateY(-3px)}
.tx-btn-small{min-height:46px;padding:0 18px;border-radius:14px;font-size:.95rem}
.tx-btn-primary{
  background:linear-gradient(180deg,var(--tx-yellow) 0%, var(--tx-yellow-2) 100%);
  color:#17315f;box-shadow:0 18px 30px rgba(255,196,0,.28)
}
.tx-btn-secondary{
  background:linear-gradient(180deg,var(--tx-blue-800) 0%, var(--tx-blue-900) 100%);
  color:#fff;box-shadow:0 18px 30px rgba(11,60,151,.28)
}
.tx-btn-outline{background:#fff;border-color:var(--tx-line);color:var(--tx-blue-900)}
.tx-btn-outline-dark{background:#fff;border:1px solid var(--tx-line);color:var(--tx-text)}
.tx-btn-block{width:100%}

.tx-hero{
  position:relative;
  padding:80px 0 50px;
  background:
    radial-gradient(circle at 75% 14%, rgba(255,196,0,.22), transparent 16%),
    radial-gradient(circle at 12% 0%, rgba(125,180,255,.25), transparent 18%),
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
}
.tx-hero:before{
  content:'';
  position:absolute;inset:0;
  background:
    linear-gradient(135deg, rgba(11,60,151,.03) 25%, transparent 25%) -12px 0/24px 24px,
    linear-gradient(225deg, rgba(11,60,151,.03) 25%, transparent 25%) -12px 0/24px 24px,
    linear-gradient(315deg, rgba(11,60,151,.03) 25%, transparent 25%) 0px 0/24px 24px,
    linear-gradient(45deg, rgba(11,60,151,.03) 25%, transparent 25%) 0px 0/24px 24px;
  opacity:.4;pointer-events:none;
}
.tx-hero-grid,.tx-page-hero-grid,.tx-showcase-grid,.tx-login-grid,.tx-contact-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center
}
.tx-eyebrow{
  display:inline-flex;align-items:center;padding:9px 14px;border-radius:999px;
  background:rgba(255,255,255,.8);border:1px solid rgba(12,42,111,.08);
  color:var(--tx-blue-900);font-size:.78rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase
}
.tx-eyebrow-dark{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.12);color:#dce8ff}
.tx-hero-copy h1,.tx-section-heading h1,.tx-section-heading h2,.tx-page-hero h1,.tx-login-box h1{
  margin:16px 0 12px;
  font-size:clamp(2rem, 3.8vw, 3.5rem);
  line-height:1.02;letter-spacing:-.05em
}
.tx-hero-copy p,.tx-section-heading p,.tx-page-hero p,.tx-login-box p{
  color:var(--tx-muted);font-size:1.08rem;line-height:1.75
}
.tx-hero-actions,.tx-cta-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.tx-badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.tx-badge-row span{
  padding:10px 14px;border-radius:999px;background:rgba(11,60,151,.06);
  color:var(--tx-blue-900);font-weight:700;font-size:.95rem;border:1px solid rgba(11,60,151,.08)
}
.tx-hero-stack{position:relative;min-height:620px}
.tx-floating-card{
  position:absolute;border-radius:28px;background:#fff;border:1px solid rgba(255,255,255,.8);
  box-shadow:var(--tx-shadow);overflow:hidden
}
.tx-floating-main{top:0;right:0;width:88%;animation:floatSoft 7s ease-in-out infinite}
.tx-floating-phone{bottom:24px;left:0;width:48%;animation:floatSoft 8s ease-in-out infinite reverse}
.tx-floating-chip{
  position:absolute;right:20px;bottom:26px;background:rgba(8,31,87,.94);color:#fff;
  border-radius:18px;padding:16px 18px;box-shadow:var(--tx-shadow);animation:floatSoft 5.5s ease-in-out infinite
}
.tx-floating-chip strong{display:block;font-size:.92rem}
.tx-floating-chip span{display:block;color:#d1defc;margin-top:4px}
@keyframes floatSoft{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

.tx-trust-strip{padding:6px 0 0}
.tx-stats-grid,.tx-feature-grid,.tx-module-grid,.tx-spec-grid,.tx-post-grid,.tx-phone-ui-grid,.tx-pricing-grid{
  display:grid;gap:22px
}
.tx-stats-grid{grid-template-columns:repeat(4,1fr)}
.tx-stat-card,.tx-feature-card,.tx-module-card,.tx-spec-item,.tx-price-card,.tx-content-card,.tx-post-card,.tx-ui-card,.tx-contact-copy,.tx-contact-form-wrap,.tx-login-box,.tx-pricing-teaser,.tx-dashboard-shell{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(11,60,151,.08);
  border-radius:24px;
  box-shadow:var(--tx-shadow);
  backdrop-filter:blur(12px);
}
.tx-stat-card{padding:24px}
.tx-stat-card strong{display:block;font-size:1.02rem;margin-bottom:6px}
.tx-stat-card span{color:var(--tx-muted);line-height:1.6}

.tx-section{padding:88px 0}
.tx-section-soft{background:linear-gradient(180deg, rgba(11,60,151,.03), rgba(45,119,242,.02))}
.tx-section-dark{
  background:
    radial-gradient(circle at 10% 10%, rgba(255,196,0,.1), transparent 18%),
    linear-gradient(180deg,var(--tx-blue-950) 0%, var(--tx-blue-900) 100%);
  color:#fff
}
.tx-section-dark .tx-showcase-copy p,.tx-section-dark li{color:#dce8ff}
.tx-section-heading{max-width:820px;margin:0 0 38px}
.tx-section-heading.center{text-align:center;margin-left:auto;margin-right:auto}
.tx-feature-grid{grid-template-columns:repeat(3,1fr)}
.tx-module-grid{grid-template-columns:repeat(4,1fr)}
.tx-spec-grid,.tx-phone-ui-grid{grid-template-columns:repeat(2,1fr)}
.tx-post-grid{grid-template-columns:repeat(3,1fr)}
.tx-pricing-grid{grid-template-columns:repeat(3,1fr)}
.tx-feature-card,.tx-module-card,.tx-spec-item,.tx-price-card,.tx-ui-card,.tx-post-card{padding:28px;position:relative;overflow:hidden}
.tx-feature-card:before,.tx-module-card:before,.tx-spec-item:before,.tx-price-card:before,.tx-ui-card:before{
  content:'';position:absolute;inset:0;background:linear-gradient(135deg, rgba(45,119,242,.08), rgba(255,196,0,.06));
  opacity:0;transition:opacity .3s ease;
}
.tx-feature-card:hover,.tx-module-card:hover,.tx-spec-item:hover,.tx-price-card:hover,.tx-ui-card:hover,.tx-stat-card:hover,.tx-post-card:hover,.tx-contact-copy:hover,.tx-contact-form-wrap:hover{
  transform:translateY(-10px);
  box-shadow:var(--tx-shadow-hover);
  border-color:rgba(11,60,151,.18)
}
.tx-feature-card,.tx-module-card,.tx-spec-item,.tx-price-card,.tx-ui-card,.tx-stat-card,.tx-post-card,.tx-contact-copy,.tx-contact-form-wrap{
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease
}
.tx-feature-card:hover:before,.tx-module-card:hover:before,.tx-spec-item:hover:before,.tx-price-card:hover:before,.tx-ui-card:hover:before{opacity:1}
.tx-feature-card > *, .tx-module-card > *, .tx-spec-item > *, .tx-price-card > *, .tx-ui-card > *{position:relative;z-index:1}
.tx-icon svg{width:58px;height:58px;display:block}
.tx-feature-card:hover .tx-icon{transform:rotate(-4deg) scale(1.06)}
.tx-icon{transition:transform .35s ease}
.tx-feature-card h3,.tx-module-card h3,.tx-spec-item strong,.tx-price-card h3,.tx-ui-card h3,.tx-post-card h2{
  margin:16px 0 10px;font-size:1.18rem;letter-spacing:-.02em
}
.tx-feature-card p,.tx-module-card p,.tx-spec-item span,.tx-price-card p,.tx-ui-card p,.tx-post-card p,.tx-content-card,.tx-footer-brand p{color:var(--tx-muted);line-height:1.72}
.tx-module-card.full{min-height:210px}
.tx-check-list,.tx-mini-list,.tx-footer-links{list-style:none;padding:0;margin:0}
.tx-check-list li,.tx-mini-list li{
  position:relative;padding-left:28px;margin:0 0 13px;line-height:1.68
}
.tx-check-list li:before,.tx-mini-list li:before{
  content:'✓';position:absolute;left:0;top:0;font-weight:900;color:var(--tx-yellow)
}
.tx-screen-shadow img,.tx-phone-stack img,.tx-page-hero-image img,.tx-login-visual img{
  border-radius:28px;box-shadow:0 40px 90px rgba(4,18,51,.32);border:1px solid rgba(255,255,255,.12)
}
.tx-phone-stack{position:relative}
.tx-phone-stack:after{
  content:'';position:absolute;left:8%;right:8%;bottom:-14px;height:26px;filter:blur(20px);background:rgba(11,60,151,.18);border-radius:50%;
}

.tx-pricing-teaser{
  padding:34px;
  display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:center
}
.tx-plan-tag{
  display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;
  background:#eef5ff;color:var(--tx-blue-900);font-size:.8rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em
}
.tx-plan-tag-featured{background:rgba(255,196,0,.14);color:#9b6b00}
.tx-price-card .tx-price{
  font-size:2.5rem;font-weight:900;letter-spacing:-.05em;margin:14px 0 18px;color:var(--tx-blue-900)
}
.tx-price small{font-size:1rem;color:var(--tx-muted);margin-left:4px}
.tx-price-card.featured{
  background:linear-gradient(180deg, rgba(11,60,151,.95), rgba(8,31,87,.98));
  color:#fff;transform:translateY(-12px)
}
.tx-price-card.featured p,.tx-price-card.featured li,.tx-price-card.featured .tx-price small{color:#d7e5ff}
.tx-price-card.featured .tx-price{color:#fff}
.tx-price-card.featured .tx-mini-list li:before{color:var(--tx-yellow)}

.tx-page-hero{padding:72px 0 20px}
.tx-page-hero-dashboard{padding-bottom:38px}
.tx-login-section{padding:72px 0}
.tx-login-box,.tx-contact-copy,.tx-contact-form-wrap,.tx-content-card{padding:30px}
.tx-contact-grid{grid-template-columns:.9fr 1.1fr}
.tx-form{display:grid;gap:16px}
.tx-form label{display:grid;gap:8px;font-weight:700;color:var(--tx-text)}
.tx-form input,.tx-form textarea{
  width:100%;padding:15px 16px;border-radius:14px;border:1px solid rgba(11,60,151,.12);
  background:#f9fbff;font:inherit;color:var(--tx-text);outline:none;transition:border-color .2s ease, box-shadow .2s ease
}
.tx-form input:focus,.tx-form textarea:focus{
  border-color:rgba(11,60,151,.32);box-shadow:0 0 0 4px rgba(45,119,242,.10)
}

.tx-dashboard-shell{padding:18px;display:grid;grid-template-columns:78px 1fr;gap:18px}
.tx-dash-sidebar{
  border-radius:22px;background:linear-gradient(180deg, var(--tx-blue-900), var(--tx-blue-950));
  padding:14px 0;display:flex;flex-direction:column;align-items:center;gap:16px
}
.tx-dash-logo{
  width:46px;height:46px;border-radius:14px;background:rgba(255,255,255,.08);display:grid;place-items:center;margin-bottom:10px
}
.tx-dash-logo img{width:26px;height:auto}
.tx-dash-sidebar span{
  width:14px;height:14px;border-radius:50%;background:rgba(255,255,255,.22);display:block;position:relative
}
.tx-dash-sidebar span.active{background:var(--tx-yellow);box-shadow:0 0 0 8px rgba(255,196,0,.14)}
.tx-dash-main{display:grid;gap:18px}
.tx-dash-topbar{
  background:#fff;border-radius:22px;padding:16px 18px;display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center;border:1px solid var(--tx-line)
}
.tx-dash-cta{
  min-height:52px;padding:0 18px;border:none;border-radius:14px;background:linear-gradient(180deg,var(--tx-yellow),var(--tx-yellow-2));font:800 1rem 'Inter',sans-serif;color:#17315f
}
.tx-dash-search,.tx-dash-user{
  min-height:52px;border-radius:14px;background:#f5f8ff;border:1px solid rgba(11,60,151,.08);display:flex;align-items:center;padding:0 16px;color:#627394;font-weight:600
}
.tx-dash-grid{display:grid;grid-template-columns:310px 1fr 310px;gap:18px}
.tx-dash-panel,.tx-dash-history{
  background:#fff;border-radius:24px;border:1px solid var(--tx-line);padding:18px;box-shadow:var(--tx-shadow)
}
.tx-panel-head{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:14px}
.tx-panel-head strong{font-size:1.04rem}
.tx-panel-head span{color:var(--tx-muted);font-weight:700}
.tx-order-card,.tx-driver-card{
  display:flex;justify-content:space-between;gap:14px;align-items:center;padding:16px;border-radius:18px;
  background:#f7faff;border:1px solid rgba(11,60,151,.08);margin-bottom:12px;transition:transform .25s ease, box-shadow .25s ease
}
.tx-order-card:hover,.tx-driver-card:hover{transform:translateY(-4px);box-shadow:0 18px 34px rgba(11,60,151,.10)}
.tx-order-card strong,.tx-driver-card strong{display:block}
.tx-order-card span,.tx-driver-card span{display:block;color:var(--tx-muted);font-size:.93rem;margin-top:4px}
.tx-order-card button,.tx-driver-card a{
  border:none;background:var(--tx-blue-900);color:#fff;border-radius:12px;padding:11px 14px;font-weight:800
}
.tx-order-card button.warn{background:var(--tx-yellow);color:#17315f}
.tx-driver-card a{display:inline-flex;align-items:center}
.tx-driver-card.tx-alert{border-color:rgba(240,77,77,.28);background:rgba(240,77,77,.06)}
.tx-driver-card.tx-alert a{background:var(--tx-red)}
.tx-dash-map{
  position:relative;min-height:560px;overflow:hidden;
  background:
    linear-gradient(rgba(255,255,255,.14), rgba(255,255,255,.14)),
    url('../images/dashboard-visual.png') center/cover no-repeat;
}
.tx-dash-map:before{
  content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.06));
}
.tx-dash-map-overlay{position:absolute;left:18px;top:18px;right:18px;display:flex;gap:10px;z-index:2}
.tx-map-pill{
  display:inline-flex;padding:10px 14px;border-radius:999px;background:rgba(11,60,151,.86);color:#fff;font-weight:800;font-size:.9rem
}
.tx-car{
  position:absolute;z-index:2;padding:10px 12px;border-radius:14px;background:rgba(11,60,151,.90);color:#fff;font-weight:800;font-size:.86rem;
  box-shadow:0 14px 30px rgba(11,60,151,.2);animation:pulseDot 3.6s infinite
}
.tx-car:after{
  content:'';position:absolute;inset:auto auto -10px 18px;border:10px solid transparent;border-top-color:rgba(11,60,151,.90)
}
.tx-car-1{left:52%;top:22%}
.tx-car-2{left:17%;top:60%;animation-delay:1s}
.tx-car-3{left:57%;top:74%;animation-delay:1.8s}
.tx-car-4{left:72%;top:42%;animation-delay:2.3s}
@keyframes pulseDot{
  0%,100%{transform:translateY(0);box-shadow:0 14px 30px rgba(11,60,151,.2)}
  50%{transform:translateY(-6px);box-shadow:0 20px 38px rgba(11,60,151,.28)}
}
.tx-dash-history ul{margin:0;padding-left:18px}
.tx-dash-history li{margin:0 0 10px;line-height:1.68;color:var(--tx-muted)}
.tx-dash-history strong{color:var(--tx-blue-900)}

.tx-footer{
  margin-top:40px;padding:30px 0 22px;border-top:1px solid rgba(12,42,111,.08);background:rgba(255,255,255,.6)
}
.tx-footer-top{display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:start}
.tx-footer-brand img{height:56px;width:auto;margin-bottom:16px}
.tx-footer-links-wrap{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.tx-footer-links-wrap strong{display:block;margin-bottom:14px}
.tx-footer-links li{margin-bottom:10px}
.tx-footer-links a{color:var(--tx-muted);font-weight:600}
.tx-footer-links a:hover{color:var(--tx-blue-900)}
.tx-footer-bottom{
  margin-top:22px;padding-top:18px;border-top:1px solid rgba(12,42,111,.08);
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--tx-muted);font-size:.94rem
}

[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .65s ease, transform .65s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width: 1180px){
  .tx-feature-grid{grid-template-columns:repeat(2,1fr)}
  .tx-module-grid,.tx-stats-grid,.tx-pricing-grid{grid-template-columns:repeat(2,1fr)}
  .tx-dash-grid{grid-template-columns:1fr}
  .tx-dash-map{min-height:460px}
}
@media (max-width: 980px){
  .tx-menu-toggle{display:block}
  .tx-nav{
    position:absolute;left:16px;right:16px;top:82px;background:rgba(255,255,255,.96);
    border:1px solid rgba(11,60,151,.10);border-radius:20px;padding:16px;box-shadow:var(--tx-shadow);
    opacity:0;visibility:hidden;transform:translateY(-10px);transition:.25s ease
  }
  .tx-header.menu-open .tx-nav{opacity:1;visibility:visible;transform:translateY(0)}
  .tx-menu{flex-direction:column;align-items:flex-start;gap:16px}
  .tx-header-actions .tx-btn{display:none}
  .tx-hero-grid,.tx-page-hero-grid,.tx-showcase-grid,.tx-login-grid,.tx-contact-grid,.tx-footer-top,.tx-pricing-teaser{
    grid-template-columns:1fr
  }
  .tx-hero-stack{min-height:520px}
  .tx-floating-main{width:100%}
  .tx-floating-phone{width:44%}
}
@media (max-width: 720px){
  .tx-section{padding:68px 0}
  .tx-hero{padding-top:56px}
  .tx-feature-grid,.tx-module-grid,.tx-spec-grid,.tx-post-grid,.tx-phone-ui-grid,.tx-pricing-grid,.tx-stats-grid{
    grid-template-columns:1fr
  }
  .tx-dashboard-shell{grid-template-columns:1fr;padding:14px}
  .tx-dash-sidebar{display:none}
  .tx-dash-topbar{grid-template-columns:1fr}
  .tx-hero-copy h1,.tx-section-heading h1,.tx-section-heading h2,.tx-page-hero h1,.tx-login-box h1{
    font-size:clamp(2rem, 8vw, 3.2rem)
  }
  .tx-floating-chip{right:12px;left:12px}
  .tx-floating-phone{width:56%;bottom:10px}
}


.tx-feature-card,.tx-module-card,.tx-price-card,.tx-info-card,.tx-addon-card,.tx-module-detail-card{isolation:isolate}
.tx-feature-card::after,.tx-module-card::after,.tx-price-card::after,.tx-info-card::after,.tx-addon-card::after,.tx-module-detail-card::after{
  content:'';position:absolute;inset:-1px;border-radius:inherit;padding:1px;
  background:linear-gradient(135deg, rgba(45,119,242,.0), rgba(255,196,0,.0), rgba(45,119,242,.0));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .35s ease, background .35s ease;pointer-events:none;
}
.tx-feature-card:hover::after,.tx-module-card:hover::after,.tx-price-card:hover::after,.tx-info-card:hover::after,.tx-addon-card:hover::after,.tx-module-detail-card:hover::after{
  opacity:1;background:linear-gradient(135deg, rgba(45,119,242,.85), rgba(255,196,0,.85), rgba(45,119,242,.55));
}
.tx-feature-card:hover,.tx-module-card:hover,.tx-price-card:hover,.tx-ui-card:hover,.tx-stat-card:hover,.tx-post-card:hover,.tx-contact-copy:hover,.tx-contact-form-wrap:hover,.tx-info-card:hover,.tx-addon-card:hover,.tx-module-detail-card:hover{
  transform:translateY(-12px) scale(1.01);
}
.tx-feature-card:hover .tx-icon svg,.tx-module-card:hover h3,.tx-price-card:hover .tx-price{filter:drop-shadow(0 12px 22px rgba(11,60,151,.16));}
.tx-inline-link{display:inline-flex;align-items:center;gap:8px;margin-top:14px;font-weight:800;color:var(--tx-blue-900)}
.tx-inline-link:hover{color:var(--tx-blue-800)}

.tx-pricing-info-grid,.tx-addon-grid,.tx-module-detail-grid{display:grid;gap:22px}
.tx-pricing-info-grid{grid-template-columns:repeat(3,1fr)}
.tx-info-card,.tx-addon-card,.tx-module-detail-card{
  position:relative;padding:28px;background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);border-radius:24px;box-shadow:var(--tx-shadow);backdrop-filter:blur(12px);transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease
}
.tx-info-kicker,.tx-module-badge{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:#eef5ff;color:var(--tx-blue-900);font-size:.8rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.tx-info-card h3,.tx-addon-card h3,.tx-module-detail-card h3{margin:16px 0 10px;font-size:1.24rem;letter-spacing:-.02em}
.tx-info-card p,.tx-addon-card p,.tx-module-detail-card p{color:var(--tx-muted);line-height:1.75}
.tx-vehicle-pricing{background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);border-radius:28px;box-shadow:var(--tx-shadow);overflow:hidden}
.tx-vehicle-row{display:grid;grid-template-columns:.85fr 1.3fr .85fr;gap:18px;padding:22px 24px;align-items:center;border-top:1px solid rgba(11,60,151,.08)}
.tx-vehicle-row:first-child{border-top:none}
.tx-vehicle-head{background:linear-gradient(180deg,#eff5ff,#f8fbff);font-weight:800;color:var(--tx-blue-900)}
.tx-vehicle-row:not(.tx-vehicle-head):hover{background:rgba(45,119,242,.04)}
.tx-package-limit{margin:4px 0 8px;color:var(--tx-blue-800);font-weight:800}
.tx-package-note{margin-top:24px;padding:18px 22px;border-radius:18px;background:rgba(11,60,151,.06);border:1px solid rgba(11,60,151,.08);font-weight:600;color:var(--tx-blue-900)}
.tx-addon-grid{grid-template-columns:repeat(2,1fr)}
.tx-addon-top{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;margin-bottom:8px}
.tx-addon-top span{white-space:nowrap;font-weight:900;color:var(--tx-blue-900);background:rgba(255,196,0,.2);padding:8px 12px;border-radius:999px}
.tx-pricing-cta{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;margin-top:28px;padding:30px;border-radius:28px;background:linear-gradient(135deg, rgba(11,60,151,.96), rgba(22,87,197,.94));color:#fff;box-shadow:var(--tx-shadow)}
.tx-pricing-cta h3{margin:12px 0 8px;font-size:1.5rem}
.tx-pricing-cta p{margin:0;color:#dfe9ff;line-height:1.75}
.tx-module-detail-grid{grid-template-columns:repeat(2,1fr)}

@media (max-width: 1180px){
  .tx-pricing-info-grid,.tx-module-detail-grid,.tx-addon-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .tx-pricing-info-grid,.tx-addon-grid,.tx-module-detail-grid{grid-template-columns:1fr}
  .tx-vehicle-row{grid-template-columns:1fr;gap:8px}
  .tx-pricing-cta{grid-template-columns:1fr}
  .tx-addon-top{flex-direction:column}
  .tx-addon-top span{white-space:normal}
}

/* ===== V4 additions ===== */
.tx-hero-v4{overflow:hidden;padding-top:88px;padding-bottom:72px}
.tx-hero-grid-v4{grid-template-columns:1fr 1.08fr;gap:56px}
.tx-hero-orb{position:absolute;border-radius:999px;filter:blur(10px);pointer-events:none}
.tx-hero-orb-a{width:420px;height:420px;right:-60px;top:-90px;background:radial-gradient(circle, rgba(45,119,242,.24), rgba(45,119,242,0) 68%)}
.tx-hero-orb-b{width:320px;height:320px;left:-70px;bottom:20px;background:radial-gradient(circle, rgba(255,196,0,.22), rgba(255,196,0,0) 68%)}
.tx-hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:24px}
.tx-hero-proof div{padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.76);border:1px solid rgba(12,42,111,.08);box-shadow:0 18px 34px rgba(11,60,151,.08);backdrop-filter:blur(12px)}
.tx-hero-proof strong{display:block;color:var(--tx-blue-900);margin-bottom:6px}
.tx-hero-proof span{display:block;color:var(--tx-muted);font-size:.92rem;line-height:1.55}
.tx-hero-stage{position:relative;min-height:640px}
.tx-stage-glow{position:absolute;inset:10% 8% 14% 8%;background:radial-gradient(circle, rgba(255,255,255,.92) 0%, rgba(255,255,255,.14) 52%, transparent 74%);filter:blur(28px)}
.tx-hero-stage-clean{display:flex;align-items:center;justify-content:center}
.tx-stage-shell{
  position:relative;z-index:2;width:100%;max-width:720px;padding:16px;border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(243,248,255,.84));
  border:1px solid rgba(12,42,111,.08);box-shadow:0 36px 100px rgba(6,27,78,.18);backdrop-filter:blur(16px)
}
.tx-stage-shell-top{display:flex;gap:8px;padding:4px 8px 14px}
.tx-stage-shell-top span{width:10px;height:10px;border-radius:50%;background:#c5d2ea}
.tx-stage-shell-top span:nth-child(2){background:#dbe4f5}
.tx-stage-shell-top span:nth-child(3){background:#ffd866}
.tx-stage-shell-head{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:0 8px 16px}
.tx-stage-shell-head small{display:block;color:var(--tx-muted);font-weight:700;margin-bottom:4px}
.tx-stage-shell-head strong{display:block;font-size:1.2rem;color:var(--tx-blue-950);letter-spacing:-.02em}
.tx-stage-status{display:inline-flex;align-items:center;min-height:42px;padding:0 14px;border-radius:999px;background:rgba(11,60,151,.08);color:var(--tx-blue-900);font-weight:800}
.tx-stage-shell-media{border-radius:28px;overflow:hidden;border:1px solid rgba(12,42,111,.08);background:#fff}
.tx-stage-shell-media img{display:block;width:100%;height:auto;border-radius:28px}
.tx-stage-shell-footer{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:16px 8px 8px}
.tx-stage-mini-card{padding:18px 18px;border-radius:22px;background:rgba(255,255,255,.82);border:1px solid rgba(12,42,111,.08)}
.tx-stage-mini-card strong{display:block;color:var(--tx-blue-900);margin-bottom:6px}
.tx-stage-mini-card span{display:block;color:var(--tx-muted);line-height:1.6;font-size:.95rem}
.tx-stage-mini-card-highlight{background:linear-gradient(180deg, rgba(255,196,0,.14), rgba(255,255,255,.94))}
.tx-sales-section{position:relative;overflow:hidden}
.tx-sales-section:before{content:'';position:absolute;right:-120px;top:-60px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle, rgba(255,196,0,.18), transparent 70%)}
.tx-mockup-stack{position:relative;min-height:520px}
.tx-mockup-layer{position:absolute;overflow:hidden;border-radius:28px;box-shadow:var(--tx-shadow)}
.tx-mockup-back{right:0;top:0;width:84%;transform:rotate(6deg);opacity:.9}
.tx-mockup-front{left:0;bottom:0;width:88%;transform:rotate(-4deg)}
.tx-phone-demo-row{display:flex;gap:18px;align-items:flex-end;justify-content:center;min-height:460px}
.tx-demo-phone{width:160px;height:340px;border-radius:34px;background:#0f1f4f;border:8px solid #091737;box-shadow:var(--tx-shadow);position:relative;overflow:hidden}
.tx-demo-phone:before{content:'';position:absolute;top:10px;left:50%;width:72px;height:18px;transform:translateX(-50%);background:#09122f;border-radius:0 0 16px 16px}
.tx-demo-phone:after{content:'';position:absolute;inset:26px 12px 12px;border-radius:24px;background:url('../images/driver-app-visual.png') center/cover no-repeat}
.tx-demo-phone-large{width:190px;height:390px;transform:translateY(-10px)}
.tx-demo-phone-small.alt{transform:translateY(16px)}
.tx-page-hero-image-layered{position:relative}
.tx-image-bubble{position:absolute;left:-18px;bottom:24px;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.9);box-shadow:var(--tx-shadow);font-weight:800;color:var(--tx-blue-900)}
.tx-image-bubble.alt{left:auto;right:-18px;top:22px}
.tx-page-hero-dashboard-v4 .tx-page-hero-image img{border-radius:28px;box-shadow:var(--tx-shadow)}
.tx-dashboard-shell-v4 .tx-dash-grid{grid-template-columns:360px 1fr 360px}
.tx-dash-panel-rich{background:rgba(255,255,255,.92)}
.tx-dispatch-form{display:grid;gap:12px;padding:0 0 18px}
.tx-form-chip-row{display:flex;gap:8px;flex-wrap:wrap}
.tx-form-chip-row span,.tx-config-options span{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;border:1px solid rgba(11,60,151,.1);background:#f6f9ff;font-weight:700;color:var(--tx-blue-900);transition:.25s ease}
.tx-form-chip-row span.active,.tx-config-options span.active{background:linear-gradient(180deg,var(--tx-blue-800),var(--tx-blue-900));color:#fff;border-color:transparent;box-shadow:0 12px 26px rgba(11,60,151,.18)}
.tx-form-field{min-height:50px;padding:14px 16px;border-radius:16px;background:#f7faff;border:1px solid rgba(11,60,151,.08);font-weight:600;color:#5a6d95}
.tx-form-split{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.tx-order-live-list{display:grid;gap:14px}
.tx-dash-map-v4{min-height:620px;border:1px solid rgba(12,42,111,.08)}
.tx-map-legend{position:absolute;left:18px;bottom:18px;z-index:2;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.92);font-weight:700;color:var(--tx-blue-900);box-shadow:var(--tx-shadow)}
.tx-map-legend span{display:inline-block;width:10px;height:10px;border-radius:50%;margin:0 6px 0 12px}
.tx-map-legend span:first-child{margin-left:0}.tx-map-legend .green{background:var(--tx-green)}.tx-map-legend .yellow{background:var(--tx-yellow)}.tx-map-legend .red{background:var(--tx-red)}
.tx-driver-actions{display:flex;gap:8px;flex-wrap:wrap}
.tx-driver-actions a{padding:11px 14px;border-radius:12px;background:rgba(11,60,151,.08);font-weight:800;color:var(--tx-blue-900)}
.tx-driver-card.tx-alert .tx-driver-actions a{background:var(--tx-red);color:#fff}
.tx-dash-bottom-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;margin-top:24px}
.tx-kpi-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.tx-kpi-mini-grid div{padding:16px;border-radius:18px;background:#f6f9ff;border:1px solid rgba(11,60,151,.08)}
.tx-kpi-mini-grid strong{display:block;font-size:1.7rem;color:var(--tx-blue-900);margin-bottom:4px}
.tx-kpi-mini-grid span{color:var(--tx-muted);font-weight:600}
.tx-driver-demo-stage{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;align-items:end}
.tx-driver-phone-frame{height:470px;border-radius:38px;background:#0d1738;border:8px solid #07122c;box-shadow:var(--tx-shadow);position:relative;overflow:hidden;padding:18px}
.tx-driver-phone-frame:before{content:'';position:absolute;top:10px;left:50%;transform:translateX(-50%);width:86px;height:18px;background:#07122c;border-radius:0 0 16px 16px}
.tx-driver-phone-frame.featured{transform:translateY(-22px)}
.tx-driver-phone-ui{position:absolute;inset:34px 14px 14px;padding:18px;border-radius:28px;background:linear-gradient(180deg,#0b2f86,#194eaf);color:#fff;display:flex;flex-direction:column;gap:12px}
.tx-driver-app-bar{font-size:.82rem;font-weight:900;letter-spacing:.06em;opacity:.95}
.tx-driver-phone-ui h3{margin:0;font-size:1.45rem;line-height:1.15}
.tx-driver-phone-ui p,.tx-driver-phone-ui span{margin:0;color:#dbe6ff;line-height:1.55}
.tx-driver-input,.tx-driver-stack-btn,.tx-driver-big{padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);font-weight:800}
.tx-driver-phone-ui button,.tx-driver-action-row button{min-height:48px;border:0;border-radius:16px;font-weight:800;padding:0 16px;background:linear-gradient(180deg,var(--tx-yellow),var(--tx-yellow-2));color:#17315f}
.tx-driver-action-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.tx-driver-action-row.two button:last-child{background:#e9f1ff;color:var(--tx-blue-900)}
.tx-driver-action-row .green{background:linear-gradient(180deg,#38c980,#23965b);color:#fff}
.tx-driver-action-row .red{background:linear-gradient(180deg,#ff7b7b,#db3f3f);color:#fff}
.tx-driver-action-row .yellow{background:linear-gradient(180deg,var(--tx-yellow),var(--tx-yellow-2));color:#17315f}
.tx-driver-map-mini{flex:1;min-height:120px;border-radius:20px;background:linear-gradient(rgba(255,255,255,.08),rgba(255,255,255,.08)),url('../images/dashboard-visual.png') center/cover no-repeat}
.tx-driver-stack-btn.light{background:linear-gradient(180deg,#eff5ff,#dbe8ff);color:var(--tx-blue-900)}
.tx-driver-car-preview{height:96px;border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.04)), radial-gradient(circle at 70% 30%, rgba(255,196,0,.45), transparent 30%)}
.tx-module-detail-grid-wide{grid-template-columns:repeat(3,1fr)}
.tx-addon-grid-wide{grid-template-columns:repeat(3,1fr)}
.tx-sales-points{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tx-faq-list{display:grid;gap:18px}
.tx-faq-item{padding:28px;border-radius:22px;background:rgba(255,255,255,.85);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow);transition:.3s ease}
.tx-faq-item:hover{transform:translateY(-8px);box-shadow:var(--tx-shadow-hover)}
.tx-faq-item h3{margin:0 0 12px;font-size:1.15rem;color:var(--tx-blue-900)}
.tx-faq-item p{margin:0;color:var(--tx-muted);line-height:1.75}
.tx-config-grid{display:grid;grid-template-columns:1fr .95fr;gap:24px}
.tx-config-panel,.tx-config-summary,.tx-legal-box{padding:32px;border-radius:28px;background:rgba(255,255,255,.86);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow);backdrop-filter:blur(12px)}
.tx-config-panel h3{margin:0 0 14px;font-size:1.2rem;color:var(--tx-blue-900)}
.tx-config-panel h3:not(:first-child){margin-top:24px}
.tx-config-options{display:flex;flex-wrap:wrap;gap:12px}.tx-config-options.stack{display:grid;grid-template-columns:1fr}
.tx-config-summary h2{margin:14px 0 18px;font-size:2rem;letter-spacing:-.03em}
.tx-config-line,.tx-config-total{display:flex;justify-content:space-between;gap:18px;padding:16px 0;border-bottom:1px solid rgba(11,60,151,.08)}
.tx-config-total{font-size:1.15rem;border-bottom:none;padding-bottom:0;margin-top:8px}
.tx-config-summary p{color:var(--tx-muted);line-height:1.75}
.tx-social-grid{display:grid;grid-template-columns:repeat(6,52px);gap:12px;margin-top:24px}
.tx-social-link{display:flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:16px;background:#fff;border:1px solid rgba(11,60,151,.08);color:var(--tx-blue-900);box-shadow:0 16px 30px rgba(11,60,151,.08);transition:.28s ease}
.tx-social-link svg{width:24px;height:24px}
.tx-social-link:hover{transform:translateY(-6px) scale(1.04);background:linear-gradient(180deg,var(--tx-blue-800),var(--tx-blue-900));color:#fff;box-shadow:0 20px 34px rgba(11,60,151,.22)}
.tx-legal-box h2{margin:0 0 12px;font-size:1.2rem;color:var(--tx-blue-900)}
.tx-legal-box p{margin:0 0 22px;color:var(--tx-muted);line-height:1.85}
.tx-footer-links{list-style:none;padding:0;margin:0}
@media (max-width:1180px){
  .tx-hero-grid-v4,.tx-config-grid{grid-template-columns:1fr}
  .tx-dashboard-shell-v4 .tx-dash-grid,.tx-module-detail-grid-wide,.tx-addon-grid-wide,.tx-sales-points{grid-template-columns:1fr 1fr}
  .tx-driver-demo-stage{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:980px){
  .tx-hero-proof{grid-template-columns:1fr}
  .tx-hero-stage{min-height:640px}
  .tx-hero-stage{min-height:auto}
  .tx-stage-shell{max-width:none}
  .tx-dash-bottom-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .tx-hero-stage{min-height:540px}
  .tx-stage-shell-head,.tx-stage-shell-footer{grid-template-columns:1fr;display:grid}
  .tx-stage-shell-head{justify-content:flex-start}
  .tx-driver-demo-stage,.tx-module-detail-grid-wide,.tx-addon-grid-wide,.tx-sales-points{grid-template-columns:1fr}
  .tx-social-grid{grid-template-columns:repeat(3,52px)}
}


.tx-menu > li{position:relative}
.tx-menu > li > a{display:inline-flex;align-items:center}
.tx-menu .menu-item-has-children > a{gap:8px}
.tx-menu .menu-item-has-children > a:before,
.tx-menu .menu-item-has-children > a:after{bottom:-10px}
.tx-menu .menu-item-has-children > a::before{
  content:'▾';position:static;height:auto;width:auto;background:none;transform:none;border-radius:0;
  font-size:.74rem;color:currentColor;order:2
}
.tx-menu .sub-menu{
  list-style:none;margin:0;padding:14px;position:absolute;top:calc(100% + 18px);left:-14px;min-width:220px;
  background:rgba(255,255,255,.98);border:1px solid rgba(11,60,151,.10);border-radius:20px;box-shadow:var(--tx-shadow);
  opacity:0;visibility:hidden;transform:translateY(8px);transition:.25s ease;display:grid;gap:8px
}
.tx-menu .sub-menu a{display:block;padding:10px 12px;border-radius:12px}
.tx-menu .sub-menu a:hover{background:rgba(11,60,151,.05)}
.tx-menu .sub-menu a:after{display:none}
.tx-menu > li:hover > .sub-menu,
.tx-menu > li:focus-within > .sub-menu{opacity:1;visibility:visible;transform:translateY(0)}

.tx-driver-demo-wrap{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:34px;align-items:center;
}
.tx-driver-demo-copy h2{margin:14px 0 12px;font-size:clamp(2rem,3vw,3rem);letter-spacing:-.04em}
.tx-demo-device-block{display:grid;gap:20px;justify-items:center}
.tx-real-phone{
  position:relative;width:min(100%, 390px);aspect-ratio:9 / 18.8;padding:14px;border-radius:44px;
  background:linear-gradient(160deg,#0d1018 0%, #2a3041 35%, #090b10 100%);
  box-shadow:0 38px 80px rgba(4,18,51,.28), inset 0 2px 1px rgba(255,255,255,.18), inset 0 -2px 8px rgba(0,0,0,.55);
}
.tx-real-phone:before{
  content:'';position:absolute;inset:7px;border-radius:38px;border:1px solid rgba(255,255,255,.08);pointer-events:none
}
.tx-real-phone-screen{
  position:relative;height:100%;border-radius:34px;overflow:hidden;padding:18px 16px 16px;
  background:linear-gradient(180deg,#f6faff 0%, #ecf3ff 100%);
}
.tx-real-phone-notch{
  position:absolute;left:50%;transform:translateX(-50%);top:10px;width:132px;height:28px;border-radius:0 0 18px 18px;
  background:#07090d;z-index:3;box-shadow:0 5px 12px rgba(0,0,0,.35)
}
.tx-phone-statusbar{display:flex;justify-content:space-between;align-items:center;font-size:.78rem;font-weight:800;color:#5b6d92;margin-bottom:16px}
.tx-phone-slide{display:none;animation:fadeDemo .25s ease}
.tx-phone-slide.is-active{display:block}
@keyframes fadeDemo{from{opacity:.1;transform:translateY(8px)}to{opacity:1;transform:none}}
.tx-demo-screen-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.tx-demo-brand{font-size:.78rem;font-weight:900;letter-spacing:.16em;color:var(--tx-blue-900)}
.tx-demo-chip{padding:7px 10px;border-radius:999px;background:rgba(11,60,151,.08);color:var(--tx-blue-900);font-size:.72rem;font-weight:800}
.tx-demo-chip.yellow{background:rgba(255,196,0,.18);color:#8e6500}
.tx-demo-chip.blue{background:rgba(45,119,242,.14);color:#0b3c97}
.tx-demo-chip.red{background:rgba(224,82,82,.12);color:#9b2222}
.tx-phone-slide h3{margin:0 0 8px;font-size:1.6rem;letter-spacing:-.04em}
.tx-phone-slide p{margin:0 0 18px;color:var(--tx-muted);line-height:1.55}
.tx-demo-field,.tx-demo-ride-card,.tx-demo-map-card{background:rgba(255,255,255,.9);border:1px solid rgba(11,60,151,.09);border-radius:22px;box-shadow:0 14px 30px rgba(11,60,151,.08)}
.tx-demo-field{padding:14px 16px;margin-bottom:12px}
.tx-demo-field label{display:block;font-size:.78rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#7a8cad;margin-bottom:6px}
.tx-demo-field strong{font-size:1rem;color:var(--tx-text)}
.tx-demo-cta,.tx-demo-btn{border:none;cursor:pointer;font:inherit;font-weight:800;border-radius:18px;min-height:52px}
.tx-demo-cta{width:100%;margin-top:8px;background:linear-gradient(180deg,var(--tx-yellow) 0%, var(--tx-yellow-2) 100%);color:#17315f;box-shadow:0 18px 28px rgba(255,196,0,.22)}
.tx-demo-cta.alt{background:linear-gradient(180deg,var(--tx-blue-800) 0%, var(--tx-blue-900) 100%);color:#fff;box-shadow:0 18px 28px rgba(11,60,151,.22)}
.tx-demo-ride-card{padding:18px 16px;margin-bottom:14px;display:grid;gap:5px}
.tx-demo-ride-card strong{font-size:1.12rem}
.tx-demo-ride-card span{color:var(--tx-blue-900);font-weight:700}
.tx-demo-ride-card small{color:var(--tx-muted)}
.tx-demo-split-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.tx-demo-btn.accept{background:#17315f;color:#fff}
.tx-demo-btn.decline{background:#fff;border:1px solid rgba(11,60,151,.12);color:var(--tx-blue-900)}
.tx-demo-mini-note{font-size:.84rem;color:#7183a6;text-align:center}
.tx-demo-map-card{position:relative;height:228px;margin-bottom:16px;overflow:hidden;background:
  linear-gradient(135deg, rgba(11,60,151,.05), rgba(45,119,242,.10)),
  linear-gradient(90deg, rgba(255,255,255,.6) 49%, transparent 50%, rgba(255,255,255,.6) 51%) 0 0/58px 58px,
  linear-gradient(rgba(255,255,255,.6) 49%, transparent 50%, rgba(255,255,255,.6) 51%) 0 0/58px 58px,
  #eaf2ff;
}
.tx-demo-map-route{position:absolute;left:16%;top:20%;width:58%;height:42%;border:4px solid #ffd044;border-color:#ffd044 transparent transparent #ffd044;border-radius:140px 0 0 0;transform:rotate(-8deg)}
.tx-demo-map-route:after{content:'';position:absolute;right:-14px;bottom:-10px;width:18px;height:18px;background:#0b3c97;border-radius:50%;box-shadow:0 0 0 6px rgba(11,60,151,.14)}
.tx-demo-map-car{position:absolute;left:26%;bottom:30%;width:54px;height:24px;border-radius:10px;background:linear-gradient(180deg,var(--tx-yellow) 0%, var(--tx-yellow-2) 100%);box-shadow:0 10px 18px rgba(11,60,151,.16)}
.tx-demo-map-car:before,.tx-demo-map-car:after{content:'';position:absolute;bottom:-5px;width:10px;height:10px;background:#16253f;border-radius:50%}
.tx-demo-map-car:before{left:8px}.tx-demo-map-car:after{right:8px}
.tx-demo-stack-actions{display:grid;gap:10px}
.tx-demo-stack-actions span{display:flex;align-items:center;justify-content:center;min-height:48px;background:#fff;border:1px solid rgba(11,60,151,.10);border-radius:16px;font-weight:800;color:var(--tx-blue-900)}
.tx-demo-toggle-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:4px}
.tx-demo-toggle-grid span{display:flex;align-items:center;justify-content:center;min-height:52px;padding:10px;border-radius:16px;background:#fff;border:1px solid rgba(11,60,151,.1);font-weight:700;color:var(--tx-blue-900);text-align:center}
.tx-demo-toggle-grid span.active{background:rgba(255,196,0,.16);border-color:rgba(255,196,0,.35);color:#805d00}
.tx-demo-controls{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;width:min(100%, 520px)}
.tx-demo-meta{text-align:center;min-width:120px}
.tx-demo-meta strong{display:block;color:var(--tx-blue-900)}
.tx-demo-meta span{display:block;color:var(--tx-muted);font-size:.95rem;margin-top:4px}

.tx-login-split-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.tx-login-panel{padding:30px;background:rgba(255,255,255,.82);border:1px solid rgba(11,60,151,.08);border-radius:24px;box-shadow:var(--tx-shadow);backdrop-filter:blur(12px)}
.tx-login-panel h2{margin:16px 0 10px;font-size:1.85rem;letter-spacing:-.03em}
.tx-login-panel p{color:var(--tx-muted);line-height:1.7}
.tx-login-panel-driver{background:linear-gradient(180deg, rgba(11,60,151,.98), rgba(8,31,87,.98));color:#fff}
.tx-login-panel-driver p,.tx-login-panel-driver .tx-login-driver-note span{color:#d7e5ff}
.tx-login-panel-driver .tx-form label{color:#fff}
.tx-login-panel-driver .tx-form input{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.16);color:#fff}
.tx-login-panel-driver .tx-form input::placeholder{color:#c9d9ff}
.tx-login-driver-note{margin-top:18px;padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);display:grid;gap:6px}

@media (max-width: 980px){
  .tx-menu .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:transparent;padding:10px 0 0 12px;min-width:0}
  .tx-driver-demo-wrap,.tx-login-split-grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .tx-demo-controls{flex-direction:column}
  .tx-demo-meta{order:-1}
  .tx-demo-toggle-grid,.tx-demo-split-row{grid-template-columns:1fr}
  .tx-real-phone{width:min(100%, 340px)}
}

.tx-login-error,.tx-login-success,.tx-login-testnote{margin-top:18px;padding:16px 18px;border-radius:18px;display:grid;gap:6px}
.tx-login-error{background:rgba(181,35,24,.08);border:1px solid rgba(181,35,24,.18);color:#8b1e12}
.tx-login-success{background:rgba(19,149,76,.08);border:1px solid rgba(19,149,76,.18);color:#0b6b35}
.tx-login-testnote{background:rgba(255,196,0,.14);border:1px solid rgba(255,196,0,.3);color:#6e5200}
.tx-driver-login-flow{display:grid;gap:12px;margin:24px 0}
.tx-driver-flow-step{display:flex;align-items:center;gap:12px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
.tx-driver-flow-step strong{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(255,196,0,.16);color:#ffd044;font-size:.95rem}
.tx-driver-flow-step span{color:#fff;font-weight:700}

.tx-driver-login-flow-compact{margin-bottom:18px}
.tx-driver-login-embed{margin-top:10px;padding:18px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(10px)}
.tx-driver-login-intro{display:grid;gap:4px;margin-bottom:14px}
.tx-driver-login-intro strong{color:#fff;font-size:1rem}
.tx-driver-login-intro span{color:#d7e5ff;font-size:.96rem}
.tx-driver-card-login{margin-top:0!important;padding:0!important;background:transparent!important;border:none!important;box-shadow:none!important}
.tx-login-panel-driver .tx-driver-card-login label,
.tx-login-panel-driver .tx-driver-panel label{color:#fff}
.tx-login-panel-driver .tx-driver-card-login input,
.tx-login-panel-driver .tx-driver-panel input,
.tx-login-panel-driver .tx-driver-panel select,
.tx-login-panel-driver .tx-driver-panel textarea{background:rgba(255,255,255,.96);color:#10203d;border-color:rgba(255,255,255,.28)}
.tx-login-panel-driver .tx-driver-card-login button,
.tx-login-panel-driver .tx-driver-panel button{border-radius:16px}
.tx-login-panel-driver #tx-login-context .tx-driver-panel,
.tx-login-panel-driver #tx-login-context .tx-credentials-box,
.tx-login-panel-driver #tx-login-context .tx-driver-card{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.14);box-shadow:none}
.tx-login-panel-driver #tx-login-context .tx-mini-info{background:rgba(255,255,255,.92);color:#17356e}
.tx-login-panel-driver #tx-login-context .tx-driver-success{background:rgba(87,208,132,.18);color:#ebfff2}
.tx-login-panel-driver #tx-login-context .tx-driver-error{background:rgba(255,106,106,.18);color:#fff1f1}


.tx-plate-login-grid{display:grid;grid-template-columns:1.1fr 1fr .95fr;gap:12px;margin:10px 0 14px}
.tx-plate-field{display:grid;gap:8px}
.tx-plate-field span{font-size:.78rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#d7e5ff}
.tx-plate-field input{text-align:center;font-size:1.02rem;font-weight:800;letter-spacing:.08em;border-radius:18px;min-height:58px}
.tx-plate-field-city input{letter-spacing:.12em}
.tx-plate-field-letters input{letter-spacing:.18em}
.tx-plate-field-numbers input{letter-spacing:.10em}
.tx-login-panel-driver #tx-login-context .tx-driver-panel select,
.tx-login-panel-driver #tx-login-context .tx-driver-panel input,
.tx-login-panel-driver #tx-login-context .tx-driver-panel textarea,
.tx-login-panel-driver .tx-driver-card-login input{appearance:none;-webkit-appearance:none;width:100%;padding:14px 16px;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(241,247,255,.98));box-shadow:inset 0 1px 0 rgba(255,255,255,.75),0 10px 22px rgba(5,20,55,.08);transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease}
.tx-login-panel-driver #tx-login-context .tx-driver-panel select:focus,
.tx-login-panel-driver #tx-login-context .tx-driver-panel input:focus,
.tx-login-panel-driver #tx-login-context .tx-driver-panel textarea:focus,
.tx-login-panel-driver .tx-driver-card-login input:focus{outline:none;border-color:rgba(255,196,0,.9);box-shadow:0 0 0 4px rgba(255,196,0,.16),0 14px 30px rgba(5,20,55,.14);transform:translateY(-1px)}
.tx-login-panel-driver #tx-login-context .tx-driver-panel select{font-weight:800;background-image:linear-gradient(45deg,transparent 50%, #17356e 50%),linear-gradient(135deg,#17356e 50%, transparent 50%);background-position:calc(100% - 22px) calc(50% - 3px),calc(100% - 16px) calc(50% - 3px);background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:42px}
@media (max-width: 720px){
  .tx-plate-login-grid{grid-template-columns:1fr}
}


.tx-premium-select-wrap{position:relative;margin:8px 0 4px}
.tx-premium-select-badge{position:absolute;left:16px;top:-10px;display:inline-flex;align-items:center;gap:6px;padding:5px 10px;border-radius:999px;background:linear-gradient(180deg,#fff7c8,#ffd64e);box-shadow:0 8px 18px rgba(255,196,0,.22);color:#17315f;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;z-index:2}
.tx-premium-select-wrap:before{content:'👤';position:absolute;left:18px;top:50%;transform:translateY(-50%);font-size:1rem;z-index:1;pointer-events:none;filter:saturate(.9)}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium{padding-left:46px;padding-top:19px;padding-bottom:15px;border-radius:20px;background-image:linear-gradient(180deg,rgba(255,255,255,.99),rgba(241,247,255,.99)),linear-gradient(45deg,transparent 50%, #17356e 50%),linear-gradient(135deg,#17356e 50%, transparent 50%);background-position:0 0,calc(100% - 22px) calc(50% - 3px),calc(100% - 16px) calc(50% - 3px);background-size:100% 100%,6px 6px,6px 6px;background-repeat:no-repeat;box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 14px 28px rgba(5,20,55,.10)}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium:focus{box-shadow:0 0 0 4px rgba(255,196,0,.16),0 16px 32px rgba(5,20,55,.14)}
.tx-plate-field input{text-transform:uppercase}
.tx-plate-field-city input,.tx-plate-field-letters input{font-size:1.08rem}
.tx-plate-field-numbers input{font-size:1.08rem}


.tx-login-action-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:18px}
.tx-login-action-row .tx-btn{margin:0}
.tx-login-success-rich{padding:18px 20px;background:linear-gradient(180deg,rgba(19,149,76,.10),rgba(10,110,56,.08));box-shadow:0 12px 30px rgba(5,20,55,.08)}

.tx-plate-shell{display:grid;grid-template-columns:62px 1fr;align-items:stretch;gap:0;margin:10px 0 14px;border-radius:20px;overflow:hidden;background:linear-gradient(180deg,#ffffff,#eef4ff);border:1px solid rgba(255,255,255,.35);box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 18px 32px rgba(5,20,55,.12)}
.tx-plate-eu-badge{display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#1758d4,#0a43b9);color:#fff;font-weight:900;letter-spacing:.12em;position:relative}
.tx-plate-eu-badge:before{content:'★';position:absolute;top:12px;left:50%;transform:translateX(-50%);font-size:.7rem;opacity:.9}
.tx-plate-eu-badge:after{content:'★';position:absolute;bottom:12px;left:50%;transform:translateX(-50%);font-size:.7rem;opacity:.9}
.tx-plate-login-grid{display:grid;grid-template-columns:minmax(78px,.9fr) 12px minmax(74px,.8fr) 12px minmax(84px,1fr);align-items:center;gap:0;margin:0;padding:0 14px;background:linear-gradient(180deg,#ffffff,#f4f8ff)}
.tx-plate-field{display:block;min-width:0}
.tx-plate-field input{border:none!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;min-height:64px;text-align:center;font-size:1.18rem;font-weight:900;color:#10203d;padding:0 6px!important;letter-spacing:.12em}
.tx-plate-field input:focus{transform:none!important;box-shadow:none!important}
.tx-plate-separator{display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:900;color:#17356e;opacity:.42}
.tx-plate-field-city input{letter-spacing:.16em}
.tx-plate-field-letters input{letter-spacing:.22em}
.tx-plate-field-numbers input{letter-spacing:.14em}

.tx-login-panel-driver #tx-login-context .tx-driver-panel,.tx-login-panel-driver #tx-login-context .tx-credentials-box,.tx-login-panel-driver #tx-login-context .tx-driver-card{background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.08));border:1px solid rgba(255,255,255,.16);box-shadow:0 18px 36px rgba(5,20,55,.12)}
.tx-login-panel-driver #tx-login-context .tx-driver-panel-premium{padding:18px;border-radius:22px}
.tx-login-panel-driver #tx-login-context .tx-driver-panel label{display:block;margin:16px 0 8px;color:#fff;font-size:.92rem;font-weight:800;letter-spacing:.01em}
.tx-login-panel-driver #tx-login-context .tx-driver-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:8px}
.tx-login-panel-driver #tx-login-context .tx-mini-info{border-radius:18px;padding:14px 15px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.96));color:#17356e;box-shadow:0 10px 24px rgba(5,20,55,.08)}
.tx-login-panel-driver #tx-login-context .tx-driver-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.tx-login-panel-driver #tx-login-context .tx-driver-actions button{width:100%}
.tx-login-panel-driver #tx-login-context .tx-driver-success,.tx-login-panel-driver #tx-login-context .tx-driver-error{margin-top:14px;padding:14px 16px;border-radius:18px;font-weight:700}
.tx-login-panel-driver #tx-login-context .tx-driver-success:first-child,.tx-login-panel-driver #tx-login-context .tx-driver-error:first-child{margin-top:0;margin-bottom:14px}
.tx-login-panel-driver #tx-login-context .tx-driver-panel select,.tx-login-panel-driver #tx-login-context .tx-driver-panel input,.tx-login-panel-driver #tx-login-context .tx-driver-panel textarea{font-size:1rem}
.tx-premium-select-wrap{margin:10px 0 6px}
.tx-premium-select-wrap:before{content:'👤';position:absolute;left:18px;top:50%;transform:translateY(-50%);font-size:1rem;z-index:1;pointer-events:none;filter:none}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium{padding-left:48px;padding-top:20px;padding-bottom:16px;border-radius:20px;border:1px solid rgba(255,255,255,.24);font-weight:800;color:#10203d}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium option{color:#10203d;background:#fff}

@media (max-width: 720px){
  .tx-login-action-row{grid-template-columns:1fr}
  .tx-plate-shell{grid-template-columns:54px 1fr}
  .tx-plate-login-grid{grid-template-columns:minmax(56px,.85fr) 10px minmax(52px,.7fr) 10px minmax(70px,.9fr);padding:0 8px}
  .tx-plate-field input{min-height:58px;font-size:1rem;padding:0 2px!important}
  .tx-login-panel-driver #tx-login-context .tx-driver-meta,.tx-login-panel-driver #tx-login-context .tx-driver-actions{grid-template-columns:1fr}
}


/* Theme login polish v4.1.7 */
.tx-plate-shell-login{position:relative;overflow:hidden;padding:14px 16px 14px 74px;border-radius:18px;background:linear-gradient(180deg,#ffffff 0%,#f3f7ff 100%);border:1px solid rgba(23,49,95,.12);box-shadow:0 16px 34px rgba(5,20,55,.12), inset 0 1px 0 rgba(255,255,255,.92)}
.tx-plate-shell-login:before{content:'';position:absolute;left:0;top:0;bottom:0;width:56px;background:linear-gradient(180deg,#1c4fb6 0%,#11367e 100%)}
.tx-plate-shell-login:after{content:'D';position:absolute;left:22px;top:50%;transform:translateY(-50%);font-weight:900;font-size:1rem;color:#fff;letter-spacing:.08em}
.tx-plate-shell-login .tx-plate-eu-badge{display:none}
.tx-plate-login-grid{display:grid;grid-template-columns:minmax(52px,.8fr) auto minmax(56px,.8fr) auto minmax(72px,1fr);align-items:center;gap:10px}
.tx-plate-field{position:relative}
.tx-plate-field input{height:54px;border-radius:14px;border:1px solid rgba(20,49,95,.14);background:rgba(255,255,255,.92);box-shadow:inset 0 1px 0 rgba(255,255,255,.85);text-align:center;font-size:1.05rem;font-weight:900;letter-spacing:.08em;color:#10203d}
.tx-plate-field input::placeholder{color:#7586a8;opacity:1}
.tx-plate-field input:focus{border-color:rgba(255,196,0,.95);box-shadow:0 0 0 4px rgba(255,196,0,.18),0 10px 20px rgba(5,20,55,.08);outline:none}
.tx-plate-separator{font-size:1.3rem;font-weight:900;color:#133d8d;opacity:.75}
.tx-login-panel-driver #tx-login-context .tx-driver-panel label[for="tx_driver_id"]{display:block;margin:0 0 8px;color:#dbe8ff;font-weight:800;letter-spacing:.01em}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap{position:relative;margin:10px 0 6px}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap:before{content:'👤';position:absolute;left:18px;top:50%;transform:translateY(-50%);font-size:1rem;z-index:2;pointer-events:none}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium,
.tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id{appearance:none;-webkit-appearance:none;-moz-appearance:none;width:100%;min-height:60px;padding:18px 48px 18px 48px;border-radius:18px;border:1px solid rgba(20,49,95,.14);background-image:linear-gradient(180deg,#ffffff 0%,#f3f7ff 100%),linear-gradient(45deg,transparent 50%, #17356e 50%),linear-gradient(135deg,#17356e 50%, transparent 50%);background-position:0 0,calc(100% - 22px) calc(50% - 4px),calc(100% - 16px) calc(50% - 4px);background-size:100% 100%,6px 6px,6px 6px;background-repeat:no-repeat;box-shadow:0 14px 28px rgba(5,20,55,.10), inset 0 1px 0 rgba(255,255,255,.92);font-size:1rem;font-weight:800;color:#10203d}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium:focus,
.tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id:focus{border-color:rgba(255,196,0,.95);box-shadow:0 0 0 4px rgba(255,196,0,.18),0 16px 32px rgba(5,20,55,.14);outline:none}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium option,
.tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id option{color:#10203d;background:#fff}
@media (max-width: 640px){
  .tx-plate-shell-login{padding:14px 14px 14px 66px}
  .tx-plate-login-grid{grid-template-columns:1fr auto 1fr auto 1.2fr;gap:8px}
  .tx-plate-field input{height:50px;font-size:.98rem}
}


/* v4.1.8 driver login polish */
.tx-driver-card-login{width:100%;margin:0 0 14px}
.tx-driver-card-login .tx-plate-shell-login{width:100%;max-width:100%;margin:0;border-radius:22px;padding:16px 18px 16px 82px;background:linear-gradient(180deg,#fffdf8 0%,#f7fbff 100%);border:1px solid rgba(19,61,141,.14);box-shadow:0 18px 36px rgba(5,20,55,.12), inset 0 1px 0 rgba(255,255,255,.96);position:relative;overflow:hidden}
.tx-driver-card-login .tx-plate-shell-login:before{content:"";position:absolute;left:0;top:0;bottom:0;width:64px;background:linear-gradient(180deg,#1b56c8 0%,#123a89 100%)}
.tx-driver-card-login .tx-plate-shell-login:after{content:"D";position:absolute;left:24px;top:50%;transform:translateY(-50%);font-weight:900;font-size:1.05rem;color:#fff;letter-spacing:.08em}
.tx-driver-card-login .tx-plate-login-grid{grid-template-columns:minmax(96px,1.1fr) auto minmax(120px,1.25fr) auto minmax(156px,1.4fr);gap:14px;padding:0;min-width:0}
.tx-driver-card-login .tx-plate-field input{width:100%;height:62px;border-radius:16px;border:1px solid rgba(17,54,126,.12);background:rgba(255,255,255,.96);box-shadow:inset 0 1px 0 rgba(255,255,255,.96);text-align:center;font-size:1.12rem;font-weight:900;color:#10203d;padding:0 12px!important}
.tx-driver-card-login .tx-plate-field-city input{letter-spacing:.14em}
.tx-driver-card-login .tx-plate-field-letters input{letter-spacing:.18em}
.tx-driver-card-login .tx-plate-field-numbers input{letter-spacing:.12em}
.tx-driver-card-login .tx-plate-separator{font-size:1.5rem;font-weight:900;color:#11367e;opacity:.72}
.tx-driver-card-login > button[type="submit"]{display:block;width:100%;margin-top:14px;min-height:56px;border-radius:18px}
.tx-driver-card-login .tx-plate-field input::placeholder{color:#7b8dac;opacity:1}

.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap,
.tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id{width:100%}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap select.tx-driver-select-premium,
.tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id{min-height:62px;padding:20px 52px 18px 52px;border-radius:18px;border:1px solid rgba(17,54,126,.14);background-image:linear-gradient(180deg,#fffefb 0%,#f3f8ff 100%),linear-gradient(45deg,transparent 50%, #17356e 50%),linear-gradient(135deg,#17356e 50%, transparent 50%);background-position:0 0,calc(100% - 22px) calc(50% - 4px),calc(100% - 16px) calc(50% - 4px);background-size:100% 100%,6px 6px,6px 6px;background-repeat:no-repeat;box-shadow:0 14px 28px rgba(5,20,55,.10), inset 0 1px 0 rgba(255,255,255,.95);font-size:1rem;font-weight:800;color:#10203d}
.tx-login-panel-driver #tx-login-context .tx-driver-panel .tx-premium-select-wrap:before{left:18px;z-index:2}
.tx-premium-select-badge{background:linear-gradient(180deg,#fff6bf,#ffd54c)}

@media (max-width: 640px){
  .tx-driver-card-login .tx-plate-shell-login{padding:14px 14px 14px 70px}
  .tx-driver-card-login .tx-plate-shell-login:before{width:54px}
  .tx-driver-card-login .tx-plate-shell-login:after{left:19px}
  .tx-driver-card-login .tx-plate-login-grid{grid-template-columns:minmax(58px,.9fr) auto minmax(70px,1fr) auto minmax(90px,1.15fr);gap:8px}
  .tx-driver-card-login .tx-plate-field input{height:54px;font-size:.98rem;padding:0 8px!important}
}


/* v4.1.9 login polish */
.tx-driver-card-login{display:grid!important;grid-template-columns:1fr!important;align-items:start;gap:14px;width:100%}
.tx-driver-card-login .tx-plate-shell-login{display:block;width:100%;max-width:100%;margin:0;overflow:visible;padding:16px 18px 16px 82px}
.tx-driver-card-login .tx-plate-login-grid{display:grid;grid-template-columns:minmax(112px,1.05fr) auto minmax(132px,1.2fr) auto minmax(178px,1.45fr);gap:14px;align-items:center;width:100%;min-width:0}
.tx-driver-card-login .tx-plate-field{min-width:0}
.tx-driver-card-login .tx-plate-field input{display:block;width:100%;min-width:0;height:64px;padding:0 14px!important;font-size:1.1rem;overflow:visible;text-overflow:clip;white-space:nowrap}
.tx-driver-card-login > button[type="submit"]{display:block!important;width:100%!important;min-width:0;margin:0!important;grid-column:1;justify-self:stretch;align-self:start;clear:both;position:relative}
.tx-driver-login-embed{overflow:visible}

@media (max-width: 980px){
  .tx-header-actions .tx-btn{display:inline-flex;min-height:44px;padding:0 14px;font-size:.9rem}
  .tx-header-actions{gap:8px}
}

@media (max-width: 640px){
  .tx-header-inner{gap:10px}
  .tx-brand img{height:46px}
  .tx-header-actions .tx-btn{display:inline-flex;min-height:42px;padding:0 12px;font-size:.86rem;border-radius:12px}
  .tx-menu-toggle{width:46px;height:46px}
  .tx-driver-card-login .tx-plate-shell-login{padding:14px 14px 14px 68px}
  .tx-driver-card-login .tx-plate-shell-login:before{width:52px}
  .tx-driver-card-login .tx-plate-shell-login:after{left:18px}
  .tx-driver-card-login .tx-plate-login-grid{grid-template-columns:minmax(64px,.9fr) auto minmax(78px,1fr) auto minmax(108px,1.15fr);gap:8px}
  .tx-driver-card-login .tx-plate-field input{height:56px;font-size:1rem;padding:0 8px!important}
}


/* v4.1.10 login refinements */
.tx-driver-card-login{display:block!important;width:100%!important}
.tx-driver-card-login>.tx-btn,.tx-driver-card-login button.tx-btn{display:flex!important;width:100%!important;margin-top:16px!important;clear:both}
.tx-plate-shell-login,.tx-driver-card-login .tx-plate-shell{width:100%;max-width:100%}
.tx-plate-shell{grid-template-columns:68px minmax(0,1fr);padding:4px;border-radius:24px;overflow:hidden;background:#fff;border:1px solid rgba(19,53,110,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 18px 32px rgba(5,20,55,.12)}
.tx-plate-eu-badge{border-radius:18px 0 0 18px;overflow:hidden}
.tx-plate-login-grid{min-height:74px;padding:0 18px 0 14px;background:linear-gradient(180deg,#fff,#f4f8ff);grid-template-columns:minmax(96px,1fr) 16px minmax(88px,.9fr) 16px minmax(132px,1.2fr)}
.tx-plate-field{width:100%;min-width:0}
.tx-plate-field input{width:100%;min-width:0;padding:0 10px!important;font-size:1.12rem;white-space:nowrap;overflow:visible;text-overflow:clip}
.tx-plate-field-city input{letter-spacing:.10em}
.tx-plate-field-letters input{letter-spacing:.14em}
.tx-plate-field-numbers input{letter-spacing:.08em}
.tx-plate-separator{font-size:1.2rem;opacity:.5}
#tx-driver-logout-row[hidden]{display:none!important}

@media (max-width: 720px){
  .tx-plate-shell{grid-template-columns:60px minmax(0,1fr)}
  .tx-plate-login-grid{padding:0 12px 0 10px;grid-template-columns:minmax(72px,.9fr) 10px minmax(62px,.8fr) 10px minmax(92px,1fr);min-height:66px}
  .tx-plate-field input{font-size:1rem;padding:0 6px!important}
}


/* v4.1.11 active shift helper */
.tx-active-shift-actions{margin-top:14px}
.tx-active-shift-head{display:grid;gap:4px;margin-bottom:12px}
.tx-active-shift-head strong{color:#fff;font-size:1rem}
.tx-active-shift-head span{color:#d7e5ff;font-size:.94rem;line-height:1.5}
.tx-login-panel-driver #tx-login-context .tx-active-shift-actions input{margin-top:2px}
.tx-driver-actions-standalone{margin-top:14px}
.tx-driver-actions-standalone .tx-btn{display:flex;align-items:center;justify-content:center;min-height:56px;text-align:center}
.tx-driver-success-soft{background:rgba(80,170,255,.18)!important;color:#eef6ff!important}
#tx-active-shift-theme-note{margin-top:12px}
@media (max-width: 720px){
  .tx-driver-actions-standalone{grid-template-columns:1fr}
}


/* v4.1.12 unified header on login page */
.tx-login-page .tx-header,
.tx-login-page .tx-header.is-scrolled{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(12,42,111,.08);
  box-shadow:none;
}
.tx-login-page .tx-header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:space-between;
}
.tx-login-page .tx-nav{margin-left:auto}
.tx-login-page .tx-menu{display:flex;align-items:center;list-style:none;gap:28px;margin:0;padding:0}
.tx-login-page .tx-menu a{
  display:inline-flex;
  align-items:center;
  font-size:.98rem;
  font-weight:700;
  color:#27467b;
  background:transparent!important;
  border:none!important;
  box-shadow:none!important;
  padding:0!important;
  min-height:0!important;
  border-radius:0!important;
  position:relative;
}
.tx-login-page .tx-menu a:after{
  content:'';position:absolute;left:0;bottom:-10px;width:100%;height:3px;
  background:linear-gradient(90deg,var(--tx-blue-800),var(--tx-yellow));
  transform:scaleX(0);transform-origin:left;transition:transform .28s ease;border-radius:999px;
}
.tx-login-page .tx-menu a:hover{color:var(--tx-blue-900)}
.tx-login-page .tx-menu a:hover:after{transform:scaleX(1)}
.tx-login-page .tx-header-actions{display:flex;align-items:center;gap:10px}
.tx-login-page .tx-header-actions .tx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
}
@media (max-width:980px){
  .tx-login-page .tx-header-actions .tx-btn{display:inline-flex}
}
@media (max-width:640px){
  .tx-login-page .tx-brand img{height:46px}
  .tx-login-page .tx-header-actions{gap:8px}
  .tx-login-page .tx-header-actions .tx-btn{min-height:42px;padding:0 12px;font-size:.86rem;border-radius:12px}
}

/* ===== Pricing upgrade v4.1.13 ===== */
.tx-page-hero-pricing{padding-bottom:18px}
.tx-pricing-hero-bar{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:30px}
.tx-pricing-hero-item{padding:20px 22px;border-radius:22px;background:rgba(255,255,255,.82);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-pricing-hero-item strong{display:block;font-size:1rem;color:var(--tx-blue-900);margin-bottom:6px}
.tx-pricing-hero-item span{display:block;color:var(--tx-slate-600);line-height:1.65}
.tx-pricing-grid-pro{align-items:stretch}
.tx-price-card-pro{display:flex;flex-direction:column;gap:18px}
.tx-price-card-head h3{margin:0;font-size:1.4rem;line-height:1.2}
.tx-price-copy{margin:0;color:var(--tx-slate-600);line-height:1.75}
.tx-mini-list-tight{gap:10px}
.tx-plan-details{margin-top:auto;border:1px solid rgba(11,60,151,.1);border-radius:18px;background:rgba(244,248,255,.9);overflow:hidden}
.tx-plan-details summary{cursor:pointer;list-style:none;padding:16px 18px;font-weight:800;color:var(--tx-blue-900);display:flex;align-items:center;justify-content:space-between}
.tx-plan-details summary::-webkit-details-marker{display:none}
.tx-plan-details summary::after{content:'+';font-size:1.2rem;line-height:1;transition:transform .2s ease}
.tx-plan-details[open] summary::after{content:'−'}
.tx-plan-details-body{padding:0 18px 18px;display:grid;gap:14px}
.tx-plan-detail-block h4{margin:0 0 10px;font-size:1rem;color:var(--tx-blue-900)}
.tx-plan-detail-block p,.tx-plan-detail-block li{color:var(--tx-slate-600);line-height:1.7}
.tx-plan-detail-block ul{margin:0;padding-left:18px}
.tx-plan-actions{display:grid;gap:10px;margin-top:auto}
.tx-text-link{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;font-weight:700;color:var(--tx-blue-800)}
.tx-text-link:hover{color:var(--tx-blue-900)}
.tx-addon-grid-selectable .tx-addon-card{position:relative}
.tx-addon-grid-selectable .tx-addon-card::after{content:'Optional';position:absolute;top:16px;right:16px;padding:6px 10px;border-radius:999px;background:rgba(255,208,0,.14);color:var(--tx-blue-900);font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.tx-pricing-builder,.tx-configurator-shell,.tx-checkout-shell{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start}
.tx-pricing-builder,.tx-configurator-panel,.tx-configurator-summary,.tx-checkout-main,.tx-checkout-summary{padding:30px;border-radius:28px;background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-pricing-builder-copy h2,.tx-configurator-head h2,.tx-checkout-plan-card h2{margin:10px 0 10px}
.tx-pricing-builder-copy p,.tx-configurator-head p,.tx-config-section p,.tx-checkout-option-card p,.tx-checkout-summary p{color:var(--tx-slate-600);line-height:1.8}
.tx-pricing-builder-actions{display:grid;gap:12px;align-self:center}
.tx-configurator-panel{display:grid;gap:24px}
.tx-config-section h3{margin:0 0 14px}
.tx-config-chip-grid,.tx-config-module-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.tx-config-chip{display:flex;flex-direction:column;gap:6px;padding:18px;border-radius:20px;text-decoration:none;background:rgba(244,248,255,.88);border:1px solid rgba(11,60,151,.08);color:var(--tx-blue-900);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.tx-config-chip span{color:var(--tx-slate-600);line-height:1.5}
.tx-config-chip:hover,.tx-config-chip.active{transform:translateY(-2px);border-color:rgba(22,87,197,.28);box-shadow:0 18px 34px rgba(11,60,151,.08)}
.tx-module-choice{display:flex;align-items:center;gap:12px;padding:16px 18px;border-radius:18px;background:rgba(244,248,255,.88);border:1px solid rgba(11,60,151,.08);font-weight:700;color:var(--tx-blue-900)}
.tx-module-choice input{width:18px;height:18px;accent-color:#1657c5}
.tx-module-choice small{display:block;font-size:.84rem;color:var(--tx-slate-600);font-weight:600}
.tx-hero-actions-stack{display:grid;gap:12px}
.tx-checkout-main{display:grid;gap:22px}
.tx-checkout-plan-card,.tx-checkout-option-card{padding:0}
.tx-checkout-option-card h3{margin-top:0}
.tx-checkout-addon-list{display:grid;gap:12px;margin:16px 0 14px}
.tx-checkout-addon-list label{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:15px 16px;border-radius:18px;background:rgba(244,248,255,.88);border:1px solid rgba(11,60,151,.08);font-weight:700;color:var(--tx-blue-900)}
.tx-checkout-addon-list input{accent-color:#1657c5}
.tx-checkout-addon-list span{color:var(--tx-slate-600);font-weight:700}
@media (max-width: 1100px){
  .tx-pricing-hero-bar,.tx-config-chip-grid,.tx-config-module-grid{grid-template-columns:1fr 1fr}
  .tx-pricing-builder,.tx-configurator-shell,.tx-checkout-shell{grid-template-columns:1fr}
}
@media (max-width: 767px){
  .tx-pricing-hero-bar,.tx-config-chip-grid,.tx-config-module-grid{grid-template-columns:1fr}
  .tx-pricing-hero-item,.tx-pricing-builder,.tx-configurator-panel,.tx-configurator-summary,.tx-checkout-main,.tx-checkout-summary{padding:22px}
  .tx-price-card-head h3{font-size:1.22rem}
}

/* ===== Pricing upgrade v4.1.14 ===== */
.tx-pricing-live-shell{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:28px;align-items:start}
.tx-pricing-live-main{min-width:0}
.tx-pricing-live-summary{position:sticky;top:110px;padding:28px;border-radius:28px;background:rgba(255,255,255,.92);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-section-heading-left{text-align:left;max-width:none;margin-bottom:24px}
.tx-price-card-pro{position:relative;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.tx-price-card-pro.is-selected{border-color:rgba(22,87,197,.26);box-shadow:0 22px 42px rgba(11,60,151,.1)}
.tx-price-card-pro.is-selected::before{content:'';position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 1px rgba(255,208,0,.45);pointer-events:none}
.tx-plan-toggle{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;margin-top:2px;padding:12px 14px;border-radius:16px;border:1px solid rgba(11,60,151,.08);background:rgba(244,248,255,.9);font:inherit;font-weight:800;color:var(--tx-blue-900);cursor:pointer;transition:background .2s ease,border-color .2s ease}
.tx-plan-toggle:hover{background:#fff;border-color:rgba(22,87,197,.22)}
.tx-plan-toggle i{position:relative;display:block;width:16px;height:16px;flex:0 0 16px}
.tx-plan-toggle i::before,.tx-plan-toggle i::after{content:'';position:absolute;left:50%;top:50%;width:14px;height:2px;background:currentColor;border-radius:999px;transform:translate(-50%,-50%)}
.tx-plan-toggle i::after{transform:translate(-50%,-50%) rotate(90deg);transition:opacity .18s ease}
.tx-price-card-pro.is-open .tx-plan-toggle i::after{opacity:0}
.tx-plan-expand{margin-top:-6px;padding-top:4px}
.tx-plan-expand[hidden]{display:none}
.tx-plan-details-body{padding:16px 18px 18px;border:1px solid rgba(11,60,151,.08);border-radius:18px;background:rgba(244,248,255,.72)}
.tx-plan-select-link{padding:0;border:0;background:none;cursor:pointer}
.tx-addon-grid-live{gap:18px}
.tx-addon-card-check{display:block;cursor:pointer}
.tx-addon-card-check input{position:absolute;opacity:0;pointer-events:none}
.tx-addon-card-check.is-selected,.tx-module-choice.is-selected,.tx-checkout-addon-list label.is-selected{border-color:rgba(22,87,197,.26);box-shadow:0 18px 34px rgba(11,60,151,.08);transform:translateY(-2px)}
.tx-addon-card-check.is-selected::before,.tx-module-choice.is-selected::before,.tx-checkout-addon-list label.is-selected::before{content:'Aktiv';position:absolute;top:16px;right:16px;padding:6px 10px;border-radius:999px;background:rgba(22,87,197,.12);color:var(--tx-blue-900);font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.tx-addon-grid-selectable .tx-addon-card-check::after{display:none}
.tx-configurator-summary,.tx-checkout-summary{position:sticky;top:110px}
.tx-config-line,.tx-config-total{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}
.tx-config-line span,.tx-config-total span{max-width:56%;text-align:right}
.tx-config-total{margin:18px 0 20px;padding-top:18px;border-top:1px solid rgba(11,60,151,.08);font-size:1.08rem}
.tx-config-chip{appearance:none;text-align:left;cursor:pointer}
.tx-module-choice,.tx-checkout-addon-list label{position:relative;cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.tx-pricing-live-summary h3,.tx-checkout-summary h3{margin:8px 0 18px;font-size:1.5rem}
@media (max-width:1100px){
  .tx-pricing-live-shell{grid-template-columns:1fr}
  .tx-pricing-live-summary,.tx-configurator-summary,.tx-checkout-summary{position:static;top:auto}
}
@media (max-width:767px){
  .tx-pricing-live-summary{padding:22px}
  .tx-config-line,.tx-config-total{flex-direction:column}
  .tx-config-line span,.tx-config-total span{max-width:none;text-align:left}
}


/* ===== Modules detail upgrade v4.1.15 ===== */
.tx-plan-detail-block-inline{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:2px}
.tx-plan-detail-block-inline p{margin:0;flex:1}
.tx-text-link-inline{justify-content:flex-start;white-space:nowrap}
.tx-page-hero-modules{padding-bottom:18px}
.tx-module-overview-bar{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tx-module-overview-item{padding:20px 22px;border-radius:22px;background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-module-overview-item strong{display:block;margin-bottom:6px;color:var(--tx-blue-900)}
.tx-module-overview-item span{display:block;color:var(--tx-slate-600);line-height:1.65}
.tx-module-detail-grid-popups{gap:22px}
.tx-module-popup-card{display:flex;flex-direction:column;gap:16px}
.tx-module-popup-card.is-focused{border-color:rgba(22,87,197,.24);box-shadow:0 22px 42px rgba(11,60,151,.1)}
.tx-module-group{display:inline-flex;align-items:center;margin-top:10px;color:var(--tx-blue-800);font-size:.86rem;font-weight:700}
.tx-module-open{margin-top:auto}
.tx-module-modal[hidden]{display:none}
.tx-module-modal{position:fixed;inset:0;z-index:1200}
.tx-module-modal-backdrop{position:absolute;inset:0;background:rgba(8,18,38,.54);backdrop-filter:blur(8px)}
.tx-module-modal-dialog{position:relative;display:grid;grid-template-columns:minmax(280px,.95fr) minmax(0,1.05fr);gap:0;width:min(1080px,calc(100% - 32px));max-height:calc(100vh - 40px);overflow:auto;margin:20px auto;background:#fff;border-radius:28px;box-shadow:0 28px 80px rgba(5,25,65,.28)}
.tx-module-modal-media{min-height:100%;background:linear-gradient(180deg,rgba(239,246,255,.96),rgba(226,237,255,.9));display:flex;align-items:center;justify-content:center;padding:28px}
.tx-module-modal-media img{max-width:100%;height:auto;display:block;filter:drop-shadow(0 18px 34px rgba(11,60,151,.14))}
.tx-module-modal-content{padding:34px 34px 30px;display:flex;flex-direction:column;gap:18px}
.tx-module-modal-meta{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.tx-module-modal-content h3{margin:0;font-size:2rem;line-height:1.08;letter-spacing:-.03em}
.tx-module-modal-content p{margin:0;color:var(--tx-slate-600);line-height:1.8}
.tx-module-modal-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px}
.tx-module-modal-close{position:absolute;top:18px;right:18px;width:42px;height:42px;border:0;border-radius:999px;background:rgba(255,255,255,.9);color:var(--tx-blue-900);font-size:1.7rem;line-height:1;cursor:pointer;box-shadow:0 12px 24px rgba(11,60,151,.12)}
body.tx-modal-open{overflow:hidden}
@media (max-width:1100px){
  .tx-module-overview-bar{grid-template-columns:1fr}
}
@media (max-width:900px){
  .tx-module-modal-dialog{grid-template-columns:1fr}
  .tx-module-modal-media{padding:22px 22px 0}
  .tx-module-modal-content{padding:24px 22px 24px}
}
@media (max-width:767px){
  .tx-plan-detail-block-inline{align-items:flex-start;flex-direction:column}
  .tx-module-modal-content h3{font-size:1.52rem}
  .tx-module-modal-actions{flex-direction:column}
  .tx-module-modal-actions .tx-btn{width:100%}
}


/* v4.1.16 pricing + modules refinement */
.tx-price-card-pro.featured{
  background:linear-gradient(180deg, rgba(255,245,197,.96) 0%, rgba(255,255,255,.98) 26%, rgba(240,246,255,.98) 100%);
  border:1px solid rgba(242,187,27,.42);
  box-shadow:0 24px 60px rgba(11,60,151,.14), 0 0 0 1px rgba(242,187,27,.15) inset;
  position:relative;
  overflow:hidden;
}
.tx-price-card-pro.featured::before{
  content:'';
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg, rgba(242,187,27,1), rgba(255,214,77,.96), rgba(11,60,151,.75));
}
.tx-price-card-pro.featured .tx-price{
  color:var(--tx-blue-900);
  text-shadow:0 10px 30px rgba(242,187,27,.16);
}
.tx-price-card-pro.featured .tx-plan-tag-featured{
  background:linear-gradient(135deg, #f2bb1b, #ffd84e);
  color:#17346f;
  border:1px solid rgba(242,187,27,.45);
}
.tx-price-card-pro.featured.is-selected{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(11,60,151,.18), 0 0 0 2px rgba(242,187,27,.28) inset;
}
.tx-plan-toggle{margin-top:10px;padding:12px 14px;border-radius:16px;border:1px solid rgba(11,60,151,.08);background:rgba(244,248,255,.82);display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;font-weight:800;color:var(--tx-blue-900)}
.tx-plan-toggle i{width:11px;height:11px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);transition:transform .24s ease;margin-right:2px}
.tx-price-card.is-open .tx-plan-toggle i{transform:rotate(225deg)}
.tx-plan-detail-block-inline{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.tx-text-link-inline{white-space:nowrap}
.tx-pricing-live-summary-wide{position:static;top:auto;padding:30px 32px;margin-bottom:26px;background:linear-gradient(135deg, rgba(11,60,151,.98), rgba(32,91,192,.95));color:#fff;border:0;box-shadow:0 24px 60px rgba(11,60,151,.22)}
.tx-pricing-live-summary-wide .tx-eyebrow{color:rgba(255,255,255,.72)}
.tx-pricing-live-summary-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:20px;align-items:end;margin-bottom:20px}
.tx-pricing-live-summary-head h3{margin:8px 0 8px;font-size:2rem;color:#fff}
.tx-pricing-live-summary-head p{margin:0;color:rgba(229,237,255,.84);line-height:1.75;max-width:760px}
.tx-summary-total-badge{padding:18px 22px;border-radius:22px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(8px);min-width:230px}
.tx-summary-total-badge span{display:block;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.72);margin-bottom:6px}
.tx-summary-total-badge strong{display:block;font-size:1.7rem;line-height:1.1;color:#fff}
.tx-pricing-live-summary-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.tx-config-line-card{padding:18px 20px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}
.tx-config-line-card strong{display:block;font-size:.86rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.72);margin-bottom:8px}
.tx-config-line-card span{display:block;color:#fff;line-height:1.65}
.tx-pricing-live-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:20px}
.tx-pricing-live-main-clean{min-width:0}
.tx-module-category-section{padding-top:0}
.tx-module-category-bar{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.tx-module-category-chip{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;background:rgba(244,248,255,.9);border:1px solid rgba(11,60,151,.08);font-weight:700;color:var(--tx-blue-900)}
.tx-module-category-chip.is-active{background:linear-gradient(135deg, rgba(11,60,151,.98), rgba(32,91,192,.95));border-color:transparent;color:#fff;box-shadow:0 14px 32px rgba(11,60,151,.16)}
.tx-module-popup-card.is-focused{border-color:rgba(242,187,27,.45);box-shadow:0 24px 50px rgba(11,60,151,.15), 0 0 0 1px rgba(242,187,27,.2) inset}
@media (max-width: 980px){
  .tx-pricing-live-summary-head{grid-template-columns:1fr}
  .tx-pricing-live-summary-grid{grid-template-columns:1fr}
  .tx-summary-total-badge{min-width:0}
}


/* v4.1.17 pricing flow + package details */
.tx-price-card-pro.featured{
  background:linear-gradient(180deg, rgba(255,250,232,.98) 0%, rgba(255,247,214,.98) 16%, rgba(255,255,255,.99) 52%, rgba(243,248,255,.99) 100%);
  border:1px solid rgba(242,187,27,.46);
}
.tx-price-card-pro.featured .tx-price,
.tx-price-card-pro.featured h3,
.tx-price-card-pro.featured .tx-package-limit,
.tx-price-card-pro.featured .tx-price-copy,
.tx-price-card-pro.featured .tx-mini-list li{color:var(--tx-blue-900)}
.tx-price-card-pro.featured .tx-price-copy{opacity:.82}
.tx-plan-actions-vertical{display:grid;gap:12px;margin-top:18px}
.tx-plan-detail-link{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:12px 16px;border-radius:16px;
  background:rgba(244,248,255,.82);border:1px solid rgba(11,60,151,.08);
  color:var(--tx-blue-900);font-weight:800;text-decoration:none;transition:.22s ease;
}
.tx-plan-detail-link:hover{transform:translateY(-1px);background:#fff;border-color:rgba(11,60,151,.16)}
.tx-pricing-journey{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr) auto;gap:16px;align-items:center;margin-top:30px}
.tx-pricing-journey-step,.tx-pricing-journey-finish{padding:22px 20px;border-radius:24px;background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow);text-align:center}
.tx-pricing-journey-step strong,.tx-pricing-journey-finish{display:block;font-size:1.02rem;color:var(--tx-blue-900);margin-bottom:8px}
.tx-pricing-journey-step span{display:block;color:var(--tx-slate-600);line-height:1.65}
.tx-pricing-journey-icon{width:42px;height:42px;border-radius:999px;margin:0 auto 14px;display:grid;place-items:center;font-weight:900;background:linear-gradient(135deg, rgba(11,60,151,.98), rgba(32,91,192,.95));color:#fff;box-shadow:0 14px 28px rgba(11,60,151,.18)}
.tx-pricing-journey-arrow{font-size:1.9rem;font-weight:900;color:rgba(11,60,151,.55);text-align:center}
.tx-pricing-journey-finish{background:linear-gradient(135deg, rgba(242,187,27,.98), rgba(255,214,77,.98));color:#17346f;border-color:rgba(242,187,27,.32);min-width:120px}
.tx-back-link{display:inline-flex;align-items:center;gap:8px;margin-bottom:20px;color:var(--tx-blue-900);font-weight:800;text-decoration:none}
.tx-back-link:hover{text-decoration:underline}
.tx-package-detail-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center}
.tx-package-detail-copy h1{margin:14px 0 14px}
.tx-package-detail-copy p{color:var(--tx-slate-600);line-height:1.8;max-width:720px}
.tx-package-detail-visual img{width:100%;display:block;border-radius:28px;box-shadow:var(--tx-shadow)}
.tx-package-meta-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:24px 0}
.tx-package-meta-card,.tx-package-detail-card,.tx-package-module-teaser{padding:28px;border-radius:28px;background:rgba(255,255,255,.86);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-package-meta-card strong{display:block;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--tx-slate-500);margin-bottom:8px}
.tx-package-meta-card span{display:block;font-size:1.1rem;color:var(--tx-blue-900);font-weight:800}
.tx-package-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.tx-package-detail-card h2{margin:8px 0 12px}
.tx-package-module-teaser{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:center}
.tx-package-module-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.tx-package-module-tags span{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;background:rgba(244,248,255,.9);border:1px solid rgba(11,60,151,.08);font-weight:700;color:var(--tx-blue-900)}
.tx-package-module-actions{display:grid;gap:12px}
@media (max-width: 980px){
  .tx-pricing-journey{grid-template-columns:1fr;gap:12px}
  .tx-pricing-journey-arrow{transform:rotate(90deg)}
  .tx-package-detail-layout,.tx-package-detail-grid,.tx-package-module-teaser{grid-template-columns:1fr}
  .tx-package-meta-row{grid-template-columns:1fr}
}


/* v4.1.18 pricing hover + detail routing fix */
.tx-pricing-grid-pro{position:relative;isolation:isolate;overflow:visible;gap:22px}
.tx-pricing-grid-pro .tx-price-card-pro{will-change:transform,filter,opacity;transition:transform .32s ease,box-shadow .32s ease,border-color .32s ease,filter .32s ease,opacity .32s ease}
.tx-pricing-grid-pro:hover .tx-price-card-pro{filter:blur(2px) saturate(.88);opacity:.74;transform:scale(.965)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
.tx-pricing-grid-pro .tx-price-card-pro.is-selected:hover{filter:none;opacity:1;transform:translateY(-16px) scale(1.085);z-index:4;box-shadow:0 38px 80px rgba(11,60,151,.18)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover{transform:translate(34px,-16px) scale(1.085)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover{transform:translateY(-20px) scale(1.105)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translate(-34px,-16px) scale(1.085)}
.tx-price-card-pro.featured:hover{box-shadow:0 40px 85px rgba(11,60,151,.2),0 0 0 2px rgba(242,187,27,.24) inset}
.tx-price-card-pro.featured .tx-price-copy,
.tx-price-card-pro.featured .tx-mini-list li,
.tx-price-card-pro.featured .tx-package-limit,
.tx-price-card-pro.featured h3,
.tx-price-card-pro.featured .tx-price{color:#10316b !important}
.tx-price-card-pro.featured .tx-plan-detail-link{background:rgba(255,255,255,.8);border-color:rgba(242,187,27,.32)}
.tx-plan-detail-link{font-size:.98rem;letter-spacing:-.01em}
.tx-pricing-journey{gap:18px;margin-top:34px}
.tx-pricing-journey-step,.tx-pricing-journey-finish{position:relative;padding:26px 22px;border-radius:26px}
.tx-pricing-journey-step{background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(243,248,255,.9));border-color:rgba(11,60,151,.09)}
.tx-pricing-journey-step::after{content:'';position:absolute;inset:auto 22px 0 22px;height:4px;border-radius:999px;background:linear-gradient(90deg,rgba(11,60,151,.9),rgba(242,187,27,.9));opacity:.12}
.tx-pricing-journey-arrow{display:grid;place-items:center;width:54px;height:54px;border-radius:999px;background:rgba(255,255,255,.88);border:1px solid rgba(11,60,151,.09);box-shadow:0 18px 34px rgba(11,60,151,.08)}
.tx-pricing-journey-finish{display:grid;place-items:center;min-width:150px;padding:28px 22px;background:linear-gradient(135deg, rgba(255,214,77,.98), rgba(242,187,27,.96));box-shadow:0 24px 48px rgba(242,187,27,.22)}
.tx-pricing-journey-finish::before{content:'🏁';display:block;font-size:2rem;line-height:1;margin-bottom:8px}
.tx-pricing-journey-finish span{display:block;font-size:1.08rem;font-weight:900;color:#17346f;letter-spacing:.02em}
.tx-back-link{padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.9);border:1px solid rgba(11,60,151,.08);box-shadow:0 12px 24px rgba(11,60,151,.08)}
@media (max-width:1100px){
  .tx-pricing-grid-pro:hover .tx-price-card-pro{filter:none;opacity:1;transform:none}
  .tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translateY(-8px) scale(1.02)}
}
@media (max-width:980px){
  .tx-pricing-journey-arrow{width:100%;height:52px}
}


/* v4.2 pricing & module store */
.tx-package-positioning{font-size:1.02rem;color:var(--tx-blue-900);font-weight:600;line-height:1.8;margin-top:8px}
.tx-package-detail-grid-v42{grid-template-columns:repeat(3,1fr)}
.tx-package-detail-hero-v42 .tx-package-meta-row{grid-template-columns:repeat(3,1fr)}
.tx-price-card-footnote{margin-top:-4px;padding:12px 14px;border-radius:16px;background:rgba(244,248,255,.86);border:1px solid rgba(11,60,151,.08);font-size:.88rem;color:var(--tx-slate-600);font-weight:700}
.tx-pricing-journey-v42{padding:28px;border-radius:30px;background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(241,247,255,.86));border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-pricing-grid-pro:hover .tx-price-card-pro{filter:blur(2px);opacity:.72;transform:scale(.97)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:hover{filter:none;opacity:1;transform:translateY(-14px) scale(1.05);z-index:4}
.tx-pricing-grid-pro .tx-price-card-pro:nth-child(1):hover{transform:translate(26px,-14px) scale(1.05)}
.tx-pricing-grid-pro .tx-price-card-pro:nth-child(3):hover{transform:translate(-26px,-14px) scale(1.05)}
.tx-pricing-grid-pro .tx-price-card-pro.featured:hover{transform:translateY(-18px) scale(1.08)}
.tx-pricing-compare{border-radius:28px;overflow:hidden;border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-pricing-compare-row{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;background:#fff}
.tx-pricing-compare-row:nth-child(even){background:rgba(244,248,255,.82)}
.tx-pricing-compare-row > div{padding:18px 20px;border-right:1px solid rgba(11,60,151,.06);font-weight:600;color:var(--tx-blue-900)}
.tx-pricing-compare-row > div:last-child{border-right:0}
.tx-pricing-compare-head{background:linear-gradient(135deg, rgba(11,60,151,.98), rgba(28,88,189,.96))}
.tx-pricing-compare-head > div{color:#fff;font-weight:800}
.tx-example-business-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tx-example-business-card{padding:28px;border-radius:26px;background:#fff;border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow);display:flex;flex-direction:column;gap:14px}
.tx-example-business-card p{margin:0;color:var(--tx-slate-600);line-height:1.72}
.tx-example-business-card strong{color:var(--tx-blue-900)}
.tx-example-business-card.is-featured{background:linear-gradient(180deg,rgba(255,251,234,.96),rgba(255,255,255,.98));border-color:rgba(242,187,27,.38);box-shadow:0 26px 54px rgba(11,60,151,.12)}
.tx-pricing-why{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;padding:32px;border-radius:30px;background:linear-gradient(135deg,rgba(8,31,81,.98),rgba(20,70,170,.94));color:#fff;box-shadow:0 26px 58px rgba(11,60,151,.22)}
.tx-pricing-why h2,.tx-pricing-why p{color:#fff}
.tx-pricing-why-points{display:grid;gap:16px}
.tx-pricing-why-points div{padding:20px;border-radius:22px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(8px)}
.tx-pricing-why-points strong{display:block;margin-bottom:6px;font-size:1rem}
.tx-pricing-why-points span{display:block;line-height:1.7;color:rgba(255,255,255,.84)}
.tx-module-store-hero .tx-section-heading{max-width:880px;margin:0 auto}
.tx-module-store-intro{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tx-module-store-intro > div{padding:20px 22px;border-radius:22px;background:rgba(255,255,255,.84);border:1px solid rgba(11,60,151,.08);box-shadow:var(--tx-shadow)}
.tx-module-store-intro strong{display:block;margin-bottom:6px;color:var(--tx-blue-900)}
.tx-module-store-intro span{display:block;color:var(--tx-slate-600);line-height:1.7}
.tx-module-store-grid .tx-module-popup-card[hidden]{display:none}
.tx-module-store-head{display:flex;align-items:flex-start;gap:14px}
.tx-module-store-icon{width:50px;height:50px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;background:linear-gradient(135deg,rgba(255,208,0,.22),rgba(255,244,189,.64));box-shadow:inset 0 0 0 1px rgba(242,187,27,.18)}
.tx-module-store-footer{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap}
.tx-module-store-footer strong{color:var(--tx-blue-900);font-size:1rem}
.tx-module-store-actions{display:flex;gap:10px;flex-wrap:wrap}
.tx-module-category-chip{cursor:pointer}
.tx-vehicle-control{padding:20px 22px;border-radius:22px;background:rgba(244,248,255,.88);border:1px solid rgba(11,60,151,.08)}
.tx-vehicle-control label{display:block;margin-bottom:12px;font-weight:800;color:var(--tx-blue-900)}
.tx-vehicle-control-row{display:flex;align-items:center;gap:16px}
.tx-vehicle-control input[type="range"]{flex:1;accent-color:#1657c5}
.tx-vehicle-badge{min-width:120px;padding:14px 16px;border-radius:18px;background:#fff;border:1px solid rgba(11,60,151,.08);text-align:center;box-shadow:0 14px 28px rgba(11,60,151,.08)}
.tx-vehicle-badge strong{display:block;font-size:1.6rem;line-height:1;color:var(--tx-blue-900)}
.tx-vehicle-badge span{display:block;margin-top:4px;font-size:.85rem;color:var(--tx-slate-600);font-weight:700}
@media (max-width: 1100px){
  .tx-package-detail-grid-v42,.tx-example-business-grid,.tx-module-store-intro{grid-template-columns:1fr}
  .tx-package-detail-hero-v42 .tx-package-meta-row,.tx-pricing-why{grid-template-columns:1fr}
  .tx-pricing-compare-row{grid-template-columns:1.1fr repeat(3,.9fr)}
}
@media (max-width: 980px){
  .tx-pricing-grid-pro:hover .tx-price-card-pro,.tx-pricing-grid-pro:hover .tx-price-card-pro:hover{filter:none;opacity:1;transform:none}
  .tx-pricing-compare{overflow:auto}
  .tx-pricing-compare-row{min-width:760px}
}
@media (max-width: 767px){
  .tx-module-store-actions,.tx-vehicle-control-row{flex-direction:column;align-items:stretch}
  .tx-module-store-footer{align-items:stretch}
  .tx-pricing-why,.tx-pricing-journey-v42{padding:22px}
}


/* v4.2.1 pricing hover cleanup + global dark mode */
.tx-pricing-grid-pro .tx-price-card-pro{filter:none!important}
.tx-pricing-grid-pro:hover .tx-price-card-pro{filter:none!important;opacity:1;transform:scale(.985)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
.tx-pricing-grid-pro .tx-price-card-pro.is-selected:hover{transform:translateY(-16px) scale(1.06);z-index:4;box-shadow:0 38px 80px rgba(11,60,151,.18)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover{transform:translate(28px,-16px) scale(1.06)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover{transform:translateY(-18px) scale(1.08)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translate(-28px,-16px) scale(1.06)}
.tx-price-card-pro.featured,
.tx-price-card-pro.featured .tx-price,
.tx-price-card-pro.featured h3,
.tx-price-card-pro.featured .tx-package-limit,
.tx-price-card-pro.featured .tx-price-copy,
.tx-price-card-pro.featured .tx-mini-list li,
.tx-price-card-pro.featured .tx-plan-detail-link{color:#0b2f86!important}
.tx-price-card-pro.featured .tx-plan-detail-link{background:rgba(255,255,255,.94);border-color:rgba(242,187,27,.4)}
.tx-price-card-pro.featured .tx-mini-list li:before{color:#a56a00}
.tx-theme-toggle{position:relative;display:inline-flex;align-items:center;justify-content:space-between;gap:8px;width:74px;height:44px;padding:0 10px;border-radius:999px;border:1px solid var(--tx-line);background:rgba(255,255,255,.88);box-shadow:0 14px 30px rgba(11,60,151,.08);cursor:pointer;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease}
.tx-theme-toggle:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(11,60,151,.14)}
.tx-theme-toggle-icon{position:relative;z-index:2;font-size:1rem;line-height:1;transition:color .25s ease,opacity .25s ease}
.tx-theme-toggle-sun{color:#d38c00}
.tx-theme-toggle-moon{color:var(--tx-blue-900)}
.tx-theme-toggle-thumb{position:absolute;top:4px;left:4px;width:34px;height:34px;border-radius:999px;background:linear-gradient(180deg,#ffffff,#edf4ff);box-shadow:0 10px 20px rgba(11,60,151,.18);transition:transform .28s ease,background .28s ease}
[data-theme="dark"] .tx-theme-toggle-thumb{transform:translateX(30px);background:linear-gradient(180deg,#18315f,#0b1838)}
[data-theme="dark"] .tx-theme-toggle{background:rgba(10,18,38,.88);border-color:rgba(166,190,255,.18);box-shadow:0 16px 34px rgba(0,0,0,.34)}
[data-theme="dark"] .tx-theme-toggle-sun{color:rgba(255,214,77,.72)}
[data-theme="dark"] .tx-theme-toggle-moon{color:#dfe7ff}

[data-theme="dark"]{
  --tx-bg:#081226;
  --tx-surface:#0f1b35;
  --tx-surface-2:#142441;
  --tx-text:#ebf1ff;
  --tx-muted:#aebddb;
  --tx-line:rgba(164,186,255,.14);
  --tx-shadow:0 30px 80px rgba(0,0,0,.34);
  --tx-shadow-hover:0 38px 90px rgba(0,0,0,.42);
}
[data-theme="dark"] body{
  color:var(--tx-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(45,119,242,.18), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(255,196,0,.10), transparent 20%),
    linear-gradient(180deg,#081226 0%, #0d1931 100%);
}
[data-theme="dark"] .tx-header{background:rgba(8,18,38,.82);border-bottom-color:rgba(164,186,255,.08)}
[data-theme="dark"] .tx-menu a{color:#dce7ff}
[data-theme="dark"] .tx-menu a:hover{color:#fff}
[data-theme="dark"] .tx-menu-toggle{background:rgba(15,27,53,.92);border-color:rgba(164,186,255,.16)}
[data-theme="dark"] .tx-menu-toggle span{background:#eef3ff}
[data-theme="dark"] .tx-btn-outline,[data-theme="dark"] .tx-btn-outline-dark{background:rgba(15,27,53,.88);border-color:rgba(164,186,255,.16);color:#edf3ff}
[data-theme="dark"] .tx-btn-outline:hover,[data-theme="dark"] .tx-btn-outline-dark:hover{background:rgba(22,36,65,.96)}
[data-theme="dark"] .tx-hero{background:radial-gradient(circle at 75% 14%, rgba(255,196,0,.13), transparent 16%),radial-gradient(circle at 12% 0%, rgba(125,180,255,.16), transparent 18%),linear-gradient(180deg, #0a1630 0%, #0c1932 100%)}
[data-theme="dark"] .tx-hero:before{opacity:.18}
[data-theme="dark"] .tx-eyebrow{background:rgba(255,255,255,.05);border-color:rgba(164,186,255,.14);color:#e4ecff}
[data-theme="dark"] .tx-hero-copy p,
[data-theme="dark"] .tx-section-heading p,
[data-theme="dark"] .tx-page-hero p,
[data-theme="dark"] .tx-login-box p,
[data-theme="dark"] .tx-feature-card p,
[data-theme="dark"] .tx-module-card p,
[data-theme="dark"] .tx-spec-item span,
[data-theme="dark"] .tx-price-card p,
[data-theme="dark"] .tx-ui-card p,
[data-theme="dark"] .tx-post-card p,
[data-theme="dark"] .tx-footer-brand p,
[data-theme="dark"] .tx-package-detail-copy p,
[data-theme="dark"] .tx-example-business-card p,
[data-theme="dark"] .tx-module-store-intro span{color:var(--tx-muted)}
[data-theme="dark"] .tx-stat-card,
[data-theme="dark"] .tx-feature-card,
[data-theme="dark"] .tx-module-card,
[data-theme="dark"] .tx-spec-item,
[data-theme="dark"] .tx-price-card,
[data-theme="dark"] .tx-content-card,
[data-theme="dark"] .tx-post-card,
[data-theme="dark"] .tx-ui-card,
[data-theme="dark"] .tx-contact-copy,
[data-theme="dark"] .tx-contact-form-wrap,
[data-theme="dark"] .tx-login-box,
[data-theme="dark"] .tx-pricing-teaser,
[data-theme="dark"] .tx-dashboard-shell,
[data-theme="dark"] .tx-package-meta-card,
[data-theme="dark"] .tx-package-detail-card,
[data-theme="dark"] .tx-package-module-teaser,
[data-theme="dark"] .tx-module-store-intro > div,
[data-theme="dark"] .tx-module-popup-card,
[data-theme="dark"] .tx-example-business-card,
[data-theme="dark"] .tx-config-panel,
[data-theme="dark"] .tx-config-summary,
[data-theme="dark"] .tx-legal-box,
[data-theme="dark"] .tx-pricing-journey-step,
[data-theme="dark"] .tx-pricing-journey-v42,
[data-theme="dark"] .tx-price-card-footnote,
[data-theme="dark"] .tx-back-link,
[data-theme="dark"] .tx-form input,
[data-theme="dark"] .tx-form textarea,
[data-theme="dark"] .tx-form select{background:rgba(15,27,53,.92);border-color:rgba(164,186,255,.14);color:var(--tx-text);box-shadow:var(--tx-shadow)}
[data-theme="dark"] .tx-feature-card:before,
[data-theme="dark"] .tx-module-card:before,
[data-theme="dark"] .tx-spec-item:before,
[data-theme="dark"] .tx-price-card:before,
[data-theme="dark"] .tx-ui-card:before{background:linear-gradient(135deg, rgba(45,119,242,.18), rgba(255,196,0,.08))}
[data-theme="dark"] .tx-section-soft{background:linear-gradient(180deg, rgba(45,119,242,.06), rgba(8,18,38,.08))}
[data-theme="dark"] .tx-section-dark{background:radial-gradient(circle at 10% 10%, rgba(255,196,0,.14), transparent 18%),linear-gradient(180deg,#081226 0%, #0c1730 100%)}
[data-theme="dark"] .tx-badge-row span,
[data-theme="dark"] .tx-package-module-tags span,
[data-theme="dark"] .tx-module-category-chip{background:rgba(255,255,255,.06);border-color:rgba(164,186,255,.14);color:#edf3ff}
[data-theme="dark"] .tx-plan-detail-link,
[data-theme="dark"] .tx-plan-toggle{background:rgba(255,255,255,.06);border-color:rgba(164,186,255,.14);color:#edf3ff}
[data-theme="dark"] .tx-price-card-pro.featured{background:linear-gradient(180deg, rgba(73,55,8,.92) 0%, rgba(31,28,18,.96) 28%, rgba(18,31,56,.98) 100%);border-color:rgba(242,187,27,.36)}
[data-theme="dark"] .tx-price-card-pro.featured .tx-price,
[data-theme="dark"] .tx-price-card-pro.featured h3,
[data-theme="dark"] .tx-price-card-pro.featured .tx-package-limit,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-copy,
[data-theme="dark"] .tx-price-card-pro.featured .tx-mini-list li,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link{color:#fff3c2!important}
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link{background:rgba(255,255,255,.08)}
[data-theme="dark"] .tx-pricing-compare{border-color:rgba(164,186,255,.12)}
[data-theme="dark"] .tx-pricing-compare-row{background:rgba(15,27,53,.96)}
[data-theme="dark"] .tx-pricing-compare-row:nth-child(even){background:rgba(19,36,67,.96)}
[data-theme="dark"] .tx-pricing-compare-head{background:linear-gradient(135deg, rgba(11,60,151,.98), rgba(22,87,197,.96))}
[data-theme="dark"] .tx-package-meta-card span,
[data-theme="dark"] .tx-example-business-card strong,
[data-theme="dark"] .tx-module-store-intro strong,
[data-theme="dark"] .tx-back-link,
[data-theme="dark"] .tx-plan-tag,
[data-theme="dark"] .tx-plan-tag-featured{color:#fff}
[data-theme="dark"] .tx-pricing-why{background:linear-gradient(135deg,rgba(7,17,36,.98),rgba(16,41,88,.96))}
[data-theme="dark"] .tx-pricing-why-points div{background:rgba(255,255,255,.06);border-color:rgba(164,186,255,.14)}
[data-theme="dark"] .tx-footer{background:#081226;color:#eef3ff}
[data-theme="dark"] .tx-footer a{color:#dce7ff}
[data-theme="dark"] .tx-floating-card,
[data-theme="dark"] .tx-hero-proof div,
[data-theme="dark"] .tx-login-panel,
[data-theme="dark"] .tx-driver-login-embed{background:rgba(15,27,53,.9);border-color:rgba(164,186,255,.14)}
[data-theme="dark"] .tx-summary-total-badge,
[data-theme="dark"] .tx-config-line-card{background:rgba(255,255,255,.08);border-color:rgba(164,186,255,.14)}
[data-theme="dark"] .tx-module-modal-backdrop{background:rgba(4,10,24,.72)}
[data-theme="dark"] .tx-module-modal-dialog{background:#0f1b35;color:#eef3ff}
[data-theme="dark"] .tx-module-modal-content p,
[data-theme="dark"] .tx-module-modal-content li{color:#c8d5f4}
[data-theme="dark"] .tx-pricing-grid-pro:hover .tx-price-card-pro{transform:scale(.985)}
[data-theme="dark"] .tx-pricing-grid-pro:hover .tx-price-card-pro:hover{transform:translateY(-14px) scale(1.05)}
[data-theme="dark"] .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover{transform:translate(24px,-14px) scale(1.05)}
[data-theme="dark"] .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translate(-24px,-14px) scale(1.05)}
@media (max-width:1100px){
  .tx-pricing-grid-pro:hover .tx-price-card-pro,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translateY(-8px) scale(1.02)}
}
@media (max-width:767px){
  .tx-theme-toggle{width:66px;height:40px}
  .tx-theme-toggle-thumb{width:30px;height:30px}
  [data-theme="dark"] .tx-theme-toggle-thumb{transform:translateX(26px)}
}


/* v4.2.2 pricing journey cleanup + dark mode contrast pass */
.tx-pricing-journey-compact{grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr)}
.tx-pricing-journey-compact .tx-pricing-journey-step{transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease,background .28s ease}
.tx-pricing-journey-compact .tx-pricing-journey-step:hover{transform:translateY(-6px);box-shadow:0 24px 48px rgba(11,60,151,.14);border-color:rgba(11,60,151,.16);background:linear-gradient(180deg,#ffffff,rgba(246,250,255,.96))}
.tx-pricing-journey-compact .tx-pricing-journey-arrow{display:grid;place-items:center;width:56px;height:56px;border-radius:999px;background:rgba(255,255,255,.92);border:1px solid rgba(11,60,151,.09);box-shadow:0 16px 30px rgba(11,60,151,.08)}
.tx-pricing-journey-compact .tx-pricing-journey-arrow:hover{transform:translateX(3px);box-shadow:0 20px 36px rgba(11,60,151,.1)}

.tx-pricing-grid-pro:hover .tx-price-card-pro{transform:scale(.985)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
.tx-pricing-grid-pro .tx-price-card-pro.is-selected:hover{transform:translateY(-18px) scale(1.06);z-index:4;box-shadow:0 38px 80px rgba(11,60,151,.16)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover{transform:translate(28px,-18px) scale(1.06)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover{transform:translateY(-20px) scale(1.085)}
.tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translate(-28px,-18px) scale(1.06)}

.tx-price-card-pro.featured{background:linear-gradient(180deg,#fff4bf 0%,#fff9e8 18%,#ffffff 55%,#eef5ff 100%);border:1px solid rgba(242,187,27,.5)}
.tx-price-card-pro.featured,
.tx-price-card-pro.featured h3,
.tx-price-card-pro.featured .tx-package-limit,
.tx-price-card-pro.featured .tx-price,
.tx-price-card-pro.featured .tx-price small,
.tx-price-card-pro.featured .tx-price-copy,
.tx-price-card-pro.featured .tx-mini-list li,
.tx-price-card-pro.featured .tx-price-card-footnote,
.tx-price-card-pro.featured .tx-plan-detail-link,
.tx-price-card-pro.featured .tx-text-link,
.tx-price-card-pro.featured .tx-plan-select-link{color:#12336f!important}
.tx-price-card-pro.featured .tx-price-card-footnote{background:rgba(255,255,255,.72);border:1px solid rgba(242,187,27,.28)}
.tx-price-card-pro.featured .tx-btn-outline-dark{background:rgba(255,255,255,.9);border-color:rgba(18,51,111,.14);color:#12336f}
.tx-price-card-pro.featured .tx-btn-outline-dark:hover{background:#fff;color:#0d295d}
.tx-price-card-pro.featured .tx-text-link,
.tx-price-card-pro.featured .tx-plan-select-link{text-decoration-color:rgba(18,51,111,.32)}

[data-theme="dark"] body,
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span,
[data-theme="dark"] label,
[data-theme="dark"] small{color:var(--tx-text)}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] strong,
[data-theme="dark"] .tx-price,
[data-theme="dark"] .tx-price small,
[data-theme="dark"] .tx-package-limit,
[data-theme="dark"] .tx-plan-detail-link,
[data-theme="dark"] .tx-back-link,
[data-theme="dark"] .tx-package-meta-card span,
[data-theme="dark"] .tx-pricing-compare-row > div,
[data-theme="dark"] .tx-package-module-tags span,
[data-theme="dark"] .tx-badge-row span,
[data-theme="dark"] .tx-module-category-chip,
[data-theme="dark"] .tx-price-card-footnote,
[data-theme="dark"] .tx-footer-heading,
[data-theme="dark"] .tx-footer-brand strong,
[data-theme="dark"] .tx-form label,
[data-theme="dark"] .tx-contact-copy strong,
[data-theme="dark"] .tx-module-modal-content h3{color:#eef3ff}
[data-theme="dark"] a{color:#dfe8ff}
[data-theme="dark"] .tx-section-heading p,
[data-theme="dark"] .tx-page-hero p,
[data-theme="dark"] .tx-price-copy,
[data-theme="dark"] .tx-feature-card p,
[data-theme="dark"] .tx-module-card p,
[data-theme="dark"] .tx-content-card p,
[data-theme="dark"] .tx-post-card p,
[data-theme="dark"] .tx-package-detail-copy p,
[data-theme="dark"] .tx-pricing-journey-step span,
[data-theme="dark"] .tx-example-business-card p,
[data-theme="dark"] .tx-login-box p,
[data-theme="dark"] .tx-ui-card p,
[data-theme="dark"] .tx-spec-item span,
[data-theme="dark"] .tx-footer-brand p,
[data-theme="dark"] .tx-module-store-intro span,
[data-theme="dark"] .tx-price-card p{color:#b9c8e8}
[data-theme="dark"] .tx-hero-copy h1,
[data-theme="dark"] .tx-section-heading h2,
[data-theme="dark"] .tx-page-hero h1,
[data-theme="dark"] .tx-page-hero h2{color:#f4f7ff}
[data-theme="dark"] .tx-stat-card,
[data-theme="dark"] .tx-feature-card,
[data-theme="dark"] .tx-module-card,
[data-theme="dark"] .tx-spec-item,
[data-theme="dark"] .tx-price-card,
[data-theme="dark"] .tx-content-card,
[data-theme="dark"] .tx-post-card,
[data-theme="dark"] .tx-ui-card,
[data-theme="dark"] .tx-contact-copy,
[data-theme="dark"] .tx-contact-form-wrap,
[data-theme="dark"] .tx-login-box,
[data-theme="dark"] .tx-pricing-teaser,
[data-theme="dark"] .tx-dashboard-shell,
[data-theme="dark"] .tx-package-meta-card,
[data-theme="dark"] .tx-package-detail-card,
[data-theme="dark"] .tx-package-module-teaser,
[data-theme="dark"] .tx-module-store-intro > div,
[data-theme="dark"] .tx-module-popup-card,
[data-theme="dark"] .tx-example-business-card,
[data-theme="dark"] .tx-config-panel,
[data-theme="dark"] .tx-config-summary,
[data-theme="dark"] .tx-legal-box,
[data-theme="dark"] .tx-pricing-journey-step,
[data-theme="dark"] .tx-pricing-journey-v42,
[data-theme="dark"] .tx-price-card-footnote,
[data-theme="dark"] .tx-form input,
[data-theme="dark"] .tx-form textarea,
[data-theme="dark"] .tx-form select,
[data-theme="dark"] .tx-pricing-compare,
[data-theme="dark"] .tx-pricing-compare-row,
[data-theme="dark"] .tx-pricing-why-points div{background:rgba(15,27,53,.94);border-color:rgba(164,186,255,.15)}
[data-theme="dark"] .tx-pricing-journey-compact .tx-pricing-journey-arrow{background:rgba(15,27,53,.94);border-color:rgba(164,186,255,.14);color:#eef3ff;box-shadow:0 16px 30px rgba(0,0,0,.26)}
[data-theme="dark"] .tx-pricing-journey-compact .tx-pricing-journey-step:hover{background:linear-gradient(180deg,rgba(21,37,68,.98),rgba(15,27,53,.98));box-shadow:0 28px 48px rgba(0,0,0,.3)}
[data-theme="dark"] .tx-price-card-pro.featured{background:linear-gradient(180deg,#5b4510 0%,#2f2a1c 24%,#162542 100%);border-color:rgba(242,187,27,.38)}
[data-theme="dark"] .tx-price-card-pro.featured,
[data-theme="dark"] .tx-price-card-pro.featured h3,
[data-theme="dark"] .tx-price-card-pro.featured .tx-package-limit,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price small,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-copy,
[data-theme="dark"] .tx-price-card-pro.featured .tx-mini-list li,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-card-footnote,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-select-link{color:#fff4cc!important}
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-card-footnote,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link{background:rgba(255,255,255,.07);border-color:rgba(255,214,77,.2)}
[data-theme="dark"] .tx-price-card-pro.featured .tx-mini-list li:before{color:#ffd54d}
[data-theme="dark"] .tx-pricing-compare-head,
[data-theme="dark"] .tx-pricing-compare-head > div{color:#ffffff}
[data-theme="dark"] .tx-btn-primary{box-shadow:0 16px 30px rgba(0,0,0,.26)}

@media (max-width:980px){
  .tx-pricing-journey-compact{grid-template-columns:1fr}
  .tx-pricing-journey-compact .tx-pricing-journey-arrow{width:100%;height:52px}
}
@media (max-width:1100px){
  .tx-pricing-grid-pro:hover .tx-price-card-pro,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(1):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(2):hover,
  .tx-pricing-grid-pro:hover .tx-price-card-pro:nth-child(3):hover{transform:translateY(-8px) scale(1.02)}
}


/* ===== v4.2.3 dark mode audit ===== */
[data-theme="dark"]{
  --tx-bg:#07111f;
  --tx-surface:#0f1c34;
  --tx-surface-2:#152542;
  --tx-text:#eef4ff;
  --tx-muted:#b7c7ea;
  --tx-line:rgba(171,195,255,.15);
  --tx-shadow:0 26px 70px rgba(0,0,0,.34);
  --tx-shadow-hover:0 32px 84px rgba(0,0,0,.42);
}
[data-theme="dark"] html,
[data-theme="dark"] body{color-scheme:dark}
[data-theme="dark"] body{
  background:
    radial-gradient(circle at 12% 0%, rgba(66,120,255,.16), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(255,196,0,.10), transparent 22%),
    linear-gradient(180deg,#07111f 0%, #09152a 52%, #081120 100%);
}
[data-theme="dark"] .tx-header,
[data-theme="dark"] .tx-login-page .tx-header,
[data-theme="dark"] .tx-login-page .tx-header.is-scrolled{
  background:rgba(8,16,31,.84);
  border-bottom-color:rgba(171,195,255,.10);
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}
[data-theme="dark"] .tx-header.is-scrolled{box-shadow:0 18px 44px rgba(0,0,0,.26)}
[data-theme="dark"] .tx-menu a,
[data-theme="dark"] .tx-login-page .tx-menu a{color:#e6eeff}
[data-theme="dark"] .tx-menu .sub-menu{
  background:rgba(11,22,42,.98);
  border-color:rgba(171,195,255,.12);
  box-shadow:0 20px 48px rgba(0,0,0,.34);
}
[data-theme="dark"] .tx-menu .sub-menu a:hover{background:rgba(255,255,255,.06)}
[data-theme="dark"] .tx-btn-outline,
[data-theme="dark"] .tx-btn-outline-dark{
  background:rgba(255,255,255,.04);
  border-color:rgba(171,195,255,.16);
  color:#edf3ff;
}
[data-theme="dark"] .tx-btn-outline:hover,
[data-theme="dark"] .tx-btn-outline-dark:hover{background:rgba(255,255,255,.09)}
[data-theme="dark"] .tx-btn-secondary{box-shadow:0 18px 32px rgba(0,0,0,.3)}
[data-theme="dark"] .tx-hero,
[data-theme="dark"] .tx-page-hero,
[data-theme="dark"] .tx-login-split-section,
[data-theme="dark"] .tx-driver-hero,
[data-theme="dark"] .tx-page-hero-modules,
[data-theme="dark"] .tx-package-detail-hero,
[data-theme="dark"] .tx-package-detail-hero-v42{
  background:
    radial-gradient(circle at 75% 14%, rgba(255,196,0,.10), transparent 18%),
    radial-gradient(circle at 12% 0%, rgba(104,149,255,.16), transparent 20%),
    linear-gradient(180deg, rgba(12,21,40,.96) 0%, rgba(8,17,32,.98) 100%);
}
[data-theme="dark"] .tx-hero:before,
[data-theme="dark"] .tx-page-hero:before{opacity:.10}
[data-theme="dark"] .tx-section-soft{
  background:linear-gradient(180deg, rgba(12,20,38,.82), rgba(9,18,34,.96));
}
[data-theme="dark"] .tx-section,
[data-theme="dark"] .tx-site-main section{color:var(--tx-text)}
[data-theme="dark"] .tx-stat-card,
[data-theme="dark"] .tx-feature-card,
[data-theme="dark"] .tx-module-card,
[data-theme="dark"] .tx-spec-item,
[data-theme="dark"] .tx-price-card,
[data-theme="dark"] .tx-price-card-pro,
[data-theme="dark"] .tx-content-card,
[data-theme="dark"] .tx-post-card,
[data-theme="dark"] .tx-ui-card,
[data-theme="dark"] .tx-contact-copy,
[data-theme="dark"] .tx-contact-form-wrap,
[data-theme="dark"] .tx-login-box,
[data-theme="dark"] .tx-pricing-teaser,
[data-theme="dark"] .tx-dashboard-shell,
[data-theme="dark"] .tx-package-meta-card,
[data-theme="dark"] .tx-package-detail-card,
[data-theme="dark"] .tx-package-module-teaser,
[data-theme="dark"] .tx-module-store-intro > div,
[data-theme="dark"] .tx-module-popup-card,
[data-theme="dark"] .tx-example-business-card,
[data-theme="dark"] .tx-config-panel,
[data-theme="dark"] .tx-config-summary,
[data-theme="dark"] .tx-legal-box,
[data-theme="dark"] .tx-pricing-journey-step,
[data-theme="dark"] .tx-pricing-journey-v42,
[data-theme="dark"] .tx-price-card-footnote,
[data-theme="dark"] .tx-faq-item,
[data-theme="dark"] .tx-social-link,
[data-theme="dark"] .tx-info-card,
[data-theme="dark"] .tx-vehicle-pricing,
[data-theme="dark"] .tx-addon-card,
[data-theme="dark"] .tx-module-detail-card,
[data-theme="dark"] .tx-pricing-compare,
[data-theme="dark"] .tx-pricing-compare-row,
[data-theme="dark"] .tx-pricing-why-points div,
[data-theme="dark"] .tx-configurator-panel,
[data-theme="dark"] .tx-configurator-summary,
[data-theme="dark"] .tx-checkout-plan-card,
[data-theme="dark"] .tx-checkout-option-card,
[data-theme="dark"] .tx-checkout-summary,
[data-theme="dark"] .tx-driver-login-embed,
[data-theme="dark"] .tx-login-panel,
[data-theme="dark"] .tx-floating-card,
[data-theme="dark"] .tx-hero-proof div,
[data-theme="dark"] .tx-summary-total-badge,
[data-theme="dark"] .tx-config-line-card,
[data-theme="dark"] .tx-module-modal-dialog,
[data-theme="dark"] .tx-back-link,
[data-theme="dark"] .tx-form input,
[data-theme="dark"] .tx-form textarea,
[data-theme="dark"] .tx-form select,
[data-theme="dark"] .tx-demo-field,
[data-theme="dark"] .tx-demo-ride-card,
[data-theme="dark"] .tx-demo-map-card,
[data-theme="dark"] .tx-demo-stack-actions span,
[data-theme="dark"] .tx-demo-toggle-grid span,
[data-theme="dark"] .tx-dash-topbar,
[data-theme="dark"] .tx-dash-panel,
[data-theme="dark"] .tx-dash-panel-rich,
[data-theme="dark"] .tx-order-card,
[data-theme="dark"] .tx-driver-card,
[data-theme="dark"] .tx-driver-card-login .tx-plate-shell-login,
[data-theme="dark"] .tx-plate-shell,
[data-theme="dark"] .tx-driver-card-login .tx-plate-field input,
[data-theme="dark"] .tx-premium-select-wrap select.tx-driver-select-premium,
[data-theme="dark"] .tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id,
[data-theme="dark"] .tx-real-phone-screen{
  background:linear-gradient(180deg, rgba(16,28,52,.98), rgba(11,21,40,.98));
  border-color:rgba(171,195,255,.14);
  color:var(--tx-text);
  box-shadow:var(--tx-shadow);
}
[data-theme="dark"] .tx-stat-card strong,
[data-theme="dark"] .tx-feature-card h3,
[data-theme="dark"] .tx-module-card h3,
[data-theme="dark"] .tx-spec-item strong,
[data-theme="dark"] .tx-price-card h3,
[data-theme="dark"] .tx-price-card .tx-price,
[data-theme="dark"] .tx-price-card-pro h3,
[data-theme="dark"] .tx-price-card-pro .tx-price,
[data-theme="dark"] .tx-content-card h3,
[data-theme="dark"] .tx-post-card h2,
[data-theme="dark"] .tx-ui-card h3,
[data-theme="dark"] .tx-page-hero h1,
[data-theme="dark"] .tx-page-hero h2,
[data-theme="dark"] .tx-hero-copy h1,
[data-theme="dark"] .tx-section-heading h2,
[data-theme="dark"] .tx-package-detail-copy h2,
[data-theme="dark"] .tx-package-detail-copy h3,
[data-theme="dark"] .tx-package-meta-card strong,
[data-theme="dark"] .tx-example-business-card strong,
[data-theme="dark"] .tx-module-store-intro strong,
[data-theme="dark"] .tx-faq-item h3,
[data-theme="dark"] .tx-config-summary h2,
[data-theme="dark"] .tx-configurator-head h3,
[data-theme="dark"] .tx-checkout-summary h3,
[data-theme="dark"] .tx-checkout-plan-card h3,
[data-theme="dark"] .tx-dash-history strong,
[data-theme="dark"] .tx-panel-head strong,
[data-theme="dark"] .tx-driver-demo-copy h2,
[data-theme="dark"] .tx-phone-slide h3,
[data-theme="dark"] .tx-demo-ride-card strong,
[data-theme="dark"] .tx-demo-meta strong,
[data-theme="dark"] .tx-demo-brand,
[data-theme="dark"] .tx-active-shift-head strong,
[data-theme="dark"] .tx-footer-brand strong,
[data-theme="dark"] .tx-footer-heading,
[data-theme="dark"] .tx-legal-box h2,
[data-theme="dark"] .tx-form label,
[data-theme="dark"] .tx-contact-copy strong,
[data-theme="dark"] .tx-login-success,
[data-theme="dark"] .tx-login-success-rich,
[data-theme="dark"] .tx-driver-login-intro strong,
[data-theme="dark"] .tx-module-modal-content h3,
[data-theme="dark"] .tx-package-positioning,
[data-theme="dark"] .tx-stage-shell-head strong,
[data-theme="dark"] .tx-stage-mini-card strong,
[data-theme="dark"] .tx-kpi-mini-grid strong,
[data-theme="dark"] .tx-hero-proof strong{
  color:#f4f7ff;
}
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span,
[data-theme="dark"] small,
[data-theme="dark"] label,
[data-theme="dark"] .tx-muted,
[data-theme="dark"] .tx-page-hero p,
[data-theme="dark"] .tx-hero-copy p,
[data-theme="dark"] .tx-section-heading p,
[data-theme="dark"] .tx-feature-card p,
[data-theme="dark"] .tx-module-card p,
[data-theme="dark"] .tx-content-card p,
[data-theme="dark"] .tx-post-card p,
[data-theme="dark"] .tx-package-detail-copy p,
[data-theme="dark"] .tx-pricing-journey-step span,
[data-theme="dark"] .tx-example-business-card p,
[data-theme="dark"] .tx-login-box p,
[data-theme="dark"] .tx-ui-card p,
[data-theme="dark"] .tx-spec-item span,
[data-theme="dark"] .tx-footer-brand p,
[data-theme="dark"] .tx-module-store-intro span,
[data-theme="dark"] .tx-price-card p,
[data-theme="dark"] .tx-faq-item p,
[data-theme="dark"] .tx-config-summary p,
[data-theme="dark"] .tx-legal-box p,
[data-theme="dark"] .tx-package-meta-card span,
[data-theme="dark"] .tx-phone-statusbar,
[data-theme="dark"] .tx-demo-mini-note,
[data-theme="dark"] .tx-login-testnote,
[data-theme="dark"] .tx-login-driver-note,
[data-theme="dark"] .tx-active-shift-head span,
[data-theme="dark"] .tx-footer-bottom,
[data-theme="dark"] .tx-stage-shell-head small,
[data-theme="dark"] .tx-stage-mini-card span,
[data-theme="dark"] .tx-kpi-mini-grid span,
[data-theme="dark"] .tx-hero-proof span,
[data-theme="dark"] .tx-panel-head span,
[data-theme="dark"] .tx-order-card span,
[data-theme="dark"] .tx-driver-card span{color:#b9c8e8}
[data-theme="dark"] .tx-eyebrow,
[data-theme="dark"] .tx-info-kicker,
[data-theme="dark"] .tx-module-badge,
[data-theme="dark"] .tx-plan-tag,
[data-theme="dark"] .tx-plan-tag-featured,
[data-theme="dark"] .tx-badge-row span,
[data-theme="dark"] .tx-package-module-tags span,
[data-theme="dark"] .tx-module-category-chip,
[data-theme="dark"] .tx-demo-chip,
[data-theme="dark"] .tx-demo-chip.blue,
[data-theme="dark"] .tx-stage-status,
[data-theme="dark"] .tx-map-legend,
[data-theme="dark"] .tx-config-chip,
[data-theme="dark"] .tx-vehicle-badge{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(171,195,255,.15);
  color:#edf3ff;
}
[data-theme="dark"] .tx-demo-chip.yellow,
[data-theme="dark"] .tx-demo-toggle-grid span.active,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-tag-featured,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-tag{
  background:rgba(255,196,0,.16);
  border-color:rgba(255,214,77,.24);
  color:#ffe28a;
}
[data-theme="dark"] .tx-demo-chip.red{background:rgba(240,77,77,.14);border-color:rgba(240,77,77,.24);color:#ffb7b7}
[data-theme="dark"] .tx-text-link,
[data-theme="dark"] .tx-inline-link,
[data-theme="dark"] .tx-back-link,
[data-theme="dark"] a{color:#dfe8ff}
[data-theme="dark"] .tx-inline-link:hover,
[data-theme="dark"] .tx-back-link:hover,
[data-theme="dark"] .tx-text-link:hover{color:#ffffff}
[data-theme="dark"] .tx-form input::placeholder,
[data-theme="dark"] .tx-form textarea::placeholder,
[data-theme="dark"] .tx-driver-card-login .tx-plate-field input::placeholder{color:#8ea3cf}
[data-theme="dark"] .tx-form input:focus,
[data-theme="dark"] .tx-form textarea:focus,
[data-theme="dark"] .tx-form select:focus,
[data-theme="dark"] .tx-driver-card-login .tx-plate-field input:focus,
[data-theme="dark"] .tx-login-panel-driver #tx-login-context .tx-driver-panel select#tx_driver_id:focus{
  border-color:rgba(255,196,0,.45);
  box-shadow:0 0 0 4px rgba(255,196,0,.12);
}
[data-theme="dark"] .tx-config-options span,
[data-theme="dark"] .tx-form-chip-row span,
[data-theme="dark"] .tx-demo-btn.decline,
[data-theme="dark"] .tx-driver-action-row button:last-child,
[data-theme="dark"] .tx-driver-stack-btn.light{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(171,195,255,.14);
  color:#edf3ff;
}
[data-theme="dark"] .tx-config-options span.active,
[data-theme="dark"] .tx-form-chip-row span.active{background:linear-gradient(180deg,#204d9d,#14306b);color:#fff}
[data-theme="dark"] .tx-pricing-compare-head,
[data-theme="dark"] .tx-pricing-compare-head > div{color:#fff}
[data-theme="dark"] .tx-pricing-compare-row:nth-child(even){background:rgba(18,32,58,.98)}
[data-theme="dark"] .tx-pricing-compare-row:nth-child(odd){background:rgba(13,24,45,.98)}
[data-theme="dark"] .tx-pricing-journey-compact .tx-pricing-journey-arrow,
[data-theme="dark"] .tx-pricing-journey-arrow{
  background:rgba(255,255,255,.06);
  border-color:rgba(171,195,255,.14);
  color:#eef3ff;
  box-shadow:0 16px 30px rgba(0,0,0,.26);
}
[data-theme="dark"] .tx-pricing-journey-step:hover,
[data-theme="dark"] .tx-pricing-journey-compact .tx-pricing-journey-step:hover{
  background:linear-gradient(180deg,rgba(21,37,68,.98),rgba(15,27,53,.98));
  box-shadow:0 28px 48px rgba(0,0,0,.30);
}
[data-theme="dark"] .tx-price-card-pro.featured{
  background:linear-gradient(180deg,#5a430c 0%, #352f21 26%, #162543 100%);
  border-color:rgba(255,205,82,.34);
}
[data-theme="dark"] .tx-price-card-pro.featured h3,
[data-theme="dark"] .tx-price-card-pro.featured .tx-package-limit,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price small,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-copy,
[data-theme="dark"] .tx-price-card-pro.featured .tx-mini-list li,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link,
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-select-link,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-card-footnote{color:#fff2c4!important}
[data-theme="dark"] .tx-price-card-pro.featured .tx-plan-detail-link,
[data-theme="dark"] .tx-price-card-pro.featured .tx-price-card-footnote{background:rgba(255,255,255,.07);border-color:rgba(255,214,77,.18)}
[data-theme="dark"] .tx-price-card-pro .tx-plan-detail-link,
[data-theme="dark"] .tx-plan-detail-link,
[data-theme="dark"] .tx-back-link{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(171,195,255,.14);
}
[data-theme="dark"] .tx-footer{
  background:linear-gradient(180deg,#071120,#08152b 100%);
  border-top:1px solid rgba(171,195,255,.08);
  color:#eef3ff;
}
[data-theme="dark"] .tx-footer a,
[data-theme="dark"] .tx-footer-links a{color:#dce7ff}
[data-theme="dark"] .tx-footer-links a:hover{color:#ffffff}
[data-theme="dark"] .tx-social-link:hover{background:linear-gradient(180deg,#204d9d,#14306b)}
[data-theme="dark"] .tx-demo-map-card{
  background:
    linear-gradient(135deg, rgba(35,69,134,.22), rgba(45,119,242,.08)),
    linear-gradient(90deg, rgba(255,255,255,.04) 49%, transparent 50%, rgba(255,255,255,.04) 51%) 0 0/58px 58px,
    linear-gradient(rgba(255,255,255,.04) 49%, transparent 50%, rgba(255,255,255,.04) 51%) 0 0/58px 58px,
    #0d1830;
}
[data-theme="dark"] .tx-demo-map-route{border-color:#ffd044 transparent transparent #ffd044}
[data-theme="dark"] .tx-demo-map-route:after{background:#7fb1ff;box-shadow:0 0 0 6px rgba(127,177,255,.12)}
[data-theme="dark"] .tx-demo-map-car{box-shadow:0 10px 18px rgba(0,0,0,.22)}
[data-theme="dark"] .tx-dash-sidebar{background:linear-gradient(180deg,#0b1530,#0d1834)}
[data-theme="dark"] .tx-dash-panel,
[data-theme="dark"] .tx-dash-panel-rich,
[data-theme="dark"] .tx-dash-topbar,
[data-theme="dark"] .tx-order-card,
[data-theme="dark"] .tx-driver-card{border:1px solid rgba(171,195,255,.12)}
[data-theme="dark"] .tx-order-card button{background:#234e9f}
[data-theme="dark"] .tx-order-card button.warn{background:linear-gradient(180deg,var(--tx-yellow),var(--tx-yellow-2));color:#17315f}
[data-theme="dark"] .tx-driver-actions a{background:rgba(255,255,255,.08);color:#eef3ff}
[data-theme="dark"] .tx-driver-card.tx-alert .tx-driver-actions a{background:var(--tx-red);color:#fff}
[data-theme="dark"] .tx-login-error{background:rgba(240,77,77,.12);border-color:rgba(240,77,77,.22);color:#ffc9c9}
[data-theme="dark"] .tx-login-success,
[data-theme="dark"] .tx-login-success-rich,
[data-theme="dark"] .tx-driver-success,
[data-theme="dark"] .tx-driver-success-soft{background:rgba(43,182,115,.12)!important;border-color:rgba(43,182,115,.18)!important;color:#d9ffec!important}
[data-theme="dark"] .tx-demo-cta.alt,
[data-theme="dark"] .tx-demo-btn.accept{background:linear-gradient(180deg,#204d9d,#14306b);color:#fff}
[data-theme="dark"] .tx-package-note,
[data-theme="dark"] .tx-module-store-footer,
[data-theme="dark"] .tx-pricing-why{
  background:linear-gradient(135deg,rgba(7,17,36,.98),rgba(16,41,88,.96));
  border-color:rgba(171,195,255,.14);
}
[data-theme="dark"] .tx-module-modal-backdrop{background:rgba(4,10,24,.78)}
[data-theme="dark"] .tx-module-modal-dialog{background:#0f1b35;color:#eef3ff}
[data-theme="dark"] .tx-module-modal-media{background:linear-gradient(180deg,#132445,#10203a)}
[data-theme="dark"] .tx-module-modal-content p,
[data-theme="dark"] .tx-module-modal-content li{color:#c8d5f4}
[data-theme="dark"] .tx-social-link svg,
[data-theme="dark"] .tx-module-store-icon svg{fill:currentColor}

@media (max-width:980px){
  [data-theme="dark"] .tx-header.menu-open .tx-nav{
    background:rgba(8,16,31,.98);
    border:1px solid rgba(171,195,255,.10);
    box-shadow:0 20px 50px rgba(0,0,0,.34);
  }
}
