:root {
  /* Next.js layout ile aynı: Inter (latin + Türkçe karakterler) */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bs-font-sans-serif: var(--font-sans);
  --bs-body-font-family: var(--font-sans);
  --foreground-rgb: 0, 0, 0;
  --background-rgb: 255, 255, 255;
  --akademia: #2563eb;
  --akademia-dark: #1d4ed8;
  --accent: #f43f5e;
  --accent-dark: #e11d48;
  --play-yellow: #ffeb2d;
  --play-yellow-dark: #d8a900;
  --features-sticky-offset: 5.5rem;
}

html {
  scroll-padding-top: var(--features-sticky-offset);
}

body {
  color: rgb(var(--foreground-rgb));
  background: rgb(var(--background-rgb));
  font-family: var(--font-sans);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* main’e üst padding vermeyin: hero arka planı viewport tepesinden başlasın (navbar şeffaf üstte kalır) */
main {
  padding-top: 0;
}

.text-akademia {
  color: var(--akademia) !important;
}

.bg-akademia {
  background-color: var(--akademia) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.border-accent {
  border-color: var(--accent) !important;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
}

.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 32rem),
    linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card {
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -28px rgba(15, 76, 129, 0.35);
}

.content-card img {
  border-radius: 0.85rem;
}

.features-page-hero {
  overflow: hidden;
}

.features-hero-panel {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 18rem),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.14), transparent 18rem),
    #fff;
  box-shadow: 0 30px 70px -45px rgba(15, 76, 129, 0.55);
  padding: 1.25rem;
}

.feature-flow-node {
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  border-radius: 1.15rem;
  background: #111827;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-flow-node-main {
  background: linear-gradient(135deg, var(--akademia), var(--accent));
}

.feature-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.feature-flow-grid span {
  display: grid;
  min-height: 4.25rem;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #374151;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.feature-flow-metrics {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.feature-flow-metrics div {
  border-radius: 1rem;
  background: #f8fafc;
  padding: 0.95rem;
}

.feature-flow-metrics strong,
.feature-flow-metrics span {
  display: block;
}

.feature-flow-metrics strong {
  color: #111827;
  font-weight: 800;
}

.feature-flow-metrics span {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.feature-area-card {
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 16rem),
    #fff;
  box-shadow: 0 22px 50px -36px rgba(15, 76, 129, 0.45);
  padding: 1.35rem;
}

.feature-area-card h3 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-area-card p {
  color: #4b5563;
  line-height: 1.7;
}

.feature-area-icon {
  display: inline-flex;
  min-width: 3.2rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(37, 99, 235, 0.09);
  color: var(--akademia);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding: 0 0.75rem;
}

.feature-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  color: #4b5563;
  line-height: 1.55;
  padding-left: 1.15rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.feature-area-card-wide {
  display: grid;
  gap: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .feature-area-card-wide {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .feature-area-card-wide .feature-area-icon {
    margin-bottom: 0;
  }
}

.feature-scenario-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .feature-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-scenario-grid div {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 16px 40px -32px rgba(15, 76, 129, 0.45);
}

.feature-scenario-grid strong,
.feature-scenario-grid span {
  display: block;
}

.feature-scenario-grid strong {
  color: #111827;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.feature-scenario-grid span {
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.55;
}

.article-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -30px rgba(15, 76, 129, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover,
.article-card:focus-visible {
  color: inherit;
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 24px 50px -28px rgba(15, 76, 129, 0.45);
  transform: translateY(-4px);
}

.article-prose {
  max-width: 48rem;
  --article-text: #4b5563;
  --article-heading: #111827;
  --article-muted: #6b7280;
  --article-label: #374151;
}

.article-prose-card {
  max-width: none;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 26px 70px -48px rgba(15, 76, 129, 0.55);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.article-side-card {
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 18rem),
    #fff;
  box-shadow: 0 22px 56px -42px rgba(15, 76, 129, 0.5);
  padding: 1.25rem;
}

.article-side-title {
  color: var(--article-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
}

.article-toc {
  display: grid;
  gap: 0.25rem;
  margin: 1rem 0;
}

.article-toc a {
  border-radius: 0.75rem;
  color: var(--article-text);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  color: var(--akademia);
}

.article-side-verdict {
  border-left: 3px solid var(--accent);
  border-radius: 0.9rem;
  background: rgba(244, 63, 94, 0.07);
  padding: 0.9rem;
}

.article-side-verdict strong,
.article-side-verdict span {
  display: block;
}

.article-side-verdict strong {
  color: #9f1239;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.article-side-verdict span {
  color: var(--article-text);
  font-size: 0.94rem;
  line-height: 1.6;
}

.article-top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.article-top-meta span {
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--article-muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.4rem 0.7rem;
}

.article-prose h2 {
  border-top: 1px solid rgba(229, 231, 235, 0.95);
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
  padding-top: 1.45rem;
  color: var(--article-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.article-prose .decision-card h2 {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.article-prose p,
.article-prose li {
  color: var(--article-text);
  font-size: 1rem;
  line-height: 1.75;
}

.article-prose a {
  font-weight: 600;
}

.article-prose .lead {
  color: #374151;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.75;
}

.article-prose .cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.article-prose .cta-panel .btn {
  font-weight: 600;
}

.article-prose h3 {
  color: var(--article-heading);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-top: 1.4rem;
  margin-bottom: 0.55rem;
}

.article-hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.65rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.26), transparent 17rem),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.22), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  background-size: auto, 24px 24px, 24px 24px, auto, auto, auto;
  box-shadow: 0 34px 80px -42px rgba(15, 76, 129, 0.65);
  overflow: hidden;
  padding: 1.45rem;
}

.article-hero-visual::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.14);
}

.article-hero-visual::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  bottom: 6rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
}

.article-visual-header {
  position: relative;
  z-index: 2;
}

.article-visual-header span,
.article-visual-header strong,
.article-visual-header small {
  display: block;
}

.article-visual-header span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.article-visual-header strong {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-visual-header small {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.55rem;
}

.article-visual-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 8rem),
    linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  padding: 1.15rem;
  box-shadow: 0 22px 45px -28px rgba(15, 23, 42, 0.72);
}

.article-visual-card::after {
  content: "";
  position: absolute;
  right: -1.75rem;
  bottom: -2.25rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.article-visual-card div {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.article-visual-card span,
.article-visual-card strong,
.article-visual-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.article-visual-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-visual-card strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.article-visual-card small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 1.9rem;
}

.article-flow-line {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.article-flow-line::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 1.05rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), rgba(244, 63, 94, 0.35));
}

.article-flow-line div {
  position: relative;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.7rem 0.45rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.article-flow-line span {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--akademia);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-flow-line strong {
  color: var(--article-heading);
  font-size: 0.94rem;
  font-weight: 700;
}

.article-flow-line small {
  color: var(--article-muted);
  font-size: 0.78rem;
}

.article-flow-line .active {
  border-color: rgba(244, 63, 94, 0.28);
  background: #fff;
  box-shadow: 0 18px 40px -34px rgba(244, 63, 94, 0.65);
}

.article-flow-line .active span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.article-visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.65rem;
}

.article-visual-grid div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 0.9rem 0.9rem 3rem;
  box-shadow: 0 16px 36px -32px rgba(15, 76, 129, 0.5);
}

.article-visual-grid small {
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--akademia);
  font-size: 0.72rem;
  font-weight: 700;
}

.article-visual-grid strong,
.article-visual-grid span {
  display: block;
}

.article-visual-grid strong {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.article-visual-grid span {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.metric-dashboard-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.metric-dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.metric-dashboard-top span {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
}

.metric-dashboard-top strong {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.metric-bars {
  display: grid;
  gap: 0.8rem;
}

.metric-bars div {
  display: grid;
  gap: 0.35rem;
}

.metric-bars span {
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
}

.metric-bars i {
  position: relative;
  display: block;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.metric-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--akademia), var(--accent));
}

.hero-pos-ticket,
.hero-branch-map,
.hero-location-compare,
.hero-trend-shift,
.hero-report-stack,
.hero-cafe-board,
.hero-machine-plan,
.hero-opening-map,
.hero-mall-radar,
.hero-hybrid-loop,
.hero-future-roadmap,
.hero-machine-value {
  position: relative;
  z-index: 2;
}

.hero-pos-ticket {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-pos-ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(107, 114, 128, 0.28);
  padding-bottom: 0.65rem;
}

.hero-pos-ticket-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-pos-ticket-row span,
.hero-pos-ticket-row strong {
  display: block;
}

.hero-pos-ticket-row span {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-pos-ticket-row strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.hero-pos-ticket-total {
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(244, 63, 94, 0.1));
  padding: 0.75rem;
}

.hero-pos-ticket-total span {
  color: var(--accent);
}

.hero-pos-ticket-total strong {
  color: var(--akademia);
}

.hero-branch-map {
  display: grid;
  gap: 0.75rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.18), transparent 7rem),
    radial-gradient(circle at 75% 70%, rgba(244, 63, 94, 0.16), transparent 7rem),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-branch-row {
  display: grid;
  grid-template-columns: 2.25rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.75rem;
}

.hero-branch-row i {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--akademia);
  color: #fff;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-branch-row strong,
.hero-branch-row span {
  display: block;
}

.hero-branch-row strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-branch-row span,
.hero-branch-row em {
  color: #6b7280;
  font-size: 0.82rem;
  font-style: normal;
}

.hero-branch-row em {
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}

.hero-location-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-location-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px -34px rgba(15, 76, 129, 0.45);
  padding: 1rem;
}

.hero-location-card span,
.hero-location-card strong,
.hero-location-card small {
  display: block;
}

.hero-location-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-location-card strong {
  color: var(--article-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.hero-location-card small {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 0.45rem;
}

.hero-location-card ul {
  display: grid;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.hero-location-card li {
  color: #374151;
  font-size: 0.84rem;
}

.hero-trend-shift {
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-trend-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
}

.hero-trend-row span,
.hero-trend-row strong {
  display: block;
  border-radius: 0.85rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-trend-row span {
  background: #f3f4f6;
  color: #6b7280;
  font-weight: 600;
}

.hero-trend-row strong {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(244, 63, 94, 0.1));
  color: var(--article-heading);
  font-weight: 700;
}

.hero-trend-row em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.hero-report-stack {
  display: grid;
  gap: 0.7rem;
}

.hero-report-card {
  display: grid;
  grid-template-columns: 2.35rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px -34px rgba(15, 76, 129, 0.45);
  padding: 0.75rem;
}

.hero-report-card:nth-child(2n) {
  transform: translateX(0.35rem);
}

.hero-report-card i {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-report-card strong,
.hero-report-card span,
.hero-report-card small {
  display: block;
}

.hero-report-card strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-report-card span {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-report-card small {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--akademia);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}

.hero-cafe-board {
  display: grid;
  gap: 0.75rem;
}

.hero-cafe-counter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(244, 63, 94, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-cafe-counter strong,
.hero-cafe-counter span {
  display: block;
}

.hero-cafe-counter strong {
  color: var(--article-heading);
  font-size: 1rem;
  font-weight: 800;
}

.hero-cafe-counter span {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

.hero-cafe-cup {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-cafe-menu {
  display: grid;
  gap: 0.65rem;
}

.hero-cafe-menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.75rem 0.85rem;
}

.hero-cafe-menu-row strong,
.hero-cafe-menu-row span,
.hero-cafe-menu-row em {
  display: block;
}

.hero-cafe-menu-row strong {
  color: var(--article-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-cafe-menu-row span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-cafe-menu-row em {
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}

.hero-machine-plan {
  display: grid;
  gap: 0.85rem;
}

.hero-floor-plan {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.86);
  background-size: 18px 18px;
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-floor-zone {
  display: grid;
  min-height: 4.5rem;
  align-content: center;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem;
}

.hero-floor-zone:nth-child(2) {
  border-color: rgba(244, 63, 94, 0.18);
}

.hero-floor-zone:nth-child(3) {
  grid-column: 1 / -1;
}

.hero-floor-zone strong,
.hero-floor-zone span {
  display: block;
}

.hero-floor-zone strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-floor-zone span {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.hero-machine-mix {
  display: grid;
  gap: 0.55rem;
}

.hero-machine-chip {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.55rem 0.75rem;
}

.hero-machine-chip span {
  color: var(--article-heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-machine-chip em {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.hero-opening-map {
  display: grid;
  gap: 0.75rem;
}

.hero-opening-step {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px -32px rgba(15, 76, 129, 0.48);
  padding: 0.75rem;
}

.hero-opening-step i {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-opening-step strong,
.hero-opening-step span {
  display: block;
}

.hero-opening-step strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-opening-step span {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-opening-final {
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.16), transparent 8rem),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(244, 63, 94, 0.1));
}

.hero-mall-radar {
  display: grid;
  gap: 0.8rem;
}

.hero-mall-heatmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-mall-cell {
  display: grid;
  min-height: 4.2rem;
  align-content: center;
  border-radius: 0.9rem;
  background: rgba(37, 99, 235, calc(0.06 + (var(--level, 1) * 0.05)));
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.65rem;
}

.hero-mall-cell:nth-child(4n),
.hero-mall-cell.hot {
  background: rgba(244, 63, 94, calc(0.06 + (var(--level, 1) * 0.04)));
  border-color: rgba(244, 63, 94, 0.14);
}

.hero-mall-cell strong,
.hero-mall-cell span {
  display: block;
}

.hero-mall-cell strong {
  color: var(--article-heading);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-mall-cell span {
  color: #6b7280;
  font-size: 0.74rem;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.hero-mall-insights {
  display: grid;
  gap: 0.6rem;
}

.hero-mall-insight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.75rem 0.85rem;
}

.hero-mall-insight strong,
.hero-mall-insight span,
.hero-mall-insight em {
  display: block;
}

.hero-mall-insight strong {
  color: var(--article-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-mall-insight span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-mall-insight em {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--akademia);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}

.hero-hybrid-loop {
  display: grid;
  gap: 0.75rem;
}

.hero-hybrid-core {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-hybrid-node {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 0.85rem;
  text-align: center;
}

.hero-hybrid-node i {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-hybrid-node strong,
.hero-hybrid-node span {
  display: block;
}

.hero-hybrid-node strong {
  color: var(--article-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-hybrid-node span {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-hybrid-arrow {
  color: var(--accent);
  font-weight: 900;
}

.hero-hybrid-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-hybrid-service {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.75rem 0.85rem;
}

.hero-hybrid-service strong,
.hero-hybrid-service span {
  display: block;
}

.hero-hybrid-service strong {
  color: var(--article-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-hybrid-service span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-future-roadmap {
  display: grid;
  gap: 0.75rem;
}

.hero-future-track {
  position: relative;
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(244, 63, 94, 0.08)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-future-track::before {
  content: "";
  position: absolute;
  left: 1.85rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.3), rgba(244, 63, 94, 0.35));
}

.hero-future-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.75rem;
  align-items: center;
}

.hero-future-step i {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--akademia);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 1;
}

.hero-future-step.active i {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-future-step strong,
.hero-future-step span {
  display: block;
}

.hero-future-step strong {
  color: var(--article-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-future-step span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-future-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-future-summary div {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.75rem 0.85rem;
}

.hero-future-summary strong,
.hero-future-summary span {
  display: block;
}

.hero-future-summary strong {
  color: var(--article-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-future-summary span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.hero-machine-value {
  display: grid;
  gap: 0.8rem;
}

.hero-value-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.52);
  padding: 1rem;
}

.hero-value-cell {
  min-height: 5.25rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem;
}

.hero-value-cell:nth-child(2),
.hero-value-cell:nth-child(3) {
  border-color: rgba(244, 63, 94, 0.16);
}

.hero-value-cell strong,
.hero-value-cell span,
.hero-value-cell em {
  display: block;
}

.hero-value-cell strong {
  color: var(--article-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-value-cell span {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.hero-value-cell em {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 0.45rem;
}

.hero-value-question {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(244, 63, 94, 0.1));
  box-shadow: 0 14px 34px -32px rgba(15, 76, 129, 0.48);
  padding: 0.85rem;
}

.hero-value-question strong,
.hero-value-question span {
  display: block;
}

.hero-value-question strong {
  color: var(--article-heading);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-value-question span {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.metric-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.metric-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 18px 42px -36px rgba(15, 76, 129, 0.45);
  padding: 1.1rem;
}

.metric-list-item > span {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.09);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-list-item h3 {
  margin-top: 0;
}

.metric-list-item p:last-child {
  margin-bottom: 0;
}

.article-highlight-box,
.decision-card {
  border-radius: 1.15rem;
  margin: 2rem 0;
  padding: 1.25rem;
}

.article-highlight-box {
  border: 1px solid rgba(244, 63, 94, 0.22);
  background: rgba(244, 63, 94, 0.07);
}

.article-highlight-box strong,
.article-highlight-box span {
  display: block;
}

.article-highlight-box strong {
  color: #9f1239;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.article-highlight-box span {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
}

.article-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.article-takeaway-grid div {
  border: 1px solid rgba(244, 63, 94, 0.16);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.07), rgba(37, 99, 235, 0.05)),
    #fff;
  padding: 1rem;
}

.article-takeaway-grid strong,
.article-takeaway-grid span {
  display: block;
}

.article-takeaway-grid strong {
  color: var(--article-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.article-takeaway-grid span {
  color: var(--article-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.comparison-card h3 {
  color: var(--article-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.comparison-card {
  height: 100%;
  border-radius: 1.15rem;
  padding: 1.25rem;
}

.comparison-card ul {
  margin-bottom: 0;
}

.comparison-card-muted {
  border: 1px solid rgba(107, 114, 128, 0.18);
  background: #f9fafb;
}

.comparison-card-accent {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(244, 63, 94, 0.08));
}

.article-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.article-metric-grid div {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 18px 40px -34px rgba(15, 76, 129, 0.45);
}

.article-metric-grid strong,
.article-metric-grid span {
  display: block;
}

.article-metric-grid strong {
  color: var(--akademia);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.article-metric-grid span {
  color: var(--article-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.decision-card h2 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.cta-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.decision-card {
  border: 1px solid rgba(37, 99, 235, 0.16);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 18rem),
    #f8fafc;
}

.decision-card ul {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .article-metric-grid {
    grid-template-columns: 1fr;
  }
  .article-takeaway-grid {
    grid-template-columns: 1fr;
  }
  .hero-location-compare,
  .hero-trend-row,
  .hero-value-matrix {
    grid-template-columns: 1fr;
  }
  .hero-trend-row em {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .article-side-card {
    position: static;
  }
}

.cta-panel {
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--akademia), var(--akademia-dark));
  color: #fff;
  padding: 2rem;
}

.metric-card {
  height: 100%;
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -30px rgba(15, 76, 129, 0.35);
}

.metric-value {
  color: var(--akademia);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.contact-card {
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 1.15rem;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 22px 50px -34px rgba(15, 76, 129, 0.45);
}

.contact-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: var(--accent);
  background: rgba(244, 63, 94, 0.1);
  margin-bottom: 1rem;
}

.map-placeholder {
  min-height: 22rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(rgba(15, 76, 129, 0.72), rgba(15, 76, 129, 0.72)),
    url("../images/bgx.jpg") center/cover;
  color: #fff;
}

.process-step {
  position: relative;
  height: 100%;
  border-left: 3px solid rgba(244, 63, 94, 0.35);
  padding: 0.25rem 0 0.25rem 1.25rem;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 0.45rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(244, 63, 94, 0.14);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* İçerik sabit navbar yüksekliği kadar aşağıda; bg tüm alanı kaplar */
  padding-top: 5rem;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.home-hero-section {
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 4.75rem;
}

.home-hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-hero-section h1 {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-hero-section .lead {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.home-hero-primary,
.home-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-hero-primary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(244, 63, 94, 0.82);
  color: #fff;
  padding: 0.78rem 1.2rem;
}

.home-hero-primary:hover,
.home-hero-primary:focus-visible {
  background: rgba(225, 29, 72, 0.9);
  color: #fff;
  transform: translateY(-1px);
}

.home-hero-secondary {
  color: rgba(255, 255, 255, 0.78);
  padding: 0.65rem 0.2rem;
}

.home-hero-secondary:hover,
.home-hero-secondary:focus-visible {
  color: #fff;
}

.home-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 11;
  display: inline-grid;
  justify-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: translateX(-50%);
}

.home-scroll-cue:hover,
.home-scroll-cue:focus-visible {
  color: #fff;
}

.home-scroll-cue svg {
  animation: bounce 2s infinite;
}

@media (max-width: 767.98px) {
  .home-hero-section {
    padding-bottom: 4.75rem;
  }
}

.home-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.24), transparent 16rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 70px -44px rgba(0, 0, 0, 0.65);
  padding: 1.2rem;
}

.home-system-node {
  display: grid;
  min-height: 5.25rem;
  place-items: center;
  border-radius: 1.1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.home-system-node-main {
  background: linear-gradient(135deg, var(--akademia), var(--accent));
}

.home-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.home-system-grid span {
  display: grid;
  min-height: 4.25rem;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1rem;
  background: #fff;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.home-hero-insight {
  border-radius: 1rem;
  background: #111827;
  color: #fff;
  margin-top: 0.75rem;
  padding: 1rem;
}

.home-hero-insight strong,
.home-hero-insight span {
  display: block;
}

.home-hero-insight strong {
  font-weight: 800;
}

.home-hero-insight span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 0.35rem;
}

.home-audience-card,
.home-module-card {
  display: block;
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 22px 50px -36px rgba(15, 76, 129, 0.45);
  color: inherit;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-audience-card:hover,
.home-audience-card:focus-visible {
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: 0 28px 60px -38px rgba(15, 76, 129, 0.6);
  color: inherit;
  transform: translateY(-3px);
}

.home-audience-card span,
.home-module-card span {
  display: inline-flex;
  min-width: 3rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(37, 99, 235, 0.09);
  color: var(--akademia);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding: 0 0.7rem;
}

.home-audience-card h3,
.home-module-card h3 {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.home-audience-card p,
.home-module-card p {
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 0;
}

.home-flow-panel {
  display: grid;
  gap: 0.85rem;
}

.home-flow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 18px 44px -36px rgba(15, 76, 129, 0.45);
  padding: 1rem;
}

.home-flow-step i {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-flow-step strong,
.home-flow-step span {
  display: block;
}

.home-flow-step strong {
  color: #111827;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.home-flow-step span {
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-flow-step-final {
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.1), transparent 12rem),
    #fff;
}

.home-module-card {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 14rem),
    #fff;
}

.home-proof-panel {
  display: grid;
  gap: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.1), transparent 20rem),
    #fff;
  box-shadow: 0 26px 70px -48px rgba(15, 76, 129, 0.55);
  padding: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 992px) {
  .home-proof-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

.home-proof-list {
  display: grid;
  gap: 0.85rem;
}

.home-proof-list div {
  border-radius: 1rem;
  background: #f8fafc;
  padding: 1rem;
}

.home-proof-list strong,
.home-proof-list span {
  display: block;
}

.home-proof-list strong {
  color: #111827;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.home-proof-list span {
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-final-cta {
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--akademia), var(--akademia-dark));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.navbar-main {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-main.navbar-transparent {
  background: transparent !important;
  box-shadow: none;
}

/* Next.js Navbar ile aynı: alt çizgi soldan sağa açılır (after:w-0 → hover:after:w-full) */
.navbar-main .navbar-nav .nav-link {
  position: relative;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-main .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--play-yellow);
  transition: width 0.3s ease;
}

.navbar-main .navbar-nav .nav-link:hover::after,
.navbar-main .navbar-nav .nav-link:focus-visible::after,
.navbar-main .navbar-nav .nav-link.is-active::after {
  width: 100%;
}

.navbar-main .navbar-nav .nav-link.is-active {
  font-weight: 700;
}

.nav-language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}

.language-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  min-height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  line-height: 1;
}

.language-dropdown-toggle:hover,
.language-dropdown-toggle:focus-visible,
.nav-language-switcher.show .language-dropdown-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.language-dropdown-toggle::after {
  margin-left: 0.15rem;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-code {
  letter-spacing: 0.04em;
}

.language-dropdown-menu {
  min-width: 11rem;
  border: 0;
  border-radius: 0.85rem;
  padding: 0.4rem;
  box-shadow: 0 18px 45px -30px rgba(15, 23, 42, 0.55);
}

.language-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.65rem;
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 0.7rem;
}

.language-dropdown-item.active,
.language-dropdown-item:active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--akademia);
}

.language-dropdown-item.disabled {
  color: #9ca3af;
  opacity: 0.75;
}

.navbar-main.navbar-transparent .nav-link {
  color: #1f2937 !important;
}

.navbar-main.navbar-transparent .nav-link:hover,
.navbar-main.navbar-transparent .nav-link:focus-visible,
.navbar-main.navbar-transparent .nav-link.is-active {
  color: var(--play-yellow-dark) !important;
}

.navbar-main.navbar-transparent .language-dropdown-toggle {
  border-color: rgba(31, 41, 55, 0);
  background: rgba(255, 255, 255, 0);
  color: #1f2937;
}

.navbar-main.navbar-transparent .language-dropdown-toggle:hover,
.navbar-main.navbar-transparent .language-dropdown-toggle:focus-visible,
.navbar-main.navbar-transparent .nav-language-switcher.show .language-dropdown-toggle {
  border-color: rgba(31, 41, 55, 0.36);
  background: transparent;
  color: #111827;
}

.navbar-main.navbar-scrolled {
  background-color: var(--akademia) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-main.navbar-scrolled .nav-link {
  color: #fff !important;
}

.navbar-main.navbar-scrolled .nav-link:hover,
.navbar-main.navbar-scrolled .nav-link:focus-visible,
.navbar-main.navbar-scrolled .nav-link.is-active {
  color: var(--play-yellow) !important;
}

.navbar-main.navbar-scrolled .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

/* Bootstrap navbar-dark: küçük ekranda hamburger çizgileri beyaz (mavi arka planda görünür) */
.navbar-main.navbar-scrolled.navbar-dark .navbar-toggler-icon {
  filter: invert(1) grayscale(100%);
}

.navbar-logo {
  max-height: 56px;
  width: auto;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* #features: Özkaya ana sayfa “hakkimizda-sticky-section” düzeni (sol yapışkan metin + sağ görseller) */
#features.hakkimizda-sticky-section {
  position: relative;
  width: 100%;
  min-height: calc(5 * (100vh - var(--features-sticky-offset)));
}

#features .hakkimizda-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  position: relative;
}

#features .sol-panel-sticky {
  position: sticky;
  top: var(--features-sticky-offset);
  align-self: start;
  height: calc(100vh - var(--features-sticky-offset));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem clamp(1.25rem, 3.5vw, 2.75rem) 2.5rem clamp(2.25rem, 9vw, 5.5rem);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  z-index: 10;
}

#features .metin-grup {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: min(100%, 42rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: 0;
  padding: 0 clamp(1rem, 2.5vw, 2rem) 0 clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

#features .metin-grup.aktif {
  opacity: 1;
  visibility: visible;
}

#features .metin-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

#features .metin-description {
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0;
  line-height: 1.5;
}

#features .metin-lede {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  margin-top: 0.75rem;
}

#features .metin-features {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.45;
}

#features .metin-features li {
  gap: 0.65rem !important;
  margin-bottom: 0.65rem !important;
}

#features .metin-features .rounded-circle {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  margin-top: 0.35rem !important;
}

#features .sag-panel-scroll {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#features .gorsel-panel {
  height: calc(100vh - var(--features-sticky-offset));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 4%;
}

#features .gorsel-img {
  max-width: 100%;
  max-height: min(72vh, 540px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 24px 60px -20px rgba(15, 76, 129, 0.35);
  opacity: 0.28;
  filter: blur(32px);
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.45, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#features .gorsel-panel.is-gorsel-revealed .gorsel-img {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

#features .feature-mobile-insert {
  width: 100%;
  max-width: 36rem;
  margin-top: 1.25rem;
}

#features .feature-mobile-insert .metin-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

@media (max-width: 991.98px) {
  #features.hakkimizda-sticky-section {
    min-height: auto;
  }

  #features .hakkimizda-wrapper {
    display: block;
  }

  #features .sol-panel-sticky {
    display: none;
  }

  #features .gorsel-panel {
    height: auto;
    min-height: 0;
    padding: 2rem 1rem 2.5rem;
  }

  #features .gorsel-img {
    max-height: none;
    width: 100%;
  }

  #features .feature-mobile-insert {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.12);
    margin-top: 1.5rem;
  }
}

.feature-step-card {
  position: relative;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2.2rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 60px -28px rgba(15, 76, 129, 0.28);
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
  overflow: hidden;
}

@media (min-width: 992px) {
  .feature-step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem;
  }
}

.feature-icon-wrap {
  flex-shrink: 0;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.35rem;
  background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
  box-shadow: 0 20px 40px -22px rgba(15, 76, 129, 0.35);
}

.parallax-section {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

.parallax-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.parallax-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-strip {
  height: 30px;
  background-size: cover;
  background-position: center;
}

.text-shadow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.footer-dark {
  background: #21252b;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.35rem;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.site-footer-brand {
  max-width: 27rem;
}

.site-footer-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 1rem;
}

.site-footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 1.15rem;
}

.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.footer-inline-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-inline-link:hover,
.footer-inline-link:focus-visible {
  color: #fff;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer-links h2 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.site-footer-links a,
.footer-language {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #fff;
}

.footer-language {
  margin-top: 0.85rem;
}

.footer-language em {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.site-footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  margin: 0;
}

.site-footer-bottom img {
  width: auto;
  height: 2rem;
  opacity: 0.72;
}

@media (max-width: 991.98px) {
  .site-footer-main,
  .site-footer-links {
    grid-template-columns: 1fr;
  }
  .site-footer-brand {
    max-width: none;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ring-highlight {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* FAQ */
.faq-btn {
  width: 100%;
  text-align: left;
  border: none;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.faq-btn:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.faq-btn:focus-visible {
  outline: 3px solid rgba(244, 63, 94, 0.45);
  outline-offset: 3px;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer-wrap {
  max-height: 480px;
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

/* Select2 tweak to match theme */
.select2-container {
  font-family: inherit !important;
}

.select2-container--default .select2-selection--single {
  min-height: 42px;
  border: 2px solid #e5e7eb !important;
  font-family: inherit !important;
  border-radius: 0.5rem !important;
  padding: 6px 12px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--akademia) !important;
}

.order-summary-sticky {
  position: sticky;
  top: 5.5rem;
}

.component-page-hero {
  overflow: hidden;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.08);
  color: #9f1239;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
}

.component-hero-panel {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 30px 70px -42px rgba(15, 76, 129, 0.55);
  padding: 1.25rem;
}

.visual-system-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.system-node {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1rem;
  background: #fff;
  color: #374151;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 30px -24px rgba(15, 76, 129, 0.45);
}

.system-node-main {
  grid-column: 1 / -1;
  min-height: 5.5rem;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  font-size: 1.25rem;
}

.mini-stat {
  height: 100%;
  border-radius: 1rem;
  background: #111827;
  color: #fff;
  padding: 1rem;
}

.mini-stat strong,
.mini-stat span {
  display: block;
}

.mini-stat strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.component-summary-card,
.component-detail-card,
.scenario-panel {
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 22px 50px -34px rgba(15, 76, 129, 0.45);
}

.component-summary-card {
  padding: 1.35rem;
}

.component-icon {
  display: inline-flex;
  min-width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(244, 63, 94, 0.1);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
  padding: 0 0.7rem;
}

.component-detail-card {
  padding: 1.4rem;
}

@media (min-width: 768px) {
  .component-detail-card:not(.featured):not(.component-media-card) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1rem;
    align-content: start;
  }

  .component-detail-card:not(.featured):not(.component-media-card) > .component-icon {
    grid-row: 1 / span 5;
  }

  .component-detail-card:not(.featured):not(.component-media-card) > :not(.component-icon) {
    grid-column: 2;
  }
}

.component-detail-card > .component-icon {
  display: inline-flex;
  min-width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(37, 99, 235, 0.09);
  color: var(--akademia);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding: 0 0.75rem;
  text-align: center;
}

.component-detail-card > .component-icon::before,
.component-detail-card > .component-icon::after {
  content: none;
}

.component-detail-card.featured {
  overflow: hidden;
  padding: 0;
}

.component-story-card {
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.09), transparent 18rem),
    #fff;
}

@media (min-width: 992px) {
  .component-story-card {
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
  }

  .component-story-card-reverse {
    max-width: 58rem;
  }

  .component-story-card .component-detail-body {
    padding: 1.6rem 1.75rem;
  }
}

.component-detail-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e7eb;
}

.component-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.component-photo-focus-reader {
  object-position: center center;
}

.component-photo-focus-device {
  object-position: center center;
}

.component-photo-focus-turnstile {
  object-position: center center;
}

.component-photo-panel {
  position: relative;
  background: #f3f4f6;
}

.component-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(15, 23, 42, 0.13));
  pointer-events: none;
}

.component-inline-media {
  position: relative;
  display: grid;
  height: 7.5rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.15), transparent 9rem),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.13), transparent 9rem),
    #f8fafc;
  margin-bottom: 1.15rem;
}

.component-inline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.component-inline-media img[src$="standalone-server.png"] {
  object-fit: contain;
  padding: 0.8rem;
}

.component-inline-media-photo {
  height: auto;
  aspect-ratio: 4 / 3;
}

.component-media-card {
  display: grid;
  gap: 0.85rem 1rem;
  padding: 1.1rem;
}

.component-media-card .component-inline-media {
  margin-bottom: 0.15rem;
  border-radius: 1.15rem;
}

@media (min-width: 768px) {
  .component-media-card {
    display: block;
  }

  .component-media-card .component-inline-media {
    margin-bottom: 1rem;
  }

  .component-media-card > :not(.component-inline-media) {
    grid-column: auto;
  }
}

.component-visual-panel {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.22), transparent 13rem),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 13rem),
    #f8fafc;
  background-size: auto, 24px 24px, 24px 24px, auto, auto, auto;
}

.component-visual-panel::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.13);
}

.component-visual-panel-pos::after {
  background: rgba(37, 99, 235, 0.13);
}

.component-visual-device {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: min(70%, 18rem);
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, var(--akademia), var(--accent));
  color: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 22px 45px -28px rgba(15, 23, 42, 0.7);
}

.component-visual-device-pos {
  background: linear-gradient(135deg, #111827, var(--akademia));
}

.component-visual-device span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.component-visual-device strong {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.component-visual-device small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.component-visual-signal,
.component-visual-receipt {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
}

.component-visual-signal {
  left: 12%;
  bottom: 18%;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(244, 63, 94, 0.35);
  box-shadow: 0 0 0 0.75rem rgba(244, 63, 94, 0.08);
}

.component-visual-receipt {
  right: 14%;
  bottom: 18%;
  width: 3.2rem;
  height: 4rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(#fff 0 0) 50% 35% / 60% 2px no-repeat,
    linear-gradient(#fff 0 0) 50% 55% / 52% 2px no-repeat,
    rgba(244, 63, 94, 0.32);
}

.component-detail-body {
  padding: 1.4rem;
}

.component-detail-card h3 {
  color: #111827;
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.component-detail-card p {
  color: #4b5563;
  line-height: 1.72;
}

.component-subtitle {
  color: #111827 !important;
  font-weight: 700;
  margin-top: -0.35rem;
}

.component-benefit {
  border-radius: 0.75rem;
  background: rgba(37, 99, 235, 0.07);
  color: #1e40af !important;
  font-weight: 700;
  line-height: 1.5 !important;
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
}

.component-detail-card p:last-child {
  margin-bottom: 0;
}

.component-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--akademia);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  text-transform: uppercase;
}

.difference-card {
  height: 100%;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(244, 63, 94, 0.08)),
    #fff;
  color: #111827;
  font-weight: 800;
  line-height: 1.45;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 40px -32px rgba(15, 76, 129, 0.4);
}

.difference-card::before {
  content: "✓";
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  margin-right: 0.5rem;
}

.related-link-card {
  display: grid;
  height: 100%;
  gap: 0.6rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 1.15rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  padding: 1.35rem;
  box-shadow: 0 22px 50px -34px rgba(15, 76, 129, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.related-link-card:hover,
.related-link-card:focus-visible {
  color: inherit;
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 26px 56px -34px rgba(15, 76, 129, 0.55);
  transform: translateY(-4px);
}

.related-link-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-link-card strong {
  color: #111827;
  font-size: 1.05rem;
}

.related-link-card em {
  color: #4b5563;
  font-style: normal;
  line-height: 1.55;
}

.knowledge-hub-panel {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 22rem),
    #ffffff;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 28px 70px -48px rgba(15, 76, 129, 0.55);
}

.knowledge-link-card {
  display: grid;
  height: 100%;
  gap: 0.65rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: inherit;
  text-decoration: none;
  padding: 1.35rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.knowledge-link-card:hover,
.knowledge-link-card:focus-visible {
  color: inherit;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 56px -36px rgba(15, 76, 129, 0.55);
  transform: translateY(-4px);
}

.knowledge-link-card span {
  color: var(--akademia);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-link-card strong {
  color: #111827;
  font-size: 1.05rem;
}

.knowledge-link-card em {
  color: #4b5563;
  font-style: normal;
  line-height: 1.55;
}

.knowledge-link-card small {
  color: var(--accent);
  font-weight: 800;
  margin-top: 0.35rem;
}

.scenario-panel {
  padding: 1.25rem;
}

.scenario-item {
  display: grid;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.95);
  padding: 1rem 0;
}

.scenario-item:first-child {
  padding-top: 0;
}

.scenario-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.scenario-item strong {
  color: #111827;
}

.scenario-item span {
  color: #4b5563;
}

@media (prefers-reduced-motion: reduce) {
  #features .gorsel-img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
  .animate-float,
  .scroll-indicator {
    animation: none !important;
  }
  .feature-step-card {
    opacity: 1 !important;
    transition: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .navbar-main .navbar-nav .nav-link::after {
    transition: none !important;
  }
  #features .metin-grup {
    transition: none !important;
  }
}
