/* =========================================================
   İdeal Danışmanlık — Ana Stil Dosyası
   ========================================================= */

:root {
  --bg-deep:        #050B1A;
  --bg-1:           #0A1628;
  --bg-2:           #0F1E36;
  --surface-1:      #122443;
  --surface-2:      #182B4F;
  --border:         rgba(255,255,255,0.08);
  --border-soft:    rgba(255,255,255,0.06);
  --border-glow:    rgba(34, 211, 238, 0.3);

  --text-primary:   #EAEEF7;
  --text-secondary: rgba(234, 238, 247, 0.78);
  --text-mid:       rgba(234, 238, 247, 0.62);
  --text-muted:     rgba(234, 238, 247, 0.5);
  --text-faint:     rgba(234, 238, 247, 0.32);

  --cyan-300:       #67E8F9;
  --cyan-400:       #22D3EE;
  --cyan-500:       #06B6D4;
  --blue-400:       #60A5FA;
  --blue-500:       #3B82F6;

  --amber-400:      #F59E0B;
  --amber-500:      #D97706;
  --red-500:        #DC2626;

  --gradient-text:        linear-gradient(135deg, #5EEAD4 0%, #22D3EE 50%, #3B82F6 100%);
  --gradient-warm-text:   linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  --gradient-primary:     linear-gradient(135deg, #3B82F6 0%, #22D3EE 100%);
  --gradient-warm:        linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  --gradient-bg:          linear-gradient(135deg, #0A1628 0%, #050B1A 50%, #0A1628 100%);

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

/* =========================================================
   TYPOGRAFİ
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(40px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 60px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 1.8vw, 24px); }

em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
em.warm {
  background: var(--gradient-warm-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '//';
  color: var(--cyan-400);
  opacity: 0.6;
}
.eyebrow--warm { color: var(--amber-400); }
.eyebrow--warm::before { color: var(--amber-400); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* =========================================================
   TOP STRIP + HEADER
   ========================================================= */
.top-strip {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-soft);
  padding: 8px 0;
}
.top-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}
.top-strip-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}
.top-strip-text .dot {
  width: 5px; height: 5px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-400);
}
.top-strip-cta {
  color: var(--text-primary);
  font-weight: 500;
}

.site-header {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-img { height: 44px; width: auto; }

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}
.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cyan-400);
}
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.3);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .main-nav.is-open .nav-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* =========================================================
   BUTONLAR
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn--primary {
  background: var(--gradient-primary);
  color: white;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-glow);
}
.btn--warm {
  background: var(--gradient-warm);
  color: white;
}
.btn--warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn--text {
  background: transparent;
  color: var(--cyan-400);
  padding: 6px 0;
}
.btn--text:hover {
  text-decoration: underline !important;
}

/* =========================================================
   SECTION + REVEAL
   ========================================================= */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section--alt {
  background: var(--bg-1);
}
.section--warm {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-deep) 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  margin: 16px 0 16px;
}
.section-head .lead {
  max-width: 640px;
  margin: 16px auto 0;
}
.section-head--asym {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 800px) {
  .section-head--asym {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(n+6) { transition-delay: .4s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: clamp(40px, 5vw, 80px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06), transparent 50%),
    var(--bg-deep);
}
.hero-watermark {
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(400px, 50vw, 800px);
  color: rgba(255,255,255,0.015);
  font-weight: 500;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.8;
}
.hero .container {
  max-width: 1440px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text {
  max-width: 540px;
}
.hero-title-compact {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 24px;
  color: var(--text-primary);
}
.hero-title-compact em {
  font-style: italic;
  background: linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub--compact {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}
.hero-network {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: 0;
}
.hero-tobot-svg {
  width: 100%;
  height: auto;
}
.hero-tobot-svg .tobot-node--link { cursor: pointer; }
.hero-tobot-svg .tobot-node--link circle:first-child {
  transition: r 0.25s ease, fill-opacity 0.25s ease;
}
.hero-tobot-svg .tobot-node--link:hover circle:first-child {
  r: 38;
}
.hero-tobot-svg .tobot-node--link:hover text {
  fill: rgba(255,255,255,1) !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-network {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-tobot-svg {
    min-height: auto;
  }
}

/* =========================================================
   TICKER (kayan şerit)
   ========================================================= */
.ticker {
  overflow: hidden;
  background: var(--bg-1);
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: tickerScroll 40s linear infinite;
  padding-right: 60px;
}
.ticker--reverse .ticker-track {
  animation-direction: reverse;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 32px);
  font-style: italic;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker-item::after {
  content: '✦';
  color: var(--cyan-400);
  font-style: normal;
  font-size: 14px;
  opacity: 0.5;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   PROSE (Tanışma drop cap)
   ========================================================= */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

/* =========================================================
   MAGAZINE (Yaklaşım 4 sütun)
   ========================================================= */
.magazine--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.magazine-col {
  padding: 24px;
  border-left: 1px solid var(--border-soft);
}
.magazine-col:first-child { border-left: none; }
.col-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 16px;
}
.magazine-col h4 {
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.3;
}
.magazine-col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
@media (max-width: 900px) {
  .magazine--4 {
    grid-template-columns: 1fr 1fr;
  }
  .magazine-col:nth-child(odd) { border-left: none; }
  .magazine-col:nth-child(3) { border-top: 1px solid var(--border-soft); padding-top: 32px; margin-top: 8px; }
  .magazine-col:nth-child(4) { border-top: 1px solid var(--border-soft); padding-top: 32px; margin-top: 8px; }
}
@media (max-width: 600px) {
  .magazine--4 { grid-template-columns: 1fr; gap: 0; }
  .magazine-col { border-left: none; border-top: 1px solid var(--border-soft); padding-top: 28px; }
  .magazine-col:first-child { border-top: none; padding-top: 0; }
}

/* =========================================================
   YÖNETİM KURULU ÜYELİĞİ — ÖZEL PREMIUM TASARIM
   ========================================================= */
.kurul-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse at top, rgba(34, 211, 238, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.04), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.kurul-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.kurul-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.kurul-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(145deg,
    rgba(18, 36, 67, 0.6) 0%,
    rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px);
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 2;
}
.kurul-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
}

.kurul-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-300);
  margin-bottom: 32px;
}
.kurul-card-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-400);
}

.kurul-card-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 28px;
  color: var(--text-primary);
}
.kurul-card-title em {
  font-style: italic;
  background: linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.kurul-card-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 0 48px;
}

.kurul-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.kurul-pillar {
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: all .3s var(--ease);
}
.kurul-pillar:hover {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.2);
  transform: translateY(-2px);
}
.kurul-pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cyan-400);
  display: block;
  margin-bottom: 12px;
}
.kurul-pillar h4 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text-primary);
  font-weight: 500;
}
.kurul-pillar p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-mid);
}

.kurul-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
@media (max-width: 800px) {
  .kurul-pillars { grid-template-columns: 1fr; gap: 12px; }
  .kurul-card { padding: 32px 24px; }
}

/* =========================================================
   SEKTÖREL KÖPRÜ (Tobot 6 üye yörünge)
   ========================================================= */
.sektor-kopru-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-deep) 100%);
}
.sektor-kopru-stage {
  position: relative;
  width: min(1000px, 95vw);
  margin: 0 auto;
  min-height: 720px;
}
.sektor-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.sektor-orbit--outer { width: 95%; aspect-ratio: 1; }
.sektor-orbit--inner { width: 62%; aspect-ratio: 1; border-color: rgba(255,255,255,0.04); }

.sektor-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 560px;
  z-index: 5;
  padding: 0 24px;
}
.sektor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.06);
  color: var(--cyan-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.sektor-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 20px;
  color: white;
}
.sektor-title em {
  font-style: italic;
  background: linear-gradient(135deg, #5EEAD4 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.sektor-lead {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 480px;
}
.sektor-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #0A1628 !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sektor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.sektor-item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: transform .3s var(--ease);
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sektor-item:hover {
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 20;
}
.sektor-item-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  background: linear-gradient(145deg, #0F1E36 0%, #050B1A 100%) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 12px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow .3s var(--ease);
  overflow: hidden;
  padding: 14px;
  box-sizing: border-box;
}
.sektor-item:hover .sektor-item-circle {
  box-shadow:
    0 0 0 2px rgba(34, 211, 238, 0.5),
    0 16px 48px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.sektor-item-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.sektor-item-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  opacity: 0.92;
}
.sektor-item-label {
  padding: 6px 14px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: all .25s var(--ease);
  text-align: center;
}
.sektor-item:hover .sektor-item-label {
  color: white;
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.18);
}
.sektor-item--float-1 { animation: sektorFloat1 6s ease-in-out infinite; }
.sektor-item--float-2 { animation: sektorFloat2 7s ease-in-out infinite; }
.sektor-item--float-3 { animation: sektorFloat3 8s ease-in-out infinite; }

@keyframes sektorFloat1 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes sektorFloat2 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-7px); }
}
@keyframes sektorFloat3 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-12px); }
}

@media (max-width: 900px) {
  .sektor-item-circle { width: 72px; height: 72px; padding: 10px; }
  .sektor-item-logo { width: 100%; height: 100%; }
  .sektor-item-dot { width: 28px; height: 28px; }
  .sektor-item-label { font-size: 9px; padding: 4px 10px; }
}

/* =========================================================
   MANIFESTO (Solo Word)
   ========================================================= */
.solo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.solo-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}
.dot--warm {
  color: var(--amber-400);
}
.solo-side h4 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 16px 0 24px;
  line-height: 1.3;
}
.solo-side p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
@media (max-width: 800px) {
  .solo-grid { grid-template-columns: 1fr; gap: 24px; }
  .solo-word { font-size: clamp(100px, 30vw, 180px); }
}

/* =========================================================
   REFERANSLAR (Kayan logo şeridi)
   ========================================================= */
.refs-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.refs-marquee {
  overflow: hidden;
  position: relative;
  padding: 32px 0;
  margin-top: 48px;
}
.refs-marquee::before,
.refs-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.refs-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.refs-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}
.refs-marquee-track {
  display: inline-flex;
  gap: 24px;
  animation: refsScroll 60s linear infinite;
  padding-right: 24px;
}
.refs-marquee:hover .refs-marquee-track {
  animation-play-state: paused;
}
.ref-logo {
  flex-shrink: 0;
  min-width: 180px;
  height: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  transition: all .25s var(--ease);
  text-decoration: none !important;
}
.ref-logo:hover {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.25);
  transform: translateY(-2px);
}
.ref-logo img {
  max-height: 48px;
  max-width: 140px;
  filter: grayscale(1) opacity(0.6);
  transition: filter .25s var(--ease);
}
.ref-logo:hover img {
  filter: grayscale(0) opacity(1);
}
.ref-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
@keyframes refsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   MÜŞTERİ GÖRÜŞLERİ - MASONRY (görsel 1 gibi)
   ========================================================= */
.testimonials-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-deep);
  position: relative;
}
.testimonials-section .section-head {
  margin-bottom: 24px;
}
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 16px;
}
.testimonials-title em {
  font-style: italic;
  background: linear-gradient(135deg, #5EEAD4, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.testimonials-lead strong {
  color: var(--text-primary);
  font-weight: 600;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  margin: 0 auto 56px;
}
.testimonials-badge-avatars {
  display: flex;
}
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-left: -10px;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.t-avatar:first-child { margin-left: 0; }
.t-avatar--1 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.t-avatar--2 { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.t-avatar--3 { background: linear-gradient(135deg, #10B981, #059669); }
.testimonials-badge-info { text-align: left; }
.t-badge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.t-badge-count {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonials-masonry-wrap {
  text-align: center;
}
.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  align-items: start;
}
.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .testimonials-masonry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-masonry { grid-template-columns: 1fr; }
}

.t-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all .3s var(--ease);
  position: relative;
}
.t-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.t-card-content {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0 0 20px;
  font-weight: 400;
}
.t-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.t-card-author { flex: 1; min-width: 0; }
.t-card-author-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
}
.t-card-author-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-400);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px clamp(32px, 5vw, 64px);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.04), rgba(220, 38, 38, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--amber-400);
}
.newsletter-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.newsletter-perks span::before {
  content: '✓ ';
  color: var(--amber-400);
}

/* =========================================================
   ARTICLES HOME (Anasayfada 3'lü 2 sıra)
   ========================================================= */
.articles-home-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-1);
}
.articles-home-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.articles-home-cat-pill {
  padding: 9px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all .25s var(--ease);
}
.articles-home-cat-pill:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--cyan-300);
  transform: translateY(-1px);
}

.articles-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .articles-home-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .articles-home-grid { grid-template-columns: 1fr; }
}

.articles-home-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.articles-home-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.articles-home-card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.articles-home-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.articles-home-card:hover .articles-home-card-cover img {
  transform: scale(1.04);
}
.articles-home-card-cover-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  color: rgba(34, 211, 238, 0.2);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(59, 130, 246, 0.08));
}
.articles-home-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan-300);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.articles-home-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.articles-home-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.articles-home-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 20px;
  flex: 1;
}
.articles-home-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.articles-home-card-meta .dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
}

/* =========================================================
   ARTICLE / MAKALELER
   ========================================================= */
.article-hero {
  padding: 80px 0 60px;
  background: var(--bg-deep);
}
.article-hero .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-hero .meta .dot {
  width: 4px; height: 4px;
  background: var(--text-faint);
  border-radius: 50%;
}
.article-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  margin: 0 0 20px;
}

/* Kategori filtre barı */
.article-cats-bar {
  padding: 24px 0 32px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.article-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.article-cat-pill {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none !important;
  transition: all .2s var(--ease);
}
.article-cat-pill:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}
.article-cat-pill.is-active {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #0A1628;
  border-color: transparent;
  font-weight: 500;
}

/* Makale kart grid (kapaklı) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.article-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  overflow: hidden;
}
.article-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-glow);
  transform: translateY(-3px);
}
.article-card-cover-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.article-card-cover-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.article-card:hover .article-card-cover-thumb img {
  transform: scale(1.04);
}
.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.article-card-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-400);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  width: fit-content;
}
.article-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: var(--text-primary);
}
.article-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.article-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}
.article-card-foot .dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
}

/* Tekil makale kapak */
.article-cover {
  margin: 0 0 40px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
}
.article-cover img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
  object-fit: cover;
}

/* Makale body markdown */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  margin: 48px 0 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 32px 0 12px;
  color: var(--text-primary);
  line-height: 1.3;
}
.article-body ul {
  margin: 0 0 24px 24px;
  color: var(--text-secondary);
}
.article-body ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-body blockquote {
  border-left: 3px solid var(--cyan-400);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-primary);
}
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article-body a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-decoration-color: rgba(34,211,238,0.4);
  text-underline-offset: 3px;
}
.article-body a:hover { text-decoration-color: var(--cyan-400); }
.article-inline-img {
  width: 100%;
  border-radius: 12px;
  margin: 24px 0;
  display: block;
}

/* Tekil makale */
.article-single {
  padding: clamp(60px, 8vw, 100px) 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-back {
  color: var(--cyan-400) !important;
  text-decoration: none !important;
}
.article-back:hover { text-decoration: underline !important; }
.article-cat-link {
  color: var(--text-muted) !important;
}
.article-cat-link:hover { color: var(--text-primary) !important; }
.article-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.article-byline {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.article-byline .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.article-body p { margin: 0 0 24px; }

/* Yorumlar — masonry görünüm */
.article-comments {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-soft);
}
.article-comments h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--text-primary);
  text-align: center;
}
.article-comments h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #5EEAD4, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comments-lead {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.comment-flash {
  background: rgba(34, 197, 94, 0.1);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  text-align: center;
}

.comment-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.comment-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .comment-form .field-row { grid-template-columns: 1fr; }
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 12px;
}
.comment-form textarea {
  line-height: 1.6;
  resize: vertical;
  min-height: 90px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
}
.comment-form .rating-input {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 16px;
}
.rating-input label { font-size: 13px; color: var(--text-muted); margin-right: 8px; }
.rating-input input[type=radio] { display: none; }
.rating-input label.star {
  cursor: pointer;
  font-size: 22px;
  color: var(--text-faint);
  transition: color .15s var(--ease);
  margin: 0;
}
.rating-input label.star.is-on { color: var(--amber-400); }

/* Yorum kartları masonry */
.comments-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 900px) {
  .comments-masonry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .comments-masonry { grid-template-columns: 1fr; }
}

.comment-empty {
  color: var(--text-muted);
  font-style: italic;
  padding: 32px 0;
  text-align: center;
}

/* =========================================================
   DAVET (Kapanış)
   ========================================================= */

/* =========================================================
   FORMS
   ========================================================= */
.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px;
}
.form-card .field { margin-bottom: 18px; }
.form-card label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-card input,
.form-card textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
}
.form-card .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-card .field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-img { height: 44px; width: auto; }
.footer-tag {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--cyan-400);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
