/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============ DESIGN TOKENS — WELERA ============ */
:root {
  /* Logodan türetilen renkler */
  --welera-blue: #2B7CB3;
  --welera-blue-deep: #1F5E8A;
  --welera-blue-light: #4D9BD1;
  --welera-blue-soft: #E8F2FA;
  --welera-orange: #E8862E;     /* logodaki vurgu çizgisi */
  --welera-orange-soft: #FCEFDC;
  --ink: #1A1A1F;
  --ink-soft: #3A3A40;
  --muted: #6E6E78;
  --muted-light: #9A9AA3;
  --line: #E5E5EB;
  --line-soft: #F1F1F4;
  --bg: #ffffff;
  --bg-alt: #F7F8FA;
  --bg-dark: #0A1828;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.022em;
  overflow-x: hidden;
}
::selection { background: var(--welera-blue); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--welera-blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.muted { color: var(--muted); }

/* ============ NAV ============ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 52px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
nav.top .nav-inner {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-logo {
  height: 26px;
  width: auto;
}
.brand-text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-text .dot { color: var(--welera-blue); }

nav.top ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}
nav.top ul a {
  display: inline-block;
  padding: 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  letter-spacing: -0.01em;
  position: relative;
}
nav.top ul a:hover { opacity: 1; color: var(--welera-blue); }
nav.top .nav-cta {
  margin-left: 8px;
  padding: 8px 16px !important;
  background: var(--welera-blue);
  color: #fff !important;
  border-radius: 980px;
  opacity: 1 !important;
  font-weight: 500;
  transition: background 0.2s;
}
nav.top .nav-cta:hover { background: var(--welera-blue-deep); color: #fff !important; }
nav.top .nav-wa {
  margin-left: 8px;
  padding: 8px 15px !important;
  background: #25D366;
  color: #fff !important;
  border-radius: 980px;
  opacity: 1 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
nav.top .nav-wa:hover { background: #1da851; color: #fff !important; }
nav.top .nav-wa svg { width: 15px; height: 15px; fill: currentColor; flex: 0 0 auto; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
@media (max-width: 833px) {
  nav.top ul { display: none; }
  nav.top ul.mobile-show {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 52px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 18px 22px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  nav.top ul.mobile-show a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  nav.top ul.mobile-show .nav-cta,
  nav.top ul.mobile-show .nav-wa {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
    justify-content: center;
    padding: 14px 16px !important;
    border-bottom: none;
  }
  .mobile-toggle { display: block; }
}

/* ============ COMMON SECTION ============ */
section { padding: 120px 22px; position: relative; }
@media (max-width: 833px) {
  section { padding: 80px 22px; }
}
.section-inner {
  max-width: 1024px;
  margin: 0 auto;
}
.section-inner.wide { max-width: 1280px; }
.section-inner.narrow { max-width: 820px; }

/* ============ HEADLINE STYLES ============ */
.h-mega {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.h-large {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.h-medium {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.44;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink-soft);
}
.lead.muted { color: var(--muted); }
.text-blue { color: var(--welera-blue); }
.text-orange { color: var(--welera-orange); }

/* ============ BUTTONS ============ */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  font-family: inherit;
}
.btn-primary {
  background: var(--welera-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--welera-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(43,124,179,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--welera-blue);
  border: 1px solid var(--welera-blue);
}
.btn-secondary:hover {
  background: var(--welera-blue);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-orange {
  background: var(--welera-orange);
  color: #fff;
}
.btn-orange:hover {
  background: #C9701F;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(232,134,46,0.28);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 18px;
  line-height: 1;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  padding: 80px 22px 100px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(43,124,179,0.06), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-network {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.hero-inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-cover {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 40px;
  display: block;
  height: auto;
}
@media (max-width: 833px) {
  .hero-cover { margin-bottom: 28px; }
}
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin: 0 auto 20px;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--welera-blue), var(--welera-blue-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--muted);
}

/* ============ INTRO / WHAT IS WELERA ============ */
.what {
  background: var(--bg);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .what-grid { grid-template-columns: 5fr 6fr; gap: 80px; }
}
.what-visual {
  background: linear-gradient(135deg, var(--welera-blue-soft), #fff);
  border-radius: 28px;
  padding: 56px 40px;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.what-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232,134,46,0.10), transparent 50%);
  pointer-events: none;
}
.what-visual img {
  max-width: 70%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* ============ STAT STRIP ============ */
.stat-strip {
  background: var(--bg-alt);
  padding: 60px 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat-strip .si {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
}
@media (min-width: 760px) {
  .stat-strip .si { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--welera-blue);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-num .num-counter {
  display: inline-block;
  transform-origin: center bottom;
  font-variant-numeric: tabular-nums;
}
.stat-num .num-counter.counter-pulse {
  animation: counterPulse 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes counterPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.10); color: var(--welera-blue-deep); }
  100% { transform: scale(1); color: var(--welera-blue); }
}
.stat-num .num-counter.counting {
  color: var(--welera-blue-deep);
}
.stat-num .unit {
  font-size: 0.55em;
  color: var(--welera-blue);
  font-weight: 600;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
  counter-reset: step;
}
@media (min-width: 760px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1100px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}
.how-card {
  position: relative;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  counter-increment: step;
}
.how-card::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--welera-orange);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.how-card:hover {
  border-color: var(--welera-blue);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(43,124,179,0.10);
}
.how-card h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.how-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ============ AI / MODULAR EDUCATION (DARK SECTION) ============ */
.ai-module {
  background: radial-gradient(ellipse at top, #0a1828 0%, #050810 70%);
  color: #f5f5f7;
  padding: 140px 22px 280px;
  position: relative;
  overflow: hidden;
}
.ai-module::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(43,124,179,0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ai-module::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(5,8,16,0) 0%,
    rgba(5,8,16,0.08) 18%,
    rgba(20,30,50,0.22) 35%,
    rgba(80,95,120,0.42) 55%,
    rgba(160,175,195,0.65) 72%,
    rgba(220,225,232,0.85) 86%,
    rgba(243,244,248,0.97) 95%,
    var(--bg-alt) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.ai-network-canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.ai-module .section-inner {
  position: relative;
  z-index: 1;
}
.ai-module .ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  background: rgba(43,124,179,0.20);
  border: 1px solid rgba(77,155,209,0.55);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #8fc0e6;
  position: relative;
  overflow: hidden;
}
.ai-module .ai-eyebrow::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(143,192,230,0.4), transparent);
  animation: aiShimmer 4s ease-in-out infinite;
}
@keyframes aiShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.ai-pulse {
  width: 9px;
  height: 9px;
  background: #4D9BD1;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(77,155,209,0.6);
  animation: aiPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(77,155,209,0.8); }
  70% { box-shadow: 0 0 0 14px rgba(77,155,209,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,155,209,0); }
}
.ai-module h2.ai-headline {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ai-module h2.ai-headline .ai-line-1 { color: #ffffff; }
.ai-module h2.ai-headline .ai-line-2 {
  background: linear-gradient(90deg, #4D9BD1 0%, #8fc0e6 60%, #b4d8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ai-module h2.ai-headline .ai-line-3 {
  color: var(--welera-orange);
  font-weight: 500;
  font-size: 0.46em;
  letter-spacing: -0.02em;
  margin-top: 16px;
  font-style: italic;
}
.ai-module .ai-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: #d6d6db;
  max-width: 64ch;
  letter-spacing: -0.018em;
  margin-bottom: 56px;
}
.ai-module .ai-lead strong { color: #ffffff; font-weight: 600; }

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 72px;
  counter-reset: aistep;
}
@media (min-width: 760px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (min-width: 1100px) {
  .ai-grid { grid-template-columns: repeat(3, 1fr); }
}
.ai-card {
  position: relative;
  padding: 34px 30px 64px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), background 0.3s ease;
  counter-increment: aistep;
}
.ai-card::after {
  content: counter(aistep, decimal-leading-zero);
  position: absolute;
  left: 30px;
  bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--welera-orange);
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  opacity: 0.95;
}
.ai-card::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 48px;
  width: 24px;
  height: 1px;
  background: var(--welera-orange);
  opacity: 0.55;
}
.ai-card:hover {
  border-color: rgba(77,155,209,0.55);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}
.ai-card-icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(77,155,209,0.30), rgba(77,155,209,0.10));
  border: 1px solid rgba(77,155,209,0.30);
  border-radius: 14px;
  margin-bottom: 22px;
  color: #8fc0e6;
}
.ai-card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ai-card h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: #ffffff;
}
.ai-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b8b8bf;
  letter-spacing: -0.01em;
}

.ai-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 900px) {
  .ai-bottom { grid-template-columns: 5fr 4fr; gap: 80px; }
}
.ai-bottom-headline {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 0;
}
.ai-bottom-headline .ai-gradient {
  background: linear-gradient(90deg, #4D9BD1, #8fc0e6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-bottom-text {
  font-size: 16px;
  line-height: 1.65;
  color: #d6d6db;
  letter-spacing: -0.005em;
}
.ai-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  background: rgba(77,155,209,0.18);
  border: 1px solid rgba(77,155,209,0.45);
  border-radius: 980px;
  font-size: 13px;
  color: #8fc0e6;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* AI Comparison Table */
.ai-comparison {
  margin-top: 72px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ai-comparison[open] {
  background: rgba(255,255,255,0.05);
  border-color: rgba(77,155,209,0.45);
}
.ai-comparison-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 36px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}
.ai-comparison-toggle::-webkit-details-marker { display: none; }
.ai-comparison-toggle:hover { background: rgba(77,155,209,0.06); }
@media (max-width: 720px) {
  .ai-comparison-toggle { padding: 22px 20px; gap: 14px; }
}
.ac-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #8fc0e6;
  margin-bottom: 8px;
}
.ac-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.ac-sub {
  font-size: 14px;
  color: #a1a1a6;
  letter-spacing: -0.01em;
}
.ac-chevron {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(77,155,209,0.16);
  border: 1px solid rgba(77,155,209,0.40);
  color: #8fc0e6;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), background 0.2s ease;
}
.ai-comparison[open] .ac-chevron {
  transform: rotate(90deg);
  background: rgba(77,155,209,0.28);
}
.ac-content {
  padding: 0 36px 36px;
  animation: acOpen 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes acOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .ac-content { padding: 0 16px 26px; }
}
.ac-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.ac-table thead th {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  letter-spacing: -0.01em;
}
.ac-table thead th:first-child {
  width: 18%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc0e6;
  padding-left: 0;
}
.ac-table thead th .ac-th-main {
  display: block;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 4px;
}
.ac-table thead th .ac-th-sub {
  display: block;
  font-size: 12px;
  color: #a1a1a6;
  font-weight: 400;
  letter-spacing: 0;
}
.ac-table tbody td {
  padding: 16px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d6d6db;
  letter-spacing: -0.005em;
}
.ac-table tbody td:first-child {
  width: 18%;
  font-weight: 600;
  color: #ffffff;
  padding-left: 0;
  font-size: 13px;
}
.ac-table tbody td.ac-classic { color: #b8b8bf; }
.ac-table tbody td.ac-ai { color: #ddebff; }
.ac-table tbody tr:last-child td { border-bottom: 0; }
.ac-table tbody tr.ac-highlight {
  background: linear-gradient(90deg, rgba(77,155,209,0.10) 0%, rgba(77,155,209,0.04) 100%);
}
.ac-table tbody tr.ac-highlight td:first-child {
  position: relative;
  color: #8fc0e6;
}
.ac-table tbody tr.ac-highlight td:first-child::before {
  content: '';
  position: absolute;
  left: -12px; top: 14px; bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--welera-orange), #f0a553);
  border-radius: 2px;
}
.ac-table tbody tr.ac-highlight td.ac-ai {
  color: #ffffff;
  font-weight: 500;
}
.ac-footer-note {
  margin-top: 26px;
  padding: 18px 22px;
  background: rgba(232,134,46,0.12);
  border-left: 3px solid var(--welera-orange);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: #d6d6db;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.ac-footer-note strong { color: #ffffff; }

@media (max-width: 720px) {
  .ac-table thead { display: none; }
  .ac-table, .ac-table tbody, .ac-table tr, .ac-table td { display: block; }
  .ac-table tbody tr {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 14px 16px;
  }
  .ac-table tbody tr.ac-highlight {
    background: linear-gradient(180deg, rgba(77,155,209,0.12), rgba(77,155,209,0.05));
    border-color: rgba(77,155,209,0.4);
  }
  .ac-table tbody td {
    border: 0 !important;
    padding: 6px 0;
    width: 100% !important;
  }
  .ac-table tbody td:first-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8fc0e6;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  .ac-table tbody td.ac-classic::before {
    content: 'Klasik standart:';
    display: block;
    font-size: 11px;
    color: #8e8e93;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
  }
  .ac-table tbody td.ac-ai::before {
    content: 'AI tabanlı:';
    display: block;
    font-size: 11px;
    color: #8fc0e6;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
  }
  .ac-table tbody tr.ac-highlight td:first-child::before { display: none; }
}

/* ============ AUDIENCES ============ */
.audiences {
  background: var(--bg);
}
.aud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .aud-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1100px) {
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
}
.aud-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.aud-card.active {
  background: linear-gradient(180deg, var(--welera-blue-soft), #fff);
  border-color: var(--welera-blue);
}
.aud-card.locked { opacity: 0.7; }
.aud-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43,124,179,0.08);
}
.aud-pill {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 980px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.aud-pill.live { background: var(--welera-blue); color: #fff; }
.aud-pill.soon { background: var(--welera-orange-soft); color: #B96A1F; }
.aud-card h4 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.aud-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ ADVANTAGES ============ */
.advantages {
  background: var(--bg-alt);
}
.adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
}
.adv-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
}
@media (min-width: 760px) {
  .adv-grid > div:nth-child(odd) .adv-item { padding-right: 36px; }
  .adv-grid > div:nth-child(even) .adv-item { padding-left: 36px; }
}
.adv-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--welera-blue-soft);
  border-radius: 12px;
  color: var(--welera-blue);
}
.adv-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.adv-text h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.adv-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ WELERA KAMPÜS GİRİŞ (BEYAZ ZEMİN) ============ */
.kampus {
  background:
    radial-gradient(ellipse at 50% 0%, var(--welera-blue-soft) 0%, transparent 60%),
    var(--bg);
  color: var(--ink);
  padding: 120px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.kampus::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(43,124,179,0.06), transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(232,134,46,0.05), transparent 55%);
  pointer-events: none;
}
.kampus .section-inner {
  position: relative;
  z-index: 1;
}
.kampus-logo {
  display: block;
  width: clamp(220px, 32vw, 340px);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 28px rgba(43,124,179,0.12));
}
.kampus-headline {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 22ch;
  margin: 24px auto 18px;
}
.kampus-headline .accent {
  color: var(--welera-blue);
}
.kampus-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.kampus-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.kampus .btn-primary {
  background: var(--welera-blue);
  color: #fff;
  font-size: 16px;
  padding: 16px 32px;
}
.kampus .btn-primary:hover {
  background: var(--welera-blue-deep);
  box-shadow: 0 16px 36px rgba(43,124,179,0.28);
}
.kampus .btn-secondary {
  background: transparent;
  color: var(--welera-blue);
  border: 1px solid var(--welera-blue);
  font-size: 16px;
  padding: 16px 32px;
}
.kampus .btn-secondary:hover {
  background: var(--welera-blue);
  color: #fff;
}
.kampus-accent-line {
  width: 64px;
  height: 3px;
  background: var(--welera-orange);
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* ============ ECZACI GLN GİRİŞ ============ */
.gln {
  background: var(--bg);
  padding: 120px 22px;
}
.gln-shell {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .gln-shell { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}
.gln-info .eyebrow { color: var(--welera-orange); }
.gln-info h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.gln-info h2 .em { color: var(--welera-blue); }
.gln-info p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
}
.gln-info ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.gln-info ul li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}
.gln-info ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--welera-blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--welera-blue);
}
.gln-form {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
}
.gln-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.gln-form-head .lock {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--welera-orange-soft);
  color: var(--welera-orange);
  border-radius: 50%;
  font-size: 14px;
}
.gln-form h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.gln-form p.hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  margin-top: 6px;
}
.field {
  display: block;
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.field input::placeholder { color: var(--muted-light); }
.field input:focus {
  outline: none;
  border-color: var(--welera-blue);
  box-shadow: 0 0 0 4px rgba(43,124,179,0.10);
}
.field.gln-field input {
  font-family: "SF Mono", "Menlo", monospace;
  letter-spacing: 0.02em;
  font-size: 15px;
}
.gln-form .row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .gln-form .row { grid-template-columns: 1fr 1fr; }
}
.gln-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 16px;
}
.gln-form .small-link {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.gln-form .small-link a {
  color: var(--welera-blue);
  font-weight: 500;
}
.gln-status {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 13.5px;
  border-radius: 10px;
  display: none;
  letter-spacing: -0.005em;
}
.gln-status.error {
  display: block;
  background: #FCEDED;
  color: #B33A3A;
  border: 1px solid #F1C6C6;
}
.gln-status.ok {
  display: block;
  background: #E9F4ED;
  color: #1F7A40;
  border: 1px solid #BBE0CA;
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg-alt);
}
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--welera-blue); }
.faq-item summary .faq-toggle {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--welera-blue);
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.faq-item[open] summary .faq-toggle {
  transform: rotate(45deg);
  background: var(--welera-blue);
  color: #fff;
  border-color: var(--welera-blue);
}
.faq-item .faq-body {
  padding: 0 4px 26px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 70ch;
}

/* ============ CTA / FINAL ============ */
.final-cta {
  background: var(--welera-blue);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.16), transparent 40%),
    radial-gradient(ellipse at 80% 100%, rgba(232,134,46,0.20), transparent 50%);
  pointer-events: none;
}
.final-cta .section-inner { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.final-cta .slogan {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.final-cta .btn-orange {
  background: var(--welera-orange);
  color: #fff;
  font-size: 16px;
  padding: 16px 30px;
}
.final-cta .btn-orange:hover {
  background: #fff;
  color: var(--welera-orange);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.final-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
}

/* ============ FOOTER ============ */
footer {
  background: #0A1828;
  color: #c7c7cc;
  padding: 70px 22px 36px;
  font-size: 14px;
}
footer .foot-inner {
  max-width: 1080px;
  margin: 0 auto;
}
footer .foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 760px) {
  footer .foot-top { grid-template-columns: 1.7fr repeat(4, 1fr); gap: 36px; }
}
footer .foot-brand { max-width: 360px; }
footer .foot-brand .brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
footer .foot-brand img {
  width: 26px; height: auto;
  filter: brightness(0) invert(1) opacity(0.92);
}
footer .foot-brand strong {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
footer .foot-brand p {
  color: #a1a1a6;
  line-height: 1.6;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
footer .foot-brand .slogan {
  color: var(--welera-blue-light);
  font-style: italic;
  margin-top: 8px;
  display: block;
  font-size: 13.5px;
}
footer h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a {
  color: #c7c7cc;
  font-size: 14px;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--welera-blue-light); }
footer .foot-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: #6e6e73;
}
footer .foot-bottom a { color: #6e6e73; transition: color 0.2s; }
footer .foot-bottom a:hover { color: #c7c7cc; }
footer .icanedu-link {
  display: inline-flex; align-items: center; gap: 6px;
}
footer .icanedu-link::before {
  content: "↗";
  font-size: 14px;
  opacity: 0.7;
}
footer .wa-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #4ad366 !important;
}
footer .wa-link:hover { color: #6ee68a !important; }
footer .wa-link::before {
  content: "";
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38a9.9 9.9 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm5.8 14.16c-.25.69-1.45 1.32-1.99 1.36-.53.04-.53.43-3.35-.7-2.82-1.13-4.6-4.02-4.74-4.21-.14-.19-1.13-1.5-1.13-2.86 0-1.36.71-2.03.97-2.31.25-.28.55-.35.74-.35.18 0 .37 0 .53.01.17.01.4-.06.62.48.25.6.85 2.06.92 2.21.07.14.12.31.02.5-.09.19-.14.31-.28.48-.14.16-.29.37-.41.49-.14.14-.28.29-.12.57.16.28.71 1.17 1.53 1.9 1.05.94 1.94 1.23 2.22 1.37.28.14.44.12.6-.07.16-.18.69-.81.87-1.09.18-.28.37-.23.62-.14.25.09 1.6.76 1.87.9.28.14.46.21.53.32.07.12.07.66-.18 1.35z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38a9.9 9.9 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm5.8 14.16c-.25.69-1.45 1.32-1.99 1.36-.53.04-.53.43-3.35-.7-2.82-1.13-4.6-4.02-4.74-4.21-.14-.19-1.13-1.5-1.13-2.86 0-1.36.71-2.03.97-2.31.25-.28.55-.35.74-.35.18 0 .37 0 .53.01.17.01.4-.06.62.48.25.6.85 2.06.92 2.21.07.14.12.31.02.5-.09.19-.14.31-.28.48-.14.16-.29.37-.41.49-.14.14-.28.29-.12.57.16.28.71 1.17 1.53 1.9 1.05.94 1.94 1.23 2.22 1.37.28.14.44.12.6-.07.16-.18.69-.81.87-1.09.18-.28.37-.23.62-.14.25.09 1.6.76 1.87.9.28.14.46.21.53.32.07.12.07.66-.18 1.35z'/></svg>") center / contain no-repeat;
  flex: 0 0 auto;
}

/* ============ SCROLL REVEAL ============ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.32, 0.72, 0, 1), transform 0.9s cubic-bezier(0.32, 0.72, 0, 1);
}
.scroll-reveal.in {
  opacity: 1;
  /* translateY(0) yerine 'none': açılıştan sonra compositing katmanını kaldırır,
     bazı cihazlarda geçiş sonrası metnin kaybolması (repaint) hatasını önler */
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; }
}

/* ============ LEGAL PAGES ============ */
.legal-nav {
  position: sticky; top: 0; z-index: 9999;
  height: 56px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-nav .nav-inner {
  max-width: 820px; height: 100%;
  margin: 0 auto; padding: 0 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.legal-nav .brand { display: inline-flex; align-items: center; gap: 8px; }
.legal-nav .brand img { height: 26px; width: auto; }
.legal-nav .brand-text { font-size: 19px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.legal-nav .back-link {
  font-size: 14px; color: var(--welera-blue); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.legal-nav .back-link:hover { color: var(--welera-blue-deep); }

main.legal { padding: 56px 22px 80px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-inner .eyebrow { margin-bottom: 12px; }
.legal-inner h1 {
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.04em; line-height: 1.08;
  margin-bottom: 14px;
}
.legal-updated {
  color: var(--muted); font-size: 14px;
  padding-bottom: 22px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.legal-inner h2 {
  font-size: 21px; letter-spacing: -0.03em;
  margin: 38px 0 12px;
}
.legal-inner h3 { font-size: 17px; margin: 26px 0 8px; }
.legal-inner p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; font-size: 15.5px; }
.legal-inner ul, .legal-inner ol { margin: 0 0 16px 22px; }
.legal-inner li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; font-size: 15.5px; }
.legal-inner a { color: var(--welera-blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-inner strong { color: var(--ink); }
.legal-note {
  background: var(--welera-blue-soft);
  border: 1px solid rgba(43,124,179,0.18);
  border-radius: 12px;
  padding: 16px 18px; margin: 24px 0;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.65;
}
.legal-note strong { color: var(--welera-blue-deep); }
.legal-fill {
  background: var(--welera-orange-soft);
  border-radius: 4px; padding: 0 5px;
  color: #9a5410; font-weight: 600; font-style: normal;
}
.legal-table {
  width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14.5px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top;
}
.legal-table th { background: var(--bg-alt); font-weight: 600; color: var(--ink); }
.legal-table td { color: var(--ink-soft); }
.legal-foot {
  border-top: 1px solid var(--line);
  padding: 26px 22px; text-align: center;
  color: var(--muted); font-size: 13px;
}
.legal-foot a { color: var(--welera-blue); }
.legal-foot .legal-foot-links { margin-bottom: 10px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* ============ DEVRE DIŞI (İNAKTİF) BUTON / LİNK ============ */
[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(40%);
}
