/* webtranslationexperts.com — style.css
   Outfit (headings, geometric modern) + Nunito Sans (body, clean)
   Dark charcoal #12131A · Electric indigo #4F46E5 · Off-white #F8F8FC · Amber/gold #F59E0B · Mid gray #8B8D9E
   CSS prefix: wte-
   Nav: CLASSIC HORIZONTAL sticky with animated indicator — different from pill/mega/split
   Hero: CENTERED bento hero — grid of cards around centered headline
   Layout: Dark-tech SaaS-inspired — very different from all previous */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,400&display=swap');

:root {
  --wte-dark:    #12131A;
  --wte-dark2:   #1A1B26;
  --wte-dark3:   #22233A;
  --wte-dark4:   #2E2F4A;
  --wte-indigo:  #4F46E5;
  --wte-indigo2: #4338CA;
  --wte-indigo3: #6366F1;
  --wte-ind-dim: rgba(79,70,229,.12);
  --wte-amber:   #F59E0B;
  --wte-amber2:  #D97706;
  --wte-white:   #F8F8FC;
  --wte-white2:  #EEEEF8;
  --wte-mid:     #8B8D9E;
  --wte-faint:   rgba(248,248,252,.06);
  --wte-faint2:  rgba(248,248,252,.1);
  --wte-faint3:  rgba(248,248,252,.15);
  --wte-line:    rgba(248,248,252,.07);
  --wte-line2:   rgba(248,248,252,.12);
  --wte-ink:     #12131A;

  --ff-head: 'Outfit', system-ui, sans-serif;
  --ff-body: 'Nunito Sans', system-ui, sans-serif;
  --nav-h:   64px;
  --r:       4px;
  --r-md:    8px;
  --r-lg:    12px;
  --r-xl:    18px;
  --r-2xl:   28px;
  --r-3xl:   40px;
  --r-pill:  100px;
  --ease:    cubic-bezier(.16,1,.3,1);
  --dur:     .18s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--wte-dark); color: var(--wte-white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul,ol { list-style: none; }
input,textarea,select { font-family: inherit; font-size: inherit; }
p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1; }

.wte-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--wte-ind-dim); color: var(--wte-indigo3);
  border: 1px solid rgba(99,102,241,.25); border-radius: var(--r-pill);
  font-family: var(--ff-head); font-size: .58rem; font-weight: 600;
  padding: .22rem .85rem; letter-spacing: .12em; text-transform: uppercase;
}
.wte-chip--amber { background: rgba(245,158,11,.1); color: var(--wte-amber); border-color: rgba(245,158,11,.25); }

/* ── Buttons ── */
.wte-btn-indigo {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--wte-indigo); color: #fff;
  font-family: var(--ff-head); font-size: .78rem; font-weight: 700;
  padding: .74rem 1.8rem; border-radius: var(--r-pill);
  border: 2px solid var(--wte-indigo);
  transition: background var(--dur), box-shadow var(--dur);
  white-space: nowrap;
}
.wte-btn-indigo:hover { background: var(--wte-indigo2); box-shadow: 0 8px 28px rgba(79,70,229,.35); }

.wte-btn-amber {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--wte-amber); color: var(--wte-dark);
  font-family: var(--ff-head); font-size: .78rem; font-weight: 700;
  padding: .74rem 1.8rem; border-radius: var(--r-pill);
  border: 2px solid var(--wte-amber);
  transition: background var(--dur), box-shadow var(--dur);
  white-space: nowrap;
}
.wte-btn-amber:hover { background: var(--wte-amber2); box-shadow: 0 8px 28px rgba(245,158,11,.3); }

.wte-btn-ghost {
  display: inline-flex; align-items: center; gap: .35rem;
  background: transparent; color: var(--wte-white);
  font-family: var(--ff-head); font-size: .78rem; font-weight: 700;
  padding: .74rem 1.8rem; border-radius: var(--r-pill);
  border: 2px solid var(--wte-line2);
  transition: border-color var(--dur), background var(--dur);
  white-space: nowrap;
}
.wte-btn-ghost:hover { border-color: var(--wte-faint3); background: var(--wte-faint); }

.wte-link-arrow { color: var(--wte-indigo3); font-family: var(--ff-head); font-size: .78rem; font-weight: 600; display: inline-flex; align-items: center; gap: .2rem; transition: gap var(--dur); }
.wte-link-arrow:hover { gap: .35rem; }

/* ══════════════════════════════════════════════
   CLASSIC HORIZONTAL STICKY NAV with animated indicator
   Dark background, indigo accent, transitions on scroll
   ══════════════════════════════════════════════ */
.wte-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(18,19,26,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--wte-line);
  transition: background var(--dur), box-shadow var(--dur);
}
.wte-nav.wte-scrolled {
  background: rgba(18,19,26,.96);
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
}
.wte-nav-inner {
  max-width: 1360px; margin: 0 auto;
  height: 100%; display: flex; align-items: center;
  padding: 0 clamp(1.5rem,2.5vw,3.5rem);
  gap: 2.5rem;
}
.wte-nav-logo {
  font-family: var(--ff-head); font-size: .96rem; font-weight: 800;
  color: var(--wte-white); letter-spacing: -.01em; white-space: nowrap;
  display: flex; align-items: center; gap: .35rem;
}
.wte-nav-logo-dot {
  width: 8px; height: 8px; background: var(--wte-indigo);
  border-radius: 50%; flex-shrink: 0;
}
.wte-nav-links { display: flex; align-items: center; gap: .05rem; position: relative; }
.wte-nav-lnk {
  font-family: var(--ff-head); font-size: .72rem; font-weight: 600;
  color: var(--wte-mid); padding: .38rem .7rem; border-radius: var(--r);
  transition: color var(--dur); white-space: nowrap; position: relative;
}
.wte-nav-lnk:hover, .wte-nav-lnk.wte-cur { color: var(--wte-white); }
.wte-nav-lnk.wte-cur::after {
  content: ''; position: absolute; bottom: 0; left: .7rem; right: .7rem;
  height: 2px; background: var(--wte-indigo); border-radius: 2px;
}

/* Services dropdown */
.wte-nav-drop { position: relative; }
.wte-nav-drop-btn {
  font-family: var(--ff-head); font-size: .72rem; font-weight: 600;
  color: var(--wte-mid); padding: .38rem .7rem; border-radius: var(--r);
  transition: color var(--dur); white-space: nowrap;
  cursor: pointer; display: flex; align-items: center; gap: .12rem;
  background: none; border: none;
}
.wte-nav-drop-btn::after { content: '▾'; font-size: .46rem; opacity: .4; }
.wte-nav-drop-btn:hover { color: var(--wte-white); }
.wte-nav-drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--wte-dark2); border: 1px solid var(--wte-line2);
  border-radius: var(--r-xl); box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: .5rem; min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur), transform var(--dur);
}
.wte-nav-drop:hover .wte-nav-drop-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.wte-nav-drop-row {
  display: block; padding: .44rem .85rem; border-radius: var(--r-md);
  font-family: var(--ff-head); font-size: .72rem; font-weight: 600; color: var(--wte-mid);
  transition: background var(--dur), color var(--dur);
}
.wte-nav-drop-row:hover { background: var(--wte-faint2); color: var(--wte-white); }
.wte-nav-drop-row small { display: block; font-size: .58rem; color: rgba(248,248,252,.3); font-weight: 400; margin-top: .02rem; font-family: var(--ff-body); }
.wte-nav-end { display: flex; gap: .4rem; margin-left: auto; flex-shrink: 0; }

.wte-burger {
  display: none; flex-direction: column; gap: 4.5px; padding: 5px;
  cursor: pointer; margin-left: auto; background: var(--wte-faint2);
  border-radius: var(--r-md);
}
.wte-burger-bar { width: 20px; height: 1.5px; background: var(--wte-white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.wte-burger.wte-open .wte-burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wte-burger.wte-open .wte-burger-bar:nth-child(2) { opacity: 0; }
.wte-burger.wte-open .wte-burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wte-mob {
  position: fixed; inset: 0; z-index: 99;
  background: var(--wte-dark); padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  opacity: 0; pointer-events: none; transition: opacity var(--dur); overflow-y: auto;
}
.wte-mob.wte-mob-on { opacity: 1; pointer-events: auto; }
.wte-mob-lnk { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 800; color: var(--wte-white); display: block; padding: .28rem 0; border-bottom: 1px solid var(--wte-line); transition: color var(--dur); }
.wte-mob-lnk:hover { color: var(--wte-indigo3); }
.wte-mob-subh { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--wte-mid); margin: .6rem 0 .2rem; }
.wte-mob-sub { font-family: var(--ff-head); font-size: .82rem; font-weight: 600; color: var(--wte-mid); display: block; padding: .15rem 0; transition: color var(--dur); }
.wte-mob-sub:hover { color: var(--wte-indigo3); }

/* ══════════════════════════════════════════════
   CENTERED BENTO HERO — grid of floating cards
   around centered headline
   ══════════════════════════════════════════════ */
.wte-hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(79,70,229,.12) 0%, transparent 70%);
}
/* Grid lines bg */
.wte-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--wte-line) 1px, transparent 1px), linear-gradient(90deg, var(--wte-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.wte-hero-inner {
  max-width: 1360px; margin: 0 auto; width: 100%;
  padding: 5rem clamp(1.5rem,3vw,4rem) 5rem;
  position: relative; z-index: 1;
  text-align: center;
}
.wte-hero-pre {
  display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wte-hero-h1 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 8.5rem);
  line-height: .9; letter-spacing: -.03em;
  color: var(--wte-white); margin: 0 auto 1.2rem;
  max-width: 18ch;
}
.wte-hero-h1 mark { background: none; color: var(--wte-indigo3); }
.wte-hero-h1 span { color: var(--wte-amber); }
.wte-hero-sub {
  font-size: .96rem; color: var(--wte-mid); max-width: 52ch;
  margin: 0 auto 2.2rem; line-height: 1.82;
}
.wte-hero-btns { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 4rem; }

/* Bento stat cards floating below headline */
.wte-bento-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.wte-bento-card {
  background: var(--wte-faint); border: 1px solid var(--wte-line2);
  border-radius: var(--wte-r-xl, var(--r-xl)); padding: 1.2rem 1rem;
  transition: border-color var(--dur), background var(--dur);
  text-align: left;
}
.wte-bento-card:hover { border-color: rgba(99,102,241,.4); background: var(--wte-ind-dim); }
.wte-bento-card:first-child { grid-column: span 2; border-color: rgba(99,102,241,.3); }
.wte-bento-n { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 900; color: var(--wte-white); letter-spacing: -.03em; line-height: 1; }
.wte-bento-l { font-size: .64rem; color: var(--wte-mid); margin-top: .15rem; }
.wte-bento-img { width: 100%; height: 100px; object-fit: cover; border-radius: var(--r-md); margin-bottom: .6rem; background: var(--wte-dark3); }

/* ── Services section ── */
.wte-svc-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); }
.wte-svc-inner { max-width: 1360px; margin: 0 auto; }
.wte-svc-topbar { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.wte-svc-h2 { font-size: clamp(2.5rem,5vw,6.5rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); line-height: .92; }
.wte-svc-h2 mark { background: none; color: var(--wte-indigo3); }
.wte-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--wte-line); border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--wte-line); }
.wte-svc-panel {
  background: var(--wte-dark2); padding: 1.8rem;
  display: flex; flex-direction: column;
  transition: background var(--dur);
  text-decoration: none; position: relative; overflow: hidden;
}
.wte-svc-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--wte-indigo); opacity: 0; transition: opacity var(--dur);
}
.wte-svc-panel:hover { background: var(--wte-dark3); }
.wte-svc-panel:hover::before { opacity: 1; }
.wte-svc-panel-n { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .2em; color: rgba(248,248,252,.2); margin-bottom: .5rem; }
.wte-svc-panel-name { font-family: var(--ff-head); font-size: .92rem; font-weight: 700; color: var(--wte-white); margin-bottom: .3rem; }
.wte-svc-panel-desc { font-size: .7rem; color: var(--wte-mid); line-height: 1.72; flex: 1; }
.wte-svc-panel-price { font-family: var(--ff-head); font-size: .9rem; font-weight: 700; color: var(--wte-indigo3); margin-top: .9rem; padding-top: .7rem; border-top: 1px solid var(--wte-line); }
.wte-svc-panel-arr { color: rgba(248,248,252,.18); font-size: .64rem; font-family: var(--ff-head); font-weight: 700; transition: color var(--dur); margin-top: .15rem; }
.wte-svc-panel:hover .wte-svc-panel-arr { color: var(--wte-indigo3); }

/* ── Stats ticker (marquee style) ── */
.wte-ticker { border-top: 1px solid var(--wte-line); border-bottom: 1px solid var(--wte-line); padding: 1.1rem 0; overflow: hidden; position: relative; background: var(--wte-dark2); }
.wte-ticker-inner { display: flex; gap: 4rem; white-space: nowrap; animation: wte-slide 22s linear infinite; will-change: transform; }
@keyframes wte-slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.wte-ticker-item { font-family: var(--ff-head); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--wte-mid); display: inline-flex; align-items: center; gap: .5rem; }
.wte-ticker-dot { width: 5px; height: 5px; background: var(--wte-indigo); border-radius: 50%; flex-shrink: 0; }

/* ── About: asymmetric dark panel ── */
.wte-about-zone { padding: 8rem clamp(1.5rem,3vw,4rem); }
.wte-about-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }
.wte-about-h2 { font-size: clamp(2.5rem,5vw,6rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); line-height: .92; margin-bottom: .8rem; }
.wte-about-h2 mark { background: none; color: var(--wte-amber); }
.wte-about-body { font-size: .88rem; color: var(--wte-mid); line-height: 1.88; }
.wte-about-body p { margin-bottom: .9rem; }
.wte-about-img-panel { position: relative; }
.wte-about-img-main { width: 100%; aspect-ratio: 3/2; border-radius: var(--r-2xl); overflow: hidden; background: var(--wte-dark3); border: 1px solid var(--wte-line2); }
.wte-about-img-main img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.wte-about-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--wte-indigo); border-radius: var(--r-xl);
  padding: 1.1rem 1.5rem; display: flex; flex-direction: column; gap: .1rem;
}
.wte-about-float-n { font-family: var(--ff-head); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.wte-about-float-l { font-size: .6rem; color: rgba(255,255,255,.6); letter-spacing: .12em; text-transform: uppercase; font-family: var(--ff-head); }

/* ── Cases: dark card list ── */
.wte-cases-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); }
.wte-cases-inner { max-width: 1360px; margin: 0 auto; }
.wte-cases-h2 { font-size: clamp(2.5rem,5vw,6.5rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); margin-bottom: 3rem; }
.wte-cases-h2 mark { background: none; color: var(--wte-indigo3); }
.wte-cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.wte-case-tile {
  background: var(--wte-dark2); border: 1px solid var(--wte-line2);
  border-radius: var(--r-2xl); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur), transform var(--dur);
  text-decoration: none;
}
.wte-case-tile:hover { border-color: rgba(99,102,241,.4); transform: translateY(-2px); }
.wte-case-img { height: 220px; background: var(--wte-dark3); overflow: hidden; }
.wte-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); opacity: .6; }
.wte-case-tile:hover .wte-case-img img { transform: scale(1.04); }
.wte-case-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.wte-case-type { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--wte-indigo3); margin-bottom: .15rem; }
.wte-case-name { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--wte-white); margin-bottom: .3rem; }
.wte-case-desc { font-size: .76rem; color: var(--wte-mid); line-height: 1.72; flex: 1; margin-bottom: .8rem; }
.wte-case-result { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--ff-head); font-size: .62rem; font-weight: 700; color: var(--wte-amber); }

/* ── Testimonials: horizontal scroll ── */
.wte-tmon-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); background: var(--wte-dark2); }
.wte-tmon-inner { max-width: 1360px; margin: 0 auto; }
.wte-tmon-h2 { font-size: clamp(2.5rem,5vw,6.5rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); margin-bottom: 3rem; }
.wte-tmon-h2 mark { background: none; color: var(--wte-amber); }
.wte-tmon-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.wte-tmon-card { background: var(--wte-dark3); border: 1px solid var(--wte-line2); border-radius: var(--r-2xl); padding: 1.8rem; }
.wte-tmon-stars { color: var(--wte-amber); font-size: .88rem; letter-spacing: .1em; margin-bottom: .7rem; }
.wte-tmon-q { font-family: var(--ff-head); font-size: .88rem; font-weight: 400; color: rgba(248,248,252,.75); line-height: 1.65; margin-bottom: 1.4rem; }
.wte-tmon-q::before { content: '\201C'; color: var(--wte-indigo3); font-size: 1.5em; line-height: 0; vertical-align: -.3em; margin-right: .06em; }
.wte-tmon-who { display: flex; gap: .55rem; align-items: center; }
.wte-tmon-av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--wte-dark4); flex-shrink: 0; }
.wte-tmon-av img { width: 100%; height: 100%; object-fit: cover; }
.wte-tmon-name { font-family: var(--ff-head); font-size: .84rem; font-weight: 700; color: var(--wte-white); }
.wte-tmon-role { font-size: .62rem; color: var(--wte-mid); }

/* ── Process ── */
.wte-proc-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); }
.wte-proc-inner { max-width: 1360px; margin: 0 auto; }
.wte-proc-head { text-align: center; margin-bottom: 4rem; }
.wte-proc-h2 { font-size: clamp(2.5rem,5vw,6rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); }
.wte-proc-h2 mark { background: none; color: var(--wte-indigo3); }
.wte-proc-timeline { display: flex; gap: 0; }
.wte-proc-step { flex: 1; padding: 1.8rem; border-left: 2px solid var(--wte-line); position: relative; }
.wte-proc-step:first-child { border-left: 2px solid var(--wte-indigo); }
.wte-proc-step::before { content: ''; position: absolute; top: 1.8rem; left: -5px; width: 8px; height: 8px; border-radius: 50%; background: var(--wte-line); }
.wte-proc-step:first-child::before { background: var(--wte-indigo); }
.wte-proc-step-n { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .2em; color: var(--wte-mid); margin-bottom: .5rem; }
.wte-proc-step-title { font-family: var(--ff-head); font-size: .92rem; font-weight: 700; color: var(--wte-white); margin-bottom: .3rem; }
.wte-proc-step-desc { font-size: .72rem; color: var(--wte-mid); line-height: 1.72; }

/* ── Pricing ── */
.wte-price-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); }
.wte-price-inner { max-width: 1360px; margin: 0 auto; }
.wte-price-head { margin-bottom: 3rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.wte-price-h2 { font-size: clamp(2.5rem,5vw,6.5rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); }
.wte-price-h2 mark { background: none; color: var(--wte-indigo3); }
.wte-price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.wte-pcard {
  background: var(--wte-dark2); border: 1.5px solid var(--wte-line2);
  border-radius: var(--r-2xl); padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: border-color var(--dur), background var(--dur);
}
.wte-pcard:hover { border-color: rgba(99,102,241,.35); background: var(--wte-dark3); }
.wte-pcard-name { font-family: var(--ff-head); font-size: .9rem; font-weight: 700; color: var(--wte-white); margin-bottom: .12rem; }
.wte-pcard-tag  { font-size: .7rem; color: var(--wte-mid); margin-bottom: .8rem; line-height: 1.55; }
.wte-pcard-val  { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 900; color: var(--wte-indigo3); letter-spacing: -.03em; line-height: 1; margin-bottom: .1rem; }
.wte-pcard-del  { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wte-mid); margin-bottom: 1rem; }
.wte-pcard-list { flex: 1; display: flex; flex-direction: column; gap: .26rem; margin-bottom: 1.1rem; }
.wte-pcard-li   { font-size: .7rem; color: var(--wte-mid); display: flex; gap: .28rem; align-items: flex-start; line-height: 1.5; }
.wte-pcard-li::before { content: '✦'; color: var(--wte-indigo3); flex-shrink: 0; font-size: .5rem; margin-top: .12rem; }
.wte-pcard-btn {
  display: block; text-align: center;
  font-family: var(--ff-head); font-size: .74rem; font-weight: 700;
  padding: .62rem; border-radius: var(--r-pill);
  background: var(--wte-indigo); color: #fff;
  transition: background var(--dur); text-decoration: none;
}
.wte-pcard-btn:hover { background: var(--wte-indigo2); }

/* ── FAQ ── */
.wte-faq-zone { padding: 8rem clamp(1.5rem,3vw,4rem); border-top: 1px solid var(--wte-line); background: var(--wte-dark2); }
.wte-faq-inner { max-width: 1360px; margin: 0 auto; }
.wte-faq-head { text-align: center; margin-bottom: 3.5rem; }
.wte-faq-h2 { font-size: clamp(2.5rem,5vw,6rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); }
.wte-faq-h2 mark { background: none; color: var(--wte-amber); }
.wte-faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0 5rem; }
.wte-faq-item { border-bottom: 1px solid var(--wte-line2); }
.wte-faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; padding: 1rem 0; background: none; border: none; cursor: pointer; text-align: left;
}
.wte-faq-qtext { font-family: var(--ff-head); font-size: .86rem; font-weight: 600; color: var(--wte-white); line-height: 1.3; transition: color var(--dur); }
.wte-faq-trigger:hover .wte-faq-qtext { color: var(--wte-indigo3); }
.wte-faq-plus {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--wte-line2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--wte-mid); font-size: .62rem; transition: all var(--dur);
}
.wte-faq-item.wte-fq-open .wte-faq-plus { background: var(--wte-indigo); border-color: var(--wte-indigo); color: #fff; transform: rotate(45deg); }
.wte-faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.wte-faq-answer-txt { padding: 0 0 .85rem; font-size: .78rem; color: var(--wte-mid); line-height: 1.82; }
.wte-faq-item.wte-fq-open .wte-faq-answer { max-height: 280px; }

/* ── CTA ── */
.wte-cta-zone {
  padding: 10rem clamp(1.5rem,3vw,4rem);
  background: linear-gradient(135deg, var(--wte-indigo) 0%, #312e81 100%);
  text-align: center; position: relative; overflow: hidden;
}
.wte-cta-zone::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.wte-cta-h2 { font-family: var(--ff-head); font-size: clamp(3rem,9vw,11rem); font-weight: 900; letter-spacing: -.03em; color: #fff; line-height: .88; margin-bottom: .5rem; position: relative; }
.wte-cta-h2 mark { background: none; color: var(--wte-amber); }
.wte-cta-sub { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 44ch; margin: 0 auto 2.5rem; line-height: 1.82; position: relative; }
.wte-cta-btns { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; position: relative; }

/* ── Mast (inner pages) — CENTERED ── */
.wte-mast {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem,3vw,4rem) 5rem;
  background: linear-gradient(180deg, rgba(79,70,229,.15) 0%, transparent 100%);
  border-bottom: 1px solid var(--wte-line);
  text-align: center; position: relative;
}
.wte-mast-chip { display: block; margin: 0 auto .9rem; width: fit-content; }
.wte-mast-h1 { font-family: var(--ff-head); font-size: clamp(3rem,9vw,11rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); line-height: .88; margin-bottom: .8rem; }
.wte-mast-h1 mark { background: none; color: var(--wte-indigo3); }
.wte-mast-sub { font-size: .92rem; color: var(--wte-mid); max-width: 54ch; margin: 0 auto; line-height: 1.82; }
.wte-mast-btns { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── Service page ── */
.wte-svc-page { padding: 5rem clamp(1.5rem,3vw,4rem); }
.wte-svc-page-cols { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr; gap: 6rem; align-items: start; }
.wte-svc-page-body { font-size: .9rem; color: var(--wte-mid); line-height: 1.88; }
.wte-svc-page-body h3 { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: var(--wte-white); margin: 2.2rem 0 .5rem; }
.wte-svc-highlight { background: var(--wte-ind-dim); border-left: 3px solid var(--wte-indigo); padding: .65rem 1rem; border-radius: 0 var(--r) var(--r) 0; margin-bottom: .4rem; font-size: .8rem; color: var(--wte-white2); line-height: 1.65; }
.wte-sidebar-img { border-radius: var(--r-2xl); overflow: hidden; background: var(--wte-dark3); margin-bottom: 1rem; border: 1px solid var(--wte-line2); }
.wte-sidebar-img img { width: 100%; height: 220px; object-fit: cover; opacity: .7; }
.wte-svc-price-card { background: linear-gradient(135deg, var(--wte-indigo) 0%, #312e81 100%); border-radius: var(--r-2xl); padding: 1.6rem; }
.wte-svc-price-lbl { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .1rem; }
.wte-svc-price-val { font-family: var(--ff-head); font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.wte-svc-price-del { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
.wte-incl-card { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-radius: var(--r-2xl); padding: 1.3rem; margin-top: 1rem; }
.wte-incl-lbl { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--wte-indigo3); margin-bottom: .7rem; }
.wte-incl-row { display: flex; gap: .3rem; font-size: .72rem; color: var(--wte-mid); padding: .16rem 0; }
.wte-incl-ico { color: var(--wte-indigo3); flex-shrink: 0; font-size: .5rem; margin-top: .16rem; }

/* ── Builder ── */
.wte-build-zone { padding: calc(var(--nav-h) + 5rem) clamp(1.5rem,3vw,4rem) 5rem; min-height: 100vh; }
.wte-build-inner { max-width: 1360px; margin: 0 auto; }
.wte-build-head { margin-bottom: 3rem; text-align: center; }
.wte-build-h1 { font-family: var(--ff-head); font-size: clamp(2.5rem,7vw,9rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); }
.wte-build-h1 mark { background: none; color: var(--wte-indigo3); }
.wte-build-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; }
.wte-build-step { margin-bottom: 2rem; }
.wte-build-hd { display: flex; align-items: center; gap: .5rem; margin-bottom: .65rem; }
.wte-step-badge { width: 20px; height: 20px; background: var(--wte-indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: .54rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.wte-step-lbl { font-family: var(--ff-head); font-size: .56rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--wte-mid); }

.wte-radio-list { display: flex; flex-direction: column; gap: .3rem; }
.wte-radio-row {
  background: var(--wte-dark2); border: 1.5px solid var(--wte-line2);
  border-radius: var(--r-lg); padding: .85rem 1.1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  transition: all var(--dur); user-select: none;
}
.wte-radio-row:hover { border-color: var(--wte-line2); background: var(--wte-dark3); }
.wte-radio-row.wte-picked { border-color: var(--wte-indigo); background: var(--wte-ind-dim); }
.wte-radio-lft { display: flex; align-items: center; gap: .6rem; }
.wte-radio-circ { width: 14px; height: 14px; border: 1.5px solid var(--wte-line2); border-radius: 50%; background: transparent; flex-shrink: 0; transition: all var(--dur); display: flex; align-items: center; justify-content: center; }
.wte-radio-row.wte-picked .wte-radio-circ { border-color: var(--wte-indigo); background: var(--wte-indigo); }
.wte-radio-row.wte-picked .wte-radio-circ::after { content: ''; width: 4px; height: 4px; background: #fff; border-radius: 50%; }
.wte-radio-name { font-family: var(--ff-head); font-size: .86rem; font-weight: 700; color: var(--wte-white); }
.wte-radio-sub { font-size: .58rem; color: var(--wte-mid); }
.wte-radio-price { font-family: var(--ff-head); font-size: .94rem; font-weight: 700; color: var(--wte-mid); white-space: nowrap; transition: color var(--dur); }
.wte-radio-row.wte-picked .wte-radio-price { color: var(--wte-indigo3); }

.wte-addon-list { display: flex; flex-direction: column; gap: .3rem; }
.wte-addon-row {
  background: var(--wte-dark2); border: 1.5px solid var(--wte-line2);
  border-radius: var(--r-md); padding: .65rem 1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: all var(--dur); user-select: none;
}
.wte-addon-row:hover { background: var(--wte-dark3); }
.wte-addon-row.wte-picked { border-color: var(--wte-indigo); background: var(--wte-ind-dim); }
.wte-addon-lft { display: flex; align-items: center; gap: .48rem; }
.wte-addon-sq { width: 13px; height: 13px; border: 1.5px solid var(--wte-line2); border-radius: 3px; background: transparent; flex-shrink: 0; transition: all var(--dur); display: flex; align-items: center; justify-content: center; }
.wte-addon-row.wte-picked .wte-addon-sq { background: var(--wte-indigo); border-color: var(--wte-indigo); }
.wte-addon-row.wte-picked .wte-addon-sq::after { content: '\2713'; font-size: .44rem; color: #fff; font-weight: 900; }
.wte-addon-lbl { font-family: var(--ff-head); font-size: .8rem; font-weight: 700; color: var(--wte-white); }
.wte-addon-pr { font-family: var(--ff-head); font-size: .88rem; font-weight: 700; color: var(--wte-mid); }

.wte-hrs-panel { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-radius: var(--r-lg); padding: 1.1rem; }
.wte-hrs-title { font-family: var(--ff-head); font-size: .88rem; font-weight: 700; color: var(--wte-white); }
.wte-hrs-sub { font-size: .68rem; color: var(--wte-mid); margin-bottom: .75rem; }
.wte-hrs-row { display: flex; align-items: center; gap: 1rem; }
.wte-hrs-num { font-family: var(--ff-head); font-size: 2rem; font-weight: 900; color: var(--wte-white); min-width: 2.5ch; text-align: center; }
.wte-hrs-slider { -webkit-appearance: none; appearance: none; flex: 1; height: 2px; background: var(--wte-dark4); border-radius: 2px; outline: none; cursor: pointer; }
.wte-hrs-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--wte-indigo); cursor: pointer; }
.wte-hrs-rate strong { font-family: var(--ff-head); font-size: .86rem; font-weight: 700; color: var(--wte-white); display: block; }
.wte-hrs-rate span { font-size: .56rem; color: var(--wte-mid); }

.wte-summary-panel { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-radius: var(--r-2xl); padding: 1.6rem; position: sticky; top: 5rem; }
.wte-sum-hd { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--wte-mid); padding-bottom: .75rem; border-bottom: 1px solid var(--wte-line); margin-bottom: .75rem; }
.wte-sum-body { min-height: 48px; margin-bottom: .75rem; }
.wte-sum-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .72rem; color: var(--wte-mid); padding: .2rem 0; border-bottom: 1px solid var(--wte-line); }
.wte-sum-row-v { font-family: var(--ff-head); font-weight: 700; color: var(--wte-white); font-size: .86rem; white-space: nowrap; }
.wte-sum-empty { font-size: .7rem; color: var(--wte-mid); font-style: italic; }
.wte-sum-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--wte-line2); padding-top: .75rem; margin-top: .1rem; }
.wte-sum-total-lbl { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wte-mid); }
.wte-sum-total-v { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 900; color: var(--wte-indigo3); letter-spacing: -.03em; }
.wte-sum-go { width: 100%; background: var(--wte-indigo); color: #fff; font-family: var(--ff-head); font-size: .8rem; font-weight: 700; padding: .78rem; border-radius: var(--r-pill); border: none; cursor: pointer; transition: all var(--dur); margin-top: 1rem; }
.wte-sum-go:hover { background: var(--wte-indigo2); }
.wte-sum-go:disabled { opacity: .25; pointer-events: none; }

/* ── Checkout ── */
.wte-co-zone { padding: calc(var(--nav-h) + 5rem) clamp(1.5rem,3vw,4rem) 5rem; min-height: 100vh; }
.wte-co-head { max-width: 1360px; margin: 0 auto 3rem; text-align: center; }
.wte-co-h1 { font-family: var(--ff-head); font-size: clamp(2.5rem,7vw,9rem); font-weight: 900; letter-spacing: -.03em; color: var(--wte-white); }
.wte-co-h1 mark { background: none; color: var(--wte-indigo3); }
.wte-co-cols { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.wte-field { display: flex; flex-direction: column; gap: .18rem; margin-bottom: .65rem; }
.wte-field-lbl { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wte-mid); }
.wte-finp, .wte-fsel, .wte-fta { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-radius: var(--r-md); padding: .7rem .92rem; color: var(--wte-white); font-size: .86rem; outline: none; width: 100%; transition: border-color var(--dur); }
.wte-finp:focus, .wte-fsel:focus, .wte-fta:focus { border-color: var(--wte-indigo); }
.wte-finp::placeholder { color: var(--wte-mid); }
option { background: var(--wte-dark2); }
.wte-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.wte-tos-row { display: flex; gap: .55rem; align-items: flex-start; font-size: .74rem; color: var(--wte-mid); cursor: pointer; margin-bottom: 1rem; line-height: 1.6; }
.wte-tos-row a { color: var(--wte-indigo3); }
.wte-tos-row input { accent-color: var(--wte-indigo); flex-shrink: 0; margin-top: 2px; }
.wte-pay-btn { width: 100%; background: var(--wte-indigo); color: #fff; font-family: var(--ff-head); font-size: .88rem; font-weight: 700; padding: .88rem 1.5rem; border-radius: var(--r-pill); border: none; cursor: pointer; transition: all var(--dur); display: flex; align-items: center; justify-content: space-between; }
.wte-pay-btn:hover { background: var(--wte-indigo2); }
.wte-order-panel { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-radius: var(--r-2xl); padding: 1.6rem; position: sticky; top: 5rem; }
.wte-order-hd { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--wte-mid); padding-bottom: .75rem; border-bottom: 1px solid var(--wte-line); margin-bottom: .75rem; }
.wte-order-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .72rem; color: var(--wte-mid); padding: .2rem 0; }
.wte-order-val { color: var(--wte-white); font-weight: 700; font-family: var(--ff-head); font-size: .86rem; }
.wte-order-total-v { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 900; color: var(--wte-indigo3); }

/* ── Legal ── */
.wte-legal-zone { padding: calc(var(--nav-h) + 4rem) clamp(1.5rem,3vw,4rem) 5rem; }
.wte-legal-doc { max-width: 780px; margin: 0 auto; background: var(--wte-dark2); border: 1px solid var(--wte-line2); border-radius: var(--r-2xl); padding: 3rem; }
.wte-legal-doc h2 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--wte-white); margin: 2rem 0 .5rem; padding-top: 1.5rem; border-top: 1px solid var(--wte-line); }
.wte-legal-doc h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.wte-legal-doc p { font-size: .86rem; color: var(--wte-mid); line-height: 1.82; margin-bottom: 1rem; }
.wte-legal-doc ul { font-size: .86rem; color: var(--wte-mid); padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; line-height: 1.78; }
.wte-legal-doc a { color: var(--wte-indigo3); }
.wte-legal-meta { font-size: .72rem; color: var(--wte-mid); margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--wte-line); }
.wte-tbl { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .8rem; }
.wte-tbl th { background: var(--wte-dark3); color: var(--wte-white); padding: .5rem .9rem; text-align: left; font-family: var(--ff-head); font-weight: 700; }
.wte-tbl td { padding: .42rem .9rem; border-bottom: 1px solid var(--wte-line); color: var(--wte-mid); }

/* ── Contact ── */
.wte-contact-zone { padding: 5rem clamp(1.5rem,3vw,4rem); }
.wte-contact-cols { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.wte-det { display: flex; gap: .6rem; margin-bottom: .85rem; }
.wte-det-ico { color: var(--wte-indigo3); font-size: .88rem; margin-top: .05rem; flex-shrink: 0; }
.wte-det-lbl { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wte-mid); }
.wte-det-val { font-size: .84rem; color: var(--wte-mid); }
.wte-contact-card { background: var(--wte-dark2); border: 1.5px solid var(--wte-line2); border-top: 4px solid var(--wte-indigo); border-radius: var(--r-2xl); padding: 2.2rem; }

/* ── Footer ── */
.wte-footer { background: var(--wte-dark2); padding: 5.5rem clamp(1.5rem,3vw,4rem) 2.5rem; border-top: 1px solid var(--wte-line); }
.wte-footer-rail { max-width: 1360px; margin: 0 auto; }
.wte-footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--wte-line); margin-bottom: 2rem; }
.wte-footer-brand { font-family: var(--ff-head); font-size: .94rem; font-weight: 800; color: var(--wte-white); margin-bottom: .25rem; display: flex; align-items: center; gap: .35rem; }
.wte-footer-brand-dot { width: 7px; height: 7px; background: var(--wte-indigo); border-radius: 50%; }
.wte-footer-blurb { font-size: .72rem; color: var(--wte-mid); max-width: 22ch; line-height: 1.68; margin-bottom: .9rem; }
.wte-footer-biz { font-size: .64rem; color: rgba(248,248,252,.2); line-height: 2; }
.wte-footer-biz a { color: rgba(248,248,252,.2); transition: color var(--dur); }
.wte-footer-biz a:hover { color: var(--wte-indigo3); }
.wte-footer-col-h { font-family: var(--ff-head); font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--wte-mid); margin-bottom: .9rem; }
.wte-footer-nav { display: flex; flex-direction: column; gap: .45rem; }
.wte-footer-nav a { font-size: .72rem; color: rgba(248,248,252,.3); transition: color var(--dur); }
.wte-footer-nav a:hover { color: var(--wte-indigo3); }
.wte-footer-btm { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.wte-footer-copy { font-size: .6rem; color: rgba(248,248,252,.14); }
.wte-footer-dig  { font-size: .58rem; color: rgba(248,248,252,.14); font-style: italic; }
.wte-footer-leg  { display: flex; gap: 1.2rem; }
.wte-footer-leg a { font-size: .6rem; color: rgba(248,248,252,.14); transition: color var(--dur); }
.wte-footer-leg a:hover { color: var(--wte-indigo3); }

/* ── Cookie + Chat ── */
.wte-cookie {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 200; background: var(--wte-dark2); border: 1px solid var(--wte-line2);
  border-top: 3px solid var(--wte-indigo); border-radius: var(--r-2xl);
  box-shadow: 0 12px 40px rgba(0,0,0,.3); padding: 1rem 1.4rem;
  max-width: 480px; width: calc(100% - 3rem);
  display: flex; align-items: center; gap: 1rem;
  transition: opacity .3s, transform .3s;
}
.wte-cookie.wte-ck-gone { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(10px); }
.wte-ck-txt { font-size: .7rem; color: var(--wte-mid); flex: 1; line-height: 1.6; }
.wte-ck-txt a { color: var(--wte-indigo3); }
.wte-ck-yes { background: var(--wte-indigo); color: #fff; font-family: var(--ff-head); font-size: .68rem; font-weight: 700; padding: .34rem .9rem; border-radius: var(--r-pill); border: none; cursor: pointer; }
.wte-ck-no  { background: transparent; color: var(--wte-mid); font-family: var(--ff-head); font-size: .68rem; padding: .32rem .8rem; border: 1px solid var(--wte-line2); border-radius: var(--r-pill); cursor: pointer; }

.wte-chat-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 199;
  width: 50px; height: 50px; background: var(--wte-indigo); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 4px 20px rgba(79,70,229,.4); border: none;
  transition: transform var(--dur), background var(--dur);
}
.wte-chat-fab:hover { transform: scale(1.08); background: var(--wte-indigo2); }
.wte-chat-win {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 199;
  width: 300px; background: var(--wte-dark2); border: 1px solid var(--wte-line2);
  border-top: 3px solid var(--wte-indigo); border-radius: var(--r-2xl);
  box-shadow: 0 14px 50px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none; transform: translateY(8px) scale(.97);
  transform-origin: bottom right; transition: opacity var(--dur), transform var(--dur);
}
.wte-chat-win.wte-chat-on { opacity: 1; pointer-events: auto; transform: none; }
.wte-chat-top { padding: .8rem 1rem; border-bottom: 1px solid var(--wte-line); display: flex; align-items: center; justify-content: space-between; }
.wte-chat-pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }
.wte-chat-who { font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: var(--wte-white); }
.wte-chat-city { font-size: .56rem; color: var(--wte-mid); }
.wte-chat-x { background: none; border: none; color: var(--wte-mid); cursor: pointer; font-size: .82rem; }
.wte-chat-log { padding: .8rem; height: 175px; overflow-y: auto; display: flex; flex-direction: column; gap: .42rem; }
.wte-chat-msg { max-width: 90%; padding: .42rem .75rem; border-radius: var(--r-lg); font-size: .7rem; line-height: 1.55; }
.wte-chat-msg--agent { background: var(--wte-dark3); color: var(--wte-mid); align-self: flex-start; border: 1px solid var(--wte-line); }
.wte-chat-msg--self  { background: var(--wte-indigo); color: #fff; align-self: flex-end; }
.wte-chat-form { display: flex; border-top: 1px solid var(--wte-line); }
.wte-chat-inp { flex: 1; background: none; border: none; padding: .58rem .85rem; font-size: .7rem; color: var(--wte-white); outline: none; font-family: var(--ff-body); }
.wte-chat-inp::placeholder { color: var(--wte-mid); }
.wte-chat-send { background: var(--wte-indigo); color: #fff; border: none; padding: 0 .85rem; font-family: var(--ff-head); font-size: .6rem; font-weight: 700; cursor: pointer; border-radius: 0 0 var(--r-2xl) 0; }

/* ── Confirms ── */
.wte-confirm-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.wte-confirm-box { max-width: 440px; width: 100%; background: linear-gradient(135deg, var(--wte-indigo) 0%, #312e81 100%); border-radius: var(--r-3xl); padding: 3rem; text-align: center; }

/* ── Reveal ── */
.wte-rev { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.wte-rev.wte-vis { opacity: 1; transform: none; }
.wte-d1{transition-delay:.05s}.wte-d2{transition-delay:.1s}.wte-d3{transition-delay:.15s}

.wte-pt { padding-top: var(--nav-h); }

/* ── Responsive ── */
@media(max-width:1100px){
  .wte-nav-links,.wte-nav-end > *:not(.wte-burger) { display: none; }
  .wte-burger { display: flex; }
  .wte-bento-row { grid-template-columns: 1fr 1fr; }
  .wte-bento-card:first-child { grid-column: span 2; }
  .wte-svc-grid { grid-template-columns: 1fr 1fr; }
  .wte-cases-grid { grid-template-columns: 1fr; }
  .wte-tmon-cards { grid-template-columns: 1fr; }
  .wte-proc-timeline { flex-direction: column; }
  .wte-price-cards { grid-template-columns: 1fr 1fr; }
  .wte-faq-layout { grid-template-columns: 1fr; }
  .wte-footer-top { grid-template-columns: 1fr 1fr; }
  .wte-build-cols,.wte-co-cols,.wte-svc-page-cols,.wte-contact-cols { grid-template-columns: 1fr; }
  .wte-about-inner { grid-template-columns: 1fr; }
}
@media(max-width:720px){
  .wte-svc-grid { grid-template-columns: 1fr; }
  .wte-bento-row { grid-template-columns: 1fr; }
  .wte-bento-card:first-child { grid-column: span 1; }
  .wte-price-cards { grid-template-columns: 1fr; }
  .wte-footer-top { grid-template-columns: 1fr; }
  .wte-pair { grid-template-columns: 1fr; }
}
