:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #eaf1f8;
  --surface-dark: #0f1f33;
  --surface-dark-alt: #122946;
  --text: #102038;
  --text-muted: #526179;
  --heading: #0a1930;
  --line: rgba(16, 32, 56, 0.12);
  --primary: #1672d6;
  --primary-strong: #0d5ab4;
  --secondary: #11a8a2;
  --accent: #f4a261;
  --success: #2d8f6f;
  --danger: #cf5c5c;
  --shadow: 0 22px 60px rgba(9, 25, 48, 0.12);
  --shadow-soft: 0 16px 40px rgba(12, 35, 66, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --nav-height: 84px;
  --font-body: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 168, 162, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(22, 114, 214, 0.14), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #f1f5fa 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(17, 168, 162, 0.35);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: clip;
}

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

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 168, 162, 0.1);
  color: #0b5f6b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--heading);
  font-family: var(--font-heading);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 4vw, 4.8rem);
  letter-spacing: -0.04em;
}

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

h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 66ch;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.stack-sm > * + * {
  margin-top: 0.75rem;
}

.stack-md > * + * {
  margin-top: 1rem;
}

.stack-lg > * + * {
  margin-top: 1.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(22, 114, 214, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2f8df3);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--heading);
}

.btn-outline {
  border-color: rgba(16, 32, 56, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
}

.pill-list,
.check-list,
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(17, 168, 162, 0.2), rgba(22, 114, 214, 0.18)),
    var(--surface);
  border: 1px solid rgba(22, 114, 214, 0.16);
  box-shadow: inset 0 0 0 0.18rem rgba(17, 168, 162, 0.28);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-list li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(15, 31, 51, 0.06);
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.card,
.service-card,
.stat-card,
.badge-card,
.contact-card,
.timeline-step,
.faq-item,
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.badge-card,
.contact-card {
  padding: 1.6rem;
  min-width: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 168, 162, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 114, 214, 0.18);
}

.service-card .service-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(22, 114, 214, 0.16), rgba(17, 168, 162, 0.14));
}

.service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card p {
  margin-bottom: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.inline-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--primary-strong);
}

.flow-top-md {
  margin-top: 1.5rem;
}

.flow-top-lg {
  margin-top: 3rem;
}

.content-note {
  margin-top: 1.25rem;
}

.control-row {
  display: flex;
  gap: 0.75rem;
}

.site-shell {
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 25, 48, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 48, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 88%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.72);
  border-bottom: 1px solid rgba(16, 32, 56, 0.08);
}

.site-header .container {
  width: min(calc(100% - 2rem), 1580px);
}

.site-header .inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 18rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 31, 51, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-tag {
  max-width: 24rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.site-header .brand-tag {
  display: none;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  gap: 0.85rem;
  justify-self: stretch;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  min-width: 0;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 56, 0.08);
  overflow: hidden;
}

.site-nav a {
  padding: 0.68rem 0.72rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.desktop-cta {
  min-width: 11.5rem;
  padding-inline: 1.2rem;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(22, 114, 214, 0.2);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(22, 114, 214, 0.1);
  color: var(--heading);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 32, 56, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.mobile-toggle .hamburger,
.mobile-toggle .hamburger::before,
.mobile-toggle .hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--heading);
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.mobile-toggle .hamburger::before {
  transform: translateY(-6px);
}

.mobile-toggle .hamburger::after {
  transform: translateY(4px);
}

.site-header.nav-open .mobile-toggle .hamburger {
  background: transparent;
}

.site-header.nav-open .mobile-toggle .hamburger::before {
  transform: translateY(0) rotate(45deg);
}

.site-header.nav-open .mobile-toggle .hamburger::after {
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 3rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(135deg, rgba(16, 32, 56, 0.95) 0%, rgba(18, 41, 70, 0.94) 52%, rgba(12, 96, 132, 0.92) 100%);
  color: #fff;
  box-shadow: 0 32px 80px rgba(9, 25, 48, 0.24);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-panel::before {
  inset: -18% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(17, 168, 162, 0.26), transparent 72%);
}

.hero-panel::after {
  inset: auto -10% -24% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.22), transparent 76%);
}

.hero h1,
.hero p,
.hero li,
.hero h2 {
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .lead,
.page-hero-card .lead {
  max-width: 34rem;
}

.hero-meta {
  display: grid;
  gap: 1rem;
}

.hero-visual {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(9, 25, 48, 0.18);
}

.hero-stat-grid {
  display: grid;
  gap: 1rem;
}

.hero-stat {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.trust-strip,
.trust-badges {
  display: grid;
  gap: 1rem;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.badge-card {
  text-align: center;
  min-height: 100%;
}

.badge-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.95rem;
  border-radius: 1rem;
  background: rgba(22, 114, 214, 0.08);
  color: var(--primary);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--heading);
}

.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: start;
}

.split-panel.alt {
  grid-template-columns: 0.95fr 1.05fr;
}

.panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 32, 56, 0.07);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(15, 31, 51, 0.98), rgba(18, 41, 70, 0.95) 72%, rgba(12, 96, 132, 0.92));
  color: rgba(255, 255, 255, 0.9);
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.92);
}

.icon-grid {
  display: grid;
  gap: 1rem;
}

.icon-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.icon-row .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 114, 214, 0.15), rgba(17, 168, 162, 0.16));
  color: var(--primary);
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.industry-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 56, 0.08);
  text-align: center;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
}

.timeline-step .step-number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top right, rgba(244, 162, 97, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(12, 96, 132, 0.12), rgba(22, 114, 214, 0.09)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.cta-band.dark {
  background:
    radial-gradient(circle at top right, rgba(244, 162, 97, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(15, 31, 51, 0.98), rgba(18, 41, 70, 0.95) 72%, rgba(12, 96, 132, 0.92));
}

.cta-band.dark h2,
.cta-band.dark p,
.cta-band.dark li {
  color: #fff;
}

.cta-band .content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.faq-wrap {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--heading);
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.faq-item button span:last-child {
  font-size: 1.35rem;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 1.35rem 1.25rem;
  margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 260ms ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 62ch;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--heading);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots button,
.testimonial-arrow {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(16, 32, 56, 0.18);
}

.testimonial-dots button.is-active {
  width: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(22, 114, 214, 0.08);
  color: var(--heading);
}

.testimonial-arrow:hover,
.testimonial-dots button:hover,
.testimonial-dots button:focus-visible {
  transform: translateY(-2px);
}

.form-block {
  position: relative;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-block.dark {
  background:
    linear-gradient(145deg, rgba(15, 31, 51, 0.98), rgba(18, 41, 70, 0.95));
  color: rgba(255, 255, 255, 0.94);
}

.form-block.dark h2,
.form-block.dark p,
.form-block.dark li,
.form-block.dark h3 {
  color: rgba(255, 255, 255, 0.94);
}

.hubspot-shell {
  min-height: 320px;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 251, 255, 0.75);
  border: 1px dashed rgba(16, 32, 56, 0.16);
}

.hubspot-shell > * {
  max-width: 100%;
}

.hubspot-shell noscript p {
  margin: 0;
}

.form-block.dark .hubspot-shell {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
  align-items: stretch;
}

.page-hero-card {
  padding: 2.4rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(15, 31, 51, 0.98), rgba(18, 41, 70, 0.95) 60%, rgba(12, 96, 132, 0.9) 100%);
  box-shadow: var(--shadow);
}

.page-hero-card h1,
.page-hero-card p,
.page-hero-card li {
  color: #fff;
}

.page-hero-side {
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.page-hero-side h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  letter-spacing: -0.02em;
}

.page-hero-visual {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 32, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-page .page-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.contact-page .page-hero-card,
.contact-page .page-hero-side {
  min-height: 100%;
}

.contact-page .page-hero-card {
  justify-content: center;
}

.contact-emergency {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(22, 114, 214, 0.08), rgba(17, 168, 162, 0.08));
  border: 1px solid rgba(22, 114, 214, 0.12);
}

.contact-emergency h2 {
  margin-bottom: 0.6rem;
}

.contact-emergency p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 56, 0.08);
}

.feature-tile strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--heading);
}

.table-list {
  display: grid;
  gap: 0.9rem;
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--heading);
}

.section-heading p:last-child,
.card > :last-child,
.panel > :last-child,
.page-hero-card > :last-child,
.page-hero-side > :last-child,
.hero-stat > :last-child,
.contact-card > :last-child,
.badge-card > :last-child,
.stat-card > :last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--heading);
  color: #fff;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(12, 27, 45, 0.98), rgba(9, 20, 34, 1));
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer h3,
.footer h4,
.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.82);
}

.footer .brand-name,
.footer h3,
.footer h4 {
  color: #fff;
}

.footer .brand-tag {
  max-width: 20rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-panel,
  .split-panel,
  .page-hero-grid,
  .cta-band .content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .trust-badges-grid,
  .industry-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1440px) {
  .section {
    padding: 4.3rem 0;
  }

  .site-header .inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(16, 32, 56, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 20px;
  }

  .site-nav .nav-links a {
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav .desktop-cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 1600px) {
  .brand {
    max-width: 16rem;
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero-panel,
  .page-hero-card,
  .page-hero-side,
  .panel,
  .cta-band,
  .form-block {
    padding: 1.6rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .trust-badges-grid,
  .industry-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }

  .control-row {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
