:root {
  --bg: #050807;
  --panel: #0b1210;
  --panel-2: #101a16;
  --line: rgba(93, 255, 158, 0.24);
  --green: #39ff88;
  --green-2: #00b963;
  --cyan: #8bf8ff;
  --text: #eef8f2;
  --muted: #9aada2;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 760px;
  background:
    linear-gradient(180deg, rgba(6, 44, 25, 0.86) 0%, rgba(5, 8, 7, 0.62) 58%, rgba(5, 8, 7, 0) 100%),
    radial-gradient(circle at 9% 14%, rgba(57, 255, 136, 0.18), transparent 24%),
    radial-gradient(circle at 91% 18%, rgba(139, 248, 255, 0.13), transparent 26%);
  opacity: 0.82;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(5, 8, 7, 0.72)),
    rgba(5, 8, 7, 0.78);
  border-bottom: 1px solid rgba(57, 255, 136, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(154px, 15vw, 206px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(57, 255, 136, 0.22));
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--green);
}

.nav a.active,
.nav a[aria-current="page"] {
  color: var(--green);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(93, 255, 158, 0.18);
  background: rgba(7, 15, 12, 0.72);
}

.language-switch a {
  min-width: 32px;
  padding: 7px 8px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.language-switch a[aria-current="true"] {
  color: var(--bg);
  background: var(--green);
}

.hero,
.page-hero,
.compact-hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  padding: 138px clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
  background: transparent;
}

.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-hero > *:not(.hex-field) {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.hero::before,
.page-hero::before,
.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(57, 255, 136, 0.2), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(139, 248, 255, 0.08), transparent 25%),
    linear-gradient(135deg, rgba(0, 185, 99, 0.1), transparent 45%);
  pointer-events: none;
}

.page-hero h1 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 4vw, 62px);
}

.page-hero .lead,
.page-hero .actions,
.page-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hex-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  background: none;
  mask-image: none;
}

.hex-field::before,
.hex-field::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -18%;
  width: 48%;
  background-image: url("hex-grid.svg");
  background-size: 380px;
  opacity: 0.48;
  pointer-events: none;
}

.hex-field::before {
  left: 0;
  mask-image: radial-gradient(ellipse at 0% 16%, #000 0%, rgba(0, 0, 0, 0.92) 22%, rgba(0, 0, 0, 0.36) 48%, transparent 78%);
}

.hex-field::after {
  right: 0;
  mask-image: radial-gradient(ellipse at 100% 16%, #000 0%, rgba(0, 0, 0, 0.92) 24%, rgba(0, 0, 0, 0.36) 50%, transparent 80%);
}

.hero::after,
.page-hero::after,
.compact-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 7, 0.54) 46%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero + .section,
.compact-hero + .contact {
  position: relative;
  margin-top: -220px;
  padding-top: 188px;
  background: linear-gradient(180deg, rgba(5, 8, 7, 0) 0%, rgba(5, 8, 7, 0.74) 72px, var(--bg) 168px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.07;
  letter-spacing: 0;
}

.hero-logo {
  display: block;
  width: min(560px, 88vw);
  height: auto;
  margin: 0 0 30px;
  filter: drop-shadow(0 0 36px rgba(57, 255, 136, 0.18));
}

h2 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--green);
  border: 1px solid rgba(57, 255, 136, 0.2);
  background: rgba(5, 8, 7, 0.58);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #04110a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 18px 42px rgba(57, 255, 136, 0.2);
}

.button.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(12, 22, 18, 0.76);
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.hex-cluster {
  position: absolute;
  inset: -36px -12px auto auto;
  width: min(100%, 460px);
  height: 390px;
  pointer-events: none;
}

.hex-cluster span {
  position: absolute;
  display: block;
  width: 116px;
  height: 132px;
  background:
    linear-gradient(135deg, rgba(57, 255, 136, 0.14), rgba(139, 248, 255, 0.04)),
    rgba(11, 18, 16, 0.58);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.hex-cluster span::after {
  display: none;
}

.hex-cluster span:nth-child(1) {
  top: 0;
  left: 172px;
}

.hex-cluster span:nth-child(2) {
  top: 98px;
  left: 84px;
  background-color: rgba(57, 255, 136, 0.11);
}

.hex-cluster span:nth-child(3) {
  top: 98px;
  left: 260px;
}

.hex-cluster span:nth-child(4) {
  top: 196px;
  left: 0;
  opacity: 0.68;
}

.hex-cluster span:nth-child(5) {
  top: 196px;
  left: 172px;
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.24), rgba(139, 248, 255, 0.10));
}

.hex-cluster span:nth-child(6) {
  top: 196px;
  left: 344px;
  opacity: 0.74;
}

.hex-cluster span:nth-child(7) {
  top: 294px;
  left: 260px;
  opacity: 0.52;
}

.status-panel {
  position: relative;
  z-index: 1;
  margin-top: 88px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 26, 22, 0.92), rgba(6, 11, 9, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 32px 80px var(--shadow);
}

.status-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.56), transparent 40%, rgba(139, 248, 255, 0.2));
  border-radius: 8px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--green);
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(57, 255, 136, 0.14);
}

.metric span {
  color: var(--muted);
}

.metric strong {
  grid-row: 2;
  font-size: 18px;
}

.metric em {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.section,
.contact {
  padding: 88px clamp(20px, 5vw, 72px);
}

.section-head,
.split,
.contact,
.care-card {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head p,
.split-copy {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(57, 255, 136, 0.14);
  border-bottom: 1px solid rgba(57, 255, 136, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.9), rgba(5, 8, 7, 0.98)),
    rgba(5, 8, 7, 0.95);
  overflow: hidden;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(57, 255, 136, 0.12), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(139, 248, 255, 0.09), transparent 22%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.98), rgba(5, 8, 7, 0.58) 18%, rgba(5, 8, 7, 0.58) 82%, rgba(5, 8, 7, 0.98)),
    linear-gradient(180deg, rgba(5, 8, 7, 0.22), rgba(5, 8, 7, 0.98));
  pointer-events: none;
}

.intro-item {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 150px;
  padding: 26px;
  background: rgba(8, 14, 12, 0.88);
  backdrop-filter: blur(8px);
}

.intro-item:first-child {
  padding-left: clamp(20px, 5vw, 72px);
}

.intro-item:last-child {
  padding-right: clamp(20px, 5vw, 72px);
}

.intro-item:hover {
  background:
    radial-gradient(circle at 88% 10%, rgba(57, 255, 136, 0.12), transparent 34%),
    rgba(8, 14, 12, 0.96);
}

.intro-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 20px;
}

.intro-item span {
  color: var(--muted);
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.08), transparent 46%),
    var(--panel);
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
}

.card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -34px;
  width: 104px;
  height: 118px;
  border: 1px solid rgba(139, 248, 255, 0.16);
  background: rgba(57, 255, 136, 0.04);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.card p,
.contact p,
.price-card p,
.care-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card ul,
.compare-box ul,
.price-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.card li,
.compare-box li,
.price-card li {
  position: relative;
  padding-left: 18px;
}

.card li::before,
.compare-box li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(57, 255, 136, 0.45);
}

.pain-section {
  background: linear-gradient(180deg, transparent, rgba(139, 248, 255, 0.035), transparent);
}

.comparison,
.pricing-grid,
.deliverables {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.comparison {
  grid-template-columns: 0.9fr 1.1fr;
}

.compare-box,
.price-card,
.care-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(139, 248, 255, 0.10), transparent 34%),
    var(--panel-2);
}

.compare-box::after,
.price-card::after,
.care-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -48px;
  width: 150px;
  height: 172px;
  border: 1px solid rgba(57, 255, 136, 0.16);
  background: rgba(57, 255, 136, 0.035);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.active-box {
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 255, 136, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(57, 255, 136, 0.12), rgba(11, 18, 16, 0.94));
}

.packages-section {
  background: transparent;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(57, 255, 136, 0.44);
  background:
    radial-gradient(circle at 74% 10%, rgba(57, 255, 136, 0.25), transparent 32%),
    linear-gradient(145deg, rgba(57, 255, 136, 0.15), rgba(11, 18, 16, 0.94));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26), 0 0 70px rgba(57, 255, 136, 0.08);
}

.price {
  display: block;
  margin: 22px 0 0;
  color: var(--green);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
}

.work-section {
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(57, 255, 136, 0.04), transparent);
}

.references-section {
  background:
    radial-gradient(circle at 12% 30%, rgba(57, 255, 136, 0.08), transparent 30%),
    linear-gradient(180deg, transparent, rgba(139, 248, 255, 0.025), transparent);
}

.reference-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.case-study-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.82fr);
}

.database-reference-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.database-reference-grid .case-card {
  grid-column: span 2;
}

.reference-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(16, 26, 22, 0.90), rgba(6, 11, 9, 0.90));
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
}

.reference-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 170px;
  height: 190px;
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.10), rgba(139, 248, 255, 0.04));
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  pointer-events: none;
}

.reference-card.featured {
  grid-row: span 2;
  min-height: 548px;
  background:
    radial-gradient(circle at 76% 16%, rgba(57, 255, 136, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(57, 255, 136, 0.10), rgba(6, 11, 9, 0.94));
  border-color: rgba(57, 255, 136, 0.30);
}

.case-card {
  grid-row: span 3;
}

.case-preview {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  margin: 28px 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 255, 136, 0.20), transparent 34%),
    linear-gradient(145deg, rgba(5, 8, 7, 0.84), rgba(16, 26, 22, 0.92));
  border: 1px solid rgba(57, 255, 136, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.case-preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(5, 8, 7, 0.72);
  border-bottom: 1px solid rgba(57, 255, 136, 0.14);
  font-size: 13px;
}

.case-preview-bar i {
  width: 8px;
  height: 8px;
  background: rgba(57, 255, 136, 0.62);
  border-radius: 50%;
}

.case-preview-bar strong {
  margin-left: 8px;
  font-weight: 800;
}

.case-preview-screen {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(57, 255, 136, 0.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(57, 255, 136, 0.035) 0 1px, transparent 1px 54px);
}

.case-preview-screen.image-preview {
  display: block;
  overflow: hidden;
  min-height: 310px;
  padding: 0;
}

.case-preview-screen.image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: top center;
}

.case-preview-title {
  max-width: 360px;
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.case-preview-line {
  width: 54%;
  height: 10px;
  background: rgba(238, 248, 242, 0.16);
  border-radius: 999px;
}

.case-preview-line.wide {
  width: 74%;
}

.case-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 16px;
  color: #04110a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 6px;
  font-weight: 900;
}

.case-preview-note {
  color: var(--muted);
  font-weight: 800;
}

.reference-card h3 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-top: 24px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
}

.reference-card p,
.reference-points {
  position: relative;
  z-index: 1;
}

.reference-card p {
  color: var(--muted);
  line-height: 1.68;
}

.case-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.case-stats div {
  min-height: 92px;
  padding: 16px;
  background: rgba(5, 8, 7, 0.52);
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
}

.case-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.case-stats span {
  color: var(--muted);
  line-height: 1.45;
}

.reference-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(57, 255, 136, 0.16);
}

.reference-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.reference-meta strong {
  color: var(--green);
}

.reference-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.reference-points li {
  position: relative;
  padding-left: 18px;
}

.reference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.42);
}

.reference-process {
  background:
    linear-gradient(180deg, transparent, rgba(57, 255, 136, 0.035), transparent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.showcase {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(139, 248, 255, 0.1), transparent 36%),
    var(--panel-2);
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
}

.showcase::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -42px;
  width: 150px;
  height: 172px;
  border: 1px solid rgba(57, 255, 136, 0.18);
  background: rgba(57, 255, 136, 0.04);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.showcase h3 {
  margin-top: 26px;
  font-size: 26px;
}

.showcase p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.68;
}

.primary-showcase {
  grid-row: span 2;
  min-height: 438px;
  background:
    radial-gradient(circle at 72% 22%, rgba(57, 255, 136, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(57, 255, 136, 0.12), rgba(11, 18, 16, 0.92));
}

.primary-showcase h3 {
  max-width: 460px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 52px;
  margin-bottom: 32px;
  color: var(--green);
  background: rgba(57, 255, 136, 0.08);
  border: 1px solid var(--line);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  font-size: 12px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid rgba(57, 255, 136, 0.14);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid rgba(57, 255, 136, 0.14);
  border-radius: 8px;
}

.timeline div::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 34px;
  height: 39px;
  border: 1px solid rgba(57, 255, 136, 0.18);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.timeline strong {
  color: var(--green);
}

.deliverables-section {
  background:
    linear-gradient(180deg, transparent, rgba(57, 255, 136, 0.04), transparent);
}

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

.deliverables div {
  min-height: 165px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.07), transparent 52%),
    var(--panel);
  border: 1px solid rgba(57, 255, 136, 0.15);
  border-radius: 8px;
}

.deliverables strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
}

.deliverables span {
  color: var(--muted);
  line-height: 1.6;
}

.care-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
  background:
    radial-gradient(circle at 88% 18%, rgba(139, 248, 255, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(57, 255, 136, 0.12), rgba(16, 26, 22, 0.86));
}

.care-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.care-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid rgba(57, 255, 136, 0.18);
  background: rgba(5, 8, 7, 0.42);
  border-radius: 6px;
  font-weight: 700;
}

.tech-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid rgba(57, 255, 136, 0.14);
  background: rgba(57, 255, 136, 0.14);
}

.tech-item {
  min-height: 150px;
  padding: 26px;
  background: rgba(8, 14, 12, 0.94);
}

.tech-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 20px;
}

.tech-item span {
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.12), rgba(16, 26, 22, 0.84));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-page {
  margin-bottom: 88px;
}

.contact-copy {
  min-width: 0;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 44px clamp(20px, 5vw, 48px);
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.12), rgba(16, 26, 22, 0.84));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-strip p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(5, 8, 7, 0.72);
  border: 1px solid rgba(57, 255, 136, 0.18);
  border-radius: 6px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(57, 255, 136, 0.72);
  box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.10);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.captcha-row {
  min-height: 65px;
  max-width: 100%;
  overflow-x: auto;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}

.form-message.success {
  color: #04110a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.form-message.error {
  color: #ffd6d6;
  background: rgba(255, 82, 82, 0.12);
  border: 1px solid rgba(255, 82, 82, 0.28);
}

.mail-link {
  color: var(--muted);
  font-weight: 800;
}

.mail-link:hover {
  color: var(--green);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(57, 255, 136, 0.14);
  background: rgba(5, 8, 7, 0.78);
  font-size: 14px;
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero,
  .page-hero,
  .compact-hero {
    padding-top: 64px;
    min-height: auto;
  }

  .page-hero {
    min-height: 430px;
    padding-bottom: 120px;
  }

  .compact-hero {
    min-height: 430px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.08;
  }

  .page-hero .lead {
    max-width: 100%;
    font-size: 17px;
  }

  .page-hero + .section,
  .compact-hero + .contact {
    margin-top: -86px;
    padding: 104px clamp(18px, 5vw, 28px) 64px;
    background: linear-gradient(180deg, rgba(5, 8, 7, 0) 0%, rgba(5, 8, 7, 0.82) 58px, var(--bg) 132px);
  }

  .hero-grid,
  .cards,
  .cards-4,
  .split,
  .showcase-grid,
  .reference-grid,
  .tech-band,
  .intro-band,
  .comparison,
  .pricing-grid,
  .deliverables,
  .care-card {
    grid-template-columns: 1fr;
  }

  .deliverables {
    gap: 12px;
  }

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

  .primary-showcase {
    grid-row: auto;
    min-height: 300px;
  }

  .reference-card.featured {
    grid-row: auto;
    min-height: 360px;
  }

  .case-study-grid,
  .database-reference-grid,
  .case-stats {
    grid-template-columns: 1fr;
  }

  .database-reference-grid .case-card {
    grid-column: auto;
  }

  .case-preview-screen {
    min-height: 220px;
    padding: 24px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hex-cluster {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(0.82);
    transform-origin: top center;
  }

  .status-panel {
    margin-top: 120px;
  }

  .contact {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 36px;
  }

  .contact-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page-hero,
  .compact-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .compact-hero {
    min-height: 400px;
  }

  .page-hero + .section,
  .compact-hero + .contact {
    margin-top: -70px;
    padding: 86px 18px 56px;
  }

  .contact-copy,
  .contact-form {
    width: 100%;
  }

  .contact-form textarea {
    min-height: 132px;
  }

  .mail-link {
    overflow-wrap: anywhere;
  }
}
