/* ---------- Tokens ---------- */
:root {
  --paper: #f5f2ec;
  --paper-2: #eeeae0;
  --surface: #ffffff;
  --ink: #0e1822;
  --ink-2: #2a323c;
  --muted: #6b6358;
  --line: #e5dfd2;
  --line-strong: #c9c0ac;
  --accent: #3f51b5;
  /* deep ocean blue */
  --accent-deep: #3f51b5;
  --accent-soft: #e5ecf7;
  --copper: #b86a3d;
  /* warm highlight */
  --copper-soft: #f0e1d2;

  --maxw: 1600px;
  --pad: clamp(20px, 4vw, 56px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 15px; */
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #6b6358;
  opacity: 0.5;
}

.eyebrow.center::before {
  display: none;
}

.eyebrow .num {
  color: var(--accent);
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h-display {
  font-size: clamp(48px, 7.5vw, 112px);
}

.h-section {
  font-size: clamp(36px, 5vw, 46px);
  line-height: 1.08;
}

.h-card {
  font-size: 24px;
  line-height: 1.2;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  /* max-width: 62ch; */
  line-height: 1.55;
}

em {
  font-style: italic;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn .arr {
  transition: transform 0.3s ease;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.btn-primary {

  background: var(--accent);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-accent {
  background: var(--accent);
  color: var(--paper);
}

.btn-accent:hover {
  background: var(--accent-deep);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 9px 0;
  text-transform: uppercase;
}

.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #7dd493;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(125, 212, 147, 0.18);
}

.topbar a:hover {
  color: #fff;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;

  font-size: 24px;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto -10px -10px auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--copper);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {

  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo-text small {

  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-radius: 4px;
  list-style: none;
  z-index: 1000;
  margin-top: 10px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: transparent;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
  font-size: 14px;
}

.dropdown-menu li a::after {
  display: none;
  /* remove hover line from dropdown items */
}

.dropdown-menu li a:hover {
  background-color: #f5f2ec;
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-btn {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
    border-top: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    list-style: none;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-links > li > a,
  .nav-links > li > a.has-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    width: 100%;
  }

  .nav-links > li > a::after {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    position: relative;
  }

  .menu-btn span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    position: relative;
    transition: background 0.2s;
  }

  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
  }

  .menu-btn span::before {
    top: -6px;
  }

  .menu-btn span::after {
    top: 6px;
  }

  .menu-btn.is-open span {
    background: transparent;
  }

  .menu-btn.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-btn.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-links .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    min-width: unset;
    margin-top: 0;
    border-radius: 0;
    background: #f9f9f9;
  }

  .nav-links .dropdown-menu li a {
    padding: 12px 24px 12px 36px;
    font-size: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-links .has-dropdown.sub-open > .dropdown-menu {
    display: block;
  }

  .nav {
    position: sticky;
    overflow: visible;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 24px;
}

.main-heading {
  margin-bottom: 30px;
}

.hero h1 .ital {
  font-style: italic;
  color: var(--accent);
}

.hero h1 .underline {
  background-image: linear-gradient(transparent 78%, var(--copper) 78%, var(--copper) 92%, transparent 92%);
  padding: 0 0.05em;
}

.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta .label {

  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta .val {
  font-size: 28px;
  color: var(--ink);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  align-self: flex-start;
}

.hero-tag .pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}

.hero-tag .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  opacity: 0.5;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  /* max-width: 42ch; */
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  background: linear-gradient(160deg, #1a2a44 0%, #0f1e33 100%);
  box-shadow: 0 30px 60px -30px rgba(14, 24, 34, 0.4);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 24, 34, 0.6) 100%);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.hero-badge .b-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;

  font-size: 20px;
}

.hero-badge b {
  font-weight: 600;
}

.hero-badge small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;

}

.hero-marquee {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  gap: 60px;

  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-marquee .track {
  display: flex;
  gap: 60px;
  animation: scroll 38s linear infinite;
}

.hero-marquee .track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.hero-marquee .track span::after {
  content: "◆";
  color: var(--copper);
  font-size: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Section base ---------- */
section {
  padding: clamp(80px, 10vw, 80px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

.section-head h2 {
  /* max-width: 18ch; */
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-img {
  position: relative;
  aspect-ratio: 4/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 24, 34, 0.35);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 0 20px 40px -20px rgba(14, 24, 34, 0.3);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about p {
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  /* max-width: 54ch; */
}

.about-bullets {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about-bullets li {
  list-style: none;
  padding-left: 30px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-2);
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.about-bullets li strong {
  color: var(--ink);
  font-weight: 600;
}

.about-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Services ---------- */
.services {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.services h2 {
  color: var(--paper);
}

.services .eyebrow {
  color: rgba(245, 242, 236, 0.55);
}

.services .eyebrow::before {
  background: var(--paper);
  opacity: 0.4;
}

.services .lede {
  color: rgba(245, 242, 236, 0.75);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service {
  padding: 40px 32px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.3s ease;
}

.service:hover {
  background: rgba(255, 255, 255, 0.04);
}

.service:hover .s-arr {
  transform: translate(4px, -4px);
  color: var(--copper);
}

.service .s-num {

  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245, 242, 236, 0.4);
  text-transform: uppercase;
}

.service h3 {
  color: var(--paper);
  font-size: 30px;
  margin-top: 14px;
  line-height: 1.1;
}

.service p {
  color: rgba(245, 242, 236, 0.7);
  font-size: 14.5px;
  margin-top: 16px;
  line-height: 1.6;
  /* max-width: 38ch; */
}

.service .s-arr {
  position: absolute;
  top: 36px;
  right: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--paper);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.service .tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service .tags span {

  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.services-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.services-foot p {
  color: rgba(245, 242, 236, 0.7);
  /* max-width: 48ch; */
}

/* ---------- Why Choose ---------- */
.why {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card .w-num {

  font-style: italic;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  padding: 10px 0px;
}

.why-card h3 {
  font-size: 22px;
  margin-top: auto;
  line-height: 1.2;
}

.why-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.why-card.feature {
  background: var(--accent);
  color: var(--paper);
}

.why-card.feature .w-num {
  color: rgba(245, 242, 236, 0.7);
}

.why-card.feature h3 {
  color: var(--paper);
}

.why-card.feature p {
  color: rgba(245, 242, 236, 0.82);
}

/* ---------- Stats ---------- */
.stats {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats-grid .stats-intro {
    grid-column: 1/-1;
  }
}

.stats-intro h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  width: 500px;
}

.stats-intro p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.stat .num {

  font-size: clamp(48px, 5.5vw, 56px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.stat .num .plus {
  color: var(--accent);
}

.stat .lbl {

  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ---------- Innovative Solutions ---------- */
.innovate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .innovate-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.innovate-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
}

.innovate-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innovate-floating {
  position: absolute;
  left: 24px;
  top: 24px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(14, 24, 34, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
}

.innovate-floating .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--copper-soft);
  color: var(--copper);
  display: grid;
  place-items: center;

  font-size: 22px;
}

.innovate-floating b {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.innovate-floating small {

  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.innovate-feat {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.innovate-feat li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-2);
}

.innovate-feat li .tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.innovate-feat li b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Partners ---------- */
.partners {
  background: var(--paper-2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner {
  background: #fff;
  aspect-ratio: 5/3;
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.25s ease;
}

.partner>div {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  display: block;
  width: 80%;
  height: 40px;
  object-fit: contain;
}

/* ---------- Clients ---------- */
.clients {
  background: var(--paper);
}

.clients-marquee {
  display: flex;
  gap: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 24px;
  animation: scroll 45s linear infinite;
  flex-shrink: 0;
}

.client {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.client img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.client .label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(14, 24, 34, 0.85));
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 106, 61, 0.25), transparent 60%);
  pointer-events: none;
}

.testimonials h2 {
  color: var(--paper);
}

.testimonials .eyebrow {
  color: rgba(245, 242, 236, 0.55);
}

.testimonials .eyebrow::before {
  background: var(--paper);
  opacity: 0.4;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.testi:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.testi .mark {

  font-size: 64px;
  line-height: 0.4;
  color: var(--copper);
  height: 30px;
}

.testi blockquote {

  font-size: 22px;
  line-height: 1.35;
  color: var(--paper);
  font-style: italic;
}

.testi .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testi .av {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--accent));
  color: var(--paper);
  display: grid;
  place-items: center;

  font-size: 20px;
}

.testi .who b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);

  font-style: normal;
}

.testi .who small {
  display: block;

  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
}

/* ---------- CTA / Contact ---------- */
/* .cta {
  background: var(--paper);
} */
.cta-card {
  /* background: var(--surface); */
  /* border: 1px solid var(--line);
  border-radius: var(--r-lg); */
  padding: 0;
  /* overflow: hidden; */
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  /* box-shadow: 0 40px 80px -40px rgba(14, 24, 34, 0.25); */
}

@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
  }
}

.cta-left {
  /* background: var(--ink); */
  color: var(--paper);
  padding: 30px 48px;
  position: relative;
  overflow: hidden;
}

/* .cta-left::before {
  content: "";
  position: absolute;
  inset: auto -100px -100px auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 75, 140, 0.5), transparent 60%);
} */
.cta-left h2 {
  color: #000000;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  position: relative;
}

.cta-left p {
  color: rgba(31, 31, 31, 0.75);
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.6;
  position: relative;
  /* max-width: 38ch; */
}

.cta-info {
  margin-top: 36px;
  display: grid;
  gap: 18px;
  position: relative;
}

.cta-info .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cta-info .ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--copper);

  font-size: 18px;
}

.cta-info .row small {
  display: block;

  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
}

.cta-info .row b {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--paper);
  margin-top: 2px;

}

.cta-right {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 30px;
  box-shadow: 0 40px 80px -40px rgba(14, 24, 34, 0.25);
}

.cta-right h3 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cta-right .sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {

  font-size: 14px;
  color: var(--muted);
}

.field label .req {
  color: var(--copper);
}

.field input,
.field textarea,
.field select {

  font-size: 15px;
  color: #6d7073;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.field textarea {
  min-height: 110px;
}

.form-bot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 16px;
  flex-wrap: wrap;
}

.form-bot small {
  color: var(--muted);
  font-size: 12.5px;
  /* max-width: 34ch; */
}

.form-bot button {
  font-size: 14px;
  padding: 14px 28px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(245, 242, 236, 0.75);
  padding: 80px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-brand .logo-mark {
  background: var(--paper);
  color: var(--ink);
}

.foot-brand .logo-text strong {
  color: var(--paper);
}

.foot-brand .logo-text small {
  color: rgba(245, 242, 236, 0.5);
}

.foot-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  /* max-width: 34ch; */
}

.foot-col h4 {

  font-size: 18px;
  letter-spacing: normal;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 18px;
  font-style: normal;
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.foot-col a {
  color: rgba(245, 242, 236, 0.75);
  font-size: 14px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--paper);
}

.foot-col .addr {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.7);
}

.foot-col .addr b {
  color: var(--paper);
  font-weight: 500;
  display: block;

  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 242, 236, 0.55);
}

.foot-bot .social {
  display: flex;
  gap: 10px;
}

.foot-bot .social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;

  font-size: 11px;
  color: rgba(245, 242, 236, 0.75);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.foot-bot .social a:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ---------- Image placeholders (CSS-painted, premium) ---------- */
.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(26, 75, 140, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(184, 106, 61, 0.12), transparent 50%),
    linear-gradient(135deg, #1a2a44 0%, #0f1e33 100%);
  color: rgba(245, 242, 236, 0.6);

  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.ph span {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 1px solid rgba(245, 242, 236, 0.25);
  border-radius: 999px;
}

.ph.light {
  background:
    radial-gradient(circle at 30% 20%, rgba(26, 75, 140, 0.08), transparent 40%), radial-gradient(circle at 80% 70%, rgba(184, 106, 61, 0.06), transparent 50%),
    linear-gradient(135deg, #eeeae0 0%, #e5dfd2 100%);
  color: var(--muted);
}

.ph.light span {
  border-color: rgba(14, 24, 34, 0.15);
}


/* Animation on scroll (very subtle CSS-only) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 1s ease forwards;
  }

  .reveal[data-d="1"] {
    animation-delay: 0.1s;
  }

  .reveal[data-d="2"] {
    animation-delay: 0.2s;
  }

  .reveal[data-d="3"] {
    animation-delay: 0.3s;
  }

  .reveal[data-d="4"] {
    animation-delay: 0.4s;
  }

  @keyframes reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* main service page */

.service-hero {
  position: relative;
  padding: 64px 0 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 24, 34, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 24, 34, .025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.service-hero .container {
  position: relative;
  z-index: 1
}


.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.crumbs a {
  color: var(--muted);
  transition: color .2s
}

.crumbs a:hover {
  color: var(--ink)
}

.crumbs span.sep {
  opacity: .4
}

.crumbs strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--mono)
}


.ph-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 0px;
  /* align-items: center */
}

@media (max-width:900px) {
  .ph-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.ph-head h1 {
  font-size: 46px;
  letter-spacing: -.025em;
  line-height: 1.1;
  /* margin-top: 18px; */
}

.ph-head h1 .ital {
  font-style: italic;
  color: var(--accent)
}

.ph-head h1 .mark {
  /* background-image: linear-gradient(transparent 78%, var(--copper) 78%, var(--copper) 92%, transparent 92%); */
  padding: 0 .05em;
}

.ph-side {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ph-side p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  /* max-width: 42ch */
}

.ph-side .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* QUICK NAV / category chips */
.cat-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 40px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.cat-strip .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
  margin-right: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s ease;
}

.chip:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink)
}

.chip .ic {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent)
}

.chip:hover .ic {
  background: var(--copper)
}


/* SERVICES SHOWCASE - Alternating premium cards */
.svc-list {
  display: grid;
  gap: 70px
}

.svc-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: stretch;
  /* padding:70px 0; */
  /* border-bottom:1px solid var(--line); */
}

.svc-row:last-child {
  border-bottom: none
}

.svc-row.flip {
  grid-template-columns: .9fr 1.1fr
}

.svc-row.flip .svc-visual {
  order: -1
}

@media (max-width:900px) {

  .svc-row,
  .svc-row.flip {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0
  }

  .svc-row.flip .svc-visual {
    order: 0
  }
}

.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.svc-num span {
  color: var(--accent);
  font-weight: 500
}

.svc-title {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  margin: 14px 0 22px;
  letter-spacing: -.015em;
}

.svc-title em {
  font-style: italic;
  color: var(--accent)
}

.svc-desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  /* max-width: 54ch; */
}

.svc-feat {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

@media (max-width:560px) {
  .svc-feat {
    grid-template-columns: 1fr
  }
}

.svc-feat li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

.svc-feat li .tk {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.svc-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.svc-tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
}

.svc-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.svc-visual {
  position: relative;
  /* aspect-ratio:4/4; */
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 24, 34, .35);
  background: var(--paper-2);
}

.svc-content {
  align-content: center;
}

.svc-visual .ph {
  height: 100%
}

.svc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 24, 34, .45) 100%);
  pointer-events: none;
}

.svc-stat-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(245, 242, 236, .94);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 36px);
}

.svc-stat-badge .b-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  flex-shrink: 0;
}

.svc-stat-badge b {
  font-weight: 600;
  font-size: 14px;
  display: block;
  color: var(--ink)
}

.svc-stat-badge small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px
}

.svc-quote-tag {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  background: var(--copper);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}


/* alternate-bg rows */
.svc-row.alt {
  background: var(--paper-2);
  margin: 0 calc(-1 * var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
  border-bottom: 1px solid var(--line)
}

.svc-row.alt+.svc-row {
  border-top: none
}

/* PROCESS */
.process {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.process h2 {
  color: var(--paper)
}

.process .eyebrow {
  color: rgba(245, 242, 236, .55)
}

.process .eyebrow::before {
  background: var(--paper);
  opacity: .4
}

.process .lede {
  color: rgba(245, 242, 236, .75)
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}

@media (max-width:900px) {
  .proc-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .proc-grid {
    grid-template-columns: 1fr
  }
}

.proc {
  padding: 40px 28px 44px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  transition: background .3s ease;
}

.proc:last-child {
  border-right: none
}

@media (max-width:900px) {
  .proc:nth-child(2) {
    border-right: none
  }

  .proc:nth-child(1),
  .proc:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }
}

.proc:hover {
  background: rgba(255, 255, 255, .04)
}

.proc .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--copper);
  line-height: 1;
}

.proc h3 {
  color: var(--paper);
  font-size: 22px;
  margin-top: 20px;
  line-height: 1.2
}

.proc p {
  color: rgba(245, 242, 236, .7);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6
}

.proc .meta {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .5);
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, .15);
}


.why-grid .meta {
  padding: 16px 0px 0px;
  border-top: 1px solid #dddddd;
  margin: 27px 0px 0px;
  color: #717171;
  font-size: 16px;
  font-weight: 400;
}

.why-card.feature .meta {
  border-top: 1px solid #dddddd;
  color: #ffffff;
}

section.why-cardess {
  background: var(--paper-2);
}

/* INDUSTRIES */
/* .industries {
      background: var(--paper-2)
    } */

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

@media (max-width:900px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .ind-grid {
    grid-template-columns: 1fr
  }
}

.ind {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: background .25s ease;
  position: relative;
}

.ind:hover {
  background: var(--paper)
}

.ind:hover .ind-arr {
  transform: translate(4px, -4px);
  color: var(--accent)
}

.ind .ind-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 24px;
}

.ind h3 {
  font-size: 22px;
  line-height: 1.2
}

.ind p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.ind-arr {
  position: absolute;
  top: 32px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: transform .3s ease, color .3s ease;
}

/* COMPARISON / FEATURES TABLE */
.compare {
  background: var(--paper)
}

.cmp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.cmp-row:last-child {
  border-bottom: none
}

.cmp-row>div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-size: 14.5px
}

.cmp-row>div:last-child {
  border-right: none
}

.cmp-row.head>div {
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cmp-row.head>div:first-child {
  color: var(--ink)
}

.cmp-row.head>div.feat {
  background: var(--ink);
  color: var(--paper)
}

.cmp-row>.feat {
  background: rgba(26, 75, 140, .04)
}

.cmp-row>div b {
  color: var(--ink);
  font-weight: 600;
  display: block
}

.cmp-row>div small {
  color: var(--muted);
  font-size: 13px;
  display: block;
  margin-top: 4px
}

.cmp-row .yes {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px
}

.cmp-row .no {
  color: var(--line-strong);
  font-size: 16px
}

.cmp-row .star {
  color: var(--copper);
  font-weight: 700;
  font-size: 16px
}

@media (max-width:780px) {
  .cmp-card {
    overflow-x: auto
  }

  .cmp-row {
    min-width: 680px
  }
}

/* FAQ */
/* .faq {
      background: var(--paper)
    } */

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start
}

@media (max-width:900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.faq-item:last-child {
  border-bottom: none
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.25;
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary .plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink);
  transition: all .3s ease;
}

.faq-item[open] summary .plus {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(45deg)
}

.faq-item .ans {
  padding: 16px 56px 8px 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  /* max-width: 62ch */
}


.cta-left .images {
  margin: 50px 0px;
  border-radius: 10px;
  height: 265px;
}

.cta-left .images img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

section#overview {
  background: #f5f2ec;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: center
}

/* HERO */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: white;
  color: #000000;
  padding: 0px;
}

.svc-hero .container {
  position: relative;
  z-index: 1
}

.sh-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}

.sh-cont {
  width: 70%;
}

@media (max-width:960px) {
  .sh-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgb(0 0 0 / 70%);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  margin-bottom: 24px;
}

.sh-tag .ic {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper)
}

.svc-hero h1 {
  color: #000000;
  letter-spacing: -.025em;
  line-height: .98;
  font-family: "Inter", sans-serif;
  font-size: 46px;
}

.svc-hero h1 em {
  font-style: italic;
  color: var(--copper)
}

.sh-sub {
  color: rgb(31 31 31 / 78%);
  font-size: 18px;
  line-height: 1.6;
  /* max-width: 48ch; */
  margin-top: 26px;
}

.sh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px
}

.sh-cta .btn-ghost {
  background: transparent;
  color: #3f51b5;
  border: 1px solid #3f51b5;
}

.sh-cta .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper)
}

.sh-visual {
  position: relative;
  height: 450px;
  margin-bottom: 60px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
}

.sh-visual .ph {
  height: 100%
}

.sh-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 24, 34, .55) 100%)
}

.sh-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(245, 242, 236, .94);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px
}

.sh-badge .b-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  flex-shrink: 0
}

.sh-badge b {
  font-weight: 600;
  font-size: 14px;
  display: block;
  color: var(--ink)
}

.sh-badge small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px
}

/* OVERVIEW + sticky aside */
.ov-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 72px;
  align-items: center;
}

@media (max-width:960px) {
  .ov-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

.ov-body .eyebrow {
  margin-bottom: 18px
}

.ov-body h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  margin-bottom: 24px;
  /* max-width: 30ch */
}

.ov-body p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
  /* max-width: 88ch */
}

.ov-body p strong {
  color: var(--ink);
  font-weight: 600
}

.ov-pull {
  border-left: 2px solid var(--copper);
  padding: 6px 0 6px 24px;
  margin: 36px 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  /* width: 60ch; */
}

.ov-pull em {
  color: var(--accent)
}

.ov-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px
}

.aside-card.dark {
  background: var(--ink);
  color: var(--paper)
}

.aside-card h3 {
  font-size: 22px;
  margin-bottom: 6px
}

.aside-card.dark h3 {
  color: var(--paper)
}

.aside-card .sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px
}

.aside-card.dark .sub {
  color: rgba(245, 242, 236, .7)
}

.aside-list {
  list-style: none;
  display: grid;
  gap: 2px
}

.aside-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.aside-list li:last-child {
  border-bottom: none
}

.aside-list li span {
  color: var(--muted)
}

.aside-list li b {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-align: right
}

.aside-card.dark .aside-list li {
  border-color: rgba(255, 255, 255, .12)
}

.aside-card.dark .aside-list li span {
  color: rgba(245, 242, 236, .65)
}

.aside-card.dark .aside-list li b {
  color: var(--paper)
}

.aside-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 22px
}

.aside-contact {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .6);
  margin-top: 18px;
  text-align: center
}

.aside-contact a {
  color: var(--copper)
}




/* BENEFITS split */
.ben-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center
}

@media (max-width:900px) {
  .ben-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

.ben-visual {
  position: relative;
  height: 66%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2)
}

.ben-visual .ph {
  height: 100%
}

.ben-float {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(14, 24, 34, .3);
  display: flex;
  align-items: center;
  gap: 14px
}

.ben-float .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--copper-soft);
  color: var(--copper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px
}

.ben-float b {
  font-size: 14px;
  font-weight: 600;
  display: block
}

.ben-float small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.ben-list {
  margin-top: 30px;
  display: grid;
  gap: 18px
}

.ben-list li {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.ben-list li .tk {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px
}

.ben-list li b {
  display: block;
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px
}

.ben-list li p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  /* max-width: 46ch */
}

/* TECH / TOOLS strip */
.tech {
  background: var(--paper-2)
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden
}

@media (max-width:900px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:520px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.tech-item {
  background: var(--surface);
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  transition: background .25s ease
}

.tech-item:hover {
  background: var(--paper)
}

/* RELATED services */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

@media (max-width:900px) {
  .rel-grid {
    grid-template-columns: 1fr
  }
}

.rel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative
}

.rel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(14, 24, 34, .3)
}

.rel:hover .rel-arr {
  transform: translate(4px, -4px);
  color: var(--accent)
}

.rel .rel-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted)
}

.rel h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-top: 4px
}

.rel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.rel-arr {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: transform .3s ease, color .3s ease
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center
}

@media (max-width:900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

.story-visual {
  position: relative;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 24, 34, .35)
}

.story-visual .ph {
  height: 100%
}

.story-visual-2 {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 54%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 0 20px 40px -20px rgba(14, 24, 34, .3)
}

.story-visual-2 .ph {
  height: 100%
}

.story-body p {
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
}

.story-body p strong {
  color: var(--ink);
  font-weight: 600
}

.story-pull {
  border-left: 2px solid var(--copper);
  padding: 6px 0 6px 24px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic
}

.story-pull em {
  color: var(--accent)
}

/* MISSION / VISION split cards */
.mv {
  background: var(--paper-2)
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

@media (max-width:780px) {
  .mv-grid {
    grid-template-columns: 1fr
  }
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden
}

.mv-card.dark {
  background: var(--ink);
  color: var(--paper)
}

.mv-card .mv-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 28px
}

.mv-card.dark .mv-ic {
  background: rgba(255, 255, 255, .08);
  color: var(--copper)
}

.mv-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px
}

.mv-card.dark h3 {
  color: var(--paper)
}

.mv-card p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.mv-card.dark p {
  color: rgba(245, 242, 236, .78)
}

.mv-card .qmark {
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  color: var(--line);
  pointer-events: none
}

.mv-card.dark .qmark {
  color: rgba(255, 255, 255, .06)
}


.ch-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  padding-bottom: 64px
}

@media (max-width:900px) {
  .ch-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.c-hero h1 {
  color: var(--paper);
  font-size: clamp(50px, 7vw, 104px);
  letter-spacing: -.025em;
  line-height: .96
}

.c-hero h1 em {
  font-style: italic;
  color: var(--copper)
}

.ch-sub {
  color: #000000;
  font-size: 18px;
  line-height: 1.6;
  /* max-width: 46ch */
}

.ch-quick {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ch-quick a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgb(109 109 109 / 31%);
  border-radius: 14px;
  transition: background .25s ease, border-color .25s ease
}

.ch-quick a:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .3)
}

.ch-quick .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: var(--copper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  flex-shrink: 0
}

.ch-quick small {
  display: block;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: #000000
}

.ch-quick b {
  display: block;
  font-size: 16px;
  color: #000000;
  ;
  margin-top: 3px;
  font-family: var(--sans);
  font-weight: 500;
}

/* CONTACT METHODS + FORM */
/* .contact-main {
      background: var(--paper)
    } */

.cm-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start
}

@media (max-width:960px) {
  .cm-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

/* left info column */
.cm-info .eyebrow {
  margin-bottom: 20px
}

.info-block {
  display: grid;
  gap: 25px;
  margin-top: 36px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.info-row .ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px
}

.info-row small {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

.info-row b {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-top: 3px;
  font-family: var(--sans)
}

.info-row b a {
  transition: color .2s
}

.info-row b a:hover {
  color: var(--accent)
}

.info-row p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin-top: 3px
}

.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  margin-top: 25px;
}

.hours-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.hours-card h3 .pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #3FA45C
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.hours-row:last-child {
  border-bottom: none
}

.hours-row span {
  color: var(--muted)
}

.hours-row b {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px
}

.hours-row b.closed {
  color: var(--copper)
}

/* right form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  box-shadow: 0 40px 80px -50px rgba(14, 24, 34, .3)
}

@media (max-width:520px) {
  .form-card {
    padding: 36px 26px
  }
}

.form-card .eyebrow {
  margin-bottom: 14px
}

.form-card h3 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px
}

.form-card .sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 32px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

/* OFFICES + MAP */
.offices,
.map {
  background: var(--paper-2)
}

.off-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px
}

@media (max-width:780px) {
  .off-grid {
    grid-template-columns: 1fr
  }
}

.off-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  position: relative;
  overflow: hidden
}

.off-card.feature {
  background: var(--ink);
  color: var(--paper)
}

.off-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px
}

.off-card.feature .off-flag {
  color: var(--copper)
}

.off-flag .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor
}

.off-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px
}

.off-card.feature h3 {
  color: var(--paper)
}

.off-detail {
  display: grid;
  gap: 14px
}

.off-detail .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5
}

.off-card.feature .off-detail .row {
  color: rgba(245, 242, 236, .8)
}

.off-detail .row .ic {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 16px
}

.off-card.feature .off-detail .row .ic {
  background: rgba(255, 255, 255, .08);
  color: var(--copper)
}

.off-detail .row a {
  transition: color .2s
}

.off-detail .row a:hover {
  color: var(--accent)
}

.off-card.feature .off-detail .row a:hover {
  color: var(--copper)
}

/* MAP */
.map {
  padding: 0px;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  max-height: 280px;
  border-radius: 20px;
  margin-top: 30px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
  justify-content: center;
}

@media (max-width:600px) {
  .map-wrap iframe {
    height: 360px
  }
}

.map-pin {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  background: rgba(245, 242, 236, .95);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px -20px rgba(14, 24, 34, .35);
  max-width: calc(100% - 48px)
}

.map-pin .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  flex-shrink: 0
}

.map-pin b {
  font-weight: 600;
  font-size: 15px;
  display: block;
  color: var(--ink)
}

.map-pin small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px
}

.testimonials h2 {
  color: var(--paper);
  width: 69%;
}

.benifits {
  padding: 0px;
}

@media (max-width:764px) {
  a.btn.btn-primary.top-btn {
    display: none;
  }

  .cta-left {
    padding: 0px;
  }

  section {
    padding: clamp(40px, 10vw, 40px) 0;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;

  }

  .stats-intro h2 {
    max-width: 100%;
  }

  .story-visual-2,
  .about-img-2 {
    display: none;
  }

  .ph-side p {
    font-size: 14px;
  }

  .ph-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat .num {
    font-size: 26px;
  }

  .cta-left h2,
  .cta-right h3,
  .h-section {
    font-size: 30px;
  }

  .ph-head h1 {
    font-size: 34px;
  }

  .cta-right {
    margin-top: 30px;
  }

  .foot-brand p {
    max-width: 100%;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials h2 {
    width: 100%;
  }

  .svc-list {
    display: grid;
    gap: 0px;
  }

  .svc-row,
  .svc-row.flip {
    padding: 15px 0px;
  }

  .sh-cont {
    width: 100%;
  }
}

@media (max-width:520px) {
  .ph-head h1 {
    font-size: 26px;
  }

  .ph-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat .num {
    font-size: 20px;
  }

  .cta-left h2,
  .cta-right h3,
  .h-section,
  .off-card h3 {
    font-size: 24px;
    line-height: 30px;
    padding: 10px 0px 0p
  }

  .svc-num {
    padding-top: 20px;
  }

  .svc-row.flip .svc-visual {
    margin-top: 20px;
  }

  .ov-body p,
  .ov-body h2 {
    max-width: 100%;
  }

}

/* Extracted Inline Styles */
.st-b0043e {
  margin-top: 16px !important;
}

.st-af2951 {
  color: #6b6358 !important;
}

.st-b5e118 {
  background-color: #ffffff;
  !important;
}

.st-0dc91c {
  margin-top: 14px !important;
}

.st-64925b {
  color: var(--accent);
  text-decoration: underline !important;
}










/* CTA RIBBON */
.cta-ribbon {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-ribbon::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 106, 61, .35), transparent 60%);
}

.ribbon-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}

@media (max-width:780px) {
  .ribbon-inner {
    grid-template-columns: 1fr;
    text-align: left
  }
}

.ribbon-inner h2 {
  color: var(--paper);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05
}

.ribbon-inner h2 em {
  color: var(--copper)
}

.ribbon-inner p {
  color: rgba(245, 242, 236, .75);
  margin-top: 14px;
  font-size: 16px;
  max-width: 50ch
}

.ribbon-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* anchor offset for sticky nav when jumping to a service */
.svc-anchor {
  position: relative;
  top: -90px;
  visibility: hidden
}

.st-062d4a {
  margin-top: 24px !important;
}

.st-f3ec2e {
  color: rgba(245, 242, 236, .6) !important;
}

.st-65c722 {
  color: var(--copper) !important;
}

.st-98741b {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, .25) !important;
}

.st-7cf316 {
  display: inline;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  margin-left: 8px !important;
}

.st-137d26 {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  !important;
}

.st-553a64 {
  margin-top: 14px !important;
}

.st-3ae1f6 {
  margin-top: 20px !important;
}

.st-b748b7 {
  padding: 10px 0px;
  !important;
}

.st-17b3da {
  color: var(--accent);
  text-decoration: underline !important;
}

.st-5e029f {
  margin-top: 24px !important;
}

.st-16e6aa {
  color: rgba(245, 242, 236, 0.75) !important;
}

.st-c6fd5e {
  color: var(--ink) !important;
}

.st-fb95f6 {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap !important;
}


section#contact {
  padding: 0px 0px 80px !important;
}

.crumbs {
  padding: 12px 0px 0px;
}

.st-ee0c30 {
  margin: 16px 0 8px !important;
}

/* Extracted Inline Styles from Partials */
.st-be2540 {
  margin-bottom: 18px !important;
}

.st-cef178 {
  color: rgba(245, 242, 236, .55) !important;
}

.st-2954ce {
  display: flex;
  gap: 20px;
  flex-wrap: wrap !important;
}