:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: #111114;
  --line: rgba(255, 255, 255, 0.10);
  --text: #f2f4f7;
  --muted: #a5acb8;
  --heading: #ffffff;
  --neon-orange: #d8dde5;
  --neon-green: #79d8c9;
  --neon-lime: #ffffff;
  --gold: var(--neon-orange);
  --gold-2: var(--neon-green);
  --accent: #ffffff;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 18% 30%, rgba(121, 216, 201, 0.10), transparent 16%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #050505 0%, #101114 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

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

.bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
}

.bg-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  top: 80px;
  left: -120px;
}

.bg-orb-2 {
  width: 420px;
  height: 420px;
  background: rgba(121, 216, 201, 0.10);
  bottom: -120px;
  right: -160px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 9, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 9, 0.94);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a1a1d, #060607);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
  color: #ffffff;
}

.logo-mark::before {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #17191d, #050506);
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background: #050505;
}

.logo-mark.logo-missing .site-logo {
  display: none;
}

.logo-text {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f5f7fa;
}

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

.nav a {
  color: #cfd4dc;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), #ffffff, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  padding-top: 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bfeee6;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), var(--neon-green), transparent);
}

.hero h1,
.hero h2,
.section-heading h2,
.about-content h2,
.contact-info h2,
.page-banner h1,
.page-card h2,
.service-card h3,
.reference-card h3,
.process-step h3,
.feature-card strong,
.logo-card strong,
.site-footer h3 {
  margin: 18px 0 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--heading);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.section-heading h2,
.page-banner h1 {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.about-content h2,
.contact-info h2 {
  max-width: 30ch;
  margin: 0 0 14px;
}

.hero h1,
.hero h2 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  max-width: 16ch;
}

.hero-text,
.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.about-content p,
.contact-info p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: none;
  margin: 0;
  line-height: 1.75;
}

.hero-text {
  margin: 22px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #d7dbe1, #aeb5c0);
  box-shadow:
    0 10px 30px rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f7fa;
}

.btn-block {
  width: 100%;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.note-chip,
.hero-note span,
.about-highlights span,
.why-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dde2ea;
  font-size: 0.92rem;
}

.note-chip {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.note-chip.is-active {
  background: linear-gradient(135deg, rgba(121, 216, 201, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(121, 216, 201, 0.36);
  color: #ffffff;
}

.hero-note-panel {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.note-panel {
  display: none;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.note-panel.is-visible {
  display: block;
}

.note-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.note-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.page-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(121, 216, 201, 0.06));
  color: #eef2f7;
  font-size: 0.88rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.20);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(121, 216, 201, 0.12));
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: auto;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(10, 10, 11, 0.92));
  box-shadow: var(--shadow);
}

.visual-card-main {
  grid-column: 1 / -1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.visual-topline {
  font-size: 0.95rem;
  color: #eef2f7;
  font-weight: 700;
}

.visual-meter {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.visual-meter span {
  position: absolute;
  inset: 0;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--neon-green));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.visual-metrics strong {
  display: block;
  font-size: 1.7rem;
}

.visual-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-card-floating {
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  min-height: 122px;
}

.mini-label {
  display: block;
  color: #bfeee6;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.card-a {
  grid-column: 1 / 2;
}

.card-b {
  grid-column: 2 / 3;
}

.card-c {
  grid-column: 1 / -1;
}

.lead-section {
  padding-top: 34px;
  padding-bottom: 30px;
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at 18% 18%, rgba(121, 216, 201, 0.18), transparent 30%),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(18, 21, 26, 0.96), rgba(5, 5, 6, 0.98) 54%, rgba(8, 10, 13, 0.96));
  box-shadow: var(--shadow);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.lead-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 72%);
  opacity: 0.5;
  pointer-events: none;
}

.lead-grid::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -130px;
  bottom: -160px;
  border-radius: 999px;
  background: rgba(121, 216, 201, 0.16);
  filter: blur(46px);
  pointer-events: none;
}

.lead-copy {
  padding: 16px 12px 16px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.lead-copy h1 {
  margin: 16px 0 0;
  max-width: 13ch;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.05;
  color: var(--heading);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.50);
}

.lead-copy p {
  margin: 18px 0 0;
  max-width: 50ch;
  color: #d6dbe4;
  line-height: 1.75;
}

.lead-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lead-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: #e9edf3;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.lead-showcase {
  width: min(100%, 520px);
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.showcase-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.showcase-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-top strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.showcase-top span {
  display: block;
  color: #b7c0cc;
  font-size: 0.9rem;
  margin-top: 2px;
}

.showcase-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.showcase-flow span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  color: #e7edf5;
  font-size: 0.86rem;
  font-weight: 700;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.showcase-metrics div {
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(121, 216, 201, 0.18);
  background: rgba(121, 216, 201, 0.07);
}

.showcase-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.1;
}

.showcase-metrics span {
  display: block;
  color: #b8c2ce;
  font-size: 0.82rem;
  margin-top: 8px;
  line-height: 1.35;
}

.lead-card {
  padding: 24px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.90), rgba(5, 6, 9, 0.94));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 1;
}

.lead-form {
  gap: 14px;
}

.lead-card .form-row input,
.lead-card .form-row select,
.lead-card .form-row textarea {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
}

.stats {
  padding-top: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.service-card,
.reference-card,
.process-step,
.panel-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-card::before,
.service-card::before,
.reference-card::before,
.process-step::before,
.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(121, 216, 201, 0.05));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.stat-card:hover::before,
.service-card:hover::before,
.reference-card:hover::before,
.process-step:hover::before,
.panel-card:hover::before {
  opacity: 1;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 6px;
}

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

.trust-section {
  padding-top: 20px;
}

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

.logo-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  min-height: 170px;
  justify-items: center;
  text-align: center;
}

.logo-art {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.brand-logo-meta {
  width: 72px;
  height: 72px;
}

.logo-card strong {
  font-size: 1.05rem;
  color: #ffffff;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #eef2f7;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.section-heading p {
  max-width: 62ch;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.services-grid,
.references-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(121, 216, 201, 0.08));
  margin-bottom: 18px;
  position: relative;
  flex: 0 0 auto;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:hover,
.reference-card:hover,
.process-step:hover,
.panel-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card p {
  margin-top: 0;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 96px;
}

.service-link {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.service-card h3 {
  min-height: 52px;
  color: #ffffff;
}

.service-card strong {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.service-card h3,
.reference-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  text-wrap: balance;
  min-height: 2.6em;
}

.service-card p,
.reference-card span,
.process-step p,
.footer-text,
.footer-bottom p,
.about-content p {
  color: var(--muted);
}

.service-card p,
.process-step p,
.blog-card p {
  line-height: 1.75;
}

.about-grid,
.contact-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.about-content p + p {
  margin-top: 14px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  padding: 24px;
}

.panel-card span {
  color: #bfeee6;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.panel-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.reference-card {
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.reference-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  min-height: 2.6em;
}

.reference-card p {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 2.2em;
}

.reference-card span {
  display: block;
  margin-top: 0;
  line-height: 1.7;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #bfeee6;
}

.why-grid {
  align-items: center;
}

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

.why-item {
  justify-content: flex-start;
  min-height: 56px;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
}

.contact-card {
  padding: 18px 20px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-card span {
  display: block;
  color: #bfeee6;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  color: var(--text);
  margin: 0;
}

.contact-form-wrap {
  padding: 20px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid var(--line);
  background: rgba(9, 13, 24, 0.85);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f5f7fa;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f7fa;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row select {
  color: #f5f7fa;
}

.form-row select option {
  color: #111827;
  background: #ffffff;
}

.form-row select option[value=""] {
  color: #6b7280;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #8f97a5;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(121, 216, 201, 0.50);
  box-shadow: 0 0 0 4px rgba(121, 216, 201, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--gold-2);
  font-weight: 600;
}

.site-footer {
  padding: 50px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 9, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-logo {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: center;
}

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

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

.page-hero {
  padding: 72px 0 30px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.page-banner {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(121, 216, 201, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-banner h1 {
  margin: 12px 0 12px;
  font-size: clamp(1.85rem, 3.4vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  max-width: 24ch;
}

.page-banner p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.75;
}

.page-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  padding: 24px;
  box-shadow: var(--shadow);
}

.page-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--heading);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.neon-section {
  padding-top: 30px;
}

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

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at top left, rgba(121, 216, 201, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-top strong {
  font-size: 1.15rem;
  color: var(--heading);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef2f7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.section-soft {
  padding-top: 0;
}

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

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

.blog-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 14, 16, 0.92));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

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

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #eef2f7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.16rem;
  color: var(--heading);
  line-height: 1.25;
  min-height: 3.1em;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  min-height: 4.8em;
}

.blog-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bfeee6;
  font-weight: 700;
}

.blog-card a::after {
  content: "→";
  transition: transform 0.25s ease;
}

.blog-card a:hover::after {
  transform: translateX(3px);
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .lead-grid,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .services-grid,
  .references-grid,
  .process-grid,
  .feature-grid,
  .blog-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
  }

  .lead-copy h1 {
    max-width: 100%;
  }

  .lead-grid {
    min-height: auto;
    background:
      radial-gradient(circle at 20% 14%, rgba(121, 216, 201, 0.16), transparent 34%),
      linear-gradient(135deg, rgba(18, 21, 26, 0.96), rgba(5, 5, 6, 0.98));
  }

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

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

  .section-heading h2,
  .about-content h2,
  .contact-info h2,
  .page-banner h1,
  .service-card h3,
  .reference-card h3,
  .reference-card p,
  .blog-card h3,
  .blog-card p,
  .process-step h3 {
    min-height: auto;
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 12px;
    color: #17191d;
  }

  .nav a:hover {
    color: #050505;
    background: rgba(0, 0, 0, 0.06);
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
  }

  .lead-section {
    padding-top: 28px;
  }

  .lead-grid {
    padding: 18px;
    gap: 18px;
    border-radius: 24px;
  }

  .lead-card {
    padding: 18px;
    border-radius: 22px;
  }

  .lead-copy {
    padding: 6px 2px 0;
  }

  .lead-copy p {
    line-height: 1.65;
  }

  .lead-badges span {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .lead-showcase {
    display: none;
  }

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

  .visual-card-main {
    min-height: 220px;
  }

  .card-a {
    grid-column: auto;
  }

  .card-b {
    grid-column: auto;
  }

  .card-c {
    grid-column: auto;
  }

  .stats-grid,
  .services-grid,
  .references-grid,
  .process-grid,
  .feature-grid,
  .blog-grid,
  .logo-grid,
  .contact-cards,
  .why-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 30px;
  }
}
