/*
 * time2translate.com — design system
 * Deep Navy #071A35 + Vivid Blue #2563EB + Cloud White #F8FAFF
 * Space Grotesk (heading) + Inter (body)
 * Nav: SPLIT CENTER LOGO — unique across all series
 * Hero: CENTERED EDITORIAL with TYPING ANIMATION — completely unique
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --t2-navy:    #071A35;
  --t2-navy-m:  #0D2B56;
  --t2-navy-l:  rgba(7,26,53,.05);
  --t2-blue:    #2563EB;
  --t2-blue-d:  #1D4ED8;
  --t2-blue-l:  rgba(37,99,235,.1);
  --t2-blue-ll: rgba(37,99,235,.06);
  --t2-cloud:   #F8FAFF;
  --t2-sky:     #E4EDF8;
  --t2-white:   #FFFFFF;
  --t2-text:    #1A2B4A;
  --t2-muted:   #6B7A99;
  --t2-border:  rgba(7,26,53,.09);

  --t2-fh: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --t2-fb: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --t2-r4:  4px;  --t2-r6:  6px;  --t2-r8:  8px;
  --t2-r12: 12px; --t2-r16: 16px; --t2-r24: 24px;

  --t2-sh1: 0 1px 4px rgba(7,26,53,.05), 0 4px 16px rgba(7,26,53,.04);
  --t2-sh2: 0 4px 24px rgba(7,26,53,.1), 0 8px 32px rgba(7,26,53,.06);
  --t2-sh3: 0 12px 48px rgba(7,26,53,.18);
  --t2-sh-blue: 0 8px 32px rgba(37,99,235,.2);
}

/* ── RESET ────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--t2-fb); font-size: .9375rem; line-height: 1.72;
  color: var(--t2-text); background: var(--t2-white); overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--t2-fb); }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--t2-fh); font-weight: 700; line-height: 1.15; color: var(--t2-navy); }
h1 { font-size: clamp(2.25rem, 4.5vw, 4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); letter-spacing: -.01em; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p  { line-height: 1.8; }

/* ── NAV: SPLIT CENTER LOGO ────────────────────────── */
.t2-crown {
  position: sticky; top: 0; z-index: 900;
  background: rgba(248,250,255,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--t2-border);
}
.t2-crown-shell {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 70px;
}
.t2-crown-wing {
  display: flex; align-items: center; gap: .125rem; flex: 1;
}
.t2-wing-right { justify-content: flex-end; }
.t2-crown-center {
  flex-shrink: 0; padding: 0 clamp(1rem, 2.5vw, 2rem); text-align: center;
}
.t2-crown-brand {
  font-family: var(--t2-fh); font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 700; color: var(--t2-navy); white-space: nowrap;
}
.t2-crown-brand .t2-num { color: var(--t2-blue); }
.t2-crownlink {
  font-family: var(--t2-fh); font-size: 1.0625rem; font-weight: 600;
  color: var(--t2-text); padding: .5rem .75rem; border-radius: var(--t2-r6);
  transition: color .18s, background .18s;
}
.t2-crownlink:hover { color: var(--t2-blue); background: var(--t2-blue-ll); }
.t2-crownlink.t2-cr-on { color: var(--t2-blue); }
.t2-crown-cta {
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 700;
  background: var(--t2-blue); color: #fff; border: none;
  padding: .625rem 1.375rem; border-radius: var(--t2-r8);
  transition: background .18s; white-space: nowrap;
  margin-left: .75rem;
}
.t2-crown-cta:hover { background: var(--t2-blue-d); }
.t2-crown-burger { display: none; background: none; border: none; color: var(--t2-navy); padding: .5rem; margin-left: .625rem; }

/* Mobile drawer */
.t2-drawer { display: none; position: fixed; inset: 0; z-index: 9000; background: var(--t2-navy); flex-direction: column; padding: 2rem; overflow-y: auto; }
.t2-drawer.t2-dr-open { display: flex; }
.t2-dr-close { background: none; border: none; color: rgba(255,255,255,.4); padding: .5rem; margin-bottom: 2rem; }
.t2-dr-link { font-family: var(--t2-fh); font-size: 1.625rem; font-weight: 700; color: rgba(255,255,255,.8); padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); display: block; }
.t2-dr-link:hover { color: #fff; }
.t2-dr-cta { margin-top: 2rem; background: var(--t2-blue); color: #fff; padding: 1rem 2rem; border-radius: var(--t2-r8); font-family: var(--t2-fh); font-size: 1rem; font-weight: 700; text-align: center; display: block; }

/* ── HERO: CENTERED EDITORIAL + TYPING ANIMATION ─── */
#t2-spark {
  background: var(--t2-cloud); position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center; overflow: hidden;
}
#t2-spark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,.07) 0%, transparent 70%);
  pointer-events: none;
}
.t2-spark-eyebrow {
  display: inline-flex; align-items: center; gap: .625rem;
  font-family: var(--t2-fh); font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--t2-blue);
  margin-bottom: 1.75rem;
  background: var(--t2-blue-l); padding: .35rem 1rem; border-radius: 100px;
}
.t2-spark-h1 {
  max-width: 13ch; margin: 0 auto 1.375rem;
  font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.08;
}
.t2-spark-typed {
  color: var(--t2-blue); display: inline;
}
.t2-cursor {
  display: inline-block; width: 3px; height: 1em;
  background: var(--t2-blue); vertical-align: middle;
  margin-left: 2px; animation: t2blink .7s step-start infinite;
}
@keyframes t2blink { 50% { opacity: 0; } }
.t2-spark-sub {
  max-width: 56ch; margin: 0 auto 2.5rem;
  color: var(--t2-muted); font-size: clamp(1rem, 1.8vw, 1.125rem); line-height: 1.78;
}
.t2-spark-acts { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }
.t2-spark-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 3.5rem; }
.t2-spark-badge {
  background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r12);
  padding: .875rem 1.25rem; display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--t2-sh1);
}
.t2-sb-n { font-family: var(--t2-fh); font-size: 1.5rem; font-weight: 700; color: var(--t2-navy); line-height: 1; }
.t2-sb-l { font-size: .8125rem; color: var(--t2-muted); text-align: left; }

/* ── CONTAINER ────────────────────────────────────── */
.t2-hull { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ── REVEAL ───────────────────────────────────────── */
.t2-emerge { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.t2-emerge.t2-vis { opacity: 1; transform: none; }

/* ── EYEBROW ──────────────────────────────────────── */
.t2-tag {
  display: inline-flex; align-items: center;
  font-family: var(--t2-fh); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--t2-blue); background: var(--t2-blue-l);
  padding: .3rem .875rem; border-radius: 100px; margin-bottom: .875rem;
}

/* ── BUTTONS ──────────────────────────────────────── */
.t2-btn-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--t2-blue); color: #fff;
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.875rem; border-radius: var(--t2-r8);
  border: none; transition: background .18s, box-shadow .18s; white-space: nowrap;
}
.t2-btn-blue:hover { background: var(--t2-blue-d); box-shadow: var(--t2-sh-blue); }
.t2-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--t2-navy);
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 600;
  padding: .8125rem 1.875rem; border-radius: var(--t2-r8);
  border: 1.5px solid var(--t2-border); transition: border-color .18s, background .18s;
  white-space: nowrap;
}
.t2-btn-outline:hover { border-color: var(--t2-blue); background: var(--t2-blue-ll); color: var(--t2-blue); }
.t2-btn-dk {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--t2-navy); color: #fff;
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.875rem; border-radius: var(--t2-r8);
  border: none; transition: background .18s; white-space: nowrap;
}
.t2-btn-dk:hover { background: var(--t2-navy-m); }
.t2-link-btn {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 600;
  color: var(--t2-blue); border-bottom: 1.5px solid transparent; transition: border-color .18s;
}
.t2-link-btn:hover { border-color: var(--t2-blue); }

/* ── BANDS ────────────────────────────────────────── */
.t2-band       { padding: clamp(4rem, 8vw, 7rem) 0; }
.t2-band-sm    { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.t2-band-white { background: var(--t2-white); }
.t2-band-cloud { background: var(--t2-cloud); }
.t2-band-sky   { background: var(--t2-sky); }
.t2-band-navy  { background: var(--t2-navy); }
.t2-band-dk    { background: var(--t2-navy-m); }

.t2-bh { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.t2-bh h2 { max-width: 20ch; }
.t2-bh-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ── SERVICE BENTO GRID ──────────────────────────── */
.t2-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.t2-block {
  background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r16);
  padding: 1.875rem; display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .25s, transform .25s;
  text-decoration: none;
}
.t2-block:hover { border-color: var(--t2-blue); box-shadow: var(--t2-sh-blue); transform: translateY(-3px); }
.t2-block-ico {
  width: 52px; height: 52px; border-radius: var(--t2-r12);
  background: var(--t2-blue-l); color: var(--t2-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
  transition: background .2s;
}
.t2-block:hover .t2-block-ico { background: var(--t2-blue); color: #fff; }
.t2-block-name { font-family: var(--t2-fh); font-size: 1.0625rem; font-weight: 700; color: var(--t2-navy); margin-bottom: .5rem; }
.t2-block-desc { font-size: .875rem; color: var(--t2-muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.t2-block-foot { display: flex; justify-content: space-between; align-items: center; }
.t2-block-price { font-family: var(--t2-fh); font-size: .9375rem; font-weight: 700; color: var(--t2-navy); }
.t2-block-arr { color: var(--t2-muted); transition: color .18s, transform .18s; }
.t2-block:hover .t2-block-arr { color: var(--t2-blue); transform: translate(2px, -2px); }

/* ── WHY US (horizontal 4-col) ───────────────────── */
.t2-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.t2-pillar { padding: 1.75rem; background: var(--t2-white); border-radius: var(--t2-r12); border: 1.5px solid var(--t2-border); }
.t2-pillar-ico { width: 44px; height: 44px; border-radius: var(--t2-r8); background: var(--t2-blue-l); color: var(--t2-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.t2-pillar h4 { font-family: var(--t2-fh); margin-bottom: .5rem; }
.t2-pillar p { font-size: .875rem; color: var(--t2-muted); line-height: 1.75; margin: 0; }

/* ── PROCESS: VERTICAL ALTERNATING TIMELINE ─────── */
.t2-timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.t2-timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--t2-blue) 0%, rgba(37,99,235,.1) 100%);
  transform: translateX(-50%);
}
.t2-milestone {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 2rem; align-items: center; padding: 3rem 0;
  position: relative;
}
.t2-ms-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--t2-blue); border: 4px solid var(--t2-cloud);
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2; box-shadow: var(--t2-sh-blue);
}
.t2-ms-dot::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  background: var(--t2-blue-l);
}
.t2-ms-left { text-align: right; }
.t2-ms-right { text-align: left; }
.t2-ms-mid { /* spacer column for dot */ }
.t2-milestone:nth-child(even) .t2-ms-left { order: 3; text-align: left; }
.t2-milestone:nth-child(even) .t2-ms-mid { order: 2; }
.t2-milestone:nth-child(even) .t2-ms-right { order: 1; text-align: right; }
.t2-ms-n { font-family: var(--t2-fh); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--t2-blue); margin-bottom: .5rem; }
.t2-ms-h { font-family: var(--t2-fh); font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; color: var(--t2-navy); }
.t2-ms-b { font-size: .9375rem; color: var(--t2-muted); line-height: 1.78; }

/* ── TABBED CASE STUDIES ─────────────────────────── */
.t2-tab-row { display: flex; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.t2-tab-btn {
  font-family: var(--t2-fh); font-size: .9375rem; font-weight: 600;
  padding: .625rem 1.375rem; border-radius: 100px;
  border: 1.5px solid var(--t2-border); background: transparent;
  color: var(--t2-muted); cursor: pointer; transition: all .2s;
}
.t2-tab-btn.t2-tab-on { background: var(--t2-blue); color: #fff; border-color: var(--t2-blue); }
.t2-tab-btn:not(.t2-tab-on):hover { border-color: var(--t2-blue); color: var(--t2-blue); }
.t2-tab-panel { display: none; }
.t2-tab-panel.t2-tp-on { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.t2-tc-img { border-radius: var(--t2-r16); overflow: hidden; aspect-ratio: 4/3; background: var(--t2-sky); }
.t2-tc-img img { width: 100%; height: 100%; object-fit: cover; }
.t2-tc-sector { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--t2-blue); font-family: var(--t2-fh); margin-bottom: .5rem; }
.t2-tc-h { font-family: var(--t2-fh); font-size: clamp(1.125rem, 2vw, 1.5rem); margin-bottom: 1.25rem; }
.t2-tc-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--t2-muted); font-family: var(--t2-fh); margin: 1rem 0 .375rem; }
.t2-tc-p { font-size: .9375rem; color: var(--t2-muted); line-height: 1.78; margin: 0; }
.t2-tc-stat { margin-top: 1.75rem; background: var(--t2-navy); border-radius: var(--t2-r12); padding: 1.25rem 1.5rem; display: inline-block; }
.t2-tc-sn { font-family: var(--t2-fh); font-size: 2rem; font-weight: 700; color: var(--t2-blue); line-height: 1; }
.t2-tc-sl { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: .25rem; }

/* ── COUNTER STATS ───────────────────────────────── */
.t2-counters { display: grid; grid-template-columns: repeat(4, 1fr); }
.t2-counter-cell { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.t2-counter-cell:last-child { border-right: none; }
.t2-cn { font-family: var(--t2-fh); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; color: #fff; line-height: 1; }
.t2-cl { font-size: .8125rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .07em; margin-top: .375rem; font-family: var(--t2-fh); }

/* ── TESTIMONIALS: HORIZONTAL SCROLL ─────────────── */
.t2-quotes-outer { overflow: hidden; }
.t2-quotes-track { display: flex; gap: 1.25rem; transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
.t2-q-card {
  min-width: 360px; max-width: 360px; flex-shrink: 0;
  background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r16);
  padding: 2rem; position: relative;
}
.t2-q-tag { display: inline-flex; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--t2-blue); background: var(--t2-blue-l); padding: .3rem .75rem; border-radius: 100px; font-family: var(--t2-fh); margin-bottom: 1rem; }
.t2-q-stars { display: flex; gap: .2rem; color: var(--t2-blue); margin-bottom: .875rem; }
.t2-q-body { font-size: .9375rem; color: var(--t2-text); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.t2-q-body::before { content: '\201C'; font-family: Georgia, serif; font-size: 1.75rem; color: var(--t2-blue-l); line-height: 0; vertical-align: -.5em; margin-right: .1em; }
.t2-q-name { font-family: var(--t2-fh); font-size: .9375rem; font-weight: 700; color: var(--t2-navy); }
.t2-q-role { font-size: .8125rem; color: var(--t2-muted); }
.t2-quotes-nav { display: flex; gap: .625rem; margin-top: 1.5rem; }
.t2-qnav-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--t2-border); background: var(--t2-white); color: var(--t2-navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .18s, background .18s; }
.t2-qnav-btn:hover { border-color: var(--t2-blue); background: var(--t2-blue-l); color: var(--t2-blue); }

/* ── PRICING COLUMNS ─────────────────────────────── */
.t2-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.t2-tier {
  border: 1.5px solid var(--t2-border); border-radius: var(--t2-r16);
  padding: 2.25rem; background: var(--t2-white); position: relative;
  transition: box-shadow .2s;
}
.t2-tier:hover { box-shadow: var(--t2-sh2); }
.t2-tier.t2-tier-on { background: var(--t2-navy); border-color: var(--t2-navy); }
.t2-tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--t2-blue); color: #fff; font-family: var(--t2-fh);
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem 1.125rem; border-radius: 100px; white-space: nowrap;
}
.t2-tier-vol { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--t2-blue); font-family: var(--t2-fh); margin-bottom: .375rem; }
.t2-tier.t2-tier-on .t2-tier-vol { color: rgba(255,255,255,.3); }
.t2-tier-name { font-family: var(--t2-fh); font-size: 1.5rem; font-weight: 700; color: var(--t2-navy); margin-bottom: .875rem; }
.t2-tier.t2-tier-on .t2-tier-name { color: #fff; }
.t2-tier-price { font-family: var(--t2-fh); font-size: 2.75rem; font-weight: 700; color: var(--t2-navy); line-height: 1; margin-bottom: .375rem; }
.t2-tier.t2-tier-on .t2-tier-price { color: var(--t2-blue); }
.t2-tier-tag { font-size: .8125rem; color: var(--t2-muted); margin-bottom: 1.75rem; }
.t2-tier.t2-tier-on .t2-tier-tag { color: rgba(255,255,255,.3); }
.t2-tier-list { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.t2-tier-item { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--t2-text); }
.t2-tier.t2-tier-on .t2-tier-item { color: rgba(255,255,255,.65); }
.t2-tier-ico { color: var(--t2-blue); flex-shrink: 0; margin-top: 1px; }
.t2-tier.t2-tier-on .t2-tier-ico { color: rgba(255,255,255,.35); }
.t2-tier-cta { width: 100%; justify-content: center; }

/* ── FAQ: CENTERED SINGLE COLUMN ─────────────────── */
.t2-folds-wrap { max-width: 720px; margin: 0 auto; }
.t2-fold { border-bottom: 1.5px solid var(--t2-border); }
.t2-fold-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; background: none; border: none; text-align: left; cursor: pointer;
}
.t2-fold-q { font-family: var(--t2-fh); font-size: 1rem; font-weight: 700; color: var(--t2-navy); flex: 1; }
.t2-fold-i { color: var(--t2-muted); flex-shrink: 0; transition: transform .25s; }
.t2-fold.t2-fo-on .t2-fold-i { transform: rotate(180deg); }
.t2-fold-ans { display: none; padding-bottom: 1.25rem; }
.t2-fold.t2-fo-on .t2-fold-ans { display: block; }
.t2-fold-ans p { font-size: .9375rem; color: var(--t2-muted); line-height: 1.8; }

/* ── PACKAGE BUILDER ─────────────────────────────── */
.t2-builder-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.t2-bld-card { background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r12); padding: 2rem; margin-bottom: 1.25rem; }
.t2-bld-hd { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--t2-muted); margin-bottom: 1rem; padding-bottom: .625rem; border-bottom: 1.5px solid var(--t2-border); font-family: var(--t2-fh); }
.t2-pkg-opt { border: 1.5px solid var(--t2-border); border-radius: var(--t2-r8); padding: 1rem 1.25rem; cursor: pointer; margin-bottom: .625rem; display: flex; align-items: center; gap: 1rem; transition: all .2s; }
.t2-pkg-opt:hover { border-color: var(--t2-blue); background: var(--t2-blue-ll); }
.t2-pkg-opt.t2-pk-sel { border-color: var(--t2-blue-d); background: var(--t2-blue-l); }
.t2-pkg-radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--t2-border); flex-shrink: 0; transition: all .2s; }
.t2-pkg-opt.t2-pk-sel .t2-pkg-radio { border-color: var(--t2-blue-d); background: var(--t2-blue-d); box-shadow: inset 0 0 0 4px #fff; }
.t2-pkg-nm { font-family: var(--t2-fh); font-weight: 700; font-size: .9375rem; color: var(--t2-navy); }
.t2-pkg-desc { font-size: .8125rem; color: var(--t2-muted); }
.t2-pkg-pr { margin-left: auto; font-family: var(--t2-fh); font-size: 1.125rem; font-weight: 700; color: var(--t2-navy); }

.t2-add-opt { display: flex; align-items: center; gap: .875rem; padding: .875rem 1rem; border: 1.5px solid var(--t2-border); border-radius: var(--t2-r8); cursor: pointer; margin-bottom: .5rem; transition: all .2s; }
.t2-add-opt:hover { border-color: var(--t2-blue); background: var(--t2-blue-ll); }
.t2-add-opt.t2-ad-sel { border-color: var(--t2-blue-d); background: var(--t2-blue-l); }
.t2-add-chk { width: 20px; height: 20px; border: 1.5px solid var(--t2-border); border-radius: var(--t2-r4); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: transparent; transition: all .18s; }
.t2-add-opt.t2-ad-sel .t2-add-chk { background: var(--t2-blue-d); border-color: var(--t2-blue-d); }
.t2-add-nm { flex: 1; font-size: .9375rem; font-weight: 500; color: var(--t2-navy); }
.t2-add-pr { font-family: var(--t2-fh); font-size: 1rem; font-weight: 700; color: var(--t2-muted); }

.t2-hrs-ctrl { display: flex; align-items: center; gap: 1rem; }
.t2-hrs-slider { flex: 1; accent-color: var(--t2-blue); }
.t2-hrs-val { font-family: var(--t2-fh); font-size: 1.25rem; font-weight: 700; color: var(--t2-navy); min-width: 5rem; }

/* Receipt */
.t2-receipt { background: var(--t2-navy); border-radius: var(--t2-r16); padding: 2rem; position: sticky; top: 5rem; }
.t2-rc-hd { font-family: var(--t2-fh); font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.t2-rc-items { min-height: 60px; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.t2-rc-item { display: flex; justify-content: space-between; gap: 1rem; }
.t2-rc-k { font-size: .875rem; color: rgba(255,255,255,.4); }
.t2-rc-v { font-size: .875rem; font-weight: 700; color: #fff; white-space: nowrap; }
.t2-rc-nil { font-size: .875rem; font-style: italic; color: rgba(255,255,255,.2); }
.t2-rc-div { border-top: 1px solid rgba(255,255,255,.1); margin: 1rem 0; }
.t2-rc-total { display: flex; justify-content: space-between; align-items: baseline; }
.t2-rc-tl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.25); font-family: var(--t2-fh); }
.t2-rc-tv { font-family: var(--t2-fh); font-size: 2.25rem; font-weight: 700; color: var(--t2-blue); }
.t2-rc-go { margin-top: 1.25rem; width: 100%; justify-content: center; }
.t2-rc-note { font-size: .75rem; color: rgba(255,255,255,.2); text-align: center; margin-top: .75rem; line-height: 1.55; }

/* ── CHECKOUT ─────────────────────────────────────── */
.t2-ck-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.t2-ck-form { background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r16); padding: 2.5rem; }
.t2-ck-summary { background: var(--t2-navy); border-radius: var(--t2-r16); padding: 2rem; position: sticky; top: 5rem; }
.t2-cks-hd { font-family: var(--t2-fh); font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.t2-cks-row { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.t2-cks-k { font-size: .875rem; color: rgba(255,255,255,.4); }
.t2-cks-v { font-size: .875rem; font-weight: 700; color: #fff; text-align: right; }
.t2-cks-div { border-top: 1px solid rgba(255,255,255,.1); margin: 1rem 0; }
.t2-cks-total { display: flex; justify-content: space-between; align-items: baseline; }
.t2-cks-tl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.25); }
.t2-cks-tv { font-family: var(--t2-fh); font-size: 2rem; font-weight: 700; color: var(--t2-blue); }
.t2-cks-note { font-size: .8125rem; color: rgba(255,255,255,.25); margin-top: 1rem; line-height: 1.6; }

.t2-field { margin-bottom: 1.25rem; }
.t2-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--t2-navy); margin-bottom: .4rem; font-family: var(--t2-fh); }
.t2-field input, .t2-field select, .t2-field textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--t2-border); border-radius: var(--t2-r8); font-family: var(--t2-fb); font-size: .9375rem; color: var(--t2-navy); background: var(--t2-white); transition: border-color .2s; -webkit-appearance: none; }
.t2-field input:focus, .t2-field select:focus, .t2-field textarea:focus { outline: none; border-color: var(--t2-blue); box-shadow: 0 0 0 3px var(--t2-blue-l); }
.t2-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.t2-tos-row { display: flex; align-items: flex-start; gap: .75rem; margin: 1.5rem 0; }
.t2-tos-row input { flex-shrink: 0; margin-top: 3px; accent-color: var(--t2-blue); }
.t2-tos-row label { font-size: .875rem; color: var(--t2-muted); line-height: 1.6; }
.t2-tos-row a { color: var(--t2-blue); text-decoration: underline; }

/* ── PAGE HEADERS ─────────────────────────────────── */
.t2-page-head {
  background: var(--t2-cloud); padding: clamp(5.5rem, 9vw, 7.5rem) 0 clamp(2.5rem, 4.5vw, 3.5rem);
  text-align: center; border-bottom: 1.5px solid var(--t2-border);
}
.t2-page-head h1 { margin-bottom: .875rem; }
.t2-page-sub { color: var(--t2-muted); max-width: 54ch; margin: 0 auto; font-size: clamp(.9375rem, 1.8vw, 1.0625rem); line-height: 1.78; }

/* Service page header */
.t2-svc-head {
  background: linear-gradient(135deg, var(--t2-navy) 0%, var(--t2-navy-m) 100%);
  padding: clamp(5.5rem, 9vw, 7.5rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.t2-svc-head::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  pointer-events: none;
}
.t2-svc-head h1 { color: #fff; position: relative; z-index: 1; }
.t2-svc-head-sub { color: rgba(255,255,255,.45); max-width: 56ch; margin: .875rem auto 0; position: relative; z-index: 1; font-size: clamp(.9375rem, 1.8vw, 1.0625rem); }
.t2-svc-body-wrap { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.t2-svc-body-img { border-radius: var(--t2-r16); overflow: hidden; aspect-ratio: 16/9; background: var(--t2-sky); margin-bottom: 2.5rem; }
.t2-svc-body-img img { width: 100%; height: 100%; object-fit: cover; }
.t2-svc-text p { color: var(--t2-muted); margin-bottom: 1.25rem; font-size: .9375rem; line-height: 1.85; }
.t2-svc-feat-box { background: var(--t2-cloud); border-radius: var(--t2-r12); padding: 1.75rem; margin-top: 2rem; border-left: 3px solid var(--t2-blue); }
.t2-sfb-hd { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--t2-muted); margin-bottom: 1rem; font-family: var(--t2-fh); }
.t2-sfb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.t2-sfb-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--t2-text); }
.t2-sfb-ico { color: var(--t2-blue); flex-shrink: 0; margin-top: 1px; }
.t2-svc-cta-box { background: var(--t2-navy); border-radius: var(--t2-r16); padding: 2.5rem; text-align: center; margin-top: 3rem; }
.t2-scb-from { font-size: .8125rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-family: var(--t2-fh); }
.t2-scb-price { font-family: var(--t2-fh); font-size: 2.75rem; font-weight: 700; color: #fff; }
.t2-scb-note { font-size: .875rem; color: rgba(255,255,255,.3); margin-bottom: 1.75rem; }
.t2-scb-acts { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ──────────────────────────────────────── */
.t2-ct-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.t2-ct-info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.t2-ct-item { display: flex; align-items: flex-start; gap: 1rem; }
.t2-ct-ico { width: 42px; height: 42px; border-radius: 50%; background: var(--t2-blue-l); color: var(--t2-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t2-ct-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--t2-muted); font-family: var(--t2-fh); }
.t2-ct-val { font-size: .9375rem; font-weight: 500; color: var(--t2-navy); }
.t2-ct-form-box { background: var(--t2-white); border: 1.5px solid var(--t2-border); border-radius: var(--t2-r16); padding: 2rem; }

/* ── LEGAL ────────────────────────────────────────── */
.t2-legal { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.t2-legal h1 { text-align: center; margin-bottom: .5rem; }
.t2-legal-date { text-align: center; font-size: .875rem; color: var(--t2-muted); margin-bottom: 3rem; }
.t2-legal h2 { font-size: 1.25rem; margin: 2.5rem 0 .75rem; color: var(--t2-blue-d); font-family: var(--t2-fh); }
.t2-legal h3 { font-size: 1.0625rem; margin: 1.75rem 0 .5rem; }
.t2-legal p { color: var(--t2-text); margin-bottom: 1rem; line-height: 1.85; }
.t2-legal ul, .t2-legal ol { margin: .875rem 0 1rem 1.5rem; }
.t2-legal li { color: var(--t2-text); margin-bottom: .5rem; line-height: 1.75; }
.t2-legal ul li { list-style: disc; }
.t2-legal ol li { list-style: decimal; }
.t2-legal code { font-family: monospace; font-size: .875rem; background: var(--t2-cloud); padding: .125rem .375rem; border-radius: 3px; }

/* ── SUCCESS / CANCEL ─────────────────────────────── */
.t2-conf { max-width: 500px; margin: 0 auto; text-align: center; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.t2-conf-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--t2-blue-l); color: var(--t2-blue); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.t2-cf-steps { text-align: left; margin: 2rem 0; display: flex; flex-direction: column; gap: .875rem; }
.t2-cf-step { display: flex; align-items: flex-start; gap: 1rem; }
.t2-cf-num { width: 30px; height: 30px; border-radius: 50%; background: var(--t2-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--t2-fh); font-size: .875rem; font-weight: 700; flex-shrink: 0; }
.t2-cf-step p { font-size: .9rem; color: var(--t2-muted); line-height: 1.65; }

/* ── COOKIE BANNER ────────────────────────────────── */
.t2-cookie { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 9000; background: var(--t2-navy-m); border-radius: var(--t2-r12); padding: 1.125rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--t2-sh3); max-width: 680px; width: calc(100% - 3rem); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.t2-cookie.t2-ck-show { opacity: 1; visibility: visible; }
.t2-ck-txt { font-size: .875rem; color: rgba(255,255,255,.5); flex: 1; min-width: 180px; }
.t2-ck-txt a { color: var(--t2-blue); text-decoration: underline; }
.t2-ck-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.t2-ck-ok { background: var(--t2-blue); color: #fff; border: none; font-family: var(--t2-fh); font-size: .875rem; font-weight: 700; padding: .5rem 1.125rem; border-radius: var(--t2-r6); cursor: pointer; }
.t2-ck-no { background: transparent; color: rgba(255,255,255,.35); border: 1.5px solid rgba(255,255,255,.15); font-family: var(--t2-fh); font-size: .875rem; font-weight: 600; padding: .5rem 1.125rem; border-radius: var(--t2-r6); cursor: pointer; }

/* ── CHAT WIDGET ──────────────────────────────────── */
.t2-chat-btn { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 8888; width: 52px; height: 52px; border-radius: 50%; background: var(--t2-blue); color: #fff; border: none; box-shadow: var(--t2-sh-blue); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .2s; }
.t2-chat-btn:hover { transform: scale(1.08); }
.t2-chat-pane { position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 8888; width: 320px; background: var(--t2-white); border-radius: var(--t2-r16); box-shadow: var(--t2-sh3); border: 1.5px solid var(--t2-border); display: none; flex-direction: column; overflow: hidden; }
.t2-chat-pane.t2-cp-on { display: flex; }
.t2-chat-top { background: var(--t2-navy); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.t2-chat-av { width: 34px; height: 34px; border-radius: 50%; background: var(--t2-blue); display: flex; align-items: center; justify-content: center; font-family: var(--t2-fh); font-size: .8125rem; font-weight: 700; color: #fff; }
.t2-chat-nm { color: #fff; font-weight: 700; font-size: .9375rem; font-family: var(--t2-fh); }
.t2-chat-st { color: rgba(255,255,255,.4); font-size: .75rem; }
.t2-chat-msgs { padding: 1rem; flex: 1; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.t2-cmsg { max-width: 82%; padding: .625rem .875rem; border-radius: var(--t2-r8); font-size: .875rem; line-height: 1.5; }
.t2-cmsg.t2-bot { background: var(--t2-cloud); color: var(--t2-navy); align-self: flex-start; border-bottom-left-radius: 3px; }
.t2-cmsg.t2-usr { background: var(--t2-blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.t2-chat-inp-row { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1.5px solid var(--t2-border); }
.t2-chat-inp { flex: 1; border: 1.5px solid var(--t2-border); border-radius: var(--t2-r8); padding: .5rem .75rem; font-family: var(--t2-fb); font-size: .875rem; background: var(--t2-cloud); }
.t2-chat-go { background: var(--t2-blue); color: #fff; border: none; border-radius: var(--t2-r8); padding: .5rem .75rem; }

/* ── FOOTER (t2-base) ─────────────────────────────── */
.t2-base { background: var(--t2-navy); color: rgba(255,255,255,.4); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.t2-base-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.t2-base-brand { font-family: var(--t2-fh); font-size: clamp(1.0625rem, 2vw, 1.3125rem); font-weight: 700; color: #fff; margin-bottom: .875rem; }
.t2-base-brand .t2-num { color: var(--t2-blue); }
.t2-base-blurb { font-size: .875rem; line-height: 1.75; max-width: 30ch; margin-bottom: 1.25rem; }
.t2-base-socials { display: flex; gap: .625rem; }
.t2-base-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.t2-base-soc:hover { border-color: var(--t2-blue); color: var(--t2-blue); }
.t2-base-col-hd { font-family: var(--t2-fh); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); margin-bottom: 1rem; }
.t2-base-col a { display: block; font-size: .875rem; margin-bottom: .5rem; color: rgba(255,255,255,.4); transition: color .18s; }
.t2-base-col a:hover { color: #fff; }
.t2-base-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.18); }
.t2-base-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.t2-base-legal a { color: rgba(255,255,255,.2); transition: color .18s; }
.t2-base-legal a:hover { color: rgba(255,255,255,.6); }

/* ── UTILS ────────────────────────────────────────── */
.t2-tc   { text-align: center; }
.t2-mt1  { margin-top: .875rem; }
.t2-mt2  { margin-top: 1.75rem; }
.t2-mt3  { margin-top: 3rem; }
.t2-flexc { display: flex; align-items: center; justify-content: center; gap: .875rem; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .t2-bento { grid-template-columns: 1fr 1fr; }
  .t2-tiers { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .t2-counters { grid-template-columns: 1fr 1fr; }
  .t2-counter-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .t2-base-grid { grid-template-columns: 1fr 1fr; }
  .t2-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .t2-crown-wing { display: none; }
  .t2-crown-burger { display: flex; }
  .t2-crown-cta { display: none; }
  .t2-crown-center { flex: 1; }
  .t2-timeline::before { display: none; }
  .t2-milestone { grid-template-columns: 1fr; gap: 1rem; }
  .t2-milestone:nth-child(even) .t2-ms-left { order: 0; text-align: left; }
  .t2-milestone:nth-child(even) .t2-ms-right { order: 2; text-align: left; }
  .t2-ms-dot { display: none; }
  .t2-ms-left, .t2-ms-right { text-align: left !important; }
  .t2-tab-panel.t2-tp-on { grid-template-columns: 1fr; }
  .t2-builder-grid { grid-template-columns: 1fr; }
  .t2-receipt { position: static; }
  .t2-ck-grid { grid-template-columns: 1fr; }
  .t2-ck-summary { position: static; }
  .t2-ct-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .t2-bento { grid-template-columns: 1fr; }
  .t2-pillars { grid-template-columns: 1fr; }
  .t2-q-card { min-width: calc(100vw - 4rem); }
  .t2-base-grid { grid-template-columns: 1fr; }
  .t2-base-bar { flex-direction: column; text-align: center; }
  .t2-field-row { grid-template-columns: 1fr; }
  .t2-sfb-grid { grid-template-columns: 1fr; }
  .t2-chat-pane { width: calc(100vw - 3.5rem); right: 1rem; }
}
