/* ============================================================
   3CirclesStudio � Core Styles
   Premium dark agency theme. Mobile-first, production-ready.
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --bg-4: #161616;
  --card: rgba(18, 18, 18, 0.72);
  --lime: #ccff00;
  --lime-2: #b8e600;
  --cyan: #00d4ff;
  --blue: #4da3ff;
  --gold: #e8c547;
  --white: #ffffff;
  --muted: #a8a8a8;
  --dim: #6e6e6e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --max: 1200px;
  --font-head: "Poppins", "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-sign: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

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

/* ---------- Custom pointer ---------- */
.pointer-ring,
.pointer-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.pointer-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--lime);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
}

.pointer-ring.is-hover {
  width: 54px;
  height: 54px;
  background: rgba(200, 245, 66, 0.12);
}

.pointer-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
}

.touch-device .pointer-ring,
.touch-device .pointer-dot {
  display: none;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.section {
  padding: 72px 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.eyebrow.lime {
  color: var(--lime);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 56ch;
}

.accent-lime {
  color: var(--lime);
}

.accent-cyan {
  color: var(--cyan);
}

.accent-blue {
  color: var(--blue);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--lime);
  color: #000;
  padding: 8px 12px;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  max-width: 176px;
  object-fit: contain;
  display: block;
}

.footer-brand .logo img {
  height: 56px;
  max-width: 210px;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8d8d8;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.25s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--lime);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  z-index: 1101;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: 0.25s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 1200;
}

.mobile-nav.open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.85rem;
  line-height: 1;
  z-index: 1201;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.menu-close:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 245, 66, 0.08);
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.active {
  color: var(--lime);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}

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

.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}

.btn-primary {
  background: var(--lime);
  color: #000;
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.28);
}

.btn-primary:hover {
  background: #d6ff5a;
  box-shadow: 0 0 36px rgba(200, 245, 66, 0.45);
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: #000;
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: grid;
  place-items: center;
  padding: 0;
  min-height: 0;
}

.btn-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ---------- Social rail ---------- */
.social-rail {
  display: none;
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-rail a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #ccc;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.social-rail a:hover {
  color: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.social-rail .handle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-top: 8px;
}

/* ---------- Glow rings ---------- */
.glow-stage {
  position: relative;
  isolation: isolate;
}

.rings {
  position: absolute;
  inset: 8% 4%;
  pointer-events: none;
  z-index: 0;
}

.rings span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: floatRing 8s ease-in-out infinite;
}

.rings span:nth-child(1) {
  width: 78%;
  height: 78%;
  top: 6%;
  left: 4%;
  border-color: var(--cyan);
  opacity: 0.45;
  filter: drop-shadow(0 0 18px var(--cyan));
}

.rings span:nth-child(2) {
  width: 64%;
  height: 64%;
  top: 18%;
  left: 22%;
  border-color: var(--lime);
  opacity: 0.4;
  animation-delay: -2.5s;
  filter: drop-shadow(0 0 18px var(--lime));
}

.rings span:nth-child(3) {
  width: 48%;
  height: 48%;
  top: 28%;
  left: 12%;
  border-color: var(--gold);
  opacity: 0.28;
  animation-delay: -4s;
}

@keyframes floatRing {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

/* ---------- Placeholder frames ---------- */
.ph {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background:
    radial-gradient(circle at 30% 20%, rgba(46, 230, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 245, 66, 0.08), transparent 42%),
    #101010;
  border: 1px dashed rgba(200, 245, 66, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 20px;
}

.ph strong {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--lime);
}

.ph span {
  font-size: 0.82rem;
  color: var(--white);
}

.ph small {
  color: var(--dim);
  font-size: 0.75rem;
}

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d0d0d;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.media:hover img {
  transform: scale(1.06);
}

/* ---------- Hero ---------- */
.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 28px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(80vw, 420px);
  height: min(80vw, 420px);
  right: -18%;
  top: 8%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.hero-kicker {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(1.35rem, 6.4vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 16px;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-line {
  display: block;
}

.hero-line-moments {
  white-space: nowrap;
}

@media (max-width: 379px) {
  .hero h1 {
    font-size: 1.22rem;
  }

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

.hero p {
  color: var(--muted);
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.hero-visual {
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.hero-visual .rings {
  inset: 12% 8%;
}

.hero-visual .media {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-visual .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.hero-visual .media:hover > img,
.hero-visual .hero-book:hover .hero-page.is-current:not(.is-turning) img {
  transform: scale(1.03);
}

.hero-book {
  perspective: 1400px;
}

.hero-page {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 0;
}

.hero-page.is-current {
  z-index: 2;
}

.hero-page.is-waiting {
  z-index: 1;
}

.hero-page.is-turning {
  z-index: 3;
  transform: rotateY(-180deg);
  box-shadow: -18px 0 36px rgba(0, 0, 0, 0.4);
}

.hero-page.is-reset {
  transition: none;
}

.hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 1.15s ease;
}

.hero-page.is-turning::after {
  opacity: 1;
}

/* ---------- Services summary ---------- */
.services-summary {
  background: var(--bg-2);
}

.cards-3 {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 245, 66, 0.45);
  box-shadow: 0 0 30px rgba(200, 245, 66, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--lime);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 18px;
}

.service-card-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background: #0d0d0d;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card .link-explore {
  margin-top: auto;
}

.link-explore {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-explore:hover {
  gap: 12px;
}

/* ---------- Featured work ---------- */
.work-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: 0.25s;
}

a.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
  color: #000;
  background: var(--lime);
  border-color: var(--lime);
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.work-card.is-hidden {
  display: none;
}

.work-card .media,
.work-card img,
.work-card .ph {
  min-height: 320px;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(200, 245, 66, 0.5);
  box-shadow: 0 0 28px rgba(200, 245, 66, 0.14);
}

.work-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.work-meta small {
  color: var(--lime);
  font-family: var(--font-head);
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.work-meta h3 {
  font-size: 1.05rem;
}

.work-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ---------- About ---------- */
.about-hero {
  padding-top: 48px;
}

.about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.story-section {
  padding-bottom: 8px;
}

.story-top {
  display: grid;
  gap: 40px;
  align-items: center;
}

.story-copy h1 {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.story-copy .lead {
  max-width: 42ch;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(232, 197, 71, 0.4);
}

.story-venn {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.story-circle {
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.45);
}

.story-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.story-circle-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16%;
}

.story-circle-content .icon {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
}

.story-circle-content h3 {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-circle-content p {
  font-size: 0.68rem;
  line-height: 1.45;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.story-circle-design {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--lime);
  z-index: 2;
}

.story-circle-design .story-circle-content {
  justify-content: flex-start;
  padding-top: 12%;
}

.story-circle-design .icon,
.story-circle-design h3 {
  color: var(--lime);
}

.story-circle-capture {
  left: 0;
  bottom: 4%;
  border-color: var(--cyan);
  z-index: 2;
}

.story-circle-capture .story-circle-content {
  align-items: flex-start;
  text-align: left;
  justify-content: flex-end;
  padding: 18% 38% 14% 12%;
}

.story-circle-capture .icon,
.story-circle-capture h3 {
  color: var(--cyan);
}

.story-circle-create {
  right: 0;
  bottom: 4%;
  border-color: var(--blue);
  z-index: 2;
}

.story-circle-create .story-circle-content {
  align-items: flex-end;
  text-align: right;
  justify-content: flex-end;
  padding: 18% 12% 14% 38%;
}

.story-circle-create .icon,
.story-circle-create h3 {
  color: var(--blue);
}

.story-venn-core {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 36%;
  text-align: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.88) 42%, transparent 74%);
  padding: 18px 8px;
}

.story-venn-core img {
  width: 86%;
  max-width: 150px;
  margin-inline: auto;
}

.story-venn-core p {
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.story-approach {
  position: relative;
  margin-top: 56px;
  padding: 36px 20px 24px;
  border: 1px solid rgba(200, 245, 66, 0.28);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.7);
}

.story-approach-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  padding: 0 14px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
}

.story-approach-steps {
  display: grid;
  gap: 22px;
}

.story-step {
  text-align: center;
}

.story-step .icon {
  width: 28px;
  height: 28px;
  margin-inline: auto;
  margin-bottom: 10px;
}

.story-step h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-step p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
  max-width: 22ch;
  margin-inline: auto;
}

.story-step-lime .icon,
.story-step-lime h3 {
  color: var(--lime);
}

.story-step-cyan .icon,
.story-step-cyan h3 {
  color: var(--cyan);
}

.story-step-blue .icon,
.story-step-blue h3 {
  color: var(--blue);
}

.story-step-purple .icon,
.story-step-purple h3 {
  color: #8b7cff;
}

.story-step-arrow {
  display: none;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(-45deg);
  align-self: center;
}

.story-tagline {
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile {
  padding-bottom: 24px;
}

.founder-intro {
  display: grid;
  gap: 32px;
  align-items: start;
}

.founder-kicker,
.founder-sign-role {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8c8c8;
}

.founder-copy h2 {
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  letter-spacing: -0.03em;
  margin: 10px 0 8px;
}

.founder-copy .founder-script {
  font-family: var(--font-sign);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--white);
  margin-bottom: 18px;
}

.founder-copy > p:not(.founder-kicker):not(.founder-script):not(.signature):not(.founder-sign-role) {
  color: #e6e6e6;
  font-weight: 300;
  margin-bottom: 12px;
}

.signature {
  font-family: var(--font-sign);
  font-size: 2.4rem;
  color: var(--lime);
  margin-top: 18px;
  margin-bottom: 4px;
}

.founder-visual {
  position: relative;
}

.founder-photo {
  width: min(100%, 480px);
  margin-left: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #0d0d0d;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(204, 255, 0, 0.35);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.94);
}

.founder-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--lime);
  margin-bottom: 10px;
}

.founder-quote p {
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
}

.founder-mid {
  text-align: center;
  margin: 48px 0 36px;
  padding: 22px 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-mid p:first-child {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.founder-mid p:last-child {
  color: var(--muted);
  font-weight: 300;
}

.founder-grid {
  display: grid;
  gap: 24px;
  padding: 8px 0;
}

.founder-pillar .icon,
.founder-metric .icon,
.founder-banner-left .icon {
  color: var(--lime);
}

.founder-pillar .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
}

.founder-pillar h3 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}

.founder-pillar p,
.founder-metric span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.founder-metrics {
  display: grid;
  gap: 18px;
}

.founder-metric {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.founder-metric .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.founder-metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}

.founder-banner {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(204, 255, 0, 0.22);
  border-radius: 10px;
  background: #0d0d0d;
  display: grid;
  gap: 10px;
}

.founder-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.founder-banner-left .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.founder-banner > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.team-section {
  padding-top: 24px;
}

.team-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.team-lead {
  color: #e8e8e8;
  font-weight: 300;
  max-width: 38ch;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lime);
}

.team-list {
  display: grid;
  gap: 14px;
}

.team-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0c0c0c;
}

.team-photo {
  overflow: hidden;
  border-radius: 10px;
  min-height: 100%;
  background: #111;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  min-width: 0;
  padding: 4px 4px 2px 0;
}

.team-role {
  display: inline-block;
  padding: 4px 8px;
  background: #000;
  border: 1px solid rgba(204, 255, 0, 0.28);
  border-radius: 5px;
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-info h3 {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-exp {
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-info > p:not(.team-role):not(.team-exp):not(.team-expertise) {
  color: #e6e6e6;
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.team-expertise {
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-info ul {
  display: grid;
  gap: 3px;
}

.team-info li {
  position: relative;
  padding-left: 12px;
  color: #e6e6e6;
  font-size: 0.76rem;
  font-weight: 300;
}

.team-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.team-bar {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #0b0b0b;
}

.team-bar article {
  text-align: center;
}

.team-bar .icon {
  width: 26px;
  height: 26px;
  color: var(--lime);
  margin-inline: auto;
  margin-bottom: 10px;
}

.team-bar h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.team-bar p {
  color: #e6e6e6;
  font-size: 0.86rem;
  font-weight: 300;
  max-width: 24ch;
  margin-inline: auto;
}

.team-motto {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.approach {
  background: #000;
}

.approach-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.approach-top {
  display: grid;
  gap: 36px;
  align-items: center;
}

.approach-copy h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.approach-copy h2 .accent-lime {
  display: block;
}

.approach-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 18px;
}

.approach-copy > p {
  color: #e8e8e8;
  font-weight: 300;
  max-width: 38ch;
  margin-bottom: 24px;
}

.approach-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.approach-tile {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 8px;
  background: #0d0d0d;
}

.approach-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.approach-tile-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 168px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.approach-tile-body .icon {
  width: 22px;
  height: 22px;
  color: var(--lime);
  margin-bottom: 10px;
}

.approach-tile-body h3 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.approach-tile-body h3 span {
  color: var(--lime);
  margin-right: 6px;
}

.approach-tile-body p {
  color: #ececec;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.45;
}

.approach-flow {
  display: grid;
  gap: 22px;
  margin-top: 36px;
  padding: 24px 18px;
  border-radius: 16px;
  background: #111;
  border: 1px solid var(--border);
}

.approach-flow-step {
  text-align: center;
}

.approach-flow-step .icon {
  width: 26px;
  height: 26px;
  color: var(--lime);
  margin-inline: auto;
  margin-bottom: 10px;
}

.approach-flow-step h3 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.approach-flow-step p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 300;
  max-width: 22ch;
  margin-inline: auto;
}

.approach-motto {
  margin-top: 26px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Tools marquee ---------- */
.tools {
  padding: 40px 0 72px;
}

.marquee {
  overflow: hidden;
  margin-top: 28px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tool-chip {
  min-width: 140px;
  height: 88px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.25s, transform 0.25s;
}

.tool-chip:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.tool-badge {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--lime);
}

img.tool-badge {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tool-chip.brand-chip {
  min-width: 148px;
  height: auto;
  padding: 12px 12px 10px;
}

.tool-chip span {
  font-size: 0.75rem;
  color: var(--muted);
}

.tool-chip.tool-icon {
  min-width: 112px;
  height: auto;
  padding: 10px 8px 6px;
  border: 0;
  background: transparent;
  gap: 8px;
}

.tool-chip.tool-icon:hover {
  border-color: transparent;
  transform: translateY(-4px) scale(1.04);
}

.tool-chip.tool-icon img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.tool-chip.tool-icon:hover img {
  box-shadow: 0 14px 28px rgba(200, 245, 66, 0.18);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding-top: 0;
}

.testimonials-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.testimonials-head .lead {
  max-width: 46ch;
}

.testimonials-nav {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.testimonial-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-arrow:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(204, 255, 0, 0.06);
}

.testimonials-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  width: min(300px, 82vw);
  min-height: 320px;
  padding: 22px 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #121212;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.testimonial-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #1c1c1c;
  border: 1px solid var(--border-strong);
  color: var(--cyan);
}

.testimonial-card:nth-child(6n + 2) .testimonial-avatar,
.testimonial-card:nth-child(6n + 5) .testimonial-avatar {
  color: var(--lime);
}

.testimonial-card:nth-child(6n + 3) .testimonial-avatar,
.testimonial-card:nth-child(6n) .testimonial-avatar {
  color: var(--blue);
}

.testimonial-person h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars span {
  width: 11px;
  height: 11px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  line-height: 0.55;
  color: var(--lime);
  transform: translateY(-4px);
}

.testimonial-card > p {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
}

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-copy .num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  opacity: 0.9;
}

.service-copy .num.cyan {
  color: var(--cyan);
}

.checklist {
  margin: 18px 0 24px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  margin-bottom: 8px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 20px 0 80px;
}

.cta-box {
  border-radius: 20px;
  padding: 32px 24px;
  background: linear-gradient(#111, #111) padding-box,
    linear-gradient(120deg, var(--cyan), var(--lime)) border-box;
  border: 1px solid transparent;
  display: grid;
  gap: 22px;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.cta-meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-meta a:hover {
  color: var(--lime);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 36ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  color: var(--lime);
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col p.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col .footer-contact-item a {
  margin-bottom: 0;
}

.footer-col .footer-contact-item a[href^="mailto:"] {
  white-space: nowrap;
}

.footer-col .footer-contact-item .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime);
}

.footer-bottom {
  margin-top: 36px;
  padding-block: 18px;
  padding-inline: max(32px, env(safe-area-inset-left), env(safe-area-inset-right));
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--dim);
  font-size: 0.82rem;
}

.footer-bottom nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.footer-bottom a:hover,
.footer-bottom a.active {
  color: var(--lime);
  border-color: var(--lime);
  background: rgba(200, 245, 66, 0.08);
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--lime);
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  list-style: disc;
}

.legal a {
  color: var(--cyan);
}

.legal a:hover {
  color: var(--lime);
}

.legal .updated {
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 24px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 56px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  gap: 32px;
}

.contact-card,
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.15);
}

.field.error input,
.field.error textarea,
.field.error select {
  border-color: #ff5a5a;
}

.field .error-text {
  color: #ff8a8a;
  font-size: 0.78rem;
  min-height: 1em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--lime);
  margin: 12px 0;
}

.form-card.is-success .form-grid,
.form-card.is-success .btn,
.form-card.is-success .ct-form-foot,
.form-card.is-success #form-status {
  display: none;
}

.ct-hero {
  padding-bottom: 8px;
}

.ct-shell {
  display: grid;
  gap: 28px;
}

.ct-left .lead {
  max-width: 46ch;
  margin: 10px 0 22px;
  color: #d8d8d8;
}

.ct-title-wrap {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.ct-great {
  position: relative;
  display: inline-block;
}

.ct-bg-script {
  position: absolute;
    left: 65%;
    top: -185%;
    font-family: var(--font-sign);
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 400;
    color: rgb(92 62 28 / 28%);
    line-height: 0.5;
    letter-spacing: 0.01em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.ct-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: -0.03em;
}

.ct-great-text {
  position: relative;
  z-index: 1;
}

.ct-hero h1 em {
  font-style: normal;
  font-size: 1.08em;
}

.ct-info {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 420px;
  padding: 28px 22px 26px;
  background: #101010;
}

.ct-map-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 68%;
  object-fit: cover;
  object-position: right bottom;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.ct-info::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, #101010 0%, #101010 46%, rgba(16, 16, 16, 0.72) 64%, rgba(16, 16, 16, 0.28) 100%);
}

.ct-info > *:not(.ct-map-bg) {
  position: relative;
  z-index: 2;
}

.ct-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-row:first-of-type {
  padding-top: 0;
}

.ct-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
}

.ct-icon .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.ct-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.ct-row p,
.ct-row a {
  color: #cfcfcf;
  font-size: 0.92rem;
  font-weight: 300;
}

.ct-row a:hover {
  color: var(--lime);
}

.ct-care {
  font-family: var(--font-sign);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--lime);
  text-align: right;
  line-height: 1;
  margin-top: auto;
  padding-top: 12px;
}

.ct-right,
.ct-right .form-card {
  height: 100%;
}

.ct-hero .form-card {
  padding: 28px 22px;
}

.form-card .field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ececec;
}

.form-card .field label .icon {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

#form-status {
  margin: 12px 0 0;
}

.ct-form-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.ct-safe {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.ct-safe .icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 1px;
}

.ct-form-foot .btn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ct-values {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.ct-values article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.ct-values .icon {
  width: 24px;
  height: 24px;
  color: var(--lime);
  margin-bottom: 8px;
}

.ct-values h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ct-values p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: var(--muted);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
  transition: transform 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 230, 255, 0.4);
}

.blog-card .body {
  padding: 20px;
}

.blog-card time {
  color: var(--lime);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  margin: 8px 0 10px;
  font-size: 1.15rem;
}

.blog-card p {
  color: var(--muted);
}

button.link-explore {
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
  letter-spacing: 0.16em;
}

.note-box {
  width: min(100%, 720px);
  max-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
}

.note-read {
  overflow: auto;
  padding: 20px 22px 28px;
}

.note-cover {
  min-height: 180px;
  margin-bottom: 18px;
  border-radius: 12px;
}

.note-read h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  margin-bottom: 14px;
}

.note-read .legal p {
  margin-bottom: 14px;
}

.service-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0 20px;
}

.service-work-grid .media {
  min-height: 180px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .service-work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-box {
  width: min(100%, 860px);
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.modal-close {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

.video-ph {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--muted);
}

.video-ph video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  cursor: auto;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.in {
  animation: rise 0.8s var(--ease) forwards;
}

.reveal.zoom.in {
  animation: zoom 0.8s var(--ease) forwards;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}
.reveal.delay-2 {
  animation-delay: 0.2s;
}
.reveal.delay-3 {
  animation-delay: 0.3s;
}
.reveal.delay-4 {
  animation-delay: 0.4s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoom {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: rise 0.9s var(--ease) both;
}

.hero-visual {
  animation: zoom 1s var(--ease) 0.15s both;
}

/* ---------- Misc ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

body.nav-open {
  overflow: hidden;
}

svg.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg,
.stat-icon svg {
  width: 35px;
  height: 35px;
}

/* ---------- Graphic design portfolio ---------- */
.gd-page-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 36px;
}

.gd-cats {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.gd-cat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f0f0f;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s, transform 0.25s;
}

.gd-cat:hover {
  border-color: rgba(46, 230, 255, 0.35);
  transform: translateY(-2px);
}

.gd-cat.active {
  border-color: var(--lime);
  background: rgba(204, 255, 0, 0.06);
}

.gd-cat-num {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lime);
  min-width: 2.2em;
  padding-top: 4px;
}

.gd-cat-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gd-cat-copy strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
}

.gd-cat-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gd-gallery-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.gd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.gd-shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: auto;
  background: #111;
  cursor: pointer;
}

.gd-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.45s var(--ease), transform 0.5s var(--ease);
}

@media (hover: hover) {
  .gd-shot:hover img,
  .gd-shot:focus-visible img {
    filter: grayscale(0);
    transform: scale(1.05);
  }
}

.gd-lightbox {
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.gd-lightbox .gd-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  color: var(--white);
}

.gd-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: none;
}

/* ---------- Portfolio landing ---------- */
.pf-card {
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.pf-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 245, 66, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.pf-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.pf-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.45s var(--ease), transform 0.5s var(--ease);
}

@media (hover: hover) {
  .pf-card:hover .pf-card-media img {
    filter: grayscale(0);
    transform: scale(1.05);
  }
}

.pf-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
  flex: 1;
}

.pf-card-body h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.pf-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.pf-card-body .btn {
  margin-top: auto;
  width: fit-content;
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 8px;
}

.pf-tags li {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
}

.pf-info {
  display: grid;
  gap: 28px;
}

.pf-points {
  display: grid;
  gap: 14px;
}

.pf-point {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  background: #0f0f0f;
}

.pf-point strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--lime);
}

.pf-point p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

/* ---------- Interior design intro ---------- */
.id-hero {
  padding-bottom: 20px;
}

.id-layout {
  display: grid;
  gap: 36px;
}

.id-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.id-badge span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  background: var(--lime);
  color: #000;
  border-radius: 4px;
}

.id-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.id-copy > p {
  color: #e8e8e8;
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 22px;
}

.id-list {
  margin-bottom: 24px;
}

.id-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.id-list .icon {
  width: 22px;
  height: 22px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.id-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.id-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
}

.id-hero-shot {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 280px;
  margin-bottom: 12px;
}

.id-hero-shot img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.id-hero-shot figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
}

.id-quote {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 0.7;
  color: var(--lime);
}

.id-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.id-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  background: #111;
  margin-bottom: 8px;
}

.id-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.id-card-icon {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  color: var(--lime);
}

.id-card-icon .icon {
  width: 14px;
  height: 14px;
}

.id-cards h3 {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.id-cards p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.id-values {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.id-values article {
  text-align: center;
}

.id-values .icon {
  width: 24px;
  height: 24px;
  color: var(--lime);
  margin-inline: auto;
  margin-bottom: 8px;
}

.id-values h3 {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.id-values p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

/* ---------- Photography intro ---------- */
.ph-hero {
  padding-bottom: 20px;
}

.ph-layout {
  display: grid;
  gap: 36px;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px 10px 4px 4px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.ph-badge span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  background: var(--cyan);
  color: #000;
  border-radius: 4px;
}

.ph-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 12px;
}

.ph-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 16px;
}

.ph-copy > p {
  color: #d8d8d8;
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 22px;
}

.ph-list {
  margin-bottom: 24px;
}

.ph-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.ph-list .icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.ph-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ph-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
}

.ph-btn {
  background: linear-gradient(90deg, #00b8e6, var(--cyan));
  color: #000;
}

.ph-btn:hover {
  background: #3de0ff;
}

.ph-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
}

.ph-feature {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  grid-column: 1 / -1;
  min-height: 260px;
}

.ph-feature img,
.ph-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-feature img {
  height: 280px;
}

.ph-feature figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.62);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ph-feature figcaption .icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.ph-thumb {
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.ph-values {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.ph-values article {
  text-align: center;
}

.ph-values .icon {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  margin-inline: auto;
  margin-bottom: 8px;
}

.ph-values h3 {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.ph-values p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

/* ---------- Graphic design intro ---------- */
.gr-hero {
  padding-bottom: 20px;
}

.gr-layout {
  display: grid;
  gap: 36px;
}

.gr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px 10px 4px 4px;
  border: 1px solid rgba(204, 255, 0, 0.4);
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.gr-badge span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  background: var(--lime);
  color: #000;
  border-radius: 4px;
}

.gr-copy h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  margin-bottom: 14px;
}

.gr-copy > p {
  color: #e8e8e8;
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 22px;
}

.gr-list {
  margin-bottom: 24px;
}

.gr-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.gr-list .icon {
  width: 22px;
  height: 22px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.gr-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gr-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
}

.gr-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gr-feature,
.gr-wide,
.gr-thumb {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.gr-feature {
  grid-column: 1 / -1;
  height: 280px;
}

.gr-wide {
  grid-column: 1 / -1;
  height: 160px;
}

.gr-thumb {
  aspect-ratio: 3 / 4;
}

.gr-values {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.gr-values article {
  text-align: center;
}

.gr-values .icon {
  width: 24px;
  height: 24px;
  color: var(--lime);
  margin-inline: auto;
  margin-bottom: 8px;
}

.gr-values h3 {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.gr-values p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

/* ---------- Services: What We Offer ---------- */
.so-hero {
  padding-bottom: 12px;
}

.so-layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.so-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.so-rule {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--cyan);
  margin: 18px 0 16px;
}

.so-copy > p {
  max-width: 38ch;
  color: #e8e8e8;
  font-weight: 300;
  line-height: 1.75;
}

.so-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 300px;
}

.so-panel {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  background: #0d0d0d;
}

.so-panel:nth-child(1) {
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
}

.so-panel:nth-child(2) {
  clip-path: polygon(0 6%, 100% 14%, 100% 100%, 0 100%);
}

.so-panel:nth-child(3) {
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
}

.so-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.so-panel:hover img {
  transform: scale(1.06);
}

.so-panel-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 16px 10px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.82) 100%);
}

.so-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--cyan);
  color: #000;
  flex-shrink: 0;
}

.so-icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.so-panel h2 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 6px;
}

.so-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 18ch;
}

.so-do-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

.so-do-label::before,
.so-do-label::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--border-strong);
}

.service-row .media {
  aspect-ratio: 3 / 2;
  min-height: 0;
  height: auto;
}

.so-values {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.so-values article {
  text-align: center;
}

.so-values .icon {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  margin-inline: auto;
  margin-bottom: 8px;
}

.so-values h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

.so-values p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}
