﻿:root {
  --bg: #f4f5f2;
  --surface: #ffffff;
  --ink: #1f2b31;
  --ink-muted: #5d6a70;
  --ink-soft: #819096;
  --line: #d4dcd8;
  --primary: #2f6a63;
  --primary-dark: #25524d;
  --secondary: #8f775f;
  --secondary-dark: #755f4c;
  --accent: #4f6778;
  --navy: #27363f;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 38px rgba(26, 40, 42, 0.12);
  --shadow-hard: 0 20px 60px rgba(20, 30, 35, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 12%, rgba(79, 103, 120, 0.14), transparent 35%),
    radial-gradient(circle at 82% 20%, rgba(143, 119, 95, 0.12), transparent 32%),
    radial-gradient(circle at 74% 82%, rgba(47, 106, 99, 0.11), transparent 34%);
}

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

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

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

.section-pad {
  padding: 5.5rem 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
}

p {
  color: var(--ink-muted);
}

.kicker {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.kicker.dark {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 245, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 220, 216, 0.74);
  box-shadow: 0 10px 24px rgba(14, 27, 57, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 78px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.87rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #44615b);
  box-shadow: 0 10px 24px rgba(47, 106, 99, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex: 1;
  margin-left: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 220, 216, 0.9);
  border-radius: 999px;
  padding: 0.28rem;
  box-shadow: 0 8px 18px rgba(14, 28, 56, 0.07);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}

.nav-link-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(100deg, var(--primary), #3f7a72);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 106, 99, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(47, 106, 99, 0.36);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-book {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 106, 99, 0.25);
  background: linear-gradient(135deg, #ffffff, #eef3f1);
  color: var(--primary-dark);
  box-shadow: 0 10px 20px rgba(22, 34, 36, 0.1);
}

.btn-book::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 160%;
  top: -30%;
  left: -60%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
}

.btn-book:hover {
  border-color: rgba(47, 106, 99, 0.4);
  box-shadow: 0 14px 26px rgba(22, 34, 36, 0.16);
}

.btn-book:hover::after {
  animation: bookBtnShine 0.8s ease;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.hidden {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  background: radial-gradient(circle at 0% 0%, #4a616b 0%, #2e3f47 42%, #1f2d34 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
  gap: 2.4rem;
}

.hero-copy h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-copy > p {
  color: rgba(230, 237, 255, 0.88);
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stats-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.stat h3 {
  font-size: 1.55rem;
  color: #fff;
}

.stat p {
  color: rgba(223, 230, 250, 0.9);
  font-size: 0.82rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(9px);
}

.panel-title {
  color: #d8e8ff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  margin-bottom: 1rem;
}

.panel-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-item span {
  color: rgba(227, 234, 254, 0.9);
  font-size: 0.9rem;
}

.panel-item strong {
  color: #fff;
  font-size: 1.05rem;
}

.panel-cta {
  margin-top: 1rem;
  padding-top: 0.65rem;
}

.panel-cta p {
  color: rgba(227, 234, 254, 0.9);
  font-size: 0.9rem;
}

.panel-cta a {
  margin-top: 0.5rem;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: drift 9s ease-in-out infinite alternate;
}

.orb-a {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(143, 119, 95, 0.42) 0%, rgba(143, 119, 95, 0.08) 70%);
  top: -90px;
  right: -60px;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(47, 106, 99, 0.38) 0%, rgba(47, 106, 99, 0.07) 70%);
  left: -70px;
  top: 140px;
  animation-delay: 0.9s;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(79, 103, 120, 0.4) 0%, rgba(79, 103, 120, 0.08) 72%);
  bottom: -110px;
  left: 38%;
  animation-delay: 1.8s;
}

.brand-strip {
  padding: 1.2rem 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logos {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  align-items: center;
  gap: 1rem;
}

.logos span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.logos p {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: #7983a1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin-bottom: 0.6rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 244, 0.94));
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
}

.filter-btn {
  border: 1px solid #d0d8d4;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), #3b4c58);
  color: #fff;
  border-color: transparent;
}

.portfolio-shell {
  display: grid;
  grid-template-columns: minmax(270px, 320px) 1fr;
  gap: 1.1rem;
  align-items: start;
}

.portfolio-tools {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 0.9rem;
}

.portfolio-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff, #f2f5f3);
  box-shadow: 0 14px 30px rgba(24, 36, 38, 0.08);
  padding: 1.1rem;
}

.portfolio-note h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.portfolio-note > p {
  font-size: 0.9rem;
}

.note-points {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.6rem;
}

.note-points p {
  margin: 0;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid #d7dfdb;
  background: #fff;
  font-size: 0.86rem;
}

.note-points strong {
  color: var(--ink);
  margin-right: 0.35rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.portfolio-actions {
  grid-column: 1 / -1;
  margin-top: 1.35rem;
  display: grid;
  place-items: center;
  gap: 0.4rem;
}

.portfolio-actions.hidden {
  display: none;
}

.portfolio-more-btn {
  min-width: 170px;
  border-color: #c8d2ce;
  background: #fff;
}

.portfolio-more-btn:hover {
  border-color: #aab8b2;
}

#portfolioSentinel {
  width: 100%;
  height: 1px;
}

.work-card {
  min-height: 256px;
  perspective: 1200px;
  cursor: pointer;
}

.work-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 256px;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover .work-card-inner,
.work-card:focus-within .work-card-inner,
.work-card.is-flipped .work-card-inner {
  transform: rotateY(180deg);
}

.work-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.work-front {
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.08), rgba(9, 16, 35, 0.65)),
    var(--front-image, linear-gradient(145deg, var(--front-a, #4f67ff), var(--front-b, #1f2f7a)));
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(15, 30, 63, 0.19);
}

.work-front::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: -55px;
  right: -25px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.33), rgba(255, 255, 255, 0));
}

.work-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 41, 0.02), rgba(9, 16, 35, 0.47));
}

.work-front > * {
  position: relative;
  z-index: 2;
}

.work-chip {
  align-self: flex-start;
  padding: 0.23rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: auto;
}

.work-eyebrow {
  font-size: 0.8rem;
  color: rgba(233, 240, 255, 0.9);
}

.work-front h3 {
  color: #fff;
  margin: 0.35rem 0 0.25rem;
  font-size: 1.2rem;
}

.work-front p {
  color: rgba(229, 236, 255, 0.92);
  font-size: 0.87rem;
}

.flip-hint {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.work-back {
  transform: rotateY(180deg);
  border-color: #d4ddd8;
  background: linear-gradient(160deg, #ffffff, #edf1ef);
  box-shadow: 0 16px 30px rgba(20, 33, 35, 0.14);
}

.work-back h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.work-back p {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.work-back-tag {
  align-self: flex-start;
  font-size: 0.69rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  margin-bottom: auto;
}

.work-meta-row {
  margin-top: 0.78rem;
  padding-top: 0.7rem;
  border-top: 1px solid #d4ddd8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.work-meta-row span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.work-meta-row strong {
  font-size: 0.82rem;
  color: var(--ink);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cfd9d5;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(160deg, #ffffff, #f3f6f4);
}

.empty-state h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.empty-state p {
  font-size: 0.9rem;
}

.touch-mode .work-card:hover .work-card-inner {
  transform: none;
}

.touch-mode .work-card.is-flipped .work-card-inner,
.touch-mode .work-card:focus-within .work-card-inner {
  transform: rotateY(180deg);
}

.value {
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.value-copy .btn {
  margin-top: 1rem;
}

.bullet-list {
  list-style: none;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.6rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
}

.value-panels {
  display: grid;
  gap: 0.95rem;
}

.mini-card {
  background: linear-gradient(145deg, #ffffff, #f3f5f2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: 0 7px 18px rgba(14, 29, 66, 0.09);
}

.mini-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.services {
  background: linear-gradient(180deg, #f4f5f2 0%, #e8ece9 100%);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d3dbd7;
  border-radius: var(--radius-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(47, 106, 99, 0.08), rgba(79, 103, 120, 0.04));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: #bec9c4;
}

.service-card:hover::before,
.service-card.active::before {
  opacity: 1;
}

.service-card.active {
  border-color: #9eb1aa;
  box-shadow: 0 16px 30px rgba(22, 34, 36, 0.15);
}

.service-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  color: inherit;
  font: inherit;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #3b4d5a);
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
}

.service-cta {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-weight: 700;
  color: var(--accent);
}

.service-cta::after {
  content: "⌄";
  font-size: 0.8rem;
  transform: translateY(-1px);
  transition: transform 0.28s ease;
}

.service-card.active .service-cta::after {
  transform: rotate(180deg);
}

.service-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem;
}

.service-card.active .service-more {
  max-height: 200px;
  opacity: 1;
  padding: 0 1.2rem 1rem;
}

.service-more ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.service-more li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.service-more li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary);
}

.cred-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2e3d44, #243237);
}

.cred-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(circle at 86% 68%, rgba(79, 103, 120, 0.24), transparent 42%);
  pointer-events: none;
}

.cred-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cred-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1.15rem 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cred-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 68%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

.cred-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 26px rgba(15, 23, 29, 0.32);
}

.cred-card:hover::after {
  animation: statShine 0.9s ease;
}

.cred-card:nth-child(2) .cred-icon {
  animation-delay: 0.2s;
}

.cred-card:nth-child(3) .cred-icon {
  animation-delay: 0.4s;
}

.cred-card:nth-child(4) .cred-icon {
  animation-delay: 0.6s;
}

.cred-icon {
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #e8f0f3;
  animation: iconFloat 3.8s ease-in-out infinite;
}

.cred-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-grid h3 {
  color: #fff;
  font-size: 2.05rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.cred-grid p {
  color: rgba(226, 237, 242, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.cred-note {
  display: inline-block;
  margin-top: 0.42rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: rgba(222, 233, 238, 0.86);
  background: rgba(255, 255, 255, 0.09);
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes statShine {
  from {
    left: -130%;
  }
  to {
    left: 140%;
  }
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 7px 18px rgba(14, 29, 66, 0.08);
}

.step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--primary), #43756e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.split-proof {
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.1rem;
}

.proof-card,
.testimonial-card {
  background: linear-gradient(150deg, #ffffff, #f3f5f3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(14, 29, 66, 0.08);
}

.proof-stats {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.proof-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  background: #fff;
}

.proof-stats h4 {
  font-size: 1.6rem;
}

.quote {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1rem 0;
  min-height: 145px;
}

.quote-meta {
  display: grid;
  gap: 0.2rem;
}

.quote-meta strong {
  font-size: 1rem;
}

.quote-meta span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.quote-dots {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: none;
  background: #b8c3bf;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.faq-contact {
  background: linear-gradient(180deg, #edf1ef 0%, #f4f5f2 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 1.1rem;
}

.faq-box,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(14, 29, 66, 0.08);
}

.faq-box h2,
.contact-box h2 {
  margin-bottom: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 0.65rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 0.9rem;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-content p {
  padding: 0 0.9rem 0.9rem;
  font-size: 0.9rem;
}

.faq-item.active .faq-content {
  max-height: 120px;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

.lead-form label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9f2;
  border-radius: 10px;
  padding: 0.73rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(95, 120, 255, 0.16);
}

.form-note {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.form-note.success {
  color: var(--secondary-dark);
  font-weight: 700;
}

.modal-open {
  overflow: hidden;
}

.book-call-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.book-call-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.book-call-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 38, 0.62);
  backdrop-filter: blur(6px);
}

.book-call-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border: 1px solid #cad3d0;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff, #f3f6f4);
  box-shadow: 0 24px 50px rgba(15, 24, 30, 0.36);
  padding: 1.25rem;
}

.book-call-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.book-call-head h2 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

.book-call-close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #cfd9d5;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.book-call-close:hover {
  border-color: #bccbc4;
  background: #f7faf8;
}

.book-call-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.book-call-form label {
  font-size: 0.83rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.35rem;
}

.book-call-form .span-2 {
  grid-column: 1 / -1;
}

.book-call-form .btn {
  width: fit-content;
}

.insights {
  background: #fff;
}

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

.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(14, 29, 66, 0.08);
}

.insight-thumb {
  height: 130px;
}

.thumb-a {
  background: linear-gradient(145deg, #4f7a73, #35574f);
}

.thumb-b {
  background: linear-gradient(145deg, #597182, #3d5161);
}

.thumb-c {
  background: linear-gradient(145deg, #8f775f, #695847);
}

.thumb-d {
  background: linear-gradient(145deg, #71866f, #4f634e);
}

.insight-card h3 {
  font-size: 1rem;
  padding: 0.95rem;
}

.insight-card a {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0 0.95rem 0.95rem;
}

.site-footer {
  background: #1f2c32;
  color: #d2d8d6;
  padding-top: 3.4rem;
}

.site-footer .logo {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.35fr;
  gap: 1.1rem;
  padding-bottom: 2rem;
}

.footer-about-mini {
  grid-column: 1 / 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  min-height: 164px;
  display: grid;
  align-content: center;
}

.footer-about-mini h4 {
  margin-bottom: 0.45rem;
}

.footer-about-mini p {
  max-width: 66ch;
}

.footer-grid h4 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-grid p,
.footer-grid li {
  color: #b8c3c0;
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-social {
  margin-top: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.social-links a {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6dfdd;
  transition: transform 0.23s ease, background 0.23s ease, border-color 0.23s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.social-links svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-block {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem;
}

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

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
  color: #9aacb1;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.footer-contact-form button {
  border: none;
  border-radius: 10px;
  padding: 0.62rem 0.82rem;
  background: linear-gradient(125deg, var(--secondary), #6e6256);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.footer-form-note {
  color: #9aacb1;
  font-size: 0.78rem;
}

.footer-form-note.success {
  color: #d6ece6;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.footer-bottom p {
  color: #8fa0a5;
  font-size: 0.84rem;
}

.services-page .services-hero {
  position: relative;
  background: radial-gradient(circle at 0% 0%, #436067 0%, #2f434a 42%, #25353c 100%);
}

.services-page .services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  align-items: center;
  gap: 1.3rem;
}

.services-page .services-hero-copy h1 {
  color: #fff;
  max-width: 16ch;
  margin: 1rem 0 0.9rem;
}

.services-page .services-hero-copy > p {
  color: rgba(229, 238, 243, 0.92);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.services-page .services-mini-stats {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.services-page .services-mini-stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.78rem;
}

.services-page .mini-stat-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ecf5f5;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-page .mini-stat-icon svg {
  width: 1.16rem;
  height: 1.16rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .services-mini-stats h3 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.services-page .services-mini-stats p {
  color: rgba(225, 236, 241, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.01rem;
}

.services-page .services-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.services-page .layer-item + .layer-item {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.services-page .layer-item span {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.34rem;
}

.services-page .layer-item p {
  color: rgba(224, 236, 242, 0.9);
  font-size: 0.88rem;
}

.services-page .services-studio {
  background: linear-gradient(180deg, #f4f5f2 0%, #edf1ef 100%);
}

.services-page .services-layout-grid {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 1.1rem;
  align-items: start;
}

.services-page .services-control {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff, #f2f5f3);
  box-shadow: 0 14px 32px rgba(24, 36, 38, 0.08);
  padding: 1.2rem;
}

.services-page .services-control h2 {
  margin: 0.6rem 0;
}

.services-page .service-filter-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

.services-page .service-filter-btn {
  border: 1px solid #ced7d3;
  border-radius: 10px;
  background: #fff;
  color: var(--ink-muted);
  font-weight: 700;
  text-align: left;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.services-page .service-filter-btn:hover,
.services-page .service-filter-btn.active {
  color: #fff;
  background: linear-gradient(125deg, var(--accent), #41545f);
  border-color: transparent;
}

.services-page .control-note {
  margin-top: 1rem;
  border-top: 1px solid #d4ddd8;
  padding-top: 0.9rem;
}

.services-page .control-note h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.services-page .services-stream {
  display: grid;
  gap: 0.95rem;
}

.services-page .service-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid #cfd8d3;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
  padding: 1.05rem;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: start;
  gap: 0.8rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-page .service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(47, 106, 99, 0.08), rgba(79, 103, 120, 0.04));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.services-page .service-feature:hover {
  transform: translateY(-4px);
  border-color: #b6c3bd;
  box-shadow: 0 16px 30px rgba(22, 34, 36, 0.12);
}

.services-page .service-feature:hover::before {
  opacity: 1;
}

.services-page .service-feature.offset {
  margin-left: 2.4rem;
}

.services-page .service-feature.is-hidden {
  display: none;
}

.services-page .service-feature.is-entering {
  animation: serviceCardIn 0.35s ease;
}

.services-page .service-badge {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: rgba(47, 106, 99, 0.12);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-page .service-icon-wrap {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 106, 99, 0.24);
  background: rgba(47, 106, 99, 0.09);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, background 0.28s ease;
  animation: servicePulse 3.8s ease-in-out infinite;
}

.services-page .service-feature:hover .service-icon-wrap {
  transform: translateY(-2px) scale(1.04);
  background: rgba(47, 106, 99, 0.16);
}

.services-page .service-icon-wrap svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .service-content {
  position: relative;
  z-index: 1;
}

.services-page .service-cluster {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.services-page .service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.services-page .service-content p {
  margin-bottom: 0.6rem;
}

.services-page .service-points {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.services-page .service-points li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.services-page .service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--primary);
}

.services-page .service-link-btn {
  position: relative;
  z-index: 1;
  align-self: end;
  border: 1px solid #cdd7d2;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.52rem 0.78rem;
  cursor: pointer;
  transition: background 0.23s ease, color 0.23s ease, border-color 0.23s ease;
}

.services-page .service-link-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-page .services-cta {
  padding-top: 0;
}

.services-page .services-cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff, #f2f5f3);
  box-shadow: 0 16px 34px rgba(24, 36, 38, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.services-page .services-cta-box h2 {
  margin-bottom: 0.55rem;
}

.services-page .services-cta-box p {
  max-width: 64ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.our-work-page .ourwork-hero {
  position: relative;
  background: radial-gradient(circle at 8% 0%, #3f6268 0%, #2f454d 44%, #263840 100%);
}

.our-work-page .ourwork-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  align-items: start;
}

.our-work-page .ourwork-copy h1 {
  color: #fff;
  max-width: 15ch;
  margin: 1rem 0 0.9rem;
}

.our-work-page .ourwork-copy > p {
  color: rgba(228, 238, 242, 0.92);
  max-width: 60ch;
  margin-bottom: 1.25rem;
}

.our-work-page .ourwork-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.our-work-page .ourwork-panel h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.our-work-page .ourwork-panel-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.our-work-page .ourwork-panel-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: start;
}

.our-work-page .ourwork-panel-list span {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.our-work-page .ourwork-panel-list p {
  color: rgba(223, 235, 240, 0.92);
  font-size: 0.87rem;
  margin-top: 0.2rem;
}

.our-work-page .ourwork-panel-tag {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.85rem;
  color: rgba(236, 245, 247, 0.95);
  font-size: 0.83rem;
  letter-spacing: 0.02rem;
}

.our-work-page .ourwork-metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  position: relative;
  z-index: 2;
}

.our-work-page .metric-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0.95rem;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.our-work-page .metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
}

.our-work-page .metric-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.1rem;
}

.our-work-page .metric-card p {
  color: rgba(228, 238, 243, 0.88);
  font-size: 0.8rem;
}

.our-work-page .ourwork-portfolio {
  background: linear-gradient(180deg, #f4f5f2 0%, #ebefec 100%);
}

.our-work-page .ourwork-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #ffffff, #f2f5f3);
  box-shadow: 0 12px 24px rgba(22, 34, 36, 0.08);
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.our-work-page .ourwork-toolbar .filter-row {
  flex: 1;
}

.our-work-page .ourwork-toolbar-note {
  text-align: right;
  display: grid;
  gap: 0.15rem;
}

.our-work-page .ourwork-toolbar-note p {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.our-work-page .ourwork-toolbar-note span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.our-work-page .portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.our-work-page .work-card,
.our-work-page .work-card-inner {
  min-height: 232px;
}

.our-work-page .portfolio-more-btn {
  min-width: 220px;
}

.our-work-page .ourwork-cta {
  padding-top: 0;
}

.our-work-page .ourwork-cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f2f5f3);
  box-shadow: 0 16px 34px rgba(24, 36, 38, 0.1);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.our-work-page .ourwork-cta-box h2 {
  margin-bottom: 0.45rem;
}

.about-page .about-hero {
  position: relative;
  background: radial-gradient(circle at 5% 0%, #4d6764 0%, #36504f 45%, #293d40 100%);
}

.about-page .about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  align-items: start;
}

.about-page .about-copy h1 {
  color: #fff;
  max-width: 16ch;
  margin: 1rem 0 0.9rem;
}

.about-page .about-copy > p {
  color: rgba(226, 237, 240, 0.92);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.about-page .about-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-page .about-tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(238, 246, 247, 0.96);
  background: rgba(255, 255, 255, 0.08);
}

.about-page .about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.about-page .about-score-row + .about-score-row {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-page .about-score-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.about-page .about-score-row span {
  color: rgba(226, 236, 239, 0.92);
  font-size: 0.85rem;
}

.about-page .about-score-row strong {
  color: #fff;
  font-size: 1.12rem;
  font-family: "Space Grotesk", sans-serif;
}

.about-page .about-card-note {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.85rem;
  color: rgba(220, 234, 238, 0.93);
  font-size: 0.83rem;
}

.about-page .about-foundation {
  background: linear-gradient(180deg, #f4f5f2 0%, #edf1ee 100%);
}

.about-page .about-foundation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.about-page .about-story-card,
.about-page .about-image-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff, #f2f5f3);
  box-shadow: 0 14px 30px rgba(24, 36, 38, 0.08);
  padding: 1.2rem;
}

.about-page .about-story-card h2 {
  margin-bottom: 0.7rem;
}

.about-page .about-story-card p + p {
  margin-top: 0.7rem;
}

.about-page .about-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.about-page .about-image-row.single {
  grid-template-columns: 1fr;
  margin-top: 0.65rem;
}

.about-page .about-shot {
  min-height: 136px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 0.7rem;
  box-shadow: inset 0 -40px 60px rgba(8, 15, 27, 0.28);
}

.about-page .about-shot span {
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  font-weight: 700;
}

.about-page .shot-a {
  background: linear-gradient(140deg, #4f6e82, #2d4859);
}

.about-page .shot-b {
  background: linear-gradient(140deg, #7f6e5b, #5a4839);
}

.about-page .shot-c {
  background: linear-gradient(140deg, #3e7a70, #2d5750);
}

.about-page .about-image-card p {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.about-page .about-principles {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-page .principle-card {
  border: 1px solid #ced8d3;
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem;
  box-shadow: 0 8px 18px rgba(22, 34, 36, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-page .principle-card:hover {
  transform: translateY(-4px);
  border-color: #b8c5bf;
  box-shadow: 0 14px 24px rgba(22, 34, 36, 0.11);
}

.about-page .principle-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 106, 99, 0.23);
  color: var(--primary);
  background: rgba(47, 106, 99, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.about-page .principle-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .principle-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.3rem;
}

.about-page .principle-card p {
  font-size: 0.84rem;
}

.about-page .about-mv {
  background: #fff;
}

.about-page .about-mv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.about-page .mv-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f3f6f4);
  box-shadow: 0 10px 24px rgba(24, 36, 38, 0.08);
  padding: 1.1rem;
}

.about-page .mv-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.24rem;
}

.about-page .mv-orbit {
  width: 210px;
  height: 210px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-page .orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(47, 106, 99, 0.32);
}

.about-page .ring-a {
  width: 210px;
  height: 210px;
  animation: spinSlow 14s linear infinite;
}

.about-page .ring-b {
  width: 150px;
  height: 150px;
  border-style: solid;
  border-color: rgba(79, 103, 120, 0.34);
  animation: spinSlowReverse 10s linear infinite;
}

.about-page .orbit-core {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #406760);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(47, 106, 99, 0.3);
}

.about-page .about-method {
  background: linear-gradient(180deg, #f4f5f2 0%, #ebefec 100%);
}

.about-page .method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-page .method-card {
  border: 1px solid #ced8d3;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.about-page .method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(47, 106, 99, 0.08), rgba(79, 103, 120, 0.04));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.about-page .method-card:hover::before {
  opacity: 1;
}

.about-page .method-step {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(47, 106, 99, 0.25);
  background: rgba(47, 106, 99, 0.1);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.about-page .method-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  border: 1px solid rgba(79, 103, 120, 0.28);
  color: var(--accent);
  background: rgba(79, 103, 120, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  margin-bottom: 0.6rem;
}

.about-page .method-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .method-card h3,
.about-page .method-card p {
  position: relative;
  z-index: 1;
}

.about-page .method-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.32rem;
}

.about-page .method-card p {
  font-size: 0.86rem;
}

.about-page .about-cred {
  background: #fff;
}

.about-page .about-cred-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.about-page .about-metric-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f2f5f3);
  box-shadow: 0 14px 30px rgba(22, 34, 36, 0.08);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-page .about-metric-grid article {
  border: 1px solid #d4ddd8;
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
}

.about-page .about-metric-grid h3 {
  font-size: 1.85rem;
  margin-bottom: 0.1rem;
}

.about-page .about-metric-grid p {
  font-size: 0.84rem;
}

.about-page .about-cta {
  padding-top: 0;
}

.about-page .about-cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f2f5f3);
  box-shadow: 0 16px 34px rgba(24, 36, 38, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.about-page .about-cta-box h2 {
  margin-bottom: 0.55rem;
}

.about-page .about-cta-box p {
  margin-bottom: 1rem;
}

.contact-page .contact-hero {
  position: relative;
  background: radial-gradient(circle at 4% 0%, #46666b 0%, #2f464f 44%, #283942 100%);
}

.contact-page .contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-page .contact-hero-copy h1 {
  color: #fff;
  max-width: 16ch;
  margin: 1rem 0 0.9rem;
}

.contact-page .contact-hero-copy > p {
  color: rgba(226, 238, 242, 0.92);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.contact-page .contact-mini-stats {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.contact-page .contact-mini-stats article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.78rem;
  backdrop-filter: blur(6px);
}

.contact-page .contact-mini-stats h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.12rem;
}

.contact-page .contact-mini-stats p {
  color: rgba(225, 237, 242, 0.88);
  font-size: 0.76rem;
}

.contact-page .contact-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.15rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.contact-page .contact-line + .contact-line {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-page .contact-line span {
  display: block;
  color: rgba(220, 233, 238, 0.88);
  font-size: 0.79rem;
  margin-bottom: 0.2rem;
}

.contact-page .contact-line strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-page .contact-panel-note {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.8rem;
  color: rgba(220, 233, 238, 0.92);
  font-size: 0.82rem;
}

.contact-page .contact-connect {
  background: linear-gradient(180deg, #f4f5f2 0%, #ebefec 100%);
}

.contact-page .contact-connect-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-page .contact-form-card,
.contact-page .contact-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff, #f2f5f3);
  box-shadow: 0 14px 30px rgba(24, 36, 38, 0.08);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-page .contact-form-card h2 {
  margin-bottom: 0.8rem;
}

.contact-page .page-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  flex: 1;
  align-content: start;
}

.contact-page .page-contact-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.contact-page .page-contact-form .span-2 {
  grid-column: 1 / -1;
}

.contact-page .page-contact-form input,
.contact-page .page-contact-form select,
.contact-page .page-contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8d4;
  border-radius: 10px;
  padding: 0.7rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-page .page-contact-form input:focus,
.contact-page .page-contact-form select:focus,
.contact-page .page-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 103, 120, 0.17);
}

.contact-page .page-contact-form .btn {
  grid-column: 1 / -1;
  width: fit-content;
}

.contact-page .page-contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-page .map-wrap {
  border: 1px solid #d3dbd7;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  flex: 1;
  margin: 0.55rem 0 0.75rem;
}

.contact-page .map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-page .map-meta {
  display: grid;
  gap: 0.4rem;
}

.contact-page .map-meta p {
  font-size: 0.88rem;
}

.contact-page .map-meta strong {
  color: var(--ink);
}

.contact-page .talk-tracks {
  background: #fff;
}

.contact-page .talk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-page .talk-card {
  border: 1px solid #ced8d3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f3f6f4);
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
  padding: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-page .talk-card:hover {
  transform: translateY(-4px);
  border-color: #bcc9c3;
  box-shadow: 0 14px 26px rgba(22, 34, 36, 0.11);
}

.contact-page .talk-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 106, 99, 0.24);
  background: rgba(47, 106, 99, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.62rem;
}

.contact-page .talk-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .talk-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.contact-page .talk-copy {
  display: grid;
  gap: 0.7rem;
}

.contact-page .talk-copy p {
  font-size: 0.95rem;
  line-height: 1.78;
}

.process-page .process-hero {
  position: relative;
  background: radial-gradient(circle at 4% 0%, #51645e 0%, #364d4b 44%, #2a3e42 100%);
}

.process-page .process-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.process-page .process-hero-copy h1 {
  color: #fff;
  max-width: 15ch;
  margin: 1rem 0 0.9rem;
}

.process-page .process-hero-copy > p {
  color: rgba(226, 237, 242, 0.92);
  max-width: 62ch;
  margin-bottom: 1.2rem;
}

.process-page .process-mini-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.process-page .process-mini-stats article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.78rem;
  backdrop-filter: blur(5px);
}

.process-page .process-mini-stats h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.12rem;
}

.process-page .process-mini-stats p {
  color: rgba(228, 238, 243, 0.88);
  font-size: 0.76rem;
}

.process-page .process-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.hero-panel,
.services-page .services-hero-panel,
.our-work-page .ourwork-panel,
.about-page .about-hero-card,
.contact-page .contact-hero-panel,
.process-page .process-hero-panel,
.blog-page .blog-hero-panel {
  align-self: center;
}

.process-page .hero-process-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.process-page .hero-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

.process-page .hero-process-list span {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-page .hero-process-list h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.process-page .hero-process-list p {
  color: rgba(220, 233, 238, 0.92);
  font-size: 0.84rem;
}

.process-page .process-principles {
  background: #fff;
}

.process-page .principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-page .principle-item {
  border: 1px solid #ced8d3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f3f6f4);
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
  padding: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.process-page .principle-item:hover {
  transform: translateY(-4px);
  border-color: #bcc9c3;
  box-shadow: 0 14px 26px rgba(22, 34, 36, 0.11);
}

.process-page .principle-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.process-page .principle-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 106, 99, 0.24);
  color: var(--primary);
  background: rgba(47, 106, 99, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.process-page .principle-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-page .process-roadmap {
  background: linear-gradient(180deg, #f4f5f2 0%, #ebefec 100%);
}

.process-page .timeline-wrap {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.process-page .timeline-wrap::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 1.05rem;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), var(--secondary));
  background-size: 100% 240%;
  animation: processLineFlow 7s linear infinite;
}

.process-page .phase {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.process-page .phase-marker {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(47, 106, 99, 0.28);
  background: rgba(47, 106, 99, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: phasePulse 2.8s ease-in-out infinite;
}

.process-page .phase:nth-child(2) .phase-marker {
  animation-delay: 0.2s;
}

.process-page .phase:nth-child(3) .phase-marker {
  animation-delay: 0.4s;
}

.process-page .phase:nth-child(4) .phase-marker {
  animation-delay: 0.6s;
}

.process-page .phase:nth-child(5) .phase-marker {
  animation-delay: 0.8s;
}

.process-page .phase:nth-child(6) .phase-marker {
  animation-delay: 1s;
}

.process-page .phase:nth-child(7) .phase-marker {
  animation-delay: 1.2s;
}

.process-page .phase-marker svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-page .phase-card {
  border: 1px solid #ced8d3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff, #f3f6f4);
  box-shadow: 0 10px 22px rgba(22, 34, 36, 0.07);
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-page .phase-card:hover {
  transform: translateY(-4px);
  border-color: #bcc9c3;
  box-shadow: 0 14px 26px rgba(22, 34, 36, 0.11);
}

.process-page .phase-head {
  margin-bottom: 0.65rem;
}

.process-page .phase-no {
  display: inline-flex;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 103, 120, 0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.process-page .phase-head h3 {
  font-size: 1.28rem;
}

.process-page .phase-detail {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0.8rem;
  align-items: stretch;
}

.process-page .phase-detail p {
  margin-bottom: 0.65rem;
}

.process-page .phase-detail ul {
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.process-page .phase-detail li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.process-page .phase-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--primary);
}

.process-page .phase-visual {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  min-height: 152px;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 0.7rem;
  box-shadow: inset 0 -40px 60px rgba(8, 15, 27, 0.28);
  animation: phaseFloat 3.8s ease-in-out infinite;
}

.process-page .phase-visual p {
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-weight: 800;
  white-space: pre-line;
  line-height: 1.4;
}

.process-page .visual-a {
  background: linear-gradient(140deg, #4f6e82, #2d4859);
}

.process-page .visual-b {
  background: linear-gradient(140deg, #7f6e5b, #5a4839);
}

.process-page .visual-c {
  background: linear-gradient(140deg, #5f6f86, #3f4e63);
}

.process-page .visual-d {
  background: linear-gradient(140deg, #6b7c73, #46564f);
}

.process-page .visual-e {
  background: linear-gradient(140deg, #7c6e5a, #58493d);
}

.process-page .visual-f {
  background: linear-gradient(140deg, #587f77, #3c5e58);
}

.process-page .visual-g {
  background: linear-gradient(140deg, #6e6983, #4c4860);
}

.process-page .process-matrix {
  background: #fff;
}

.process-page .matrix-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: start;
}

.process-page .matrix-card,
.process-page .matrix-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff, #f3f6f4);
  box-shadow: 0 14px 30px rgba(24, 36, 38, 0.08);
  padding: 1.2rem;
}

.process-page .matrix-item + .matrix-item {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid #d7dfdb;
}

.process-page .matrix-item span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.process-page .matrix-item p {
  color: var(--ink);
  font-weight: 700;
}

.process-page .process-cta {
  padding-top: 0;
}

.process-page .process-cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f2f5f3);
  box-shadow: 0 16px 34px rgba(24, 36, 38, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.process-page .process-cta-box h2 {
  margin-bottom: 0.5rem;
}

.process-page .process-cta-box p {
  margin-bottom: 1rem;
}

.blog-page .blog-hero {
  position: relative;
  background: radial-gradient(circle at 12% -8%, #5b736c 0%, #355058 44%, #243944 100%);
}

.blog-page .blog-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.blog-page .blog-hero-copy h1 {
  color: #fff;
  max-width: 14ch;
  margin: 1rem 0 0.9rem;
}

.blog-page .blog-hero-copy > p {
  color: rgba(226, 237, 242, 0.92);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.blog-page .blog-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(15, 24, 31, 0.28);
}

.blog-page .blog-archive {
  background: #fff;
}

.blog-page .blog-archive-grid {
  align-items: stretch;
}

.blog-page .insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-page .insight-card h3 {
  padding-bottom: 0.5rem;
}

.blog-page .insight-card .insight-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 0.95rem 0.25rem;
}

.blog-page .insight-card .insight-excerpt {
  font-size: 0.89rem;
  color: var(--ink-muted);
  line-height: 1.6;
  padding: 0 0.95rem 0.7rem;
}

.blog-page .insight-card a {
  margin-top: auto;
}

.blog-page .blog-archive-controls {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.blog-page .blog-load-more {
  min-width: 220px;
}

.blog-page .blog-archive-status {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.blog-page .blog-archive-status.loading {
  color: var(--accent);
}

.blog-page .blog-archive-status.done {
  color: var(--secondary-dark);
  font-weight: 700;
}

.blog-page .blog-archive-status.error {
  color: #8a4a39;
  font-weight: 700;
}

.blog-page #blogArchiveSentinel {
  width: 100%;
  height: 2px;
}

@keyframes servicePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(47, 106, 99, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(47, 106, 99, 0.07);
  }
}

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.14s;
}

.delay-3 {
  transition-delay: 0.2s;
}

@keyframes drift {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(20px) translateX(-12px);
  }
}

@keyframes bookBtnShine {
  from {
    left: -60%;
  }
  to {
    left: 140%;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlowReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes processLineFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 220%;
  }
}

@keyframes phasePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(47, 106, 99, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(47, 106, 99, 0.1);
  }
}

@keyframes phaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1050px) {
  .nav-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    gap: 0.28rem;
  }

  .nav-link-icon,
  .nav-link-icon svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .hero-grid,
  .value-grid,
  .split-grid,
  .two-col,
  .portfolio-shell {
    grid-template-columns: 1fr;
  }

  .services-page .services-hero-grid,
  .services-page .services-layout-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-grid,
  .about-page .about-foundation-grid,
  .about-page .about-cred-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero-grid,
  .contact-page .contact-connect-grid {
    grid-template-columns: 1fr;
  }

  .process-page .process-hero-grid,
  .process-page .matrix-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .process-page .phase-detail {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-page .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-page .mv-orbit {
    margin-inline: auto;
  }

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

  .our-work-page .ourwork-hero-grid {
    grid-template-columns: 1fr;
  }

  .our-work-page .ourwork-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-work-page .ourwork-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .our-work-page .ourwork-toolbar-note {
    text-align: left;
  }

  .services-page .services-control {
    position: static;
  }

  .services-page .service-feature.offset {
    margin-left: 0;
  }

  .portfolio-tools {
    position: static;
  }

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

  .our-work-page .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .process-line::before {
    display: none;
  }

  .logos {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 0.65rem;
  }

  .logos span {
    grid-column: 1 / -1;
    text-align: center;
  }

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

  .footer-about-mini {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .footer-contact-block {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 4rem 0;
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 72px;
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    margin-left: 0;
    gap: 0.65rem;
    padding-bottom: 0.35rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    display: grid;
    border-radius: 14px;
    padding: 0.45rem;
    gap: 0.35rem;
    margin-inline: 0;
  }

  .nav-links a {
    padding: 0.56rem 0.7rem;
  }

  .nav-cta {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .services-page .hero-actions .btn {
    width: 100%;
  }

  .blog-page .blog-load-more {
    width: 100%;
  }

  .services-page .services-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-page .about-principles,
  .about-page .method-grid,
  .about-page .about-metric-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-mini-stats,
  .contact-page .talk-grid,
  .contact-page .page-contact-form {
    grid-template-columns: 1fr;
  }

  .process-page .process-mini-stats,
  .process-page .principles-grid {
    grid-template-columns: 1fr;
  }

  .process-page .timeline-wrap::before {
    left: 0.95rem;
  }

  .about-page .about-image-row {
    grid-template-columns: 1fr;
  }

  .our-work-page .ourwork-metrics {
    grid-template-columns: 1fr;
  }

  .services-page .service-feature {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
  }

  .services-page .service-link-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .stats-row,
  .cred-grid,
  .portfolio-grid,
  .service-grid,
  .insight-grid,
  .process-line,
  .proof-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logos {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .our-work-page .ourwork-cta-box {
    flex-direction: column;
    align-items: stretch;
  }

  .book-call-form {
    grid-template-columns: 1fr;
  }

  .book-call-dialog {
    padding: 1rem;
  }
}
