:root {
  --surface: #0d0d14;
  --surface-2: #131320;
  --surface-3: #1a1a28;
  --surface-card: #1e1e2c;
  --surface-card-2: #242436;
  --highlight: #8b7cf6;
  --highlight-dk: #6d5ed4;
  --highlight-glow: rgba(139,124,246,0.12);
  --highlight-border: rgba(139,124,246,0.25);
  --text: #f0effe;
  --text-muted: #9896aa;
  --text-soft: rgba(240,239,254,0.72);
  --border: rgba(255,255,255,0.07);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

ul { list-style: none; }

h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
  color: var(--text);
}

h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(17px, 2.2vw, 22px); margin-bottom: 12px; }
p { margin-bottom: 16px; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

.sec-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 12px;
}

.sec-head {
  margin-bottom: 48px;
}

.sec-head h2 {
  margin-bottom: 12px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-main:hover { background: var(--highlight-dk); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--highlight);
  background: var(--highlight-glow);
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.hdr-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.hdr-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hdr-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.hdr-phone:hover { color: var(--highlight); }

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--surface);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139,124,246,0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-clutter {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: var(--highlight-glow);
  border: 1px solid var(--highlight-border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
}

.hero-hl {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-hl em {
  font-style: italic;
  color: var(--highlight);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctarow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  color: var(--highlight);
  flex-shrink: 0;
}

.ticker {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 28px;
  letter-spacing: 0.02em;
}

.ticker-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
}

.spec-section {
  padding: 88px 0;
  background: var(--surface-2);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.spec-card:hover {
  border-color: var(--highlight-border);
  transform: translateY(-2px);
}

.spec-icon {
  width: 44px;
  height: 44px;
  background: var(--highlight-glow);
  border: 1px solid var(--highlight-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.spec-icon svg {
  width: 20px;
  height: 20px;
  color: var(--highlight);
}

.spec-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Libre Baskerville', serif;
}

.spec-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.proc-section {
  padding: 88px 0;
  background: var(--surface);
}

.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.proc-step:last-child {
  border-bottom: none;
}

.proc-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  padding-top: 4px;
}

.proc-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.proc-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding-top: 2px;
}

.proc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  background: var(--highlight-glow);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.proc-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

.price-section {
  padding: 88px 0;
  background: var(--surface-2);
}

.price-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  text-align: center;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--highlight);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.2s;
}

.price-row:hover {
  border-color: var(--highlight);
}

.price-type {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-type-icon {
  width: 44px;
  height: 44px;
  background: var(--highlight-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-type-icon svg {
  width: 20px;
  height: 20px;
  color: var(--highlight);
}

.price-type-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.price-type-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.price-range-col {
  text-align: center;
}

.price-from {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--highlight);
}

.price-includes {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.price-includes li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--highlight);
  margin-top: 7px;
  flex-shrink: 0;
}

.clients-section {
  padding: 88px 0;
  background: var(--surface);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s;
}

.client-card:hover {
  border-color: var(--highlight-border);
}

.client-icon {
  width: 40px;
  height: 40px;
  background: var(--highlight-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-icon svg {
  width: 18px;
  height: 18px;
  color: var(--highlight);
}

.client-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.client-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.coverage-section {
  padding: 88px 0;
  background: var(--surface-2);
}

.cov-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cov-text h2 {
  margin-bottom: 20px;
}

.cov-text p {
  font-size: 15px;
  line-height: 1.75;
}

.cov-regions h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.region-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--highlight);
  border-radius: 50%;
  flex-shrink: 0;
}

.content-section {
  padding: 88px 0;
  background: var(--surface);
}

.content-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.content-article h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 28px;
  color: var(--text);
}

.content-article h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: 32px;
  margin-bottom: 14px;
}

.content-article h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-article p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.content-article ul {
  margin: 16px 0 20px 0;
}

.content-article ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

.content-article ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--highlight);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.cb-accord {
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.cb-item {
  border-bottom: 1px solid var(--border);
}

.cb-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cb-item summary::-webkit-details-marker { display: none; }

.cb-item summary h2 {
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: 'Libre Baskerville', serif !important;
  color: var(--text) !important;
  margin: 0 !important;
}

.cb-toggle {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  font-size: 18px;
  color: var(--highlight);
  line-height: 1;
}

.cb-item[open] .cb-toggle {
  background: var(--highlight-glow);
  border-color: var(--highlight-border);
}

.cb-item-body {
  padding: 0 0 24px;
}

.content-side {
  position: sticky;
  top: 90px;
}

.side-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.side-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.side-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.side-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 14px;
  transition: color 0.2s;
}

.side-phone:hover { color: var(--highlight-dk); }

.side-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.side-email {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.side-email:hover { color: var(--highlight); }

.side-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--highlight);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.side-cta:hover { background: var(--highlight-dk); }

.side-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.side-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--highlight);
  flex-shrink: 0;
}

.faq-section {
  padding: 88px 0;
  background: var(--surface-2);
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-cat-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface-card);
  border-left: 3px solid var(--highlight);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}

.faq-cat-icon {
  width: 32px;
  height: 32px;
  background: var(--highlight-glow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-cat-icon svg {
  width: 15px;
  height: 15px;
  color: var(--highlight);
}

.faq-cat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--highlight); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--highlight);
  line-height: 1;
  transition: background 0.2s;
}

.faq-item[open] .faq-plus {
  background: var(--highlight-glow);
}

.faq-item-body {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-section {
  padding: 88px 0;
  background: var(--surface);
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ci-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ci-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--highlight);
  transition: color 0.2s;
}

.ci-phone:hover { color: var(--highlight-dk); }

.ci-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ci-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.ci-email:hover { color: var(--highlight); }

.ci-email svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ci-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ci-assurance span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
}

.form-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--highlight);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239896aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--highlight);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--highlight-dk); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-msg {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-msg.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  display: block;
}

.form-msg.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
  display: block;
}

.site-ft {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.ft-inner {
  padding: 64px 0 40px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ft-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ft-brand-logo .logo-name {
  font-size: 15px;
}

.ft-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ft-socials {
  display: flex;
  gap: 10px;
}

.ft-social {
  width: 34px;
  height: 34px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.ft-social:hover {
  color: var(--highlight);
  border-color: var(--highlight-border);
}

.ft-social svg {
  width: 15px;
  height: 15px;
}

.ft-nav-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ft-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-nav-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.ft-nav-col a:hover { color: var(--highlight); }

.ft-copy {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.ft-copy-links {
  display: flex;
  gap: 20px;
}

.ft-copy-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.ft-copy-links a:hover { color: var(--highlight); }

.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--highlight);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 32px -8px rgba(139,124,246,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}

.sticky-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta:hover { background: var(--highlight-dk); }

.legal-page {
  padding: 80px 0;
  min-height: 70vh;
}

.legal-page h1 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-body h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-body p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-body ul {
  margin: 12px 0 16px 0;
}

.legal-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--highlight);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hdr-nav { display: none; }
  .hdr-phone { display: none; }
}

@media (max-width: 980px) {
  .hero { padding: 72px 0 64px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-content { grid-template-columns: 1fr; gap: 8px; }
  .cov-cols { grid-template-columns: 1fr; gap: 40px; }
  .content-inner { grid-template-columns: 1fr; }
  .content-side { position: static; }
}

@media (max-width: 860px) {
  .price-row { grid-template-columns: 1fr; gap: 20px; }
  .price-range-col { text-align: left; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cols { grid-template-columns: 1fr; gap: 40px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .hdr-phone { display: none; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 56px 0 48px; }
  .hero-hl { font-size: 36px; }
  .hero-ctarow { flex-direction: column; align-items: stretch; }
  .hero-ctarow .btn-main,
  .hero-ctarow .btn-ghost { justify-content: center; }
  .spec-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .proc-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .proc-num { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 14px; border-radius: 50%; }
  .sec-head { margin-bottom: 32px; }
}
