:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --bg-elevated: #162236;
  --surface: rgba(18, 28, 46, 0.88);
  --surface-strong: #1b2942;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef3fb;
  --muted: #9fb0c8;
  --accent: #f28c28;
  --accent-strong: #ff9f43;
  --accent-soft: rgba(242, 140, 40, 0.14);
  --success: #3ccf91;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.2);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.15), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(62, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #09111d 0%, #0b1220 45%, #0d1726 100%);
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(242, 140, 40, 0.26);
  color: var(--text);
}

p {
  margin: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 22, 0.72);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 140, 40, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 14, 24, 0.94);
  border-color: var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 182px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a,
.nav-item > a,
.nav-dropdown a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item.has-dropdown > a::before {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  order: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-links > a::after,
.nav-item > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-item > a:hover,
.nav-item > a.active,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--text);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item:hover > a::before,
.nav-item:focus-within > a::before,
.nav-item > a.active::before {
  color: var(--accent-strong);
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 230px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 14, 24, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 18px;
  top: -8px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 14, 24, 0.96);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1.35;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--text);
  background: rgba(242, 140, 40, 0.09);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.nav-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-meta strong {
  color: var(--text);
  font-size: 0.95rem;
}

.button,
.button-outline,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button-outline:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #15110d;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.25);
}

.button:hover {
  box-shadow: 0 20px 36px rgba(242, 140, 40, 0.3);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.button-outline:hover {
  border-color: rgba(242, 140, 40, 0.4);
  background: rgba(242, 140, 40, 0.08);
}

.button-ghost {
  color: var(--muted);
  padding-inline: 0;
  font-size: 0.94rem;
  font-weight: 700;
  align-self: flex-start;
}

.button-ghost:hover {
  color: var(--accent-strong);
}

.button:focus-visible,
.button-outline:focus-visible,
.button-ghost:focus-visible,
.nav-links a:focus-visible,
.mobile-nav a:focus-visible,
.nav-toggle:focus-visible,
.field:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(242, 140, 40, 0.85);
  outline-offset: 3px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle:hover {
  border-color: rgba(242, 140, 40, 0.36);
  background: rgba(242, 140, 40, 0.08);
}

.mobile-nav {
  display: none;
  padding-bottom: 18px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(10, 18, 30, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav > .panel > a:last-child {
  border-bottom: 0;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--text);
}

.mobile-group {
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-group:last-of-type {
  padding-bottom: 6px;
}

.mobile-group .group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0;
  padding-bottom: 6px;
}

.mobile-group .group-label::before {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
}

.mobile-subnav {
  display: grid;
  gap: 2px;
  padding-left: 14px;
}

.mobile-subnav a {
  padding: 7px 0;
  font-size: 0.92rem;
  border-bottom: 0;
}

.page-hero {
  position: relative;
  padding: 62px 0 34px;
}

.home-hero {
  padding: 104px 0 72px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(242, 140, 40, 0.1), transparent 32%);
  pointer-events: none;
}

.hero-grid,
.split,
.contact-grid,
.dual-grid,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero-grid > *,
.split > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow,
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(242, 140, 40, 0.09);
  color: #ffb56d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.26rem;
  line-height: 1.3;
}

.lead,
.section-header p,
.card p,
.service-card p,
.info-card p,
.contact-card p,
.step-card p,
.article-body p,
.metric-card p,
.hero-panel p,
.faq-answer p {
  color: var(--muted);
}

.lead {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-hero:not(.home-hero) .hero-grid {
  gap: 26px;
}

.page-hero:not(.home-hero) h1 {
  margin-top: 0;
  max-width: 18ch;
  font-size: clamp(2.1rem, 3.25vw, 3.45rem);
}

.page-hero:not(.home-hero) .lead {
  margin-top: 12px;
  max-width: 54ch;
  font-size: 0.98rem;
  line-height: 1.66;
}

.page-hero:not(.home-hero) .hero-actions,
.page-hero:not(.home-hero) .breadcrumbs,
.page-hero:not(.home-hero) .badge-row {
  margin-top: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-panel,
.card,
.service-card,
.info-card,
.contact-card,
.step-card,
.metric-card,
.faq-item,
.cta-band,
.image-card,
.notice-card,
.plan-card,
.article-body,
.side-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 34, 54, 0.92) 0%, rgba(12, 20, 33, 0.96) 100%);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 30px;
  overflow: hidden;
}

.page-hero:not(.home-hero) .hero-panel {
  padding: 20px;
}

.hero-panel::after,
.cta-band::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-stack {
  display: grid;
  gap: 18px;
  height: 100%;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.page-hero:not(.home-hero) .mini-card {
  gap: 14px;
  padding: 14px;
}

.mini-card strong,
.contact-item strong,
.plan-price,
.metric-card strong {
  display: block;
  color: var(--text);
}

.mini-card p,
.contact-item p,
.small-note,
.plan-note,
.breadcrumbs,
.stat-card span {
  margin: 4px 0 0;
  color: var(--muted);
}

.icon-badge,
.contact-item i,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent-strong);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.icon-badge svg,
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero:not(.home-hero) .icon-badge {
  width: 42px;
  height: 42px;
}

.page-hero:not(.home-hero) .icon-badge svg {
  width: 20px;
  height: 20px;
}

.hero-visual {
  min-height: 360px;
  padding: 28px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 140, 40, 0.18), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.page-hero:not(.home-hero) .hero-visual {
  min-height: 200px;
  padding: 16px;
}

.page-hero:not(.home-hero) .hero-visual img {
  width: min(100%, 280px);
  max-height: 180px;
}

.hero-panel > .hero-visual + .mini-card {
  margin-top: 18px;
}

.hero-visual img,
.media-frame img {
  width: min(100%, 370px);
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.stat-grid,
.grid-2,
.grid-3,
.grid-4,
.process-grid,
.plan-grid,
.metric-grid,
.link-grid {
  display: grid;
  gap: 22px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card,
.metric-card {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.stat-card strong,
.metric-card strong {
  font-size: 1.06rem;
  line-height: 1.4;
}

.section {
  padding: 68px 0 112px;
}

.section.tight {
  padding-top: 24px;
}

.section.compact {
  padding-top: 34px;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-header > div {
  max-width: 720px;
}

.section-header p {
  max-width: 58ch;
  margin: 12px 0 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.process-grid,
.plan-grid,
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.info-card,
.contact-card,
.step-card,
.metric-card,
.plan-card,
.side-card,
.notice-card {
  padding: 30px;
}

.article-body {
  padding: 38px;
}

.legal-doc {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-doc h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.legal-doc p {
  max-width: 74ch;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.legal-list li::marker {
  color: var(--accent-strong);
}

.card h3,
.service-card h3,
.info-card h3,
.plan-card h3,
.side-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.card .button-row {
  margin-top: auto;
  padding-top: 20px;
}

.service-card {
  min-height: 100%;
}

.service-card,
.plan-card,
.step-card,
.contact-card,
.stat-card,
.metric-card {
  display: flex;
  flex-direction: column;
}

.service-card .button-ghost,
.card .button-ghost {
  margin-top: 18px;
}

.service-card .button-ghost {
  margin-top: auto;
  padding-top: 18px;
}

.checklist,
.footer-list,
.link-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checklist li,
.link-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before,
.link-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-strong);
}

.split {
  align-items: stretch;
}

.image-card {
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-frame {
  height: 100%;
  min-height: 240px;
  padding: 26px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 140, 40, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
}

.kicker-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 140, 40, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.goal-card {
  padding: 38px;
}

.value-visual-card {
  padding: 30px;
  overflow: hidden;
}

.value-visual-card .media-frame {
  flex: 1;
  min-height: 270px;
}

.value-visual-card .badge-row {
  margin-top: 0;
}

.value-visual-card .badge-row span {
  white-space: nowrap;
}

.process-grid {
  counter-reset: step;
}

.step-card {
  overflow: hidden;
}

.step-card::before {
  counter-increment: step;
  content: '0' counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
}

.contact-grid {
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.field,
textarea.field,
.form-grid textarea,
.form-grid input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

textarea,
.form-grid textarea {
  min-height: 180px;
  resize: vertical;
}

.field:focus,
textarea.field:focus,
.form-grid textarea:focus,
.form-grid input:focus {
  border-color: rgba(242, 140, 40, 0.4);
  background: rgba(242, 140, 40, 0.05);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.08);
}

.field::placeholder,
textarea::placeholder,
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #7f90aa;
}

.full-span {
  grid-column: 1 / -1;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(242, 140, 40, 0.22);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}

.faq-question i {
  color: var(--accent-strong);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.cta-band {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cta-band > :first-child {
  max-width: 700px;
}

.cta-band .button-row {
  justify-content: flex-end;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-price {
  font-size: 2.1rem;
}

.plan-note {
  font-size: 0.95rem;
}

.testimonial-marquee {
  overflow: hidden;
  padding-block: 4px;
  margin-top: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-marquee__inner {
  display: flex;
  width: max-content;
  animation: testimonial-marquee 78s linear infinite;
}

.testimonial-marquee:hover .testimonial-marquee__inner {
  animation-play-state: paused;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  flex-shrink: 0;
}

.testimonial-card {
  width: min(340px, calc(100vw - 84px));
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 34, 54, 0.92) 0%, rgba(12, 20, 33, 0.96) 100%);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.testimonial-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card > div strong {
  display: block;
  font-size: 1rem;
}

.testimonial-card > div span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.testimonial-card > div span::before {
  content: 'Service: ';
}

@keyframes testimonial-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(13, 21, 35, 0.88);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  padding: 56px 0 26px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(7, 12, 20, 0.72), rgba(7, 12, 20, 0.94) 18%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 1.16fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  max-width: 34rem;
}

.footer-brand img {
  width: 182px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p,
.footer-contact,
.footer-list a,
.footer-bottom {
  color: var(--muted);
}

.footer-title {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-list {
  margin-top: 0;
}

.footer-list li {
  list-style: none;
}

.footer-list a {
  display: inline-flex;
  padding: 3px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-contact .contact-item + .contact-item {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.92rem;
}

.breadcrumbs span::before {
  content: '/';
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.28);
}

.article-body h2,
.article-body h3 {
  margin-top: 26px;
  margin-bottom: 14px;
}

.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.container > .article-body {
  max-width: 940px;
  margin: 0 auto;
}

.article-body p + p {
  margin-top: 16px;
}

.link-grid .card,
.link-grid .service-card {
  padding-bottom: 22px;
}

.split .link-grid {
  grid-template-columns: 1fr;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.centered {
  text-align: center;
}

.redirect-card {
  max-width: 780px;
  margin: 0 auto;
}

.redirect-card h1,
.redirect-card .lead {
  margin-left: auto;
  margin-right: auto;
}

.redirect-card .button-row {
  justify-content: center;
}

.muted {
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .hero-panel,
  .card,
  .service-card,
  .contact-card,
  .step-card,
  .plan-card,
  .image-card,
  .faq-item {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .card:hover,
  .service-card:hover,
  .contact-card:hover,
  .step-card:hover,
  .plan-card:hover,
  .faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 140, 40, 0.18);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 1180px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .nav-meta,
  .nav-actions > .button-outline {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions > .button {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .dual-grid,
  .support-layout,
  .stat-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .plan-grid,
  .process-grid,
  .metric-grid,
  .link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 82px;
    padding-bottom: 54px;
  }

  .home-hero {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  h1 {
    max-width: 100%;
  }

  .footer-bottom,
  .cta-band,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-shell {
    min-height: 78px;
  }

  .brand img {
    width: 160px;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .home-hero {
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .section {
    padding: 52px 0 84px;
  }

  .hero-panel,
  .card,
  .service-card,
  .info-card,
  .contact-card,
  .step-card,
  .metric-card,
  .plan-card,
  .side-card,
  .notice-card,
  .article-body,
  .cta-band {
    padding: 22px;
  }

  .testimonial-track {
    gap: 16px;
    padding-right: 16px;
  }

  .testimonial-card {
    width: min(300px, calc(100vw - 56px));
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-outline {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    gap: 14px;
  }
}
