:root {
  --blue: #007bff;
  --blue-soft: #e2f0ff;
  --blue-panel: #d8ebff;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --line: rgba(17, 17, 17, 0.11);
  --footer: #33485a;
  --radius: 8px;
  --section: min(1800px, calc(100vw - 40px));
  --content: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.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;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  min-height: 73px;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

main {
  padding-top: 73px;
}

.site-header-inner {
  width: min(1300px, calc(100% - 40px));
  min-height: 73px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  align-items: center;
  gap: 0;
}

.brand img {
  width: 130px;
}

.brand {
  transform: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 15px;
  transition: color 160ms ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active,
.account-nav a:hover {
  color: var(--blue);
}

.account-nav {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.account-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0;
  transition: color 160ms ease;
  white-space: nowrap;
}

.account-name {
  color: #111;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.nav-dropdown > a {
  padding-right: 41px;
}

.dropdown-toggle {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 26px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.dropdown-toggle::before {
  content: none;
}

.nav-caret {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: #f3f8ff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero-section {
  position: relative;
  padding: 0 0 60px;
  background: url("../images/banner-circle-color.png") no-repeat center center / auto;
  overflow: hidden;
}

.hero-section::before {
  content: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 180px 0 auto;
  height: 720px;
  background: url("../images/body-shadow.png") no-repeat center top / min(900px, 70vw) auto;
  pointer-events: none;
  z-index: 0;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 520px;
  background: url("../images/graphic-wave.png") no-repeat 0 157px / contain;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 126px;
  overflow: hidden;
}

.line-animation {
  position: absolute;
  inset: 50px auto auto 0;
  width: 100%;
  height: 400px;
  border: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(745px, 84vw);
}

@media (min-width: 1600px) {
  .hero-phone {
    width: min(900px, 84vw);
  }
}

.hero-copy {
  margin-top: -79px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  margin: 0;
  font-size: 52px;
  line-height: 62px;
  font-weight: 600;
}

@media (min-width: 1600px) {
  .hero-copy h1 {
    font-size: 62px;
    line-height: 72px;
  }
}

.hero-copy p {
  max-width: 1225px;
  margin: 5px auto 40px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: rgba(17, 17, 17, 0.8);
}

.hero-copy .btn {
  font-size: 14px;
  line-height: 24px;
}

.trusted-strip {
  width: var(--content);
  margin-top: 100px;
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: start;
  gap: 40px;
}

.trusted-strip h2 {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 600;
  padding-left: 8px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 64px 61px;
  align-items: center;
}

.logo-grid img {
  width: 210px;
  height: 105px;
  object-fit: contain;
}

.trusted-copy {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  margin: 20px 0 36px;
  text-align: center;
  color: rgba(17, 17, 17, 0.8);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  white-space: nowrap;
}

.section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2,
.why-section h2,
.case-study-copy h2,
.blog-intro h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  font-weight: 700;
}

.process-section {
  padding-top: 0;
}

.process-panel {
  width: var(--section);
  background: #fff;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  box-shadow: 0 0 25px rgba(177, 214, 255, 0.9);
  padding: 100px 20px 50px;
}

.process-surface {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  background: var(--blue-soft);
  border-radius: 60px;
}

.process-panel > .section-heading,
.process-grid {
  max-width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 50px;
  align-items: center;
}

.process-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 750px;
  margin: 0 auto 48px;
  border-bottom: 3px solid rgba(184, 82, 215, 0.10);
  font-size: 21px;
  font-weight: 600;
  line-height: 31px;
  text-align: center;
}

.process-tabs button {
  padding: 12px 24px;
  border-bottom: 3px solid transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: #111;
  font-weight: 600;
  cursor: pointer;
}

.process-tabs button img {
  display: inline-block;
  width: 18px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.process-tabs button.active {
  border-bottom-color: var(--blue);
}

.process-tab-panel[hidden] {
  display: none;
}

.heading-star {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 6px;
  vertical-align: top;
}

.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.feature-row:hover {
  background: #fff;
  box-shadow: 0 12px 36px rgba(97, 71, 172, 0.10);
}

.feature-row img {
  width: 55px;
}

.feature-row h3 {
  margin: 0 0 5px;
  font-size: 21px;
  line-height: 31px;
}

.feature-row p,
.feature-row ul {
  margin: 0;
  color: #616161;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.feature-row ul {
  padding-left: 18px;
}

.process-copy > .btn {
  display: block;
  width: max-content;
  margin: 30px auto 0;
}

.phone-card {
  background: #fff;
  border-radius: 50px;
  padding: 40px;
}

.phone-card img {
  margin: 0 auto;
  max-height: 560px;
}

.videos-section {
  background: #fff;
  padding-top: 60px;
}

.videos-section .section-heading {
  margin-bottom: 22px;
}

.videos-section .section-heading h2 {
  font-size: 40px;
  line-height: 50px;
  white-space: nowrap;
}

.video-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.video-track {
  display: flex;
  gap: 25px;
  transition: transform 400ms ease;
}

.video-card {
  flex: 0 0 calc((100% - 25px) / 2);
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: transparent;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid rgba(255, 255, 255, 0.96);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease;
}

.carousel-arrow:hover {
  background: #000;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.carousel-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.carousel-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.why-section {
  padding-top: 30px;
  padding-bottom: 100px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(240px, 40%);
  gap: 0;
  align-items: center;
}

.why-grid > div {
  padding: 0 40px 0 40px;
}

.why-section h2 span,
.blog-intro h2 span {
  color: var(--blue);
}

.why-section h2 {
  padding-bottom: 10px;
  font-size: 40px;
  line-height: 50px;
  white-space: nowrap;
}

.why-section p {
  margin: 0 0 14px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
  color: rgba(17, 17, 17, 0.8);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2d2d2d;
}

.why-grid > img {
  width: 50%;
  max-height: 560px;
  margin: 0 auto;
}

.case-study-section {
  background: url("../images/review-bg.png") no-repeat center / contain;
  padding-top: 120px;
  padding-bottom: 120px;
}

.case-study-copy {
  max-width: 980px;
  text-align: center;
}

.case-study-copy img {
  width: 88px;
  margin: 0 auto 22px;
}

.case-study-copy h2 {
  font-size: 40px;
  line-height: 50px;
}

.case-study-copy p {
  max-width: 760px;
  margin: 14px auto 30px;
  color: rgba(17, 17, 17, 0.8);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.blog-section {
  padding-top: 80px;
  padding-bottom: 90px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 56px;
  align-items: start;
}

.blog-intro h2 {
  margin-bottom: 28px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 28px;
}

.blog-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.blog-card h3 {
  margin: 0;
  padding: 0 0 18px;
  color: #1f1f1f;
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #ddd;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
}

.blog-meta::before {
  content: "";
  order: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
}

.blog-meta a {
  order: 3;
  color: #8bc8ff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.blog-meta a::after {
  content: " ↗";
}

.contact-band {
  padding-top: 30px;
  padding-bottom: 0;
}

.contact-panel {
  width: var(--section);
  padding: 70px min(70px, 5vw) 80px;
  text-align: center;
  background: #cae5ff;
  border-radius: 70px;
}

.contact-panel > p {
  max-width: 760px;
  margin: 12px auto 26px;
  color: #3f5063;
  font-family: "Open Sans", Arial, sans-serif;
}

.lead-form {
  max-width: 720px;
  margin: 0 auto;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 8px;
  background: #fff;
  color: #111;
  padding: 13px 14px;
  outline: none;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}

.sms-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0 22px;
  text-align: left;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.sms-consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  padding: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 310px;
  max-width: 760px;
  gap: 42px;
  align-items: center;
  margin: 64px auto 0;
  text-align: left;
}

.contact-details strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.contact-map {
  width: 310px;
  height: 150px;
  border: 0;
  border-radius: 10px;
}

.site-footer {
  margin-top: 20px;
  padding: 35px 20px 31px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--footer);
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  text-align: center;
}

.footer-links,
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  margin-bottom: 14px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.footer-social {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  background: var(--blue-panel);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.modal-panel h2 {
  margin: 0 0 18px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.video-modal-panel {
  width: min(1080px, calc(100vw - 32px));
  padding: 18px;
  background: #111;
}

.video-modal-panel video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 110px);
}

[data-animate] {
  opacity: 0;
  transition-duration: 1.25s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in-right"] {
  transform: translate3d(260px, 0, 0);
}

[data-animate="fade-in-left"] {
  transform: translate3d(-260px, 0, 0);
}

[data-animate="fade-in-up"] {
  transform: translate3d(0, 90px, 0);
}

[data-animate="fade-in-down"] {
  transform: translate3d(0, -90px, 0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .videos-section .section-heading h2,
  .why-section h2 {
    white-space: normal;
  }

  .site-header-inner {
    grid-template-columns: 160px 1fr auto;
  }

  .site-nav {
    gap: 18px;
  }

  .trusted-strip,
  .process-grid,
  .why-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .trusted-strip {
    text-align: center;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .blog-intro {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
  }

  main {
    padding-top: 82px;
  }

  .site-header-inner {
    min-height: 82px;
    grid-template-columns: 1fr auto auto;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: #111;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown > a {
    padding: 10px;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .nav-dropdown > a {
    padding-right: 10px;
  }

  .dropdown-toggle {
    position: static;
  }

  .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    transform: none;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .hero-art {
    min-height: 220px;
  }

  .hero-copy {
    margin-top: -20px;
  }

  .process-panel,
  .contact-panel {
    border-radius: 44px;
  }

  .process-surface {
    padding: 40px 30px;
    border-radius: 44px;
  }

  .process-tabs {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .contact-details,
  .blog-cards {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .blog-cards {
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

  .why-grid > div {
    padding: 0 10px;
  }

  .why-grid > img {
    width: min(360px, 90%);
  }

  .contact-map {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  :root {
    --section: calc(100vw - 24px);
    --content: calc(100vw - 24px);
  }

  .account-nav {
    gap: 10px;
    font-size: 14px;
  }

  .hero-section {
    padding-top: 0;
  }

  .logo-grid,
  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    flex-basis: 100%;
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-copy p,
  .trusted-copy {
    font-size: 16px;
    line-height: 26px;
    white-space: normal;
  }

  .process-panel,
  .contact-panel {
    padding: 36px 18px;
  }

  .process-surface {
    padding: 30px 18px;
    border-radius: 30px;
  }

  .process-tabs {
    grid-template-columns: 1fr;
    font-size: 18px;
    line-height: 28px;
  }

  .feature-row {
    grid-template-columns: 44px 1fr;
    padding: 18px 0;
  }

  .feature-row img {
    width: 42px;
  }

  .footer-links,
  .footer-social {
    gap: 12px 18px;
  }

}
