﻿:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --bg-card: #101f35;
  --primary: #38bdf8;
  --primary-soft: rgba(56, 189, 248, 0.12);
  --secondary: #22c55e;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.22);
  --white: #ffffff;
  --danger: #ef4444;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 34%),
              radial-gradient(circle at top right, rgba(34, 197, 94, 0.09), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.topbar {
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #06111f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.25);
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dbeafe;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(56, 189, 248, 0.10);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 11px;
  cursor: pointer;
}

.hero {
  padding: 92px 0 62px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.11);
  border: 1px solid rgba(56, 189, 248, 0.32);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}

h1, h2, h3 {
  line-height: 1.14;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -1px;
}

h3 {
  font-size: 20px;
}

.lead {
  color: #cbd5e1;
  font-size: 18px;
  margin: 22px 0 0;
  max-width: 700px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #06111f;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.24);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--white);
  background: rgba(255,255,255,0.035);
}

.btn-secondary:hover {
  border-color: rgba(56, 189, 248, 0.45);
  color: var(--primary);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(16, 31, 53, 0.88), rgba(13, 27, 47, 0.78));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(56, 189, 248, 0.10);
  border-radius: 22px;
  pointer-events: none;
}

.security-map {
  position: relative;
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(56,189,248,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(56,189,248,0.25), transparent 34%),
    #081426;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.11), 0 0 30px rgba(56, 189, 248, 0.55);
}

.n1 { top: 22%; left: 20%; }
.n2 { top: 38%; right: 24%; background: var(--secondary); box-shadow: 0 0 0 8px rgba(34,197,94,.12), 0 0 30px rgba(34,197,94,.45); }
.n3 { bottom: 25%; left: 36%; }
.n4 { bottom: 18%; right: 18%; background: #8b5cf6; box-shadow: 0 0 0 8px rgba(139,92,246,.12), 0 0 30px rgba(139,92,246,.45); }

.panel-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.20);
  backdrop-filter: blur(12px);
}

.panel-card strong {
  display: block;
  margin-bottom: 6px;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255,255,255,0.035);
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--primary);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  margin: 14px 0 0;
}

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

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(16,31,53,0.84), rgba(13,27,47,0.62));
  min-height: 100%;
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.36);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

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

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

.service-group {
  margin-top: 26px;
}

.service-group-title {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 18px;
}

.page-hero {
  padding: 74px 0 42px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.page-hero p {
  color: var(--muted);
  max-width: 780px;
  font-size: 17px;
}

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

.reference-logo {
  min-height: 96px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

.reference-logo img {
  max-height: 56px;
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.9;
}

.notice {
  border-left: 4px solid var(--primary);
  background: rgba(56, 189, 248, 0.08);
  padding: 18px 20px;
  border-radius: 14px;
  color: #dbeafe;
}

.cta {
  border: 1px solid rgba(56, 189, 248, 0.30);
  border-radius: 26px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(16,31,53,0.88), rgba(13,27,47,0.72));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta p {
  color: var(--muted);
  margin: 10px 0 0;
}

.contact-box {
  display: grid;
  gap: 14px;
}

.contact-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.035);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

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

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.contact-cta p {
  margin: 0;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-card p,
.solution-card ul {
  margin-top: 0;
}

.solution-meta {
  display: grid;
  gap: 8px;
}

.solution-meta span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.solution-meta p {
  color: var(--muted);
  margin: 0;
}

.solution-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

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

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: rgba(56, 189, 248, 0.55);
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 38px 0;
  color: var(--muted);
  background: rgba(7, 17, 31, 0.84);
}

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

.footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer a {
  display: block;
  margin: 7px 0;
}

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

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 13px;
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
  }

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

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

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

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 58px 0 42px;
  }

  .grid-3,
  .stats,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .security-map {
    min-height: 320px;
  }

  .nav {
    height: 70px;
  }

  h1 {
    letter-spacing: -1px;
  }
}

/* Securebyt logo entegrasyonu */
.logo {
  gap: 14px;
}

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

.logo-mark,
.logo-text {
  display: none;
}

.footer-brand-logo {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
}

.hero-brand {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-brand img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
}

.security-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.68)),
    url("../logo/lacivert.jpg");
  background-size: cover, 82% auto;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.panel-card {
  z-index: 2;
}

.node {
  z-index: 2;
}

@media (max-width: 620px) {
  .logo-img {
    height: 38px;
    max-width: 210px;
  }

  .footer-brand-logo {
    height: 42px;
  }

  .hero-brand img {
    max-width: 280px;
  }
}

/* Securebyt görünür logo düzeltmesi */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.logo-img {
  display: none !important;
}

.logo-mark,
.logo-text {
  display: initial;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid !important;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.16);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.10);
}

.logo-mark img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex !important;
  flex-direction: column;
  line-height: 1.05;
  color: #e8d8cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.logo-text span {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0;
}

.nav {
  justify-content: space-between;
}

.nav-links {
  margin-left: auto;
}

.hero-brand {
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: auto;
}

.hero-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

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

.hero-brand-text strong {
  color: #e8d8cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
}

.hero-brand-text span {
  color: #94a3b8;
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-mark img,
.hero-brand img,
.footer-brand img {
  filter: invert(1);
  opacity: 0.9;
}

.footer-brand strong {
  display: block;
  color: #e8d8cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.footer-brand span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 5px;
}

.footer-brand-logo {
  display: none !important;
}

@media (max-width: 620px) {
  .logo {
    min-width: auto;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-mark img {
    width: 24px;
    height: 24px;
  }

  .logo-text {
    font-size: 21px;
  }

  .logo-text span {
    display: none;
  }

  .hero-brand-text strong {
    font-size: 22px;
  }

  .hero-brand-text span {
    font-size: 12px;
  }
}

/* Hizmet detay sayfaları ve secure-map yazı düzeltmesi */
.panel-card {
  display: none !important;
}

.panel-caption {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.panel-caption strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 6px;
  font-size: 16px;
}

.panel-caption p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.card-link::after {
  content: "Detayları incele →";
  margin-top: auto;
  padding-top: 18px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.card-link:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.detail-content {
  display: grid;
  gap: 22px;
}

.detail-content .card h2 {
  margin-bottom: 12px;
}

.detail-content .card p {
  margin-top: 0;
}

.detail-content .card ul {
  margin-top: 12px;
}

.sidebar-card {
  position: sticky;
  top: 104px;
  align-self: start;
  min-height: 0;
  height: fit-content;
}

.service-nav {
  display: grid;
  gap: 8px;
}

.service-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 14px;
}

.service-nav a:hover {
  color: var(--primary);
  border-color: rgba(56, 189, 248, 0.30);
}

.breadcrumb {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--primary);
}

.check-list {
  list-style: none;
  padding-left: 0 !important;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 920px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

/* Marka yüzey standardizasyonu ve dönüşüm odaklı kartlar */
:root {
  --bg: #06101d;
  --bg-soft: #0a1829;
  --bg-card: #0f2034;
  --surface: rgba(8, 20, 36, 0.78);
  --surface-strong: rgba(13, 28, 48, 0.88);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.12), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(34, 197, 94, 0.075), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #081426 46%, #06101d 100%);
}

.topbar {
  background: rgba(5, 14, 26, 0.9);
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at 16% 8%, rgba(56, 189, 248, 0.16), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(34, 197, 94, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(5, 14, 26, 0.62), rgba(8, 20, 36, 0.20));
}

.section {
  background: linear-gradient(180deg, rgba(6, 16, 29, 0.16), rgba(8, 20, 36, 0.22));
}

.section-muted {
  background:
    radial-gradient(circle at 82% 14%, rgba(56, 189, 248, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(10, 24, 41, 0.46), rgba(7, 17, 31, 0.30));
}

.hero-panel,
.card,
.stat,
.contact-item,
.reference-logo,
.panel-caption {
  background:
    linear-gradient(180deg, rgba(15, 32, 52, 0.88), rgba(8, 20, 36, 0.66));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.card,
.stat,
.reference-logo,
.contact-item,
.cta,
.hero-panel,
.sidebar-card {
  border-color: rgba(148, 163, 184, 0.20);
}

.card:hover,
.card-link:hover,
.service-nav a:hover {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(56, 189, 248, 0.05);
}

.cta {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(15, 32, 52, 0.90), rgba(8, 20, 36, 0.78));
}

.need-card {
  min-height: 270px;
}

.need-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.24);
  box-shadow: inset 0 0 24px rgba(56, 189, 248, 0.06);
  font-size: 13px;
  letter-spacing: 0;
}

.need-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.10), transparent 34%),
    radial-gradient(circle at 85% 16%, rgba(34, 197, 94, 0.08), transparent 30%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.need-card:hover::before {
  opacity: 1;
}

.need-card h3,
.need-card p,
.need-card .icon,
.need-card::after {
  position: relative;
  z-index: 1;
}

.value-card .icon {
  font-size: 13px;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.sector-card {
  min-height: 180px;
}

.sector-card h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(34, 197, 94, 0.75));
}

.reference-teaser {
  border: 1px solid rgba(56, 189, 248, 0.30);
  border-radius: 26px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(15, 32, 52, 0.90), rgba(8, 20, 36, 0.78));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.reference-teaser p {
  color: var(--muted);
  max-width: 760px;
}

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

.service-detail-shell > .cta {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.service-detail-shell > .cta h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0;
}

.service-detail-shell > .cta .btn {
  flex: 0 0 auto;
}

.solution-mockup-card {
  overflow: hidden;
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading p {
  max-width: 760px;
}

.solution-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(56, 189, 248, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(34, 197, 94, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(5, 16, 30, 0.96), rgba(6, 18, 33, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.20);
}

.solution-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

.solution-mockup > * {
  position: relative;
  z-index: 1;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.mockup-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.55);
}

.mockup-topbar span:first-child {
  background: rgba(56, 189, 248, 0.78);
}

.mockup-topbar strong {
  margin-left: 8px;
  color: var(--text);
  letter-spacing: 0;
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.mockup-metrics div,
.mockup-side,
.mockup-main,
.mockup-right,
.mockup-alert,
.mockup-log,
.mockup-footer-row {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 21, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.mockup-metrics div {
  min-height: 86px;
  border-radius: 18px;
  padding: 16px;
}

.mockup-metrics span,
.mockup-side-title,
.mockup-alert span,
.mockup-log,
.mockup-footer-row,
.mockup-table,
.mockup-relation-grid span,
.mockup-right span {
  color: var(--muted);
  font-size: 13px;
}

.mockup-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
}

.mockup-metrics div:last-child strong {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.35;
}

.mockup-workspace {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
}

.docs-workspace {
  grid-template-columns: 170px 1fr 190px;
}

.mockup-side,
.mockup-main,
.mockup-right {
  border-radius: 20px;
  padding: 16px;
}

.mockup-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-side-title {
  margin-bottom: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-side span {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(15, 32, 52, 0.54);
}

.mockup-side span.active {
  color: var(--text);
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.12);
}

.mockup-main {
  display: grid;
  gap: 12px;
}

.mockup-alert {
  border-radius: 16px;
  padding: 14px 16px;
}

.mockup-alert strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.mockup-alert.high {
  border-color: rgba(248, 113, 113, 0.30);
}

.mockup-alert.medium {
  border-color: rgba(56, 189, 248, 0.28);
}

.mockup-alert.blocked {
  border-color: rgba(34, 197, 94, 0.28);
}

.mockup-log {
  display: grid;
  gap: 8px;
  border-radius: 16px;
  padding: 14px 16px;
}

.mockup-log div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.mockup-log span {
  color: var(--primary);
  font-weight: 800;
}

.mockup-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px 16px;
}

.mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mockup-tags em,
.mockup-table em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 5px 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.tag-low,
.mockup-table em {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.tag-medium {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.tag-high {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.mockup-table {
  display: grid;
  gap: 8px;
}

.mockup-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 82px 128px;
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  padding: 12px;
  background: rgba(15, 32, 52, 0.54);
}

.mockup-table .mockup-table-head {
  color: var(--muted);
  background: transparent;
  padding-top: 0;
  padding-bottom: 4px;
}

.mockup-table strong {
  color: var(--text);
}

.mockup-relation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-relation-grid div,
.mockup-right div {
  border-radius: 14px;
  padding: 12px;
  background: rgba(15, 32, 52, 0.54);
}

.mockup-relation-grid strong,
.mockup-right strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  line-height: 1.35;
}

.mockup-right {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.policy-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.policy-card h2,
.policy-note h2,
.policy-document h2 {
  letter-spacing: 0;
}

.policy-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.policy-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.policy-note {
  margin-top: 18px;
}

.policy-document {
  max-width: 980px;
  margin: 0 auto;
}

.policy-document h2:not(:first-child) {
  margin-top: 34px;
}

.policy-document h3 {
  margin: 22px 0 8px;
}

.policy-back {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer {
  background: rgba(5, 14, 26, 0.94);
}

@media (max-width: 920px) {
  .process-grid,
  .reference-teaser,
  .mockup-metrics,
  .mockup-workspace,
  .docs-workspace,
  .mockup-relation-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .reference-teaser .hero-actions {
    margin-top: 0;
  }

  .solution-mockup {
    padding: 14px;
  }

  .mockup-footer-row,
  .mockup-log div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .mockup-table > div {
    grid-template-columns: 1fr;
  }

  .mockup-metrics div {
    min-height: auto;
  }
}
