:root {
  --bg: #FAFAF7;
  --bg-alt: #F2EFE8;
  --bg-deep: #0E2238;
  --bg-deep-soft: #14304E;
  --ink: #0E1B2C;
  --ink-2: #2C3A4D;
  --ink-3: #5C6678;
  --ink-4: #8A92A0;
  --line: #E2DED4;
  --line-2: #D4CEC0;
  --gold: #A6814C;
  --gold-soft: #C49E6E;
  --gold-bg: #F4EAD8;
  --green: #2F5D3A;
  --red: #9B2C2C;
  --serif: 'Newsreader', 'Source Serif Pro', Georgia, serif;
  --sans: 'Geist', 'Söhne', -apple-system, system-ui, sans-serif;
  --mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.eyebrow-dark { color: var(--gold-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; border-top: 1px solid var(--line); }
.section.no-border { border-top: none; }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  border-radius: 2px;
}
.logo-mark::after {
  content: '';
  position: absolute;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
}
.phone-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 93, 58, 0.15);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bg-deep);
  color: var(--bg);
}
.btn-primary:hover { background: #0a1a2c; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover { background: #8e6d3f; }
.btn-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-3);
  padding: 0 0 2px;
  border-radius: 0;
}
.btn-link:hover { border-bottom-color: var(--ink); }
.btn-large { padding: 16px 28px; font-size: 15px; }
.arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== HERO ========== */
.hero {
  padding: 96px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 24px 0 28px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust-item .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-trust-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 8px;
  display: block;
}

/* hero card */
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  position: relative;
  box-shadow: 0 1px 0 rgba(14, 34, 56, 0.04), 0 24px 48px -24px rgba(14, 34, 56, 0.12);
}
.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.hero-card-tag .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.hero-card p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 22px;
}
.case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  align-items: center;
}
.case-row:first-of-type { border-top: 1px solid var(--ink); }
.case-row .case-id { font-family: var(--mono); color: var(--ink-3); font-size: 12px; }
.case-row .case-result {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--green);
  text-align: right;
  font-weight: 500;
}
.case-row .case-was {
  text-decoration: line-through;
  color: var(--ink-4);
  font-size: 12px;
  font-family: var(--mono);
  margin-right: 8px;
}

/* ========== MARQUEE ========== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--bg);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.marquee-item .seal {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}

/* ========== SECTION HEADER ========== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0;
  line-height: 1.55;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: white; }
.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.service-meta {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
  margin-top: 8px;
}
.service-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-meta-item .k {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.service-meta-item .v {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.service-meta-item .v.gold { color: var(--gold); }

.service-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 4px 8px;
  border: 1px solid var(--gold);
  border-radius: 2px;
}

/* ========== CALCULATOR ========== */
.calc-section {
  background: var(--bg-deep);
  color: var(--bg);
  border-top: 1px solid var(--bg-deep);
}
.calc-section .section-head h2 { color: var(--bg); }
.calc-section .section-head h2 em { color: var(--gold-soft); }
.calc-section .section-head p { color: rgba(250, 250, 247, 0.65); }
.calc-section .eyebrow { color: var(--gold-soft); }

.calc {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--bg-deep-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.calc-input {
  padding: 44px 44px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.calc-output {
  padding: 44px 44px;
  background: rgba(0,0,0,0.15);
}
.calc-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-label .lblval {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.01em;
  text-transform: none;
}
.calc-field { margin-bottom: 32px; }
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-deep);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--gold);
}
.slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-deep);
  cursor: pointer;
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.seg button {
  padding: 12px 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: all 0.15s;
}
.seg button:last-child { border-right: none; }
.seg button.on {
  background: var(--gold);
  color: white;
}
.seg button:not(.on):hover { background: rgba(255,255,255,0.04); color: white; }

.calc-input-num {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: white;
  outline: none;
  letter-spacing: -0.01em;
}
.calc-input-num:focus { border-bottom-color: var(--gold); }

.calc-output h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 500;
}
.calc-result-main {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  color: white;
}
.calc-result-was {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.calc-result-was s { margin-right: 10px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.calc-row .lk {
  color: rgba(255,255,255,0.6);
}
.calc-row .lv {
  font-family: var(--mono);
  color: white;
}
.calc-row .lv.good { color: #82c896; }
.calc-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-disc {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  line-height: 1.6;
}

/* ========== PROCESS ========== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--ink);
}
.process-step {
  padding: 36px 28px 0 0;
  position: relative;
}
.process-step:not(:last-child) {
  padding-right: 32px;
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-step .step-num::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 16px;
  line-height: 1.6;
}
.process-step .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== RESULTS ========== */
.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 64px;
}
.result-stat {
  background: var(--bg);
  padding: 36px 32px;
}
.result-stat .v {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  display: block;
  margin-bottom: 14px;
}
.result-stat .v sup {
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  vertical-align: top;
  margin-left: 2px;
}
.result-stat .l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

.case-table {
  border: 1px solid var(--line);
  background: white;
}
.case-table-head, .case-table-row {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 18px 28px;
  align-items: center;
}
.case-table-head {
  background: var(--bg-alt);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.case-table-row {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.case-table-row:last-child { border-bottom: none; }
.case-table-row .ct-id { font-family: var(--mono); color: var(--ink-3); font-size: 12.5px; }
.case-table-row .ct-type {
  display: inline-block;
  padding: 3px 8px;
  background: var(--gold-bg);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.case-table-row .ct-was {
  font-family: var(--mono);
  text-decoration: line-through;
  color: var(--ink-4);
  font-size: 13px;
}
.case-table-row .ct-now {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--green);
  letter-spacing: -0.01em;
}
.case-table-row .ct-save {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}

/* ========== CREDENTIALS ========== */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cred-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cred-seal {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-2);
  background: white;
}
.cred-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
}
.cred-item p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
}
.cred-item .verify {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial {
  background: var(--bg-alt);
  padding: 48px 44px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  margin: 0 0 28px;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--bg-deep);
  color: var(--bg);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 17px;
}
.testimonial-author .n {
  font-family: var(--serif);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
.testimonial-author .r {
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--mono);
}
.testimonial-result {
  margin-top: 24px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.testimonial-result .res {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  padding: 28px 8px;
  text-align: left;
  align-items: center;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q .qn {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.faq-q .qt {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.faq-q .qi {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  transition: all 0.2s;
  justify-self: end;
}
.faq-item.open .faq-q .qi { background: var(--ink); color: white; border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  padding: 0 8px 0 92px;
}
.faq-item.open .faq-a-inner { padding-bottom: 28px; }
.faq-a p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}

/* ========== CHAT ========== */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  background: var(--bg-deep);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 32px -8px rgba(14, 34, 56, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab .fab-dot {
  width: 8px; height: 8px;
  background: #6cd084;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.chat-window {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 400px;
  height: 580px;
  max-height: calc(100vh - 56px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px -16px rgba(14, 34, 56, 0.25);
  overflow: hidden;
}
.chat-header {
  background: var(--bg-deep);
  color: white;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-l {
  display: flex;
  gap: 12px;
  align-items: center;
}
.chat-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: white;
  border: 2px solid rgba(255,255,255,0.15);
}
.chat-header h5 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
.chat-header .status {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-header .status::before {
  content: '';
  width: 6px; height: 6px;
  background: #6cd084;
  border-radius: 50%;
}
.chat-close {
  background: rgba(255,255,255,0.08);
  width: 28px; height: 28px;
  border-radius: 4px;
  color: white;
  display: grid; place-items: center;
  font-size: 16px;
}
.chat-close:hover { background: rgba(255,255,255,0.15); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-alt);
}
.chat-msg {
  max-width: 88%;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg.bot {
  align-self: flex-start;
  background: white;
  padding: 12px 16px;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--bg-deep);
  color: white;
  padding: 12px 16px;
  border-radius: 14px 4px 14px 14px;
}
.chat-quickreply {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 100%;
}
.chat-quickreply button {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
  transition: all 0.15s;
}
.chat-quickreply button:hover { border-color: var(--ink); background: var(--bg); }
.chat-input-row {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-input-row input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}
.chat-input-row input:focus { border-color: var(--ink-3); background: white; }
.chat-send {
  background: var(--bg-deep);
  color: white;
  width: 36px; height: 36px;
  border-radius: 4px;
  display: grid; place-items: center;
}
.chat-send:hover { background: #0a1a2c; }
.typing {
  align-self: flex-start;
  background: white;
  padding: 14px 18px;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid var(--line);
  display: flex;
  gap: 4px;
}
.typing span {
  width: 6px; height: 6px;
  background: var(--ink-3);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ========== CTA ========== */
.cta-section {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 120px 0;
  border: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 18px 0 24px;
  text-wrap: balance;
}
.cta-section h2 em { color: var(--gold-soft); font-style: italic; }
.cta-section p {
  font-size: 18px;
  color: rgba(250,250,247,0.7);
  max-width: 480px;
  margin: 0;
  line-height: 1.55;
}
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
  border-radius: 4px;
}
.cta-form h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 4px;
  color: white;
}
.cta-form-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.cta-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0;
  color: white;
  font-size: 15px;
  outline: none;
  margin-bottom: 16px;
}
.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-bottom-color: var(--gold); }
.cta-form .btn { width: 100%; margin-top: 8px; }
.cta-form-foot {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: #06121F;
  color: rgba(250,250,247,0.6);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .logo { color: white; font-size: 24px; }
.footer-brand .logo-mark { background: var(--gold); }
.footer-brand p {
  font-size: 13px;
  margin: 20px 0 0;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h6 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding: 56px 0 40px; }
  .hero-grid, .section-head, .cred-grid, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .results { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc-input { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .case-table-head, .case-table-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 20px; font-size: 13px; }
  .case-table-row .ct-was, .case-table-row .ct-save { display: none; }
  .chat-window { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
}
