:root {
  --indigo: #4338ca;
  --indigo-dark: #312e81;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --cyan-dark: #0e7490;
  --slate-50: #f8fafc;
  --slate-100: #e2e8f0;
  --slate-700: #334155;
  --slate-800: #1f2937;
  --slate-900: #0f172a;
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --card: #111827;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.65)),
    url("images/bg_05.jpeg") center/cover fixed no-repeat;
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.35em;
  color: #fff;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 32px 0 80px;
  background: linear-gradient(130deg, rgba(67, 56, 202, 0.75), rgba(15, 23, 42, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.18), transparent 35%),
    radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.18), transparent 35%);
  pointer-events: none;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #fff;
}

.logo span {
  line-height: 1;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  background: #0f172a;
}

.logo-mark {
  width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 12px;
  color: #e0e7ff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: #cffafe;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #0b1021;
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.25);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.btn.full {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

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

.card {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: 16px;
  color: #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card h3,
.card h4 {
  margin: 6px 0 8px;
}

.card.highlight {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.9), rgba(6, 182, 212, 0.85));
  color: #0f172a;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.logo-card .logo-mark {
  width: 220px;
  margin: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 12px;
  color: #a5b4fc;
  margin: 0;
}

.section {
  padding: 80px 0;
}

#vizyon {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.76));
}

.section .badge {
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}

.panel {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.75));
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

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

.dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.12);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cards {
  background: radial-gradient(circle at 18% 10%, rgba(139, 92, 246, 0.12), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.82));
  background-blend-mode: normal, normal, overlay;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

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

.cta {
  background:
    linear-gradient(145deg, rgba(67, 56, 202, 0.62), rgba(14, 116, 144, 0.66));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.center {
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e0e7ff;
}

.contact {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.75));
}

.contact-meta p {
  margin: 0 0 8px;
}

.form {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 600;
}

.form input,
.form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: transparent;
}

.form-hidden {
  display: none;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.map {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0 18px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer a {
  color: #c7d2fe;
}

.footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-visual .grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .cta-row {
    gap: 10px;
  }
}
