:root {
  --bg-900: #040c17;
  --bg-850: #081523;
  --bg-800: #0b1c2d;
  --bg-760: #10263c;
  --surface: rgba(9, 24, 39, 0.88);
  --surface-soft: rgba(13, 31, 49, 0.72);
  --surface-border: rgba(115, 177, 230, 0.2);
  --surface-border-strong: rgba(115, 177, 230, 0.36);
  --text: #eef5fb;
  --text-soft: #c1d0df;
  --text-muted: #88a0b9;
  --text-faint: #60768f;
  --cyan: #00c8ff;
  --cyan-soft: rgba(0, 200, 255, 0.12);
  --orange: #f97316;
  --orange-soft: rgba(249, 115, 22, 0.14);
  --success: #25d366;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 18px 38px rgba(0, 0, 0, 0.22);
  --radius-xl: 1.6rem;
  --radius-lg: 1.15rem;
  --radius-md: 0.9rem;
  --radius-sm: 0.7rem;
  --shell: min(1520px, calc(100vw - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.09), transparent 30%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08), transparent 24%),
    linear-gradient(160deg, var(--bg-900) 0%, var(--bg-850) 48%, var(--bg-800) 100%);
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.34;
  mask-image: radial-gradient(circle at center, #000 40%, transparent 100%);
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 200, 255, 0.08), transparent 26%),
    radial-gradient(circle at 76% 26%, rgba(249, 115, 22, 0.07), transparent 22%),
    radial-gradient(circle at 50% 70%, rgba(0, 200, 255, 0.05), transparent 28%);
  z-index: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 120;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #04111f;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-main {
  position: relative;
}

.section {
  padding: 5.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(5, 14, 23, 0.78), rgba(7, 17, 29, 0.36));
  border-top: 1px solid rgba(115, 177, 230, 0.12);
  border-bottom: 1px solid rgba(115, 177, 230, 0.12);
}

.section-cta {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header.align-left,
.about-highlight-copy .section-kicker {
  margin-left: 0;
  text-align: left;
}

.section-header.compact {
  margin-bottom: 1.4rem;
}

.section-kicker,
.card-eyebrow,
.caption-label,
.footer-title,
.process-number,
.trust-title {
  margin: 0 0 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.25rem;
}

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

.hero-lead,
.page-lead,
.section-header p {
  max-width: 64ch;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.surface-card {
  background: linear-gradient(165deg, rgba(11, 26, 42, 0.94), rgba(7, 16, 27, 0.92));
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.button,
.text-link,
.contact-chip,
.site-nav a,
.mobile-nav a {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button:hover {
  transform: translateY(-2px);
}

.button-cta {
  background: linear-gradient(140deg, #ff8c3b 0%, var(--orange) 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
}

.button-secondary {
  background: rgba(0, 200, 255, 0.06);
  border-color: rgba(0, 200, 255, 0.26);
  color: var(--cyan);
}

.button-secondary:hover {
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 200, 255, 0.44);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.button-row,
.button-column,
.footer-actions,
.header-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

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

.section-stack,
.section-subblock {
  display: grid;
}

.section-stack {
  gap: 1.75rem;
}

.section-subblock {
  gap: 1.2rem;
}

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

.text-link::after {
  content: '→';
  font-size: 1rem;
}

.text-link:hover {
  transform: translateX(2px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background: rgba(3, 9, 16, 0.55);
  border-bottom: 1px solid rgba(115, 177, 230, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(3, 9, 16, 0.9);
  border-bottom-color: rgba(115, 177, 230, 0.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a,
.mobile-nav a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.site-nav a.is-active {
  text-shadow: 0 0 18px rgba(0, 200, 255, 0.3);
}

.nav-toggle {
  display: none;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  border-top: 1px solid rgba(115, 177, 230, 0.12);
  background: rgba(3, 10, 18, 0.96);
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-inner {
  padding: 1.2rem 0 1.5rem;
}

.mobile-nav {
  display: grid;
  gap: 1rem;
}

.mobile-nav-meta {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 177, 230, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-section,
.page-hero {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

.hero-grid,
.page-hero-grid,
.section-split,
.split-content,
.contact-layout,
.about-highlight,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.home-hero-shell,
.home-services-layout,
.home-projects-layout,
.home-about-layout,
.home-hero-body,
.home-hero-side,
.home-process-list,
.project-mini-list {
  display: grid;
}

.home-hero-shell {
  gap: 0.95rem;
}

.home-hero .hero-copy {
  order: 0;
  max-width: none;
}

.home-hero .hero-media-home {
  order: -1;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy,
.page-hero-copy {
  max-width: 760px;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin-bottom: 1.3rem;
}

.home-hero .hero-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(2.5rem, 4.2vw, 3.95rem);
}

.page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.15rem, 3.4vw, 3.45rem);
}

.hero-chip-list,
.feature-list,
.footer-links,
.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.hero-chip-list li,
.hero-badge-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 177, 230, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.hero-metrics-home {
  margin-top: 0;
}

.hero-metric {
  padding: 0.9rem;
  border-radius: var(--radius-lg);
}

.hero-metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

.hero-metric span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.hero-trust-block {
  margin-top: 0.35rem;
}

.home-hero .hero-trust-block {
  margin-top: 0;
}

.home-hero-body {
  gap: 1rem;
}

.home-hero-side {
  gap: 1rem;
}

.hero-media,
.page-hero-media,
.media-stack-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(115, 177, 230, 0.16);
  box-shadow: var(--shadow-lg);
}

.hero-media img,
.page-hero-media img,
.card-image img,
.media-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-home {
  min-height: 0;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 20, 0.05), rgba(4, 12, 20, 0.12) 46%, rgba(4, 12, 20, 0.68) 100%),
    linear-gradient(90deg, rgba(4, 12, 20, 0.04), transparent 36%, rgba(4, 12, 20, 0.2));
}

.hero-badge-row,
.hero-media-caption {
  position: absolute;
  z-index: 2;
  left: 1.15rem;
  right: 1.15rem;
}

.hero-badge-row {
  top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-media-caption {
  bottom: 1.1rem;
  max-width: 24rem;
}

.hero-media-caption h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
}

.trust-strip {
  padding: 1.25rem 0 0;
}

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

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

.trust-card {
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(115, 177, 230, 0.12);
  background: rgba(7, 18, 30, 0.88);
  box-shadow: var(--shadow-card);
}

.trust-title {
  font-size: 0.72rem;
  margin-bottom: 0.55rem;
}

.trust-card p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

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

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

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

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

.service-card,
.project-card,
.process-card,
.icon-card,
.contact-card {
  overflow: hidden;
}

.card-image {
  min-height: 225px;
  background: linear-gradient(160deg, rgba(11, 26, 42, 0.94), rgba(7, 16, 27, 0.9));
}

.card-body {
  padding: 1.35rem;
}

.card-body h3 {
  font-size: 1.2rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.section-footer-action {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.section-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.stats-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.stats-inline div {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid rgba(0, 200, 255, 0.14);
}

.stats-inline strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1rem;
}

.stats-inline span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.project-card-large {
  grid-row: span 2;
}

.project-card .card-image {
  min-height: 240px;
}

.project-card-featured .card-image {
  min-height: 430px;
}

.project-mini-list {
  gap: 1rem;
}

.project-mini-card {
  padding: 1.15rem 1.2rem;
}

.project-mini-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.project-mini-card p:last-child {
  margin-bottom: 0;
}

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

.home-process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  padding: 1.35rem;
}

.process-card-compact {
  padding: 1rem;
}

.process-card-compact h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.process-card-compact p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.process-card-compact .process-number {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  background: rgba(0, 200, 255, 0.08);
}

.about-highlight {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.about-highlight-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-stack-card {
  min-height: 420px;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.14);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem;
}

.inline-cta-panel {
  width: 100%;
}

.home-about-cta {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-hero {
  border-bottom: 1px solid rgba(115, 177, 230, 0.1);
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 2rem;
}

.page-hero-media {
  min-height: 440px;
}

.page-hero-media img {
  min-height: 440px;
}

.page-hero-media-double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.page-hero-media-double img {
  min-height: 440px;
  border-radius: 1.6rem;
  border: 1px solid rgba(115, 177, 230, 0.16);
  box-shadow: var(--shadow-card);
}

.page-hero-media,
.page-hero-media-double {
  order: 1;
}

.contact-hero-stack {
  order: 1;
}

.page-hero-copy {
  order: 2;
}

.page-hero-copy.narrow {
  max-width: 620px;
}

.breadcrumbs {
  margin-bottom: 1.2rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.breadcrumbs li + li::before {
  content: '/';
  color: rgba(255, 255, 255, 0.22);
}

.breadcrumbs a:hover {
  color: var(--text);
}

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

.split-content > .surface-card,
.contact-sidebar > .surface-card,
.contact-form,
.icon-card {
  padding: 1.35rem;
}

.icon-card {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.icon-card h3 {
  margin-bottom: 0;
  font-size: 1.06rem;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-weight: 800;
  color: var(--text);
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

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

.contact-hero-stack,
.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h2 {
  font-size: 1.5rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.3rem;
}

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

.form-grid label {
  display: grid;
  gap: 0.45rem;
}

.form-grid span {
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(115, 177, 230, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.form-grid select {
  background: #f4f8fc;
  color: #081523;
  color-scheme: light;
  font-weight: 700;
}

.form-grid select option {
  color: #081523;
  background: #ffffff;
}

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

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--text-faint);
}

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

.form-note {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid rgba(115, 177, 230, 0.12);
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.68), rgba(2, 8, 14, 0.96));
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  padding: 3rem 0 2rem;
  align-items: start;
}

.footer-brand-block h2 {
  font-size: 1.9rem;
}

.footer-contact-list,
.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-contact-list a,
.footer-links a,
.footer-contact-list span,
.footer-note,
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--text);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(115, 177, 230, 0.08);
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--success);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
}

strong {
  color: var(--text);
}

.text-link::after {
  content: '\2192';
}

.faq-item[open] summary::after {
  content: '-';
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

@media (min-width: 981px) {
  html {
    scroll-snap-type: none;
  }

  .screen-section {
    min-height: auto;
    display: block;
    padding-top: 4.25rem;
    padding-bottom: 1.5rem;
  }

  .screen-section > .shell {
    width: var(--shell);
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.1rem;
  }

  .home-hero-body {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
    align-items: start;
    gap: 1.2rem;
  }

  .home-hero-side {
    align-self: stretch;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(720px, 0.95fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .home-hero .hero-copy {
    max-width: none;
  }

  .page-hero-copy {
    max-width: min(760px, 100%);
  }

  .home-hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.8rem, 2.05vw, 2.55rem);
  }

  .page-hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(1.8rem, 2vw, 2.5rem);
  }

  .page-hero-copy .page-lead {
    max-width: 58ch;
  }

  .hero-media-home {
    width: min(1080px, 100%);
    height: auto;
    aspect-ratio: 1400 / 789;
    min-height: 0;
    margin-inline: auto;
  }

  .hero-media-home img {
    height: 100%;
    min-height: 0;
  }

  .page-hero-media {
    height: clamp(300px, 42vh, 460px);
    min-height: 0;
  }

  .page-hero-media img {
    height: 100%;
    min-height: 0;
  }

  .page-hero-media-double img {
    min-height: clamp(280px, 38vh, 420px);
  }

  .home-services-layout,
  .home-projects-layout,
  .home-about-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .page-hero-copy {
    order: 1;
  }

  .page-hero-media,
  .page-hero-media-double,
  .contact-hero-stack {
    order: 2;
  }

  .home-services-screen .cards-grid-services-home .card-image {
    min-height: 150px;
  }

  .home-services-screen .process-card {
    padding: 1rem;
  }

  .home-services-screen .card-body {
    padding: 1rem;
  }

  .home-services-screen .card-body h3 {
    font-size: 1.1rem;
  }

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

  .trust-grid-compact .trust-card {
    padding: 0.95rem;
  }

  .hero-metrics-home {
    grid-template-columns: 1fr;
  }

  .hero-metrics-home .hero-metric,
  .trust-grid-compact .trust-card {
    min-height: 100%;
  }

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

  .home-about-layout .about-highlight-media .media-stack-card {
    min-height: 300px;
  }

  .home-about-layout .feature-list {
    max-width: 56ch;
  }
}

@media (max-width: 1120px) {
  .cards-grid-services,
  .cards-grid-services-home,
  .cards-grid-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-grid,
  .stats-inline,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  html {
    scroll-snap-type: none;
  }

  .site-nav,
  .header-actions .button-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .page-hero-grid,
  .section-split,
  .split-content,
  .contact-layout,
  .about-highlight,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-grid,
  .page-hero-grid {
    gap: 1.5rem;
  }

  .home-hero .hero-copy {
    order: 2;
  }

  .home-hero .hero-media-home {
    order: -1;
    min-height: 420px;
  }

  .home-hero .hero-media-home img {
    min-height: 420px;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 100%;
  }

  .project-highlight-grid {
    grid-template-columns: 1fr;
  }

  .project-card-large {
    grid-row: auto;
  }

  .home-process-list,
  .cards-grid-services-home,
  .trust-grid-compact {
    grid-template-columns: 1fr;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 360px;
  }

  .page-hero-media-double {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-media-double img {
    min-height: 320px;
  }

  .button-column {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .hero-section,
  .page-hero {
    padding-top: 7rem;
    padding-bottom: 3.8rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .cards-grid-services,
  .cards-grid-services-home,
  .cards-grid-projects,
  .cards-grid-benefits,
  .process-grid,
  .trust-grid,
  .stats-inline,
  .hero-metrics,
  .footer-grid,
  .form-grid,
  .page-hero-media-double,
  .about-highlight-media {
    grid-template-columns: 1fr;
  }

  .form-grid .full-span {
    grid-column: auto;
  }

  .button-row,
  .footer-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-chip {
    width: 100%;
  }

  .hero-media-caption h2,
  .page-hero-copy h1,
  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-badge-row,
  .hero-media-caption {
    left: 0.9rem;
    right: 0.9rem;
  }

  .hero-media-home,
  .hero-media-home img,
  .page-hero-media,
  .page-hero-media img,
  .media-stack-card {
    min-height: 300px;
  }

  .whatsapp-fab {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
