:root {
  --ink: #092029;
  --ink-soft: #314850;
  --navy: #06181f;
  --navy-2: #0b2831;
  --cyan: #18b8da;
  --cyan-soft: #c9f2f8;
  --lime: #72dc58;
  --paper: #f7faf8;
  --soft: #eaf2ef;
  --white: #ffffff;
  --line: rgba(9, 32, 41, 0.14);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(3, 28, 35, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6.8vw, 6.8rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.4rem);
}

h3 {
  font-size: 1.45rem;
}

::selection {
  color: var(--navy);
  background: var(--lime);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand img {
  width: 165px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  color: var(--cyan-soft);
}

.nav-cta {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 190px 0 100px;
  color: var(--white);
  background: #06181f url("/assets/images/video_hp_Moment.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 19, 25, 0.96) 0%, rgba(4, 19, 25, 0.86) 35%, rgba(4, 19, 25, 0.3) 68%, rgba(4, 19, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 19, 25, 0.72) 0%, transparent 42%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: -180px;
  bottom: -250px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 151vh);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.7;
}

.hero-orb-one {
  top: 158px;
  right: 10%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(24, 184, 218, 0.45);
  box-shadow: inset 30px -25px 80px rgba(24, 184, 218, 0.14);
}

.hero-orb-two {
  right: 2%;
  bottom: 90px;
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, rgba(114, 220, 88, 0.58), rgba(24, 184, 218, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: end;
  gap: 72px;
}

.hero-copy {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #087c94;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
}

.hero-lead strong {
  color: var(--white);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #91ed7c;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--cyan-soft);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 36px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  list-style: none;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "●";
}

.capability-stack {
  display: grid;
  gap: 12px;
}

.capability-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.capability-card-featured {
  border-color: rgba(24, 184, 218, 0.42);
  background: rgba(24, 184, 218, 0.1);
}

.capability-number {
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-card h2 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.capability-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: end;
  gap: 90px;
  margin-bottom: 58px;
}

.section-heading h2,
.sticky-heading h2,
.faq-layout h2,
.experience-grid h2 {
  margin-bottom: 0;
}

.section-heading > p,
.sticky-heading > p:not(.eyebrow),
.faq-layout > div:first-child > p:last-child,
.experience-copy > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.compact-heading {
  margin-bottom: 48px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(24, 184, 218, 0.52);
  box-shadow: var(--shadow);
}

.service-card-ai {
  background: linear-gradient(145deg, #ffffff 0%, #eefbfd 100%);
}

.service-icon {
  display: inline-grid;
  width: 47px;
  height: 47px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.text-link {
  margin-top: auto;
  color: #087c94;
  font-size: 0.91rem;
  font-weight: 760;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.83fr) minmax(0, 1.17fr);
  gap: 100px;
}

.sticky-heading {
  align-self: start;
}

.sticky-heading > p:not(.eyebrow) {
  margin: 27px 0 32px;
  color: rgba(255, 255, 255, 0.67);
}

.use-cases {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.use-case {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.use-case > span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
}

.use-case h3 {
  margin-bottom: 10px;
}

.use-case p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 280px;
  padding: 33px 30px;
  border-right: 1px solid var(--line);
}

.process-grid li:first-child {
  border-left: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 70px;
  color: #087c94;
  font-size: 0.78rem;
  font-weight: 850;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-soft {
  background: var(--soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.definition-list {
  margin: 42px 0 0;
}

.definition-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(9, 32, 41, 0.17);
}

.definition-list > div:last-child {
  border-bottom: 1px solid rgba(9, 32, 41, 0.17);
}

.definition-list dt {
  font-weight: 800;
}

.definition-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 100px;
}

.faq-layout > div:first-child > p:last-child {
  margin-top: 25px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 2px;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  width: 27px;
  flex: 0 0 27px;
  color: #087c94;
  content: "+";
  font-size: 1.65rem;
  font-weight: 400;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 730px;
  margin: -2px 48px 25px 2px;
  color: var(--ink-soft);
}

.contact-section {
  padding: 0 0 34px;
  background: var(--navy);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  padding: 70px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(24, 184, 218, 0.25), transparent 35%),
    var(--navy-2);
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 78px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 80px;
}

.footer-grid img {
  width: 165px;
  height: auto;
  margin-bottom: 24px;
}

.footer-grid > div:first-child p {
  max-width: 430px;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  text-decoration: none;
}

/* Service pages */
.subpage .site-header {
  position: relative;
  background: var(--navy);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 184, 218, 0.25), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 52px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.subpage-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.subpage-hero .hero-lead {
  max-width: 790px;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
}

.service-intro h2 {
  margin-bottom: 0;
}

.prose {
  color: var(--ink-soft);
}

.prose p:first-child {
  color: var(--ink);
  font-size: 1.23rem;
}

.prose h3 {
  margin: 40px 0 15px;
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0987a0;
  content: "✓";
  font-weight: 900;
}

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

.feature-box {
  min-height: 260px;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.feature-box > span {
  display: block;
  margin-bottom: 55px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
}

.feature-box h3 {
  margin-bottom: 13px;
}

.feature-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-link {
  min-height: 205px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.related-link h3 {
  margin-bottom: 12px;
}

.related-link p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-layout,
  .service-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

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

  .capability-card {
    grid-template-columns: 1fr;
  }

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

  .split-layout,
  .service-intro {
    gap: 60px;
  }

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 116px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
  }

  .brand img {
    width: 140px;
  }

  .main-nav {
    width: 100%;
    gap: 17px;
    overflow-x: auto;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 5px 13px;
  }

  .hero {
    padding-top: 180px;
  }

  .hero::before {
    background: rgba(4, 19, 25, 0.78);
  }

  .subpage-hero {
    padding-top: 75px;
  }

  .section,
  .site-footer {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading,
  .experience-grid,
  .faq-layout,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .process-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .contact-card {
    padding: 48px;
  }

  .related-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 78px;
  }

  h1,
  .subpage-hero h1 {
    font-size: clamp(2.72rem, 13.2vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

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

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

  .capability-stack,
  .services-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    grid-template-columns: 40px 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .process-grid li,
  .process-grid li:nth-child(3) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-grid span {
    margin-bottom: 35px;
  }

  .experience-grid,
  .faq-layout {
    gap: 55px;
  }

  .definition-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card {
    padding: 35px 26px;
    border-radius: 23px;
  }

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

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-video {
    display: none;
  }
}

/* Conservative home page: preserves the original Nut Soft layout and video. */
.classic-home {
  color: #2b2b2b;
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.classic-container {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.classic-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
}

.classic-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.classic-header .brand img {
  width: 175px;
  height: auto;
}

.classic-header-contact {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  color: #fff;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.classic-header-contact:hover,
.classic-header-contact:focus-visible {
  color: #111;
  background: #fff;
}

.classic-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #151515 url("/assets/images/video_hp_Moment.jpg") center / cover no-repeat;
}

.classic-hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.classic-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

.classic-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.classic-hero-action {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
}

.classic-hero-action a {
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.classic-hero-action a:hover,
.classic-hero-action a:focus-visible {
  color: #111;
  background: #fff;
}

.classic-overview {
  padding: 95px 0 105px;
  text-align: center;
}

.classic-overview h1 {
  margin-bottom: 62px;
  color: #222;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.25;
}

.classic-service-lines {
  max-width: 1050px;
  margin: 0 auto;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(0.83rem, 1.35vw, 1rem);
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.classic-service-lines p {
  margin-bottom: 19px;
}

.classic-service-lines a {
  color: inherit;
  text-decoration: none;
}

.classic-service-lines a:hover,
.classic-service-lines a:focus-visible {
  color: #07809a;
}

.classic-intro {
  max-width: 820px;
  margin: 54px auto 30px;
  color: #666;
  font-size: 1rem;
  line-height: 1.9;
}

.classic-button {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid #242424;
  border-radius: 2px;
  color: #242424;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.classic-button:hover,
.classic-button:focus-visible {
  color: #fff;
  background: #242424;
}

.classic-section {
  padding: 95px 0;
  border-top: 1px solid #e7e7e7;
  background: #fff;
}

.classic-section-soft {
  background: #f7f7f7;
}

.classic-kicker {
  margin-bottom: 15px;
  color: #777;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.classic-section h2,
.classic-contact h2 {
  max-width: 850px;
  margin-bottom: 24px;
  color: #222;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.25;
}

.classic-lead {
  max-width: 760px;
  margin-bottom: 48px;
  color: #666;
  font-size: 1rem;
}

.classic-columns {
  display: grid;
  gap: 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

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

.classic-columns article {
  padding: 35px 34px 37px;
  border-right: 1px solid #d7d7d7;
}

.classic-columns article:first-child {
  border-left: 1px solid #d7d7d7;
}

.classic-columns h3,
.classic-steps h3 {
  margin-bottom: 14px;
  color: #222;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.classic-columns p {
  color: #666;
}

.classic-columns a,
.classic-copy a {
  color: #087d96;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.classic-two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.classic-copy {
  color: #666;
  font-size: 1rem;
}

.classic-copy strong {
  color: #333;
}

.classic-section-dark {
  color: rgba(255, 255, 255, 0.72);
  background: #16191b;
}

.classic-section-dark .classic-kicker,
.classic-section-dark h2,
.classic-section-dark h3 {
  color: #fff;
}

.classic-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.classic-steps li {
  min-height: 220px;
  padding: 31px 29px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.classic-steps li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.classic-steps span {
  display: block;
  margin-bottom: 48px;
  color: #8acdde;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.classic-steps p {
  margin-bottom: 0;
}

.classic-faq {
  border-top: 1px solid #d7d7d7;
}

.classic-faq details {
  border-bottom: 1px solid #d7d7d7;
}

.classic-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  cursor: pointer;
  color: #333;
  font-weight: 600;
  list-style: none;
}

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

.classic-faq summary::after {
  content: "+";
  color: #777;
  font-size: 1.3rem;
}

.classic-faq details[open] summary::after {
  content: "−";
}

.classic-faq p {
  margin: 0 40px 23px 0;
  color: #666;
}

.classic-contact {
  padding: 84px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #222;
}

.classic-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 90px;
}

.classic-contact .classic-kicker,
.classic-contact h2 {
  color: #fff;
}

.classic-contact p {
  max-width: 730px;
}

.classic-contact address {
  padding-top: 33px;
  font-style: normal;
}

.classic-contact a {
  color: #fff;
  text-decoration: none;
}

.classic-footer {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.55);
  background: #151515;
  font-size: 0.78rem;
}

.classic-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.classic-footer p {
  margin: 0;
}

.classic-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

@media (max-width: 820px) {
  .classic-columns-three,
  .classic-two-column,
  .classic-contact-grid {
    grid-template-columns: 1fr;
  }

  .classic-columns article,
  .classic-columns article:first-child {
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
  }

  .classic-columns article:last-child {
    border-bottom: 0;
  }

  .classic-two-column,
  .classic-contact-grid {
    gap: 40px;
  }

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

  .classic-steps li:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 560px) {
  .classic-container {
    width: min(100% - 28px, 1120px);
  }

  .classic-header-contact {
    display: none;
  }

  .classic-hero {
    min-height: 68vh;
  }

  .classic-overview,
  .classic-section,
  .classic-contact {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .classic-overview h1 {
    margin-bottom: 45px;
    font-size: 1.75rem;
  }

  .classic-service-lines {
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }

  .classic-steps {
    grid-template-columns: 1fr;
  }

  .classic-steps li,
  .classic-steps li:nth-child(3) {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .classic-steps li:last-child {
    border-bottom: 0;
  }

  .classic-steps span {
    margin-bottom: 25px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .classic-hero-video {
    display: none;
  }
}

/* Service pages use the same restrained visual language as the home page. */
.subpage {
  color: #2b2b2b;
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.subpage .container {
  width: min(1120px, calc(100% - 44px));
}

.subpage .site-header {
  position: relative;
  color: #fff;
  background: #151515;
}

.subpage .header-inner {
  min-height: 82px;
  border-bottom: 0;
}

.subpage .brand img {
  width: 175px;
}

.subpage .main-nav a:not(.nav-cta) {
  display: none;
}

.subpage .nav-cta {
  padding: 8px 18px;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subpage-hero {
  position: relative;
  padding: 78px 0 88px;
  color: #222;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(255, 255, 255, 0.76) 65%, rgba(255, 255, 255, 0.12) 100%),
    #fff url("/assets/images/video_hp_Moment.jpg") center right / cover no-repeat;
  border-bottom: 1px solid #e7e7e7;
}

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

.subpage .breadcrumbs {
  margin-bottom: 47px;
  color: #777;
  font-size: 0.78rem;
}

.subpage .breadcrumbs a:hover,
.subpage .breadcrumbs a:focus-visible {
  color: #087d96;
}

.subpage .eyebrow {
  margin-bottom: 14px;
  color: #777;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.subpage-hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: #222;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.18;
}

.subpage-hero .hero-lead {
  max-width: 690px;
  margin-bottom: 31px;
  color: #666;
  font-size: 1rem;
  line-height: 1.85;
  text-shadow: none;
}

.subpage .button {
  min-height: 43px;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage .button-primary {
  color: #fff;
  background: #242424;
}

.subpage .button-primary:hover,
.subpage .button-primary:focus-visible {
  color: #fff;
  background: #087d96;
}

.subpage .button-secondary {
  color: #242424;
  border-color: #242424;
  background: transparent;
}

.subpage .button-secondary:hover,
.subpage .button-secondary:focus-visible {
  color: #fff;
  background: #242424;
}

.subpage .section {
  padding: 92px 0;
  border-top: 0;
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
}

.subpage .section-soft {
  background: #f7f7f7;
}

.subpage .section-dark {
  color: rgba(255, 255, 255, 0.72);
  background: #16191b;
  border-bottom: 0;
}

.subpage .service-intro {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.subpage .service-intro h2,
.subpage .section-heading h2 {
  color: #222;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.25;
}

.subpage .section-dark .section-heading h2,
.subpage .section-dark h3 {
  color: #fff;
}

.subpage .prose {
  color: #666;
}

.subpage .prose p:first-child {
  color: #444;
  font-size: 1.03rem;
}

.subpage .prose h3 {
  margin-top: 35px;
  color: #333;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.subpage .check-list li::before {
  color: #087d96;
}

.subpage .section-heading {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  margin-bottom: 46px;
}

.subpage .feature-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage .feature-box {
  min-height: 245px;
  padding: 31px 29px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
}

.subpage .feature-box:nth-child(3n + 1) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage .feature-box:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.subpage .feature-box > span {
  margin-bottom: 45px;
  color: #8acdde;
}

.subpage .feature-box h3 {
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.subpage .feature-box p {
  color: rgba(255, 255, 255, 0.64);
}

.subpage .related-links {
  gap: 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

.subpage .related-link {
  min-height: 190px;
  padding: 31px 29px;
  border: 0;
  border-right: 1px solid #d7d7d7;
  border-radius: 0;
  background: transparent;
}

.subpage .related-link:first-child {
  border-left: 1px solid #d7d7d7;
}

.subpage .related-link:hover,
.subpage .related-link:focus-visible {
  border-color: #d7d7d7;
  background: #fff;
  box-shadow: none;
}

.subpage .related-link h3 {
  color: #333;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.subpage .contact-section {
  padding: 82px 0;
  background: #222;
}

.subpage .contact-card {
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.subpage .contact-card h2 {
  color: #fff;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.25;
}

.subpage .phone-link {
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.subpage .site-footer {
  padding: 68px 0 22px;
  background: #151515;
}

.subpage .footer-grid h2 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

@media (max-width: 1050px) {
  .subpage .service-intro {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .subpage .feature-box:nth-child(3n + 1) {
    border-left: 0;
  }

  .subpage .feature-box:nth-child(2n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .subpage .feature-box:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .subpage .feature-box:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .subpage .header-inner {
    min-height: 82px;
    align-items: center;
    flex-direction: row;
    padding: 0;
  }

  .subpage .main-nav {
    width: auto;
    padding: 0;
    overflow: visible;
  }

  .subpage .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subpage-hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.5) 100%),
      #fff url("/assets/images/video_hp_Moment.jpg") 62% center / cover no-repeat;
  }

  .subpage .related-link,
  .subpage .related-link:first-child {
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
  }

  .subpage .related-link:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .subpage .container {
    width: min(100% - 28px, 1120px);
  }

  .subpage .subpage-hero,
  .subpage .section,
  .subpage .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .subpage-hero h1 {
    font-size: 2.35rem;
  }

  .subpage-hero {
    background:
      linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
      #fff url("/assets/images/video_hp_Moment.jpg") 68% center / cover no-repeat;
  }

  .subpage .feature-box,
  .subpage .feature-box:nth-child(2n + 1),
  .subpage .feature-box:nth-child(3n + 1) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .subpage .feature-box:last-child {
    border-bottom: 0;
  }
}
