:root {
  --olive-base: #6B8E23;
  --olive-deep: #556B2F;
  --olive-shadow: #3D4A2A;
  --olive-soft: #8FBC8F;
  --olive-pale: #E0EEE0;
  --sage-veil: #F4F4F0;
  --sand-veil: #E8E8E0;
  --stone-veil: #DCDCD4;
  --paper: #FFFFFF;
  --line-soft: #B8D4B8;
  --ink-soft: #5C6B4F;
  --ink-muted: #8A9778;
  --radius-pill: 999px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-soft: 0 12px 28px rgba(61, 74, 42, 0.10);
  --shadow-mid: 0 16px 32px rgba(61, 74, 42, 0.14);
  --shadow-pop: 0 22px 50px rgba(61, 74, 42, 0.22);
  --gradient-warm: linear-gradient(140deg, #F4F4F0 0%, #E8E8E0 55%, #DCDCD4 100%);
  --gradient-olive: linear-gradient(135deg, #6B8E23 0%, #556B2F 100%);
  --gradient-sage: linear-gradient(135deg, #E0EEE0 0%, #B8D4B8 100%);
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-tech: 'Fira Code', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--olive-shadow);
  background: var(--gradient-warm);
  font-size: 15px;
  line-height: 1.7;
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  min-height: 100vh;
}

strong, p, span, li, a, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

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

a {
  color: var(--olive-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--olive-base);
}

h1, h2, h3, h4 {
  font-family: var(--font-mono);
  color: var(--olive-shadow);
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  line-height: 1.05;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--olive-shadow);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.pure-g {
  letter-spacing: -0.01em;
}

.container-wrap {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.tech-eyebrow {
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tech-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--olive-base);
  border-radius: 2px;
}

.section-pad {
  padding: clamp(60px, 9vw, 130px) 0;
}

.organic-bg {
  position: relative;
  overflow: hidden;
}

.organic-bg::before,
.organic-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.organic-bg::before {
  width: 460px;
  height: 460px;
  background: var(--olive-soft);
  top: -120px;
  right: -120px;
}

.organic-bg::after {
  width: 540px;
  height: 540px;
  background: var(--olive-pale);
  bottom: -160px;
  left: -160px;
}

.organic-bg > * {
  position: relative;
  z-index: 1;
}

.tech-grid-overlay {
  background-image:
    linear-gradient(to right, rgba(184, 212, 184, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184, 212, 184, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 160;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--olive-base);
}

.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--olive-shadow);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(107, 142, 35, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .brand-domain {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--olive-base);
  text-transform: uppercase;
}

.brand-text .brand-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--olive-shadow);
  letter-spacing: -0.01em;
}

.brand-text .brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-soft);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--olive-shadow);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.is-current {
  background: var(--olive-base);
  color: var(--paper);
}

.header-cta {
  margin-left: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  min-height: 46px;
  text-align: center;
}

.btn-primary {
  background: var(--olive-base);
  color: var(--paper);
  box-shadow: 0 8px 22px rgba(107, 142, 35, 0.32);
}

.btn-primary:hover {
  background: var(--olive-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 142, 35, 0.42);
}

.btn-secondary {
  background: var(--paper);
  color: var(--olive-shadow);
  border-color: var(--olive-base);
}

.btn-secondary:hover {
  background: var(--olive-pale);
  color: var(--olive-shadow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--paper);
}

.burger {
  display: none;
  background: var(--olive-base);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: linear-gradient(140deg, #E0EEE0 0%, #B8D4B8 100%);
  padding: 110px 6% 60px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  background: var(--olive-base);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  top: -120px;
  right: -120px;
}

.mobile-drawer::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--olive-soft);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  bottom: -100px;
  left: -100px;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer a {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--olive-shadow);
  padding: 18px 0;
  border-bottom: 1px solid rgba(61, 74, 42, 0.12);
  position: relative;
  z-index: 1;
}

.mobile-drawer .btn {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.hero-section {
  min-height: 92vh;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section .container-wrap {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-subline {
  font-family: var(--font-tech);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--olive-deep);
  margin: 18px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.hero-subline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-subline span::before {
  content: '◆';
  color: var(--olive-base);
  font-size: 10px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-meta {
  margin-top: 38px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--olive-shadow);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(184, 212, 184, 0.6);
  aspect-ratio: 4 / 5;
  max-width: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61, 74, 42, 0.05) 0%, rgba(107, 142, 35, 0.18) 100%);
}

.hero-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--olive-shadow);
  border: 1px solid var(--line-soft);
  z-index: 2;
}

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

.section-head p {
  font-size: 16px;
  color: var(--ink-soft);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.bento-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  border: 1px solid rgba(184, 212, 184, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--olive-shadow);
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-pop);
  z-index: 10;
  border-color: var(--olive-base);
}

.bento-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.bento-wide {
  grid-column: span 2;
}

.bento-card.bento-tall {
  grid-row: span 2;
}

.bento-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bento-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 74, 42, 0.05) 0%, rgba(61, 74, 42, 0.55) 100%);
}

.bento-photo-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--paper);
}

.bento-photo-content h3, .bento-photo-content p {
  color: var(--paper);
}

.bento-photo-content .bento-meta {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.bento-card .bento-num {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--olive-base);
  margin-bottom: 4px;
}

.bento-card .bento-label {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.bento-card .bento-title {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--olive-shadow);
  margin-bottom: 8px;
  line-height: 1.3;
}

.bento-card .bento-price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--olive-base);
  font-weight: 600;
  margin-top: 12px;
}

.bento-card .bento-link {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--olive-base);
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.08em;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--olive-base) 0 8px, transparent 8px 18px);
  z-index: 0;
}

.process-node {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(184, 212, 184, 0.5);
  color: var(--olive-shadow);
}

.process-node:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.process-node .node-num {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--paper);
  background: var(--gradient-olive);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 4px solid var(--sage-veil);
}

.process-node .node-title {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--olive-shadow);
  margin-bottom: 8px;
}

.process-node .node-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

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

.feature-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 212, 184, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--olive-shadow);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-mid);
  z-index: 5;
  border-color: var(--olive-base);
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--olive-base);
  margin-bottom: 8px;
}

.feature-title {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--olive-shadow);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-soft);
}

.team-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(184, 212, 184, 0.4);
}

.team-row {
  display: grid;
  grid-template-columns: 60px 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(184, 212, 184, 0.4);
  cursor: default;
  position: relative;
  color: var(--olive-shadow);
  transition: background 0.25s ease, padding 0.25s ease;
}

.team-row:hover {
  background: var(--olive-pale);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--radius-md);
  z-index: 5;
  position: relative;
  border-bottom-color: transparent;
}

.team-row .t-id {
  font-family: var(--font-mono);
  color: var(--olive-base);
  font-size: 14px;
}

.team-row .t-name {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--olive-shadow);
}

.team-row .t-role {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--olive-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-row .t-detail {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
}

.team-popup {
  display: none;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-pop);
  width: 240px;
  z-index: 10;
  margin-left: 14px;
  border: 1px solid var(--line-soft);
}

.team-row:hover .team-popup {
  display: block;
}

.team-popup img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.team-popup .popup-name {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--olive-shadow);
  margin-bottom: 4px;
}

.team-popup .popup-info {
  font-size: 11px;
  color: var(--ink-soft);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 212, 184, 0.45);
  display: flex;
  flex-direction: column;
  color: var(--olive-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  z-index: 4;
}

.t-stars {
  color: var(--olive-base);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.t-quote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--olive-shadow);
  flex-grow: 1;
  line-height: 1.7;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 212, 184, 0.4);
}

.t-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.t-author-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--olive-shadow);
}

.t-author-meta {
  font-size: 11px;
  color: var(--ink-soft);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 212, 184, 0.45);
  overflow: hidden;
  transition: border-color 0.25s ease;
  color: var(--olive-shadow);
}

.accordion-item.is-open {
  border-color: var(--olive-base);
}

.accordion-trigger {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--olive-shadow);
  font-weight: 600;
  min-height: 60px;
}

.accordion-trigger:focus {
  outline: 2px solid var(--olive-base);
  outline-offset: -2px;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-base);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.accordion-item.is-open .accordion-icon {
  background: var(--olive-base);
  color: var(--paper);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.accordion-item.is-open .accordion-body {
  max-height: 400px;
}

.split-contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(184, 212, 184, 0.45);
}

.form-field {
  margin-bottom: 22px;
  position: relative;
}

.form-field label {
  display: block;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line-soft);
  border-radius: 0;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive-shadow);
  transition: border-color 0.25s ease;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-muted);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--olive-base);
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--olive-pale);
  color: var(--olive-shadow);
}

.contact-info-row .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--olive-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-info-row .label {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 4px;
}

.contact-info-row .value {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--olive-shadow);
  font-weight: 600;
  word-break: break-word;
}

.site-footer {
  background: var(--gradient-olive);
  color: var(--paper);
  border-radius: 40px 40px 0 0;
  padding: 70px 0 30px;
  margin-top: 80px;
}

.site-footer strong, .site-footer p, .site-footer span, .site-footer li, .site-footer a {
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-family: var(--font-body);
  transition: color 0.25s ease;
}

.footer-grid ul a:hover {
  color: var(--paper);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin: 16px 0 0;
}

.footer-brand .brand-block {
  color: var(--paper);
}

.footer-brand .brand-text .brand-domain {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand .brand-text .brand-name,
.footer-brand .brand-text .brand-sub {
  color: var(--paper);
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 90;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  border: 1px solid var(--line-soft);
  padding: 20px 22px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--olive-shadow);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner h5 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--olive-shadow);
  margin: 0;
}

.cookie-banner p {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 9px 16px;
  font-size: 12px;
  min-height: 38px;
}

.compact-hero {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.compact-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}

.compact-hero p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.masonry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 212, 184, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--olive-shadow);
}

.masonry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-mid);
  z-index: 5;
}

.masonry-card .photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.masonry-card.tall .photo {
  height: 320px;
}

.masonry-card .body {
  padding: 22px 24px;
}

.masonry-card .body h3 {
  font-family: var(--font-mono);
  font-size: 17px;
  margin-bottom: 8px;
}

.masonry-card .body p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.masonry-card .meta {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--olive-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(184, 212, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--olive-shadow);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
  border-color: var(--olive-base);
}

.service-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.service-card .badge {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-base);
  background: var(--olive-pale);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.service-card h3 {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--olive-shadow);
}

.service-card .price {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--olive-base);
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.service-card .links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.sticky-photo {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(184, 212, 184, 0.4);
}

.sticky-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.fact-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.fact-cell {
  padding: 22px;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 212, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.fact-cell .num {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--olive-base);
  margin-bottom: 4px;
}

.fact-cell .label {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.thanks-card {
  max-width: 640px;
  margin: 100px auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(184, 212, 184, 0.5);
  color: var(--olive-shadow);
}

.thanks-card .check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-olive);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  font-family: var(--font-mono);
  box-shadow: 0 12px 30px rgba(107, 142, 35, 0.35);
}

.legal-doc {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 212, 184, 0.4);
  color: var(--olive-shadow);
}

.legal-doc h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.legal-doc h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--olive-deep);
}

.legal-doc p,
.legal-doc li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-doc ul {
  padding-left: 22px;
}

.legal-doc .meta-line {
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-base);
  margin-bottom: 24px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(184, 212, 184, 0.45);
  box-shadow: var(--shadow-soft);
  color: var(--olive-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.process-card .step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--olive-base);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.process-card h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--olive-shadow);
  margin-bottom: 10px;
}

.career-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.career-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(184, 212, 184, 0.45);
  box-shadow: var(--shadow-soft);
  color: var(--olive-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.career-card .photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.career-card .tag {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--olive-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 212, 184, 0.45);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--olive-shadow);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.blog-card .photo {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-card .body {
  padding: 22px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .meta {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--olive-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--olive-shadow);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13px;
  color: var(--ink-soft);
  flex-grow: 1;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.error-msg {
  display: block;
  color: #B0432B;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.success-msg {
  background: var(--olive-pale);
  border: 1px solid var(--olive-base);
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--olive-shadow);
  font-family: var(--font-mono);
  font-size: 14px;
  text-align: center;
}

.success-msg.hidden {
  display: none;
}

@media (max-width: 980px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    aspect-ratio: 16 / 11;
    max-height: 460px;
  }

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

  .bento-card.bento-large,
  .bento-card.bento-wide,
  .bento-card.bento-tall {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

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

  .testimonial-row {
    grid-template-columns: 1fr 1fr;
  }

  .team-row {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    max-width: 100%;
    overflow: hidden;
  }

  .team-row .t-role,
  .team-row .t-detail {
    grid-column: 2;
    text-align: left;
  }

  .team-row .t-name {
    font-size: 16px;
    word-break: break-word;
  }

  .team-popup {
    display: none !important;
  }

  .split-contact {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .split-about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sticky-photo {
    position: relative;
    top: 0;
  }

  .sticky-photo img {
    height: 320px;
  }

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

  .service-list {
    grid-template-columns: 1fr;
  }

  .career-list {
    grid-template-columns: 1fr;
  }

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

  .process-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .feature-grid,
  .testimonial-row,
  .bento-grid,
  .process-flow {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  .feature-card,
  .testimonial-card,
  .bento-card,
  .process-node {
    max-width: 100%;
    overflow: hidden;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  .footer-bottom {
    max-width: 100%;
    overflow: hidden;
  }

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

  .legal-doc,
  .thanks-card {
    padding: 30px 22px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .split-contact {
    max-width: 100%;
    overflow-x: hidden;
  }

  .form-field input,
  .form-field textarea {
    max-width: 100%;
  }

  .hero-section {
    min-height: auto;
    padding-top: 80px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}