* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--c360-bg);
  font-family: var(--c360-font-body);
  color: var(--c360-fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }

/* ── Top bar (detached glass pill) ────────────────────────── */
.topbar {
  position: fixed;
  top: 48px; left: 16px; right: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  transition: top 220ms ease;
}
.topbar__inner {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1240px;
  padding: 12px 14px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.74);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--c360-radius-pill);
  backdrop-filter: saturate(170%) blur(36px);
  -webkit-backdrop-filter: saturate(170%) blur(36px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 14px 36px -14px rgba(14, 23, 126, 0.18);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.topbar__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12)),
    radial-gradient(circle at top right, rgba(67, 181, 242, 0.06), transparent 45%);
  pointer-events: none;
}
.topbar__inner > * {
  position: relative;
  z-index: 1;
}
.topbar.is-scrolled {
  top: 16px;
}
.topbar.is-scrolled .topbar__inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.86) inset, 0 16px 38px -14px rgba(14, 23, 126, 0.2);
}
.topbar.is-scrolled .topbar__inner::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
    radial-gradient(circle at top right, rgba(67, 181, 242, 0.04), transparent 45%);
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
}
.topbar__brand img {
  height: 36px;
  width: auto;
  display: block;
}
.topbar__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topbar__nav a {
  font-family: var(--c360-font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c360-ink);
  opacity: 0.65;
  transition: opacity 160ms ease;
}
.topbar__nav a:hover { opacity: 1; }
.topbar__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--c360-gradient-diag);
  color: var(--c360-on-ink);
  border-radius: var(--c360-radius-pill);
  padding: 10px 20px;
  font-family: var(--c360-font-body);
  font-weight: 500;
  font-size: 14px;
  transition: opacity 160ms ease, transform 120ms ease;
}
.topbar__cta::before {
  content: '';
  position: absolute;
  inset: -40% -18%;
  z-index: -1;
  background: linear-gradient(110deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0.18) 55%, rgba(255,255,255,0) 70%);
  transform: translate3d(-220%, 0, 0) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  animation: topbar-cta-shine 20s ease-in-out infinite;
}
.topbar__cta:hover { opacity: 0.88; }
.topbar__cta:active { transform: translateY(1px); }
@keyframes topbar-cta-shine {
  0%,
  84% {
    transform: translate3d(-220%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  87% {
    opacity: 0.12;
  }
  96% {
    transform: translate3d(220%, 0, 0) skewX(-18deg);
    opacity: 0.48;
  }
  100% {
    transform: translate3d(220%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .topbar { top: 16px; left: 12px; right: 12px; }
  .topbar__nav { display: none; }
  .topbar__inner { padding: 10px 12px 10px 18px; gap: 12px; }
}

/* ── Section frame ────────────────────────────────────────── */
.page {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 112px 0; }
@media (max-width: 720px) { section { padding: 52px 0; } .page { padding: 0 20px; } }

.eyebrow {
  font-family: var(--c360-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--c360-ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--c360-ink);
  display: inline-block;
  opacity: 0.5;
}
.section-title {
  font-family: var(--c360-font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  color: var(--c360-ink);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  font-weight: 400;
  max-width: 18ch;
}
.section-title--wide { max-width: 22ch; }
.section-intro {
  font-family: var(--c360-font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--c360-fg-2);
  max-width: 640px;
  text-wrap: pretty;
  margin: 0;
}

.parallax-layer {
  transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-wrap {
  padding: 0;
}
.hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: var(--c360-radius-lg);
  background-color: var(--c360-bg-tint);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 220px 32px 220px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8%;
  background-image: url('assets/background-watermark.png');
  background-size: 108% 108%;
  background-position: 50% 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__logo,
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 56px;
}
.hero__inner {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.hero__copy h1 {
  font-family: var(--c360-font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--c360-ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.word-reveal__word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}
.word-reveal.is-visible .word-reveal__word {
  animation: heading-word-fade var(--reveal-duration, 980ms) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--reveal-start-delay, 120ms) + var(--word-delay, 0ms));
}
.word-reveal--hero {
  --reveal-duration: 980ms;
  --reveal-start-delay: 120ms;
}
.word-reveal--section {
  --reveal-duration: 240ms;
  --reveal-start-delay: 12ms;
}
@keyframes heading-word-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hero__copy p {
  font-family: var(--c360-font-body);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--c360-fg-2);
  margin: 0;
  max-width: 600px;
  text-wrap: pretty;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin-top: 4px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 12px;
  border: 1px solid rgba(14, 23, 126, 0.14);
  border-radius: var(--c360-radius-pill);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c360-ink);
  font-family: var(--c360-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.pill:hover {
  background: var(--c360-ink);
  color: var(--c360-on-ink);
  border-color: var(--c360-ink);
}
.pill:hover .pill__icon { color: var(--c360-on-ink); filter: invert(1) brightness(2); }
.pill:active { transform: translateY(1px); }
.pill__icon {
  width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c360-ink);
  flex-shrink: 0;
  transition: filter 160ms ease;
}
.pill__icon img { width: 100%; height: 100%; display: block; }

@media (max-width: 900px) {
  .hero-wrap { padding: 8px 16px 0; }
  .hero { padding: 140px 24px 120px; }
  .hero__logo { height: 52px; margin-bottom: 40px; }
  .hero__inner { gap: 28px; }
}
@media (max-width: 560px) {
  .hero-wrap { padding: 8px 8px 0; }
  .hero { padding: 120px 20px 100px; border-radius: var(--c360-radius-md); }
  .hero__logo { height: 44px; margin-bottom: 32px; }
  .hero__inner { gap: 24px; }
  .pill { font-size: 13px; padding: 8px 14px 8px 10px; }
  .pill__icon { width: 14px; height: 14px; }
}

/* ── What We Do ───────────────────────────────────────────── */
.what {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.what__copy p {
  font-family: var(--c360-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c360-fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.what__copy p:last-of-type { margin-bottom: 32px; }
.what__media {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  border-radius: var(--c360-radius-md);
  overflow: hidden;
  background: var(--c360-bg-tint);
  border: 1px solid var(--c360-line);
}
.what__media img,
.what__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.what__media img {
  object-position: 53% top;
}
.what__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--c360-radius-md);
  box-shadow: 0 12px 28px -16px rgba(14, 23, 126, 0.28);
}
.what__badge-num {
  font-family: var(--c360-font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--c360-ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.what__badge-text {
  font-family: var(--c360-font-body);
  font-size: 12px;
  line-height: 1.25;
  color: var(--c360-fg-2);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .what { grid-template-columns: 1fr; gap: 40px; }
  .what__media { position: relative; top: auto; aspect-ratio: 5/4; max-width: 480px; margin: 0; }
}

/* ── CTA arrow link ───────────────────────────────────────── */
.arrow-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--c360-font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--c360-ink);
  transition: gap 180ms ease, color 180ms ease;
}
.arrow-cta::after {
  content: '→';
  font-family: var(--c360-font-display);
  transition: transform 180ms ease;
}
.arrow-cta:hover { gap: 12px; }
.arrow-cta:hover::after { transform: translateX(2px); }

/* ── Services ─────────────────────────────────────────────── */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.services-head .section-title { margin-bottom: 0; }
@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

.service {
  border-top: 1px solid var(--c360-line-strong);
}
.service:last-child { border-bottom: 1px solid var(--c360-line-strong); }
.service__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  text-align: left;
  padding: 34px 0;
  cursor: pointer;
}
.service__num {
  font-family: var(--c360-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c360-ink);
  opacity: 0.45;
  letter-spacing: 0.12em;
  margin: 0;
  align-self: start;
  padding-top: 18px;
}
.service__intro {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.service__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(14,23,126,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c360-ink);
  flex-shrink: 0;
}
.service__icon img { width: 24px; height: 24px; display: block; }
.service__title {
  font-family: var(--c360-font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  color: var(--c360-ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.service__chevron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c360-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c360-ink);
  background: rgba(255,255,255,0.68);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.service__chevron::before {
  content: '+';
  font-family: var(--c360-font-display);
  font-size: 24px;
  line-height: 1;
}
.service__toggle:hover .service__chevron,
.service.is-open .service__chevron {
  background: rgba(14,23,126,0.06);
  border-color: rgba(14,23,126,0.22);
}
.service.is-open .service__chevron::before {
  content: '−';
}
.service__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0 0 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    padding-bottom 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service.is-open .service__panel {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 34px;
}
.service__panel-inner {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  min-height: 0;
  overflow: hidden;
}
.service__panel-spacer {
  min-height: 1px;
}
.service__body p {
  font-family: var(--c360-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c360-fg-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.service__body > p:last-of-type { margin-bottom: 24px; }
.accreditation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--c360-font-body);
  font-size: 13px;
  color: var(--c360-ink);
  background: rgba(14,23,126,0.04);
  border-radius: var(--c360-radius-pill);
  padding: 7px 14px;
  font-weight: 500;
  margin: 0 0 24px;
}
.accreditation::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c360-gradient);
}
@media (max-width: 900px) {
  .service__toggle {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 28px 0;
  }
  .service__num {
    grid-column: 1 / -1;
    padding-top: 0;
  }
  .service__panel {
    padding: 0;
  }
  .service.is-open .service__panel {
    padding-bottom: 28px;
  }
  .service__panel-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service__panel-spacer {
    display: none;
  }
}

/* ── How We Work ──────────────────────────────────────────── */
.approach {
  background: var(--c360-bg-tint);
  border-top: 1px solid var(--c360-line);
  border-bottom: 1px solid var(--c360-line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.step {
  border: 1px solid var(--c360-line);
  border-radius: var(--c360-radius-md);
  padding: 28px 24px;
  background: var(--c360-bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.step:hover {
  border-color: rgba(14, 23, 126, 0.18);
  transform: translateY(-2px);
}
.step__num {
  font-family: var(--c360-font-display);
  font-size: 36px;
  line-height: 1;
  background: var(--c360-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.step__title {
  font-family: var(--c360-font-display);
  font-size: 20px;
  color: var(--c360-ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.step__body {
  font-family: var(--c360-font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c360-fg-2);
  margin: 0;
  text-wrap: pretty;
}
.pull-quote {
  margin: 64px auto 0;
  font-family: var(--c360-font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  color: var(--c360-ink);
  max-width: 760px;
  letter-spacing: -0.015em;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ── Achievements ─────────────────────────────────────────── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c360-line-strong);
  border: 1px solid var(--c360-line-strong);
  margin-top: 56px;
  border-radius: var(--c360-radius-md);
  overflow: hidden;
}
.ach {
  background: var(--c360-bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 200ms ease;
}
.ach:hover { background: var(--c360-bg-tint); }
.ach__toggle {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}
.ach__toggle-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.ach__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ach__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(14, 23, 126, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}
.ach__icon img {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.88;
}
.ach__label {
  font-family: var(--c360-font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c360-ink);
  opacity: 0.55;
}
.ach__title {
  display: block;
  font-family: var(--c360-font-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--c360-ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.ach__panel-inner {
  min-height: 0;
}
.ach__body {
  font-family: var(--c360-font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c360-fg-2);
  margin: 0;
  text-wrap: pretty;
}
.ach__chevron {
  display: none;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  border: 1px solid var(--c360-line-strong);
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.72);
  color: var(--c360-ink);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.ach__chevron::before {
  content: '+';
  font-family: var(--c360-font-display);
  font-size: 24px;
  line-height: 1;
}
.ach__toggle:focus-visible {
  outline: 2px solid rgba(14, 23, 126, 0.2);
  outline-offset: 6px;
  border-radius: 18px;
}
@media (max-width: 560px) {
  .ach {
    padding: 0;
    gap: 0;
  }
  .ach__toggle {
    cursor: pointer;
    gap: 14px;
    padding: 24px 20px;
  }
  .ach.is-open .ach__toggle {
    padding-bottom: 18px;
  }
  .ach__toggle-main {
    gap: 14px;
  }
  .ach__top { gap: 10px; }
  .ach__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 9px;
  }
  .ach__icon img {
    width: 16px;
    height: 16px;
  }
  .ach__title {
    font-size: 17px;
  }
  .ach__chevron {
    display: inline-flex;
    margin-top: 6px;
  }
  .ach__panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
      grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .ach__panel-inner {
    overflow: hidden;
    padding: 0 20px 0;
  }
  .ach.is-open .ach__panel {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 24px;
  }
  .ach.is-open .ach__chevron::before {
    content: '−';
  }
  .ach__toggle:hover .ach__chevron,
  .ach.is-open .ach__chevron {
    background: rgba(14,23,126,0.06);
    border-color: rgba(14,23,126,0.22);
  }
}
@media (max-width: 900px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .achievements-grid { grid-template-columns: 1fr; } }

/* Defend accordion triggers against host/CMS button skins on live embeds. */
#services button.service__toggle,
#achievements button.ach__toggle {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
  text-transform: none !important;
}

#services button.service__toggle {
  padding: 34px 0 !important;
}

#achievements button.ach__toggle {
  padding: 0 !important;
}

@media (max-width: 900px) {
  #services button.service__toggle {
    padding: 28px 0 !important;
  }
}

@media (max-width: 560px) {
  #achievements button.ach__toggle {
    padding: 24px 20px !important;
  }

  #achievements .ach.is-open button.ach__toggle {
    padding-bottom: 18px !important;
  }
}

/* ── About Mark ───────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.about__media {
  aspect-ratio: 4/5;
  border-radius: var(--c360-radius-md);
  overflow: hidden;
  background: #E7E8F2;
  position: sticky;
  top: 110px;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: 42% top; display: block; }
.about__copy p {
  font-family: var(--c360-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c360-fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.credentials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c360-line-strong);
}
.credentials h4 {
  font-family: var(--c360-font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c360-ink);
  opacity: 0.7;
  margin: 0 0 16px;
}
.credentials ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.credentials li {
  font-family: var(--c360-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--c360-fg-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--c360-line);
}
.credentials li:first-child { padding-top: 0; }
.credentials li:last-child { border-bottom: 0; padding-bottom: 16px; }
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__media { position: static; aspect-ratio: 5/4; max-width: 480px; margin: 0; }
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  background: var(--c360-bg-tint);
  overflow: hidden;
}
.quotes-head {
  margin-bottom: 40px;
}
.quotes-controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.qbtn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c360-line-strong);
  background: var(--c360-bg);
  color: var(--c360-ink);
  cursor: pointer;
  font-family: var(--c360-font-display);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
}
.qbtn:hover { background: var(--c360-ink); color: var(--c360-on-ink); border-color: var(--c360-ink); }
.qbtn:active { transform: translateY(1px); }
.qbtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: var(--c360-bg);
  color: var(--c360-ink);
  border-color: var(--c360-line-strong);
}
.quotes-rail {
  margin-top: 48px;
  overflow: hidden;
}
.quotes-rail .swiper-wrapper { align-items: stretch; }
.quotes-rail .swiper-slide { height: auto; }
.quotes-rail .swiper-button-prev,
.quotes-rail .swiper-button-next { display: none; }
.qbtn.swiper-button-disabled { opacity: 0.3; cursor: not-allowed; }
.quote {
  margin: 0;
  background: var(--c360-bg);
  border: 1px solid var(--c360-line);
  border-radius: var(--c360-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.quote__mark {
  width: 44px;
  height: 44px;
  color: var(--c360-ink);
  opacity: 0.22;
  flex-shrink: 0;
  padding-bottom: 12px;
}
.quote__body {
  font-family: var(--c360-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c360-fg-2);
  margin: 0;
  text-wrap: pretty;
  flex: 1 1 auto;
}
.quote__cite {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  margin-top: auto;
}
.quote__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 23, 126, 0.08);
  color: var(--c360-ink);
  font-family: var(--c360-font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quote__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.quote__name {
  font-family: var(--c360-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c360-ink);
  line-height: 1.3;
}
.quote__role {
  font-family: var(--c360-font-body);
  font-size: 12.5px;
  color: var(--c360-fg-3);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .quotes-rail .swiper-wrapper { align-items: start; }
  .quote { height: auto; }
  .quote { padding: 24px; }
}

/* ── Values ───────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--c360-ink);
}
.value__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(14,23,126,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c360-ink);
  margin-bottom: 4px;
}
.value__icon img { width: 20px; height: 20px; display: block; }
.value__title {
  font-family: var(--c360-font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--c360-ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.value__body {
  font-family: var(--c360-font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c360-fg-2);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Contact ──────────────────────────────────────────────── */
#contact .page { max-width: calc(1440px + 64px); }
.contact-panel {
  border-radius: var(--c360-radius-lg);
  position: relative;
  overflow: hidden;
  padding: 64px;
}
.contact-panel__bg {
  position: absolute;
  inset: -8%;
  background-image: url('assets/background-watermark.png');
  background-size: 108% 108%;
  background-position: 50% 50%;
  z-index: 0;
  pointer-events: none;
}
.contact-panel__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-panel h2 {
  font-family: var(--c360-font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  color: var(--c360-ink);
  margin: 0 0 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.contact-panel p:not(.eyebrow) {
  font-family: var(--c360-font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c360-fg-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.contact-direct {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(14,23,126,0.14);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-direct__label {
  font-family: var(--c360-font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c360-ink);
  opacity: 0.65;
}
.contact-direct__value {
  font-family: var(--c360-font-display);
  font-size: 20px;
  color: var(--c360-ink);
  transition: color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-direct__value svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}
.contact-direct__value:hover { color: var(--c360-ink-deep); }

.form {
  background: transparent;
  border-radius: var(--c360-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--c360-font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c360-ink);
  opacity: 0.7;
}
.field input,
.field textarea {
  font-family: var(--c360-font-body);
  font-size: 15px;
  color: var(--c360-fg);
  background: #fff;
  border: 1px solid var(--c360-line-strong);
  border-radius: var(--c360-radius-sm);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--c360-ink);
  box-shadow: 0 0 0 3px rgba(14,23,126,0.08);
}
.field textarea { min-height: 100px; resize: vertical; }
.form__botcheck {
  display: none;
}

.submit {
  border: 0;
  background: var(--c360-ink);
  color: var(--c360-on-ink);
  border-radius: var(--c360-radius-pill);
  padding: 13px 24px;
  font-family: var(--c360-font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms ease, transform 120ms ease;
  margin-top: 4px;
}
.submit:hover { background: var(--c360-ink-deep); }
.submit:active { transform: translateY(1px); }
.submit:disabled {
  cursor: wait;
  opacity: 0.82;
}
.submit::after {
  content: '→';
  font-family: var(--c360-font-display);
  transition: transform 180ms ease;
}
.submit:hover::after { transform: translateX(2px); }

.form__sent {
  display: none;
  padding: 16px 18px;
  background: rgba(14,23,126,0.04);
  border-radius: var(--c360-radius-sm);
  font-size: 14px;
  color: var(--c360-ink);
  line-height: 1.5;
}
.form__error {
  display: none;
  padding: 16px 18px;
  background: rgba(168, 49, 49, 0.08);
  border: 1px solid rgba(168, 49, 49, 0.18);
  border-radius: var(--c360-radius-sm);
  font-size: 14px;
  color: #7A2020;
  line-height: 1.5;
}
.form.is-sent .form__sent { display: block; }
.form.has-error .form__error { display: block; }
.form.is-sent .field,
.form.is-sent .submit { display: none; }

@media (max-width: 900px) {
  .contact-panel { padding: 40px; }
  .contact-panel__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .contact-panel { padding: 28px; border-radius: var(--c360-radius-md); }
  .form { padding: 0; }
  .contact-direct__value { font-size: 14px; gap: 6px; }
  .contact-direct__value svg { width: 16px; height: 16px; }
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
  margin-top: 0;
  background: #fff;
}
.footer__bg {
  position: absolute;
  inset: -110px -3% -140px;
  background-image: url('assets/background-watermark.png');
  background-size: 108% 108%;
  background-position: 50% 46%;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}

/* ── Conversation toast ────────────────────────────────────── */
.conversation-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(320px, calc(100vw - 32px));
  padding: 20px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.6);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.92), rgba(244, 245, 255, 0.84)),
    radial-gradient(circle at top right, rgba(67, 181, 242, 0.18), transparent 42%);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 24px 48px -18px rgba(14, 23, 126, 0.22);
  transform: translateY(26px) scale(0.9);
  transform-origin: bottom right;
  opacity: 0;
  will-change: transform, opacity;
}
.conversation-toast.is-visible {
  opacity: 1;
  animation: toast-pop 720ms cubic-bezier(0.18, 0.9, 0.22, 1.18) both;
}
@keyframes toast-pop {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  78% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.conversation-toast__dismiss {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(14,23,126,0.6);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.conversation-toast__eyebrow {
  margin: 0 0 10px;
  font-family: var(--c360-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c360-ink);
  opacity: 0.68;
}
.conversation-toast__title {
  margin: 0 0 10px;
  font-family: var(--c360-font-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--c360-ink);
  font-weight: 400;
}
.conversation-toast__body {
  margin: 0 0 18px;
  font-family: var(--c360-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c360-fg-2);
}
.conversation-toast__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--c360-radius-pill);
  background: var(--c360-gradient-diag);
  color: var(--c360-on-ink);
  font-family: var(--c360-font-body);
  font-size: 14px;
  font-weight: 600;
}
.conversation-toast__cta::after {
  content: '→';
  font-family: var(--c360-font-display);
}
@media (max-width: 560px) {
  .conversation-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 20px 18px 18px;
  }
  .conversation-toast__title {
    font-size: 21px;
  }
}
#contact { padding-bottom: 0; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-family: var(--c360-font-body);
  font-size: 13px;
  color: var(--c360-fg-3);
}
.footer__credit {
  font-family: var(--c360-font-body);
  font-size: 13px;
  color: var(--c360-fg-3);
  opacity: 0.92;
  transition: color 160ms ease, opacity 160ms ease;
}
.footer__credit:hover {
  color: var(--c360-ink);
  opacity: 1;
}
.footer__meta {
  font-family: var(--c360-font-body);
  font-size: 13px;
  color: var(--c360-fg-3);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__meta a { transition: color 160ms ease; }
.footer__meta a:hover { color: var(--c360-ink); }
@media (max-width: 720px) {
  .footer-inner { padding: 0 20px; }
}

/* ── Initial fade-in (page-load only, no scroll triggers) ── */
body {
  animation: page-fade 480ms ease-out both;
}
@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .parallax-layer { transform: none !important; }
  .topbar__cta::before { animation: none; }
  .word-reveal__word {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 560px) {
  /* Body / prose */
  .what__copy p,
  .about__copy p,
  .contact-panel p:not(.eyebrow) { font-size: 14px; }
  .service__body p { font-size: 14px; }
  .quote__body { font-size: 14px; }
  .step__body,
  .ach__body { font-size: 13px; }
  .section-intro { font-size: 15px; }
  .arrow-cta { font-size: 13px; }
  .field input,
  .field textarea { font-size: 14px; }

  /* Headings / display */
  .hero__copy h1 { font-size: 32px; }
  .hero__copy p { font-size: 15px; }
  .section-title { font-size: 26px; }
  .service__title { font-size: 20px; }
  .step__title { font-size: 17px; }
  .ach__title { font-size: 17px; }
  .value__title { font-size: 20px; }
  .pull-quote { font-size: 22px; }
  .contact-panel h2 { font-size: 26px; }
}
