:root {
  --bg: #050816;
  --bg-alt: #091127;
  --panel: rgba(12, 19, 39, 0.72);
  --panel-strong: rgba(17, 24, 44, 0.88);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #aab6cf;
  --primary: #4fd1c5;
  --accent: #6ea8ff;
  --success: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --nav-height: 84px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 209, 197, 0.18), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(110, 168, 255, 0.15), transparent 24%),
    linear-gradient(180deg, #040714 0%, #060b18 35%, #091127 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(79, 209, 197, 0.08), transparent 30%, rgba(110, 168, 255, 0.07)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 42%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

::selection {
  background: rgba(79, 209, 197, 0.35);
  color: var(--text);
}

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

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

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

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

.section {
  padding: 110px 0;
  position: relative;
}

.section-compact {
  padding: 90px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 60ch;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-row,
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-weight: 600;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #04111f;
  box-shadow: 0 12px 28px rgba(79, 209, 197, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled .nav-shell {
  background: rgba(5, 8, 22, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell {
  margin: 1rem auto 0;
  min-height: var(--nav-height);
  width: min(calc(var(--container) + 40px), calc(100% - 1rem));
  border: 1px solid transparent;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 0 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #04111f;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 22px rgba(79, 209, 197, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color var(--transition);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform var(--transition), opacity var(--transition);
}

.hero,
.page-hero {
  padding-top: calc(90px + var(--nav-height));
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.page-hero {
  padding-bottom: 2rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy .lead,
.page-hero-copy .lead {
  margin-bottom: 2rem;
}

.hero-panel,
.mini-panel,
.service-card,
.process-card,
.reference-card,
.price-card,
.team-card,
.value-card,
.contact-card,
.faq-item,
.cta-shell {
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.hero-panel {
  min-height: 100%;
}

.hero-stats,
.service-preview-grid,
.process-grid,
.reference-grid,
.services-grid,
.pricing-grid,
.team-grid,
.values-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-stats,
.service-preview-grid,
.reference-grid,
.services-grid,
.pricing-grid,
.team-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-groups {
  display: grid;
  gap: 2.6rem;
}

.service-group {
  display: grid;
  gap: 1.25rem;
}

.service-group-heading {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(79, 209, 197, 0.08), rgba(110, 168, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.service-group-heading h3 {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.service-group-heading h3::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 14px rgba(79, 209, 197, 0.22);
}

.service-group-heading p {
  max-width: 62ch;
  font-size: 0.96rem;
  color: #c2cce0;
}

.process-timeline {
  position: relative;
}

.process-stage {
  position: relative;
  min-height: 2040px;
}

.process-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.process-path-base,
.process-path-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.process-path-base {
  stroke: rgba(255, 255, 255, 0.12);
}

.process-path-progress {
  stroke: url(#processGradient);
  filter: drop-shadow(0 0 14px rgba(79, 209, 197, 0.22));
}

.process-node {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 2;
}

.process-card {
  position: absolute;
  width: min(340px, calc(100vw - 5rem));
  border-radius: 28px;
  padding: 1.6rem;
  top: 50%;
  opacity: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), opacity 420ms ease;
}

.process-node[data-side="left"] .process-card {
  right: calc(100% + var(--card-gap, 42px));
  transform: translate(-18px, -50%);
}

.process-node[data-side="right"] .process-card {
  left: calc(100% + var(--card-gap, 42px));
  transform: translate(18px, -50%);
}

.process-node[data-side="center"] .process-card {
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
}

.process-node.is-reached .process-card {
  opacity: 1;
}

.process-node.is-reached[data-side="left"] .process-card,
.process-node.is-reached[data-side="right"] .process-card {
  transform: translate(0, -50%);
}

.process-node.is-reached[data-side="center"] .process-card {
  transform: translate(-50%, -50%);
}

.service-icon,
.process-icon,
.team-avatar,
.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.22), rgba(110, 168, 255, 0.14));
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.process-step {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-bottom: 0.5rem;
  background: none;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.process-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 30ch;
}

.service-card,
.process-card,
.reference-card,
.team-card,
.value-card,
.price-card,
.faq-item {
  min-height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.reference-card:hover,
.team-card:hover,
.value-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 209, 197, 0.35);
}

.process-node[data-side="left"] .process-card:hover {
  transform: translate(0, calc(-50% - 4px));
  border-color: rgba(79, 209, 197, 0.35);
  box-shadow: 0 12px 28px rgba(79, 209, 197, 0.18);
}

.process-node[data-side="right"] .process-card:hover {
  transform: translate(0, calc(-50% - 4px));
  border-color: rgba(79, 209, 197, 0.35);
  box-shadow: 0 12px 28px rgba(79, 209, 197, 0.18);
}

.process-node[data-side="center"] .process-card:hover {
  transform: translate(-50%, calc(-50% - 4px));
  border-color: rgba(79, 209, 197, 0.35);
  box-shadow: 0 12px 28px rgba(79, 209, 197, 0.18);
}

.service-card p,
.process-card p,
.reference-card p,
.price-card p,
.team-card p,
.value-card p,
.faq-content p,
.contact-info li,
.footer-note {
  font-size: 0.98rem;
}

.service-link-row,
.section-link-row {
  margin-top: 2rem;
}

.reference-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.screenshot-box {
  min-height: 260px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #1b2339;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.tag-list,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag,
.meta-pill,
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.14);
  color: #d7fffa;
  font-size: 0.9rem;
}

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

.price-card.recommended {
  border-color: rgba(79, 209, 197, 0.45);
  box-shadow: 0 0 0 1px rgba(79, 209, 197, 0.22), 0 26px 80px rgba(15, 118, 110, 0.22);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1;
}

.price small {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.5rem;
}

.price-features,
.contact-info,
.faq-grid {
  list-style: none;
}

.price-features {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 1.6rem;
  color: var(--muted);
}

.price-features li,
.contact-info li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-assurance {
  margin-top: 1.6rem;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  color: var(--text);
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(110, 168, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(79, 209, 197, 0.16);
}

.pricing-assurance i {
  color: var(--primary);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

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

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(79, 209, 197, 0.42);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.08);
}

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

.conditional-fields {
  display: none;
  gap: 1rem;
}

.conditional-fields.visible {
  display: grid;
}

.addon-option {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
}

.addon-option strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.form-message {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #bbf7d0;
}

.form-message.error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.22);
  color: #fecaca;
}

.submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.86;
}

.submit-btn.is-loading .btn-text {
  opacity: 0.2;
}

.submit-btn.is-loading .btn-loader {
  display: inline-block;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(4, 17, 31, 0.3);
  border-top-color: #04111f;
  animation: spin 0.75s linear infinite;
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.8rem;
  color: var(--muted);
}

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

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-trigger i {
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-trigger i {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
  padding-right: 2rem;
}

.faq-item.active .faq-content {
  padding-top: 0.9rem;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-shell {
  padding: 1.4rem 1.6rem;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 0.4rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-modal-card {
  position: relative;
  width: min(720px, 100%);
  border-radius: 30px;
  padding: 2rem;
  z-index: 1;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-right: 3.5rem;
}

.service-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.22), rgba(110, 168, 255, 0.16));
  color: var(--primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.service-modal-copy {
  display: grid;
  gap: 1rem;
}

.service-modal-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.service-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .reference-feature,
  .contact-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .service-preview-grid,
  .services-grid,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group-heading {
    padding: 1.1rem 1.2rem;
  }

}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(calc(var(--container) + 40px), calc(100% - 1rem));
    padding: 1rem;
    border-radius: 22px;
    background: rgba(5, 8, 22, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .process-stage {
    min-height: 1860px;
  }

  .process-card {
    width: min(300px, calc(100vw - 4rem));
  }

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

  .pricing-assurance {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section,
  .section-compact {
    padding: 86px 0;
  }

  .nav-shell {
    min-height: 74px;
    padding: 0 0.95rem 0 1rem;
  }

  .hero,
  .page-hero {
    padding-top: calc(84px + var(--nav-height));
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-stats,
  .service-preview-grid,
  .services-grid,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .reference-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-row,
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .btn-row .btn,
  .cta-shell .btn {
    width: 100%;
  }

  .service-group-heading {
    padding: 1rem 1rem 1.05rem;
    border-radius: 18px;
  }

  .service-group-heading h3 {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }

  .service-group-heading h3::before {
    width: 28px;
  }

  .services-grid,
  .pricing-grid {
    gap: 1rem;
  }

  .process-stage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .process-svg {
    display: none;
  }

  .process-node {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: auto;
    height: auto;
    padding-left: 2rem;
  }

  .process-node::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 0;
    bottom: -1rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(79, 209, 197, 0.35), rgba(110, 168, 255, 0.18));
  }

  .process-node:last-child::before {
    bottom: 3.5rem;
  }

  .process-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: 1.25rem;
    transform: none !important;
  }

  .process-step {
    font-size: 1.7rem;
  }

  .process-icon,
  .service-icon,
  .team-avatar,
  .value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .price-card,
  .service-card,
  .reference-card,
  .team-card,
  .value-card,
  .contact-card,
  .faq-item,
  .cta-shell {
    padding: 1.2rem;
  }

  .pricing-assurance {
    padding: 1rem;
    border-radius: 18px;
    gap: 0.55rem;
    flex-direction: column;
    text-align: center;
  }

  .price {
    font-size: 2.15rem;
  }

  .price-card .btn {
    min-height: 50px;
  }

  .contact-info {
    margin-bottom: 0;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 0.9rem 0.95rem;
  }

  .service-modal-card {
    padding: 1.35rem;
  }

  .service-modal-header {
    align-items: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
