/*
  translators-worldwide.com (Build 38) | Translation Agency | USA / USD
  Theme: Midnight #0A2540 + Teal #14B8A6 + Off-White #F8FAFC (FIRST TEAL in 38 builds!)
  Nav: HORIZONTAL MEGA MENU with services dropdown panel (FIRST in series!)
  Hero: FULL-VIEWPORT with globe SVG + language tag cloud
  Pricing: WORD-COUNT BUNDLES (Starter/Growth/Professional/Enterprise)
  Services: BENTO GRID asymmetric (mixed portrait/landscape cards)
  Testimonials: SPOTLIGHT single with prev/next (FIRST in series!)
  FAQ: 2-COLUMN ACCORDION (never done in series)
  Mobile: Hamburger slide-down overlay
  Country: USA | USD | English only
  Fonts: Sora + Figtree (both first use in series)
  CSS prefix: tw-
*/
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
  --tw-midnight: #0A2540;
  --tw-ocean:    #0D3B5E;
  --tw-ocean2:   #163C58;
  --tw-teal:     #14B8A6;
  --tw-teal2:    #0D9488;
  --tw-tealt:    rgba(20,184,166,.09);
  --tw-teald:    rgba(20,184,166,.2);
  --tw-white:    #FFFFFF;
  --tw-off:      #F8FAFC;
  --tw-warm:     #F1F5F9;
  --tw-muted:    #64748B;
  --tw-dim:      #94A3B8;
  --tw-edge:     #E2E8F0;
  --tw-edge2:    #CBD5E1;
  --tw-ink:      #0F172A;
  --tw-success:  #22C55E;
  --tw-max:      1080px;
  --tw-r:        4px;
  --tw-r2:       8px;
  --tw-r3:       14px;
  --tw-r4:       22px;
  --tw-r5:       32px;
  --tw-fh:       'Sora', system-ui, sans-serif;
  --tw-fb:       'Figtree', system-ui, sans-serif;
  --tw-ease:     all 0.22s cubic-bezier(.4,0,.2,1);
  --tw-sh:       0 4px 24px rgba(10,37,64,.07);
  --tw-sh2:      0 12px 48px rgba(10,37,64,.14);
  --tw-nav-h:    72px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { background:var(--tw-white); color:var(--tw-ink); font-family:var(--tw-fb); font-size:1rem; line-height:1.7; overflow-x:hidden; }
img,svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select { font-family:inherit; }
address { font-style:normal; }
h1 { font-family:var(--tw-fh); font-size:clamp(2.8rem,5.5vw,6rem); font-weight:800; line-height:.9; letter-spacing:-.03em; }
h2 { font-family:var(--tw-fh); font-size:clamp(2rem,3vw,3.6rem); font-weight:800; line-height:.92; letter-spacing:-.02em; }
h3 { font-family:var(--tw-fh); font-size:1.1rem; font-weight:700; }
p  { font-size:.92rem; line-height:1.82; color:var(--tw-muted); }

/* ============================================================
   HORIZONTAL MEGA MENU (FIRST in series - sticky white top nav)
   ============================================================ */
.tw-nav {
    position:fixed; top:0; left:0; right:0; z-index:900;
    background:rgba(255,255,255,.96); backdrop-filter:blur(8px);
    border-bottom:1px solid var(--tw-edge);
    height:var(--tw-nav-h); transition:box-shadow .2s;
}
.tw-nav.tw-nav-scrolled { box-shadow:var(--tw-sh); }
.tw-nav-inner { max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; height:100%; display:flex; align-items:center; gap:2rem; }
.tw-nav-logo { font-family:var(--tw-fh); font-size:.92rem; font-weight:800; color:var(--tw-midnight); letter-spacing:-.02em; white-space:nowrap; flex-shrink:0; }
.tw-nav-logo em { color:var(--tw-teal); font-style:normal; }
.tw-nav-links { display:flex; align-items:center; gap:.2rem; flex:1; justify-content:center; }
.tw-nl { font-family:var(--tw-fb); font-size:.92rem; font-weight:600; color:var(--tw-muted); padding:.42rem .72rem; border-radius:var(--tw-r2); transition:var(--tw-ease); white-space:nowrap; }
.tw-nl:hover,.tw-nl.tw-on { color:var(--tw-midnight); background:var(--tw-warm); }
/* MEGA MENU trigger */
.tw-mega-wrap { position:relative; }
.tw-mega-trigger { display:flex; align-items:center; gap:.2rem; font-family:var(--tw-fb); font-size:.92rem; font-weight:600; color:var(--tw-muted); padding:.42rem .72rem; border-radius:var(--tw-r2); cursor:pointer; transition:var(--tw-ease); }
.tw-mega-trigger:hover,.tw-mega-wrap.tw-mega-open .tw-mega-trigger { color:var(--tw-midnight); background:var(--tw-warm); }
.tw-mega-ic { transition:transform .18s; }
.tw-mega-wrap.tw-mega-open .tw-mega-ic { transform:rotate(180deg); }
/* MEGA PANEL - full width dropdown */
.tw-mega-panel { position:fixed; top:var(--tw-nav-h); left:0; right:0; background:var(--tw-white); border-top:2px solid var(--tw-teal); border-bottom:1px solid var(--tw-edge); box-shadow:var(--tw-sh2); z-index:899; opacity:0; pointer-events:none; transform:translateY(-8px); transition:opacity .2s,transform .22s; }
.tw-mega-wrap.tw-mega-open .tw-mega-panel { opacity:1; pointer-events:auto; transform:translateY(0); }
.tw-mega-panel-in { max-width:var(--tw-max); margin:0 auto; padding:2rem 2.5rem; display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.tw-mega-item { display:flex; gap:.7rem; align-items:flex-start; padding:.9rem; border-radius:var(--tw-r2); transition:background .16s; }
.tw-mega-item:hover { background:var(--tw-off); }
.tw-mega-icon { width:36px; height:36px; border-radius:var(--tw-r2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.tw-mega-nm { font-family:var(--tw-fh); font-size:.86rem; font-weight:700; color:var(--tw-midnight); margin-bottom:.1rem; }
.tw-mega-tag { font-size:.7rem; font-weight:600; color:var(--tw-teal); }
.tw-mega-p { font-size:.76rem; color:var(--tw-muted); line-height:1.52; margin-top:.18rem; }
.tw-mega-overlay { position:fixed; inset:0; top:var(--tw-nav-h); z-index:898; display:none; }
.tw-mega-wrap.tw-mega-open ~ .tw-mega-overlay { display:block; }

/* Nav CTA */
.tw-nav-cta-area { flex-shrink:0; }

/* Mobile nav */
.tw-mob-tog { display:none; width:38px; height:38px; flex-direction:column; align-items:center; justify-content:center; gap:5px; border-radius:var(--tw-r2); background:var(--tw-warm); }
.tw-mob-tog span { width:18px; height:1.5px; background:var(--tw-midnight); display:block; border-radius:2px; transition:var(--tw-ease); }
.tw-mob-menu { display:none; position:fixed; top:var(--tw-nav-h); left:0; right:0; background:var(--tw-white); border-top:1px solid var(--tw-edge); box-shadow:var(--tw-sh2); z-index:899; max-height:calc(100vh - var(--tw-nav-h)); overflow-y:auto; }
.tw-mob-menu.tw-mob-open { display:block; }
.tw-mob-link { display:flex; align-items:center; padding:.82rem 1.5rem; font-size:.92rem; font-weight:600; color:var(--tw-muted); border-bottom:1px solid var(--tw-edge); transition:color .14s; }
.tw-mob-link:hover { color:var(--tw-midnight); background:var(--tw-off); }
.tw-mob-link.tw-on { color:var(--tw-teal); }
.tw-mob-svc-group { padding:.5rem 1.5rem 1rem; }
.tw-mob-svc-lbl { font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.18em; color:var(--tw-dim); margin-bottom:.5rem; }
.tw-mob-svc-link { display:block; font-size:.86rem; color:var(--tw-muted); padding:.32rem 0; border-bottom:1px solid var(--tw-edge2); transition:color .14s; }
.tw-mob-svc-link:hover { color:var(--tw-teal); }
.tw-mob-cta-area { padding:1rem 1.5rem 1.5rem; }

/* ============================================================
   MAIN BODY OFFSET (nav height)
   ============================================================ */
.tw-body-pad { padding-top:var(--tw-nav-h); }

/* Layout shell */
.tw-shell { max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; }
.tw-slab  { padding:7rem 0; }
.tw-slab-sm { padding:5rem 0; }
.tw-kicker { display:inline-flex; align-items:center; gap:.38rem; font-family:var(--tw-fb); font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.26em; color:var(--tw-teal); }
.tw-kicker::before { content:''; width:10px; height:1.5px; background:var(--tw-teal); }

/* ============================================================
   FULL-VIEWPORT HERO (globe decoration + language tags)
   ============================================================ */
.tw-hero { min-height:100vh; background:var(--tw-midnight); display:flex; align-items:center; position:relative; overflow:hidden; }
.tw-hero-bg { position:absolute; inset:0; pointer-events:none; }
/* Animated globe rings (CSS-only) */
.tw-globe-ring { position:absolute; border-radius:50%; border:1px solid rgba(20,184,166,.08); top:50%; left:50%; transform:translate(-50%,-50%); animation:twGlobeRot 20s linear infinite; }
.tw-globe-ring:nth-child(1) { width:500px; height:500px; border-color:rgba(20,184,166,.07); }
.tw-globe-ring:nth-child(2) { width:700px; height:700px; border-color:rgba(20,184,166,.05); animation-duration:30s; animation-direction:reverse; }
.tw-globe-ring:nth-child(3) { width:900px; height:900px; border-color:rgba(20,184,166,.03); animation-duration:40s; }
.tw-globe-ring:nth-child(4) { width:1100px; height:1100px; border-color:rgba(20,184,166,.02); animation-duration:55s; animation-direction:reverse; }
@keyframes twGlobeRot { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
/* Diagonal cut at bottom */
.tw-hero-cut { position:absolute; bottom:-2px; left:0; right:0; height:80px; background:var(--tw-white); clip-path:polygon(0 100%,100% 100%,100% 0); }
.tw-hero-in { position:relative; z-index:2; max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; display:grid; grid-template-columns:1fr 380px; gap:5rem; align-items:center; }
.tw-hero-left { }
.tw-hero-kicker { display:flex; align-items:center; gap:.5rem; font-family:var(--tw-fb); font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.26em; color:var(--tw-teal); margin-bottom:1rem; }
.tw-hero-kicker::before { content:''; width:14px; height:1.5px; background:var(--tw-teal); }
.tw-hero-h1 { color:var(--tw-white); white-space:pre-line; margin-bottom:1.2rem; }
.tw-hero-h1 em { color:var(--tw-teal); font-style:normal; display:block; }
.tw-hero-sub { color:rgba(255,255,255,.5); max-width:46ch; margin-bottom:2.2rem; font-size:.96rem; line-height:1.82; }
.tw-hero-acts { display:flex; gap:.7rem; flex-wrap:wrap; }
/* Language tag cloud (right side) */
.tw-hero-right { display:flex; flex-direction:column; gap:1.2rem; }
.tw-lang-cloud { display:flex; flex-wrap:wrap; gap:.5rem; }
.tw-lang-tag { font-family:var(--tw-fh); font-size:.68rem; font-weight:700; background:rgba(20,184,166,.12); color:rgba(20,184,166,.9); border:1px solid rgba(20,184,166,.2); padding:.28rem .7rem; border-radius:100px; letter-spacing:.04em; }
.tw-hero-cert { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:var(--tw-r3); padding:1.2rem 1.4rem; }
.tw-hero-cert-lbl { font-size:.5rem; font-weight:700; text-transform:uppercase; letter-spacing:.16em; color:rgba(255,255,255,.25); margin-bottom:.5rem; }
.tw-hero-cert-item { display:flex; align-items:center; gap:.4rem; font-size:.78rem; color:rgba(255,255,255,.45); padding:.22rem 0; }
.tw-hero-cert-item svg { color:var(--tw-teal); }
.tw-hero-langs-count { font-family:var(--tw-fh); font-size:3.5rem; font-weight:800; color:var(--tw-teal); line-height:1; letter-spacing:-.06em; }
.tw-hero-langs-lbl { font-size:.6rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.25); margin-top:.1rem; }

/* ============================================================
   STATS STRIP (animated counters)
   ============================================================ */
.tw-stats-strip { background:var(--tw-midnight); padding:3.5rem 0; border-top:1px solid rgba(255,255,255,.06); }
.tw-stats-row { max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.tw-stat-blk { text-align:center; }
.tw-stat-n { font-family:var(--tw-fh); font-size:clamp(2rem,3.5vw,3.5rem); font-weight:800; color:var(--tw-teal); line-height:1; letter-spacing:-.04em; }
.tw-stat-l { font-size:.68rem; font-weight:600; color:rgba(255,255,255,.3); text-transform:uppercase; letter-spacing:.1em; margin-top:.3rem; }

/* ============================================================
   BENTO GRID SERVICES (asymmetric mixed sizes - FIRST in series)
   ============================================================ */
.tw-bento { display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:auto; gap:1rem; margin-top:2.5rem; }
.tw-bento-cell { background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r4); padding:1.8rem; transition:var(--tw-ease); overflow:hidden; position:relative; }
.tw-bento-cell:hover { border-color:var(--tw-teal); box-shadow:var(--tw-sh); }
/* Row 1: 1 wide + 1 normal + 1 normal */
.tw-bento-cell:nth-child(1) { grid-column:span 1; }
.tw-bento-cell:nth-child(2) { grid-column:span 1; }
.tw-bento-cell:nth-child(3) { grid-column:span 1; }
/* Row 2: 1 normal + 2 wide */
.tw-bento-cell:nth-child(4) { grid-column:span 1; }
.tw-bento-cell:nth-child(5) { grid-column:span 2; }
/* Row 3 (if 6): full */
.tw-bento-cell:nth-child(6) { grid-column:span 1; }
.tw-bento-num { font-family:var(--tw-fh); font-size:.46rem; font-weight:700; letter-spacing:.2em; color:var(--tw-dim); text-transform:uppercase; margin-bottom:.6rem; }
.tw-bento-icon { width:42px; height:42px; border-radius:var(--tw-r2); display:flex; align-items:center; justify-content:center; margin-bottom:.8rem; }
.tw-bento-nm { font-family:var(--tw-fh); font-size:1rem; font-weight:700; color:var(--tw-midnight); margin-bottom:.3rem; }
.tw-bento-tag { font-size:.6rem; font-weight:700; color:var(--tw-teal); text-transform:uppercase; letter-spacing:.08em; margin-bottom:.5rem; }
.tw-bento-p { font-size:.8rem; line-height:1.72; }
.tw-bento-lk { display:inline-flex; align-items:center; gap:.2rem; font-size:.78rem; font-weight:700; color:var(--tw-midnight); margin-top:.7rem; transition:gap .16s; }
.tw-bento-cell:hover .tw-bento-lk { gap:.38rem; color:var(--tw-teal); }
/* Wide cell variation (5th cell) */
.tw-bento-cell:nth-child(5) .tw-bento-grid-inner { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:center; }

/* ============================================================
   WORD COUNT PACKAGES (tier-based bundles - FIRST pricing model in series)
   ============================================================ */
.tw-pkg-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-top:2.5rem; }
.tw-pkg-card { background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r4); padding:2rem; display:flex; flex-direction:column; position:relative; overflow:hidden; transition:var(--tw-ease); }
.tw-pkg-card:hover { border-color:var(--tw-teal); box-shadow:var(--tw-sh); }
.tw-pkg-card.tw-pkg-feat { border-color:var(--tw-midnight); background:var(--tw-midnight); }
.tw-pkg-badge { position:absolute; top:0; left:50%; transform:translateX(-50%); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; background:var(--tw-teal); color:white; padding:.22rem .88rem; border-radius:0 0 var(--tw-r) var(--tw-r); white-space:nowrap; }
.tw-pkg-nm { font-family:var(--tw-fh); font-size:.86rem; font-weight:700; color:var(--tw-midnight); margin-bottom:.2rem; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-nm { color:white; }
.tw-pkg-words { font-family:var(--tw-fh); font-size:3rem; font-weight:800; color:var(--tw-teal); line-height:1; letter-spacing:-.06em; }
.tw-pkg-wl { font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--tw-dim); margin-bottom:.3rem; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-wl { color:rgba(255,255,255,.3); }
.tw-pkg-ppw { font-size:.8rem; font-style:italic; color:var(--tw-muted); margin-bottom:.8rem; font-weight:500; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-ppw { color:rgba(255,255,255,.4); }
.tw-pkg-price { font-family:var(--tw-fh); font-size:2rem; font-weight:800; color:var(--tw-midnight); letter-spacing:-.04em; margin-bottom:.1rem; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-price { color:var(--tw-teal); }
.tw-pkg-per { font-size:.52rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--tw-dim); margin-bottom:.6rem; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-per { color:rgba(255,255,255,.25); }
.tw-pkg-tagline { font-size:.76rem; color:var(--tw-muted); font-style:italic; margin-bottom:1rem; }
.tw-pkg-card.tw-pkg-feat .tw-pkg-tagline { color:rgba(255,255,255,.4); }
.tw-pkg-feats { display:flex; flex-direction:column; gap:.3rem; flex:1; margin-bottom:1.2rem; }
.tw-pkg-feat-item { display:flex; align-items:flex-start; gap:.35rem; font-size:.78rem; color:var(--tw-muted); }
.tw-pkg-card.tw-pkg-feat .tw-pkg-feat-item { color:rgba(255,255,255,.5); }
.tw-pkg-feat-item svg { color:var(--tw-teal); flex-shrink:0; margin-top:.1rem; }

/* ============================================================
   CASE STUDIES (3-col horizontal cards)
   ============================================================ */
.tw-case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.tw-case-card { border:1.5px solid var(--tw-edge); border-radius:var(--tw-r4); overflow:hidden; transition:var(--tw-ease); }
.tw-case-card:hover { border-color:var(--tw-teal); box-shadow:var(--tw-sh); }
.tw-case-img { height:160px; overflow:hidden; position:relative; }
.tw-case-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.18) saturate(.4) hue-rotate(180deg); }
.tw-case-tag-strip { position:absolute; top:.8rem; left:.8rem; display:flex; gap:.3rem; flex-wrap:wrap; }
.tw-case-tag { font-size:.46rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; background:rgba(10,37,64,.7); color:white; padding:.1rem .4rem; border-radius:100px; }
.tw-case-body { padding:1.4rem; }
.tw-case-stat-n { font-family:var(--tw-fh); font-size:3rem; font-weight:800; color:var(--tw-teal); line-height:1; letter-spacing:-.06em; }
.tw-case-stat-l { font-size:.62rem; color:var(--tw-muted); max-width:22ch; margin:.1rem 0 .7rem; line-height:1.5; }
.tw-case-client { font-family:var(--tw-fh); font-size:.96rem; font-weight:700; color:var(--tw-midnight); }
.tw-case-sector { font-size:.62rem; color:var(--tw-dim); margin-bottom:.6rem; }
.tw-case-intro { font-size:.8rem; line-height:1.7; margin-bottom:.8rem; }
.tw-case-quote { font-size:.76rem; font-style:italic; color:var(--tw-midnight); border-top:1px solid var(--tw-edge); padding-top:.7rem; line-height:1.52; }
.tw-case-who { font-size:.6rem; font-weight:700; color:var(--tw-teal); margin-top:.2rem; text-transform:uppercase; letter-spacing:.06em; }

/* ============================================================
   TESTIMONIAL SPOTLIGHT (single with prev/next - FIRST in series)
   ============================================================ */
.tw-tspot { background:var(--tw-midnight); padding:7rem 0; }
.tw-tspot-in { max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; display:grid; grid-template-columns:1fr 360px; gap:6rem; align-items:center; }
.tw-tspot-kicker { color:var(--tw-teal); margin-bottom:.8rem; }
.tw-tspot-qlg { font-family:var(--tw-fh); font-size:clamp(1.4rem,2.5vw,2.8rem); font-weight:700; font-style:italic; color:white; line-height:1.24; margin-bottom:1.2rem; }
.tw-tspot-who { font-family:var(--tw-fb); font-size:.78rem; font-weight:700; color:var(--tw-teal); }
.tw-tspot-co { font-size:.64rem; color:rgba(255,255,255,.25); margin-top:.1rem; }
.tw-tspot-nav { display:flex; gap:.5rem; margin-top:1.5rem; }
.tw-tspot-btn { width:38px; height:38px; border:1.5px solid rgba(255,255,255,.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.4); transition:var(--tw-ease); cursor:pointer; }
.tw-tspot-btn:hover { border-color:var(--tw-teal); color:var(--tw-teal); }
.tw-tspot-dots { display:flex; gap:.4rem; align-items:center; margin-top:1.5rem; }
.tw-tspot-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.15); transition:background .2s; cursor:pointer; }
.tw-tspot-dot.tw-tsd-on { background:var(--tw-teal); width:22px; border-radius:3px; }
.tw-tspot-right { }
.tw-tspot-all { display:flex; flex-direction:column; gap:.6rem; }
.tw-tspot-mini { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:var(--tw-r3); padding:1rem; transition:background .16s; cursor:pointer; }
.tw-tspot-mini.tw-tsm-on { background:rgba(20,184,166,.1); border-color:rgba(20,184,166,.25); }
.tw-tspot-mini-q { font-size:.76rem; font-style:italic; color:rgba(255,255,255,.45); line-height:1.5; margin-bottom:.4rem; }
.tw-tspot-mini.tw-tsm-on .tw-tspot-mini-q { color:rgba(255,255,255,.7); }
.tw-tspot-mini-who { font-size:.6rem; font-weight:700; color:rgba(255,255,255,.2); }
.tw-tspot-mini.tw-tsm-on .tw-tspot-mini-who { color:var(--tw-teal); }

/* ============================================================
   PROCESS (horizontal numbered ribbon)
   ============================================================ */
.tw-proc-rail { display:flex; gap:0; margin-top:2.5rem; position:relative; }
.tw-proc-rail::before { content:''; position:absolute; top:24px; left:0; right:0; height:1px; background:var(--tw-edge); z-index:0; }
.tw-proc-step { flex:1; padding-top:2.8rem; position:relative; padding-right:1.2rem; }
.tw-proc-dot { position:absolute; top:0; left:0; width:48px; height:48px; border-radius:50%; background:var(--tw-white); border:1.5px solid var(--tw-edge); display:flex; align-items:center; justify-content:center; font-family:var(--tw-fh); font-size:.72rem; font-weight:800; color:var(--tw-teal); z-index:1; }
.tw-proc-step:first-child .tw-proc-dot { border-color:var(--tw-teal); background:var(--tw-tealt); }
.tw-proc-h { font-family:var(--tw-fh); font-size:.9rem; font-weight:700; color:var(--tw-midnight); margin-bottom:.3rem; }
.tw-proc-p { font-size:.78rem; line-height:1.68; }

/* ============================================================
   2-COLUMN FAQ ACCORDION (FIRST in series!)
   ============================================================ */
.tw-faq-2col { display:grid; grid-template-columns:1fr 1fr; gap:0 3rem; margin-top:2.5rem; }
.tw-faq-row { border-bottom:1px solid var(--tw-edge); }
.tw-faq-row:last-child { border-bottom:none; }
.tw-faq-qbtn { display:flex; justify-content:space-between; align-items:center; gap:1rem; width:100%; padding:1.1rem 0; font-family:var(--tw-fh); font-size:.88rem; font-weight:700; color:var(--tw-midnight); text-align:left; cursor:pointer; }
.tw-faq-ic { width:22px; height:22px; border:1.5px solid var(--tw-edge); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--tw-ease); color:var(--tw-dim); }
.tw-faq-row.tw-faq-open .tw-faq-ic { background:var(--tw-teal); border-color:var(--tw-teal); color:white; transform:rotate(45deg); }
.tw-faq-ans { max-height:0; overflow:hidden; transition:max-height .32s ease; }
.tw-faq-row.tw-faq-open .tw-faq-ans { max-height:300px; }
.tw-faq-a { font-size:.84rem; line-height:1.78; padding-bottom:1rem; }

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.tw-pagecap { background:var(--tw-midnight); text-align:center; padding:6rem 2.5rem 5rem; position:relative; overflow:hidden; }
.tw-pagecap::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(20,184,166,.05),transparent 70%); pointer-events:none; }
.tw-pagecap::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(to right,transparent,var(--tw-teal),transparent); }
.tw-pagecap-tag { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--tw-fb); font-size:.5rem; font-weight:700; text-transform:uppercase; letter-spacing:.26em; color:var(--tw-teal); background:rgba(20,184,166,.1); border:1px solid rgba(20,184,166,.2); padding:.24rem .8rem; border-radius:100px; margin-bottom:.8rem; position:relative; }
.tw-pagecap h1 { color:white; max-width:18ch; margin:0 auto; position:relative; white-space:pre-line; }
.tw-pagecap-sub { color:rgba(255,255,255,.4); max-width:54ch; margin:.7rem auto 0; font-size:.94rem; position:relative; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.tw-svc-layout { max-width:var(--tw-max); margin:0 auto; padding:5.5rem 2.5rem; display:grid; grid-template-columns:1fr 260px; gap:5rem; align-items:start; }
.tw-svc-body h2 { font-family:var(--tw-fh); font-size:1.05rem; color:var(--tw-teal); margin:2.5rem 0 .5rem; }
.tw-svc-body p { margin-bottom:.88rem; }
.tw-svc-inc-list { display:flex; flex-direction:column; gap:.36rem; margin-bottom:1.5rem; }
.tw-svc-inc { display:flex; align-items:flex-start; gap:.5rem; font-size:.86rem; color:var(--tw-ink); }
.tw-svc-inc svg { color:var(--tw-teal); flex-shrink:0; margin-top:.1rem; }
.tw-svc-del { background:var(--tw-tealt); border-left:3px solid var(--tw-teal); padding:.72rem 1rem; border-radius:0 var(--tw-r) var(--tw-r) 0; margin-bottom:1.5rem; }
.tw-svc-del p { margin:0; font-size:.84rem; color:var(--tw-midnight); }
/* ASIDE - dark midnight bg: buttons must be on dark! */
.tw-svc-aside { position:sticky; top:calc(var(--tw-nav-h) + 24px); }
.tw-aside-card { background:var(--tw-midnight); border-radius:var(--tw-r3); overflow:hidden; }
.tw-aside-img img { width:100%; height:90px; object-fit:cover; filter:brightness(.15) saturate(.3); }
.tw-aside-body { padding:1.2rem; }
.tw-aside-nm { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.25); margin-bottom:.2rem; }
.tw-aside-rate { font-family:var(--tw-fh); font-size:.9rem; font-weight:700; color:var(--tw-teal); margin-bottom:.8rem; }
/* Other services links: OUTSIDE dark card, on pale bg: use dark muted colors! */
.tw-other-h { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.2em; color:var(--tw-dim); margin:1.4rem 0 .5rem; }
.tw-other-lk { display:flex; align-items:center; gap:.4rem; font-size:.8rem; color:var(--tw-muted); padding:.36rem 0; border-bottom:1px solid var(--tw-edge); transition:color .14s; }
.tw-other-lk:hover { color:var(--tw-midnight); }

/* ============================================================
   BUILDER
   ============================================================ */
.tw-build-wrap { max-width:var(--tw-max); margin:0 auto; padding:4.5rem 2.5rem 8rem; display:grid; grid-template-columns:1fr 280px; gap:4rem; align-items:start; }
.tw-build-sec { margin-bottom:2.5rem; }
.tw-build-hd { display:block; font-family:var(--tw-fb); font-size:.5rem; font-weight:700; text-transform:uppercase; letter-spacing:.22em; color:var(--tw-teal); margin-bottom:.88rem; }
.tw-pick-row { background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r2); padding:.82rem 1rem; display:flex; align-items:center; gap:.7rem; cursor:pointer; user-select:none; transition:var(--tw-ease); margin-bottom:.4rem; }
.tw-pick-row:hover { border-color:var(--tw-teald); }
.tw-pick-row.tw-sel { border-color:var(--tw-teal); background:var(--tw-tealt); }
.tw-pick-box { width:18px; height:18px; border:1.5px solid var(--tw-dim); border-radius:var(--tw-r); flex-shrink:0; transition:var(--tw-ease); }
.tw-pick-row.tw-sel .tw-pick-box { background:var(--tw-teal); border-color:var(--tw-teal); }
.tw-pick-nm { font-size:.86rem; color:var(--tw-muted); flex:1; }
.tw-pick-row.tw-sel .tw-pick-nm { color:var(--tw-ink); font-weight:600; }
.tw-pick-pr { font-size:.68rem; font-weight:700; color:var(--tw-teal); }
.tw-addon-row { display:flex; flex-wrap:wrap; gap:.45rem; }
.tw-addon-chip { background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r); padding:.5rem .9rem; cursor:pointer; user-select:none; transition:var(--tw-ease); }
.tw-addon-chip:hover { border-color:var(--tw-teald); }
.tw-addon-chip.tw-chip-on { border-color:var(--tw-teal); background:var(--tw-tealt); }
.tw-chip-nm { font-size:.82rem; font-weight:600; color:var(--tw-muted); }
.tw-addon-chip.tw-chip-on .tw-chip-nm { color:var(--tw-ink); }
.tw-chip-pr { font-size:.6rem; color:var(--tw-dim); }
.tw-addon-chip.tw-chip-on .tw-chip-pr { color:var(--tw-teal); }
.tw-hrs-wrap { background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r2); padding:1rem; }
.tw-hrs-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.tw-hrs-lbl { font-size:.86rem; color:var(--tw-muted); }
.tw-hrs-val { font-family:var(--tw-fh); font-size:2rem; font-weight:800; color:var(--tw-teal); line-height:1; }
.tw-hrs-slider { -webkit-appearance:none; width:100%; height:3px; background:var(--tw-edge); border-radius:2px; cursor:pointer; margin-top:.5rem; }
.tw-hrs-slider::-webkit-slider-thumb { -webkit-appearance:none; width:18px; height:18px; border-radius:50%; background:var(--tw-teal); cursor:pointer; }
.tw-hrs-note { font-size:.66rem; color:var(--tw-dim); margin-top:.45rem; }
.tw-tally { background:var(--tw-midnight); border-radius:var(--tw-r3); overflow:hidden; position:sticky; top:calc(var(--tw-nav-h)+24px); }
.tw-tally-top { background:rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.07); padding:.88rem 1.2rem; }
.tw-tally-lbl { font-size:.46rem; font-weight:700; text-transform:uppercase; letter-spacing:.18em; color:rgba(255,255,255,.25); }
.tw-tally-lines { padding:.88rem 1.2rem; min-height:60px; }
.tw-tally-empty { font-size:.76rem; color:rgba(255,255,255,.18); font-style:italic; }
.tw-tally-ln { display:flex; justify-content:space-between; gap:.5rem; font-size:.76rem; margin-bottom:.38rem; }
.tw-tally-lnm { color:rgba(255,255,255,.35); }
.tw-tally-lpr { font-weight:700; color:white; }
.tw-tally-foot { border-top:1px solid rgba(255,255,255,.07); padding:.88rem 1.2rem; }
.tw-tally-sum { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:.88rem; }
.tw-tally-suml { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.2); }
.tw-tally-sumv { font-family:var(--tw-fh); font-size:2.4rem; font-weight:800; color:var(--tw-teal); line-height:1; letter-spacing:-.04em; }
.tw-tally-go { display:block; width:100%; background:var(--tw-teal); color:white; font-family:var(--tw-fb); font-size:.88rem; font-weight:700; padding:.78rem; border-radius:var(--tw-r2); border:none; cursor:pointer; transition:background .14s; }
.tw-tally-go:hover:not(:disabled) { background:var(--tw-teal2); }
.tw-tally-go:disabled { opacity:.2; cursor:not-allowed; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.tw-co-wrap { max-width:860px; margin:0 auto; padding:5rem 2.5rem; display:grid; grid-template-columns:1fr 250px; gap:4rem; align-items:start; }
.tw-fg { margin-bottom:.68rem; }
.tw-fl { display:block; font-size:.48rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:var(--tw-muted); margin-bottom:.26rem; }
.tw-fi { width:100%; background:var(--tw-white); border:1.5px solid var(--tw-edge); border-radius:var(--tw-r2); padding:.64rem .9rem; color:var(--tw-ink); font-size:.9rem; transition:border-color .15s; }
.tw-fi:focus { outline:none; border-color:var(--tw-teal); box-shadow:0 0 0 3px var(--tw-tealt); }
.tw-fi::placeholder { color:var(--tw-dim); }
.tw-agree-row { display:flex; align-items:flex-start; gap:.5rem; font-size:.82rem; color:var(--tw-muted); line-height:1.6; margin:.88rem 0; }
.tw-agree-row input { margin-top:.14rem; accent-color:var(--tw-teal); }
.tw-agree-row a { color:var(--tw-teal); }
.tw-co-sum { background:var(--tw-midnight); border-radius:var(--tw-r3); overflow:hidden; position:sticky; top:calc(var(--tw-nav-h)+24px); }
.tw-co-sum-hd { background:rgba(255,255,255,.04); padding:.72rem 1rem; border-bottom:1px solid rgba(255,255,255,.07); }
.tw-co-sum-hl { font-size:.46rem; font-weight:700; text-transform:uppercase; letter-spacing:.16em; color:rgba(255,255,255,.25); }
.tw-co-sum-body { padding:.88rem 1rem; }
.tw-co-sum-ln { display:flex; justify-content:space-between; gap:1rem; font-size:.76rem; margin-bottom:.38rem; }
.tw-co-sum-lnm { color:rgba(255,255,255,.35); }
.tw-co-sum-lpr { font-weight:700; color:white; }
.tw-co-sum-div { border:none; border-top:1px solid rgba(255,255,255,.07); margin:.5rem 0; }
.tw-co-sum-tot { display:flex; justify-content:space-between; align-items:flex-end; }
.tw-co-sum-totl { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.2); }
.tw-co-sum-totv { font-family:var(--tw-fh); font-size:2rem; font-weight:800; color:var(--tw-teal); line-height:1; }

/* ============================================================
   LEGAL
   ============================================================ */
.tw-legal { max-width:820px; margin:0 auto; padding:5.5rem 2.5rem 8rem; }
.tw-legal h2 { font-family:var(--tw-fh); font-size:1.05rem; color:var(--tw-teal); margin:2.8rem 0 .5rem; }
.tw-legal h3 { font-family:var(--tw-fh); font-size:.94rem; color:var(--tw-midnight); margin:1.4rem 0 .3rem; }
.tw-legal p { margin-bottom:.88rem; font-size:.88rem; }
.tw-legal ul { padding-left:1.2rem; margin:.4rem 0 .88rem; }
.tw-legal li { font-size:.88rem; list-style:disc; color:var(--tw-muted); line-height:1.72; margin-bottom:.26rem; }
.tw-legal a { color:var(--tw-teal); }
.tw-legal table { width:100%; border-collapse:collapse; font-size:.82rem; margin:.88rem 0 1.2rem; }
.tw-legal th { background:var(--tw-off); color:var(--tw-midnight); padding:.5rem .9rem; text-align:left; font-size:.58rem; text-transform:uppercase; letter-spacing:.06em; border:1px solid var(--tw-edge); }
.tw-legal td { padding:.5rem .9rem; border:1px solid var(--tw-edge); color:var(--tw-muted); }
.tw-legal address { background:var(--tw-tealt); border-left:3px solid var(--tw-teal); padding:.88rem 1.1rem; font-size:.86rem; color:var(--tw-midnight); line-height:1.86; margin:.88rem 0; border-radius:0 var(--tw-r) var(--tw-r) 0; }
.tw-legal-eff { display:inline-block; font-size:.68rem; color:var(--tw-muted); background:var(--tw-off); border:1px solid var(--tw-edge); padding:.24rem .7rem; border-radius:100px; margin-bottom:1.5rem; }

/* ============================================================
   RESULT PAGES
   ============================================================ */
.tw-result { min-height:74vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:calc(var(--tw-nav-h) + 4rem) 2.5rem 5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.tw-btn-teal { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--tw-fb); font-size:.9rem; font-weight:700; color:white; background:var(--tw-teal); padding:.74rem 2rem; border-radius:100px; transition:background .14s; border:none; cursor:pointer; white-space:nowrap; }
.tw-btn-teal:hover { background:var(--tw-teal2); }
.tw-btn-mid { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--tw-fb); font-size:.9rem; font-weight:700; color:white; background:var(--tw-midnight); padding:.74rem 2rem; border-radius:100px; transition:background .14s; border:none; cursor:pointer; white-space:nowrap; }
.tw-btn-mid:hover { background:var(--tw-ocean); }
.tw-btn-ghost { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--tw-fb); font-size:.9rem; font-weight:700; color:var(--tw-midnight); background:transparent; padding:.72rem 1.9rem; border-radius:100px; border:1.5px solid var(--tw-edge); transition:var(--tw-ease); white-space:nowrap; }
.tw-btn-ghost:hover { border-color:var(--tw-midnight); }
/* Ghost white for dark backgrounds */
.tw-btn-ghost-w { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--tw-fb); font-size:.9rem; font-weight:700; color:white; background:transparent; padding:.72rem 1.9rem; border-radius:100px; border:1.5px solid rgba(255,255,255,.22); transition:border-color .14s; white-space:nowrap; }
.tw-btn-ghost-w:hover { border-color:rgba(255,255,255,.7); }

/* ============================================================
   TEAL CTA BAND
   ============================================================ */
.tw-ctaband { background:linear-gradient(135deg,var(--tw-midnight),var(--tw-ocean)); position:relative; overflow:hidden; }
.tw-ctaband::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; border-radius:50%; border:1px solid rgba(20,184,166,.1); }
.tw-ctaband::after  { content:''; position:absolute; top:20px; right:60px; width:160px; height:160px; border-radius:50%; border:1px solid rgba(20,184,166,.06); }
.tw-ctaband-in { max-width:640px; margin:0 auto; padding:8rem 2.5rem; text-align:center; position:relative; }
.tw-ctaband-in h2 { color:white; margin-bottom:.6rem; }
.tw-ctaband-in p { color:rgba(255,255,255,.4); margin-bottom:2.2rem; font-size:1rem; max-width:42ch; margin-left:auto; margin-right:auto; }
.tw-cta-row { display:flex; gap:.7rem; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   TRUST STRIP (ISO, ATA badges)
   ============================================================ */
.tw-trust { background:var(--tw-off); border-top:1px solid var(--tw-edge); border-bottom:1px solid var(--tw-edge); padding:2.5rem 0; }
.tw-trust-row { max-width:var(--tw-max); margin:0 auto; padding:0 2.5rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.tw-trust-item { display:flex; align-items:center; gap:.5rem; }
.tw-trust-ic { width:32px; height:32px; background:var(--tw-tealt); border-radius:var(--tw-r); display:flex; align-items:center; justify-content:center; color:var(--tw-teal); flex-shrink:0; }
.tw-trust-nm { font-family:var(--tw-fh); font-size:.76rem; font-weight:700; color:var(--tw-midnight); }
.tw-trust-sub { font-size:.6rem; color:var(--tw-muted); }

/* ============================================================
   COOKIE + CHAT
   ============================================================ */
.tw-ck-bar { position:fixed; bottom:0; left:0; right:0; background:var(--tw-ink); border-top:3px solid var(--tw-teal); z-index:9999; padding:.9rem 2rem; display:none; gap:1rem; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.tw-ck-bar p { font-size:.78rem; color:rgba(255,255,255,.45); margin:0; }
.tw-ck-bar a { color:var(--tw-teal); }
.tw-ck-btns { display:flex; gap:.4rem; flex-shrink:0; }
.tw-ck-yes { background:var(--tw-teal); color:white; font-size:.76rem; font-weight:700; padding:.38rem .92rem; border:none; border-radius:100px; cursor:pointer; }
.tw-ck-no  { background:transparent; color:rgba(255,255,255,.38); font-size:.76rem; padding:.38rem .92rem; border:1px solid rgba(255,255,255,.14); border-radius:100px; cursor:pointer; }
.tw-chat-fab { position:fixed; bottom:4.5rem; right:1.5rem; z-index:9990; width:52px; height:52px; background:var(--tw-teal); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(20,184,166,.4); cursor:pointer; border:none; transition:var(--tw-ease); }
.tw-chat-fab:hover { background:var(--tw-teal2); transform:scale(1.06); }
.tw-chatpop { position:fixed; bottom:7.8rem; right:1.5rem; z-index:9989; width:272px; background:var(--tw-white); border:1px solid var(--tw-edge); border-radius:var(--tw-r3); box-shadow:var(--tw-sh2); opacity:0; pointer-events:none; transform:translateY(10px) scale(.97); transition:opacity .2s,transform .22s; overflow:hidden; }
.tw-chatpop.tw-cp-on { opacity:1; pointer-events:auto; transform:none; }
.tw-chatpop-hd { background:var(--tw-midnight); padding:.9rem 1rem; display:flex; align-items:center; justify-content:space-between; }
.tw-chatpop-nm { font-family:var(--tw-fh); font-size:.86rem; font-weight:700; color:white; }
.tw-chatpop-sub { font-size:.54rem; color:rgba(255,255,255,.3); }
.tw-chatpop-x { color:rgba(255,255,255,.4); background:none; border:none; cursor:pointer; }
.tw-chatpop-bd { padding:.9rem; }
.tw-chat-done { display:none; text-align:center; padding:.8rem; font-size:.82rem; color:var(--tw-teal); font-weight:700; }
.tw-chat-inp { width:100%; background:var(--tw-off); border:1px solid var(--tw-edge); border-radius:var(--tw-r2); padding:.46rem .76rem; font-size:.8rem; color:var(--tw-ink); margin-bottom:.38rem; resize:none; }
.tw-chat-inp:focus { outline:none; border-color:var(--tw-teald); }
.tw-chat-send { width:100%; background:var(--tw-teal); color:white; font-size:.78rem; font-weight:700; padding:.48rem; border-radius:var(--tw-r2); border:none; cursor:pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
.tw-foot { background:var(--tw-midnight); }
.tw-foot-top { max-width:var(--tw-max); margin:0 auto; padding:5rem 2.5rem 2.5rem; display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.2fr; gap:3rem; }
.tw-foot-brand { font-family:var(--tw-fh); font-size:.9rem; font-weight:800; color:white; margin-bottom:.3rem; }
.tw-foot-brand em { color:var(--tw-teal); font-style:normal; }
.tw-foot-tag { font-size:.72rem; color:rgba(255,255,255,.2); max-width:26ch; line-height:1.72; margin-bottom:.65rem; }
.tw-foot-ein { font-size:.56rem; color:rgba(255,255,255,.1); margin-bottom:1rem; }
.tw-foot-soc { display:flex; gap:.3rem; }
.tw-foot-soc a { width:30px; height:30px; border:1px solid rgba(255,255,255,.1); border-radius:var(--tw-r); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.2); transition:var(--tw-ease); }
.tw-foot-soc a:hover { border-color:var(--tw-teal); color:var(--tw-teal); }
.tw-foot-col-h { font-size:.44rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.18); margin-bottom:.8rem; }
.tw-foot-links { display:flex; flex-direction:column; gap:.42rem; }
.tw-foot-links a { font-size:.78rem; color:rgba(255,255,255,.24); transition:color .14s; }
.tw-foot-links a:hover { color:var(--tw-teal); }
.tw-foot-ct a { font-size:.76rem; color:rgba(255,255,255,.24); display:flex; align-items:flex-start; gap:.42rem; line-height:1.52; transition:color .14s; margin-bottom:.5rem; }
.tw-foot-ct a:hover { color:var(--tw-teal); }
.tw-foot-ct svg { flex-shrink:0; color:var(--tw-teal); opacity:.5; margin-top:.04rem; }
.tw-foot-btm { border-top:1px solid rgba(255,255,255,.05); max-width:var(--tw-max); margin:0 auto; padding:1.4rem 2.5rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.tw-foot-copy { font-size:.58rem; color:rgba(255,255,255,.14); }
.tw-foot-leg { display:flex; gap:1.2rem; flex-wrap:wrap; }
.tw-foot-leg a { font-size:.58rem; color:rgba(255,255,255,.2); transition:color .14s; }
.tw-foot-leg a:hover { color:var(--tw-teal); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.tw-up   { opacity:0; transform:translateY(14px); transition:opacity .5s ease,transform .5s ease; }
.tw-up.tw-vis { opacity:1; transform:none; }
.tw-fade { opacity:0; transition:opacity .6s ease; }
.tw-fade.tw-vis { opacity:1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .tw-nav-links,.tw-mega-wrap,.tw-mega-overlay { display:none; }
  .tw-mob-tog { display:flex; }
  .tw-nav-cta-area { display:none; }
  .tw-hero-in { grid-template-columns:1fr; gap:3rem; }
  .tw-hero-right { display:none; }
  .tw-bento { grid-template-columns:1fr 1fr; }
  .tw-bento-cell:nth-child(5) { grid-column:span 1; }
  .tw-bento-cell:nth-child(5) .tw-bento-grid-inner { grid-template-columns:1fr; }
  .tw-pkg-row { grid-template-columns:1fr 1fr; }
  .tw-case-grid { grid-template-columns:1fr 1fr; }
  .tw-tspot-in { grid-template-columns:1fr; gap:3rem; }
  .tw-tspot-right { display:none; }
  .tw-faq-2col { grid-template-columns:1fr; }
  .tw-svc-layout,.tw-build-wrap,.tw-co-wrap { grid-template-columns:1fr; }
  .tw-foot-top { grid-template-columns:1fr 1fr; gap:2rem; }
  .tw-stats-row { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .tw-shell { padding:0 1.4rem; }
  .tw-slab { padding:5rem 0; }
  .tw-hero-in { padding:3rem 1.4rem 2.5rem; }
  .tw-bento { grid-template-columns:1fr; }
  .tw-bento-cell:nth-child(n) { grid-column:span 1; }
  .tw-pkg-row { grid-template-columns:1fr; }
  .tw-case-grid { grid-template-columns:1fr; }
  .tw-proc-rail { flex-direction:column; gap:1.5rem; }
  .tw-proc-rail::before { display:none; }
  .tw-proc-dot { position:static; margin-bottom:.5rem; }
  .tw-proc-step { padding-top:0; }
  .tw-stats-row { grid-template-columns:1fr 1fr; }
  .tw-foot-top { grid-template-columns:1fr; }
  .tw-nav-inner { padding:0 1.4rem; }
  .tw-build-wrap,.tw-co-wrap { padding:3rem 1.4rem 5rem; }
}
