/* ============================================================
   SANATIZI — Design System & Layout
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700;900&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #000000;
  --bg-2: #050505;
  --gold: #c69930;
  --gold-2: #e8bf5a;
  --purple: #B38728;
  --pink: #f03ce5;
  --blue-acc: #4484ff;
  --fg: #f0eaf8;
  --fg-muted: rgba(240, 234, 248, 0.5);
  --border: rgba(255, 255, 255, 0.07);
  --header-bg-scrolled: rgba(7, 1, 15, 0.88);
  --header-h: 110px;
  --radius: 14px;
}

:root.light-theme {
  --bg: #F5F5F7; /* Apple-style premium soft gray */
  --bg-2: #FFFFFF;
  --fg: #1D1D1F; /* Soft black, easy on the eyes */
  --fg-muted: #55555C; /* Darker gray for better legibility on white */
  --border: rgba(0, 0, 0, 0.12);
  --header-bg-scrolled: rgba(245, 245, 247, 0.85);
  --gold: #B38728; /* Richer gold for better contrast on light */
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ── Starfield canvas ─────────────────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Page wrapper (scroll container) ─────────────────── */
.page-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

.page-wrapper::-webkit-scrollbar {
  display: none;
}

/* ── Section snap ─────────────────────────────────────── */
.section-snap {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
  background: transparent;
  transition: background 0.4s;
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-logo img {
  height: 110px;
  object-fit: contain;
  transition: height 0.3s;
  margin-left: 2.5rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-menu {
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.3rem;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-menu:hover {
  border-color: var(--gold);
  background: rgba(198, 153, 48, 0.06);
}

.btn-menu .plus {
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn-menu.open .plus {
  transform: rotate(45deg);
}

.btn-cta {
  position: relative;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.6rem;
  border-radius: 99px;
  text-decoration: none;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 70%, var(--gold) 100%);
  animation: rotate-border 2.5s linear infinite;
  z-index: -1;
}

.btn-cta:hover::before {
  background: conic-gradient(from 0deg, transparent 20%, var(--gold) 60%, var(--gold-2) 100%);
  animation: rotate-border 1.5s linear infinite;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  /* normalde ince */
  background: var(--bg);
  border-radius: 99px;
  z-index: -1;
  transition: inset 0.3s, background 0.3s;
}

/* Hover'da kalinlassin ve arkaplan degismesin */
.btn-cta:hover::after {
  inset: 2px;
  background: var(--bg);
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Theme Toggle Switch */
.btn-theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  width: 44px;
  height: 24px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.btn-theme-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.light-theme .btn-theme-toggle {
  background: rgba(0, 0, 0, 0.2);
}

.light-theme .btn-theme-toggle::after {
  transform: translateX(20px);
  background: #000;
}

/* Panel Dropdown */
.panel-dropdown {
  position: relative;
}

.btn-panel {
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.3rem;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-panel:hover, .panel-dropdown.open .btn-panel {
  background: var(--fg);
  color: var(--bg);
}

.panel-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.panel-dropdown.open .panel-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.panel-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--fg);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.panel-menu a:hover {
  background: rgba(179, 135, 40, 0.1); /* light purple tint on hover */
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-container {
  width: 90%;
  max-width: 700px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s;
}

.search-overlay.open .search-container {
  transform: translateY(0);
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  color: var(--fg);
  font-size: 2.5rem;
  padding: 1rem 0;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.search-input::placeholder {
  color: var(--fg-muted);
}

.btn-search-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-search-close:hover {
  transform: scale(1.1);
}

.btn-icon-circle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-icon-circle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-icon-circle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}


/* ── Menu Overlay ────────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-inner {
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.menu-nav-list {
  list-style: none;
}

.menu-nav-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-nav-list a {
  color: var(--fg);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.2s;
}

.menu-nav-list a:hover {
  color: var(--gold);
}

.menu-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}

.menu-info-val {
  font-size: 0.95rem;
}

.menu-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.menu-social a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.menu-social a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ── Dot navigation ────────────────────────────────────── */
.dot-nav {
  position: fixed;
  right: 3rem; /* Align with header right padding */
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dot-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  flex-direction: row-reverse;
}

.dot-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.dot-nav-item.active .dot-nav-dot {
  background: var(--gold);
  transform: scale(1.4);
}

.dot-nav-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  position: relative;
  transition: opacity 0.2s, color 0.3s;
}

.dot-nav-label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.dot-nav-item:hover .dot-nav-label {
  opacity: 1;
  color: var(--fg);
}

.dot-nav-item:hover .dot-nav-label::after {
  width: 100%;
}

/* ── Chat bubble ────────────────────────────────────────── */
.chat-bubble-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(179, 135, 40, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-bubble-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(179, 135, 40, 0.7);
}

.chat-bubble-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ===========================================================
   SECTION 1 — HERO
   =========================================================== */
#sec-home {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(30rem, 1.4fr) minmax(16rem, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 0 2rem;
}

/* Sol */
.hero-left {
  padding-left: 2.5rem;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 32rem;
  min-height: 100px; /* prevents layout shift during text rotation */
}

/* Sağ: servis listesi */
.hero-right {
  padding-left: 1.5rem;
  padding-right: 1.5rem; /* Align perfectly with the dot-nav */
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-right-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
}

.hero-right-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-service-scroller {
  height: 320px;
  /* Görünür alan yüksekliği */
  overflow: hidden;
  position: relative;
  /* Üstten ve alttan flulaştırma (mask) */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}

.hero-service-list:hover {
  animation-play-state: paused;
  /* Hoverda durdur */
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.hero-service-list li {
  padding: 1.5rem 0;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0.65;
}

.hero-service-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--border) 0%, var(--border) 60%, transparent 100%);
}

.hero-service-list li:hover {
  opacity: 1;
}

.hero-service-list li h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}

.hero-service-list li:hover h3 {
  color: var(--fg);
}

.hero-service-list li p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.hero-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 810px;
  margin: 0 auto;
  transform: translateY(-8%);
}

/* Sonar rings */
.sonar-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 150;
}

.ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Dışa doğru büyüyerek kaybolan dalga halkaları */
.ring.solid {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  animation: ripple-out 8s linear infinite;
  opacity: 0;
}

.ring.solid.delay-1 {
  animation-delay: 2.6s;
}

.ring.solid.delay-2 {
  animation-delay: 5.2s;
}

@keyframes ripple-out {
  0% {
    width: 40%;
    height: 40%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

/* 360 derece yavaşça dönen kesik halkalar */
.ring.dashed {
  border: 1.5px dashed rgba(255, 255, 255, 0.08);
  animation: spin-slow 35s linear infinite;
}

.r-d1 {
  width: 70%;
  height: 70%;
}

.r-d2 {
  width: 105%;
  height: 105%;
  border-color: rgba(255, 255, 255, 0.03);
  animation-direction: reverse;
  animation-duration: 50s;
}

@keyframes spin-slow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Canvas */
.waveform-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

/* Center UI overlay */
.waveform-center-ui {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.5rem;
  /* Üstteki badge ve alttaki mikrofonu merkezden eşit uzaklaştırır */
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.waveform-center-ui.interactive {
  pointer-events: all;
}

.waveform-status-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem;
  background: rgba(198, 153, 48, 0.08);
  border: 1px solid rgba(198, 153, 48, 0.25);
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(198, 153, 48, 0.15);
  backdrop-filter: blur(4px);
}

.ai-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* Ses çubukları */
.voice-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 14px;
}

.voice-bars span {
  display: block;
  width: 2.5px;
  background: var(--gold);
  border-radius: 99px;
  animation: bar-idle 1.4s ease-in-out infinite;
}

.voice-bars span:nth-child(1) {
  animation-delay: 0s;
  height: 8px;
}

.voice-bars span:nth-child(2) {
  animation-delay: 0.1s;
  height: 14px;
}

.voice-bars span:nth-child(3) {
  animation-delay: 0.2s;
  height: 18px;
}

.voice-bars span:nth-child(4) {
  animation-delay: 0.3s;
  height: 10px;
}

.voice-bars span:nth-child(5) {
  animation-delay: 0.4s;
  height: 15px;
}

.voice-bars span:nth-child(6) {
  animation-delay: 0.15s;
  height: 12px;
}

.voice-bars span:nth-child(7) {
  animation-delay: 0.25s;
  height: 8px;
}

@keyframes bar-idle {

  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1.0);
    opacity: 1.0;
  }
}

.listening .voice-bars span {
  animation-duration: 0.5s;
}

.speaking .voice-bars span {
  animation-duration: 0.3s;
}

/* Durum metni */
.waveform-status {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  white-space: nowrap;
  display: grid;
  align-items: center;
  justify-items: center;
}

.waveform-status .fade-text {
  grid-area: 1 / 1;
  opacity: 0;
  animation: cycle-text-5 15s infinite;
}

@keyframes cycle-text-5 {
  0% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(2px);
  }
  2%, 18% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  20%, 100% {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(2px);
  }
}

/* Mikrofon butonu */
.mic-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* referanstaki gibi hafif morumsu, kenarlikli yapı */
  background: rgba(179, 135, 40, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 0.25s, color 0.3s;
  box-shadow: none;
}

.mic-btn:hover {
  background: rgba(179, 135, 40, 0.18);
  border-color: rgba(179, 135, 40, 0.5);
  color: var(--fg);
  transform: scale(1.1);
  box-shadow: 0 0 22px rgba(179, 135, 40, 0.35);
}

.mic-btn.listening {
  background: rgba(198, 153, 48, 0.22);
  border-color: rgba(198, 153, 48, 0.75);
  color: var(--fg);
  box-shadow: 0 0 28px rgba(198, 153, 48, 0.55);
  animation: mic-pulse 1.2s ease-in-out infinite;
}

.mic-btn.speaking {
  background: rgba(198, 153, 48, 0.18);
  border-color: rgba(198, 153, 48, 0.6);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(198, 153, 48, 0.4);
}

.mic-btn svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@keyframes mic-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(198, 153, 48, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(198, 153, 48, 0.8), 0 0 80px rgba(198, 153, 48, 0.4);
  }
}

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E11D48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 2;
}

.chat-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* chat-bubble-btn artık kullanılmıyor — hide */
.chat-bubble-btn {
  display: none !important;
}

/* ── Light Theme Adjustments ──────────────────────────────── */
.light-theme .hero-service-list li {
  opacity: 1; /* Remove fading in light mode for legibility */
}

.light-theme .hero-service-list li h3 {
  color: #94711D; /* Darker unhovered gold */
}

.light-theme .hero-service-list li p {
  color: var(--fg-muted);
}

.light-theme .hero-service-list li:hover h3 {
  color: var(--fg);
}

.light-theme .ai-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .mic-btn {
  background: rgba(179, 135, 40, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.65);
}

.light-theme .mic-btn:hover {
  background: rgba(179, 135, 40, 0.18);
  color: var(--fg);
}

/* ── StrokeText Animation Styles ─────────────────────────── */
.stroke-text {
  display: block;
  width: 100%;
  line-height: 0;
}

.stroke-text--hover {
  cursor: pointer;
}

.stroke-text__svg {
  display: block;
  width: 100%;
  height: var(--stroke-text-height, 160px);
}

.stroke-text__stroke,
.stroke-text__fill {
  user-select: none;
}

/* Dark Mode Colors (Default) */
.stroke-text__stroke {
  stroke: var(--gold);
}
.stroke-text__fill {
  fill: #FFFFFF;
}

/* Light Mode Colors */
.light-theme .stroke-text__stroke {
  stroke: var(--gold); /* #B38728 from light theme */
}
.light-theme .stroke-text__fill {
  fill: var(--fg); /* #1D1D1F */
}

/* Light Theme Dot Nav */
.light-theme .dot-nav-dot {
  background: rgba(0, 0, 0, 0.2);
}

.light-theme .dot-nav-item.active .dot-nav-dot {
  background: var(--gold);
}

/* Light Theme Sonar Rings */
.light-theme .ring.solid {
  border: 1.5px solid rgba(179, 135, 40, 0.3); /* Soft gold for light theme */
  opacity: 0;
}

.light-theme .ring.dashed {
  border: 1.5px dashed rgba(179, 135, 40, 0.2);
}

.waveform-status {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  white-space: nowrap;
  display: grid;
  align-items: center;
  justify-items: center;
}

.waveform-status .fade-text {
  grid-area: 1 / 1;
  opacity: 0;
  animation: cycle-text-5 15s infinite;
}

@keyframes cycle-text-5 {
  0% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(2px);
  }
  2%, 21% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  23%, 100% {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(2px);
  }
}

/* Mikrofon butonu */
.mic-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* referanstaki gibi hafif morumsu, kenarlikli yapı */
  background: rgba(179, 135, 40, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 0.25s, color 0.3s;
  box-shadow: none;
}

.mic-btn:hover {
  background: rgba(179, 135, 40, 0.18);
  border-color: rgba(179, 135, 40, 0.5);
  color: var(--fg);
  transform: scale(1.1);
  box-shadow: 0 0 22px rgba(179, 135, 40, 0.35);
}

.mic-btn.listening {
  background: rgba(198, 153, 48, 0.22);
  border-color: rgba(198, 153, 48, 0.75);
  color: var(--fg);
  box-shadow: 0 0 28px rgba(198, 153, 48, 0.55);
  animation: mic-pulse 1.2s ease-in-out infinite;
}

.mic-btn.speaking {
  background: rgba(198, 153, 48, 0.18);
  border-color: rgba(198, 153, 48, 0.6);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(198, 153, 48, 0.4);
}

.mic-btn svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@keyframes mic-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(240, 60, 229, 0.4);
  }

  50% {
    box-shadow: 0 0 45px rgba(240, 60, 229, 0.9), 0 0 70px rgba(240, 60, 229, 0.3);
  }
}

/* Transkript balonu */
.transcript-bubble {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 5, 24, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--fg);
  max-width: 320px;
  width: max-content;
  z-index: 10;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.transcript-bubble.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.transcript-bubble .bubble-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

/* ===========================================================
   SECTION 2 — FEATURES
   =========================================================== */
#sec-features {
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee-row:nth-child(2) .marquee-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.marquee-star {
  color: var(--gold);
  font-size: 0.6rem;
}

.features-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
}

.feature-card {
  background: rgba(13, 5, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(198, 153, 48, 0.3);
  transform: translateY(-3px);
}

.feature-card-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}

.feature-card-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.feature-mockup {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--border);
}

.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-msg {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.65rem;
  line-height: 1.5;
  max-width: 90%;
}

.mockup-msg.ai {
  background: rgba(179, 135, 40, 0.15);
  border: 1px solid rgba(179, 135, 40, 0.2);
  align-self: flex-start;
}

.mockup-msg.user {
  background: rgba(198, 153, 48, 0.12);
  border: 1px solid rgba(198, 153, 48, 0.2);
  align-self: flex-end;
}

.mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.mockup-tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  background: rgba(198, 153, 48, 0.1);
  border: 1px solid rgba(198, 153, 48, 0.25);
  color: var(--gold);
}

.mockup-progress {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.progress-steps {
  display: flex;
  gap: 0.4rem;
}

.progress-step {
  flex: 1;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.2rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.progress-step.done {
  background: rgba(198, 153, 48, 0.1);
  border-color: rgba(198, 153, 48, 0.3);
  color: var(--gold);
}

.mockup-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.mockup-dates {
  display: flex;
  gap: 1rem;
}

.mockup-date-item label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.15rem;
}

.mockup-date-item span {
  font-size: 0.72rem;
}

/* ===========================================================
   SECTION 3 — PARTNERS
   =========================================================== */
#sec-partners {
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
}

.partners-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  line-height: 1.3;
}

.partners-heading em {
  font-style: normal;
  color: var(--gold);
}

.partners-scatter {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 900px;
}

.partner-logo {
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.partner-logo:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 153, 48, 0.06);
}

/* ===========================================================
   SECTION 4 — INDUSTRIES WHEEL
   =========================================================== */
#sec-industries {
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem 2rem 1.5rem;
}

.wheel-eyebrow {
  text-align: center;
}

.wheel-eyebrow p {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}

.gradient-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wheel-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  padding: 0.5rem 0;
}

.wheel-card {
  flex: 0 0 200px;
  background: rgba(13, 5, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
}

.wheel-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.wheel-card:nth-child(3) {
  flex: 0 0 220px;
  border-color: rgba(198, 153, 48, 0.3);
  background: rgba(13, 5, 24, 0.9);
}

.wheel-card-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.wheel-card-icon svg {
  width: 100%;
  height: 100%;
}

.wheel-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.wheel-card h3 span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

.wheel-card p {
  font-size: 0.65rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.wheel-center-card {
  text-align: center;
}

.wheel-center-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.wheel-center-card p {
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}

.wheel-nav {
  display: flex;
  gap: 1rem;
}

.wheel-btn {
  padding: 0.5rem 1.4rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  border-radius: 99px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.wheel-btn:hover {
  border-color: var(--gold);
  background: rgba(198, 153, 48, 0.07);
}

/* ===========================================================
   SECTION 5 — GET STARTED
   =========================================================== */
#sec-getstarted {
  flex-direction: column;
  padding: 2rem;
}

.gs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  max-width: 660px;
}

.gs-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(198, 153, 48, 0.3);
  border-radius: 99px;
}

.gs-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.text-gold {
  color: var(--gold);
}

.gs-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.gs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.gs-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* FAQ */
.faq-list {
  width: 100%;
  max-width: 600px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  z-index: 100;
  min-height: auto !important;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand img {
  display: none;
}

.footer-tagline {
  font-size: 0.68rem;
  color: var(--fg-muted);
  margin-bottom: 0;
}

.footer-privacy {
  font-size: 0.68rem;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-privacy:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.6rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

.has-tooltip {
  position: relative;
  display: inline-block;
}

.sugar-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  transform: translateY(10px);
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(179, 135, 40, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  width: max-content;
  max-width: 320px;
  text-align: center;
  font-size: 0.65rem;
  line-height: 1.4;
  color: var(--fg);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(179, 135, 40, 0.1) inset;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
  pointer-events: none;
  z-index: 100;
}

.has-tooltip:hover .sugar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tooltip Arrow */
.sugar-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(179, 135, 40, 0.4) transparent transparent transparent;
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

.footer-copy a:hover {
  color: var(--gold-2);
  text-decoration: underline;
}

.mobile-bottom-nav {
  display: none; /* Hide on desktop */
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  #sec-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px; /* Clear the logo */
    padding-bottom: 90px;
    height: 100vh;
    overflow: hidden;
  }

  .hero-left {
    order: 2;
    position: relative;
    width: 100%;
    height: 300px; /* FIXED height so it never shifts */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Sola dayalı */
    justify-content: flex-start;
    text-align: left; /* Sola dayalı */
    margin-top: 2rem;
    padding: 0 1.5rem; /* Masaüstünden gelen sol boşluğu sıfırladık ama kenarlardan biraz pay bıraktık */
  }
  
  #hero-text-wrapper {
    width: 100%;
    text-align: left;
  }

  .hero-eyebrow {
    justify-content: flex-start;
  }

  .hero-h1 {
    font-size: clamp(2.0rem, 9vw, 2.9rem);
    text-align: left !important;
    white-space: normal;
    width: 100%;
  }
  
  .hero-sub {
    font-size: 0.9rem;
    max-width: 100%;
    width: 100%;
    text-align: left !important;
    min-height: 110px;
  }

  .hero-right {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    background: rgba(10, 4, 22, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(198, 153, 48, 0.3);
    border-radius: 24px 24px 0 0;
    z-index: 400;
    padding: 3rem 1.5rem 2rem 1.5rem;
    bottom: 70px;
    height: calc(85vh - 70px);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .hero-right.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-close-btn {
    display: flex !important;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    cursor: pointer;
    z-index: 10;
  }

  .hero-center {
    order: 1;
    position: relative;
    max-width: 320px;
    width: 100%;
    height: 320px; /* FIXED height */
    flex: 0 0 320px; /* Do not shrink or grow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .waveform-center-ui {
    gap: 1rem;
  }
  
  .transcript-bubble {
    display: none !important;
  }

  /* Center Header Logo & Hide Desktop Navs */
  .site-header { justify-content: center; padding: 0; }
  .header-logo img { margin-left: 0; }
  .header-right, .orbit-menu, .action-buttons { display: none !important; }

  /* Mobile Bottom Navigation */
  .mobile-bottom-nav {
    display: flex;
  }

  /* Footer Padding to avoid overlap with bottom nav */
  .site-footer {
    padding-bottom: 90px;
  }

  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 4, 22, 0.85);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 500;
    align-items: center;
    justify-content: space-around;
    padding: 0 5px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    gap: 4px;
    cursor: pointer;
    flex: 1;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-nav-item svg {
    width: 22px;
    height: 22px;
    transition: color 0.3s;
  }
  .bottom-nav-item span {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: visible;
  }
  .bottom-nav-item.active {
    color: var(--gold);
  }

  /* Center FAB (Sanatizi AI Icon) */
  .bottom-nav-center-action {
    position: relative;
    top: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1.2;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-nav-center-action.open .fab-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .bottom-nav-center-action.open .center-fab {
    transform: rotate(45deg);
    background: rgba(30, 10, 40, 0.95);
  }
  .fab-menu {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.8);
    display: flex;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);
  }
  .fab-action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 4, 22, 0.95);
    box-shadow: 0 5px 15px rgba(198, 153, 48, 0.3), inset 0 0 0 1px rgba(198, 153, 48, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .fab-action:active {
    transform: scale(0.9);
  }
  .fab-action svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
  }
  .center-fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10, 4, 22, 0.95);
    box-shadow: 0 5px 25px rgba(198, 153, 48, 0.2), inset 0 0 0 1px rgba(198, 153, 48, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.2s, background 0.3s;
  }
  .center-fab img {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
  .center-fab:active {
    transform: scale(0.95);
  }
}



@media (max-width: 640px) {
  .menu-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 1rem;
    position: relative;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

  .dot-nav {
    display: none;
  }
}

/* ===========================================================
   CHAT DRAWER — Altta kayarak açılan yazışma paneli
   =========================================================== */

/* Overlay arka plan */
.chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.35s;
}

.chat-overlay.open {
  background: rgba(0, 0, 0, 0.45);
  pointer-events: all;
}

/* Drawer panel */
.chat-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 20px));
  width: min(780px, 96vw);
  max-height: 72vh;
  z-index: 301;
  background: rgba(10, 4, 22, 0.96);
  border: 1px solid rgba(179, 135, 40, 0.28);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 -8px 60px rgba(179, 135, 40, 0.18), 0 -2px 20px rgba(0, 0, 0, 0.5);
}

.chat-drawer.open {
  transform: translateX(-50%) translateY(0);
}

/* Drawer handle bar */
.chat-drawer-handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  margin: 12px auto 0;
  cursor: grab;
}

/* Drawer header */
.chat-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chat-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-drawer-title .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.chat-drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.chat-drawer-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--fg);
}

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}

/* Mesaj balonları */
.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  animation: msg-in 0.3s ease-out;
}

@keyframes msg-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.user {
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.chat-msg.assistant .chat-msg-avatar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 100%);
  color: #07010f;
}

.chat-msg.user .chat-msg-avatar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--fg);
}

.chat-msg-bubble {
  max-width: 72%;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.6;
}

.chat-msg.assistant .chat-msg-bubble {
  background: rgba(179, 135, 40, 0.14);
  border: 1px solid rgba(179, 135, 40, 0.22);
  border-bottom-left-radius: 4px;
  color: var(--fg);
}

.chat-msg.user .chat-msg-bubble {
  background: rgba(198, 153, 48, 0.14);
  border: 1px solid rgba(198, 153, 48, 0.22);
  border-bottom-right-radius: 4px;
  color: var(--fg);
}

/* Yazıyor animasyonu */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.9rem;
}

.chat-typing span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dot {

  0%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Input bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chat-input-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(179, 135, 40, 0.3);
  border-radius: 99px;
  padding: 0 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input-pill:focus-within {
  border-color: rgba(179, 135, 40, 0.7);
  box-shadow: 0 0 0 3px rgba(179, 135, 40, 0.12);
}

.chat-input-info {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input-info svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.chat-input-field {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.7rem 0;
}

.chat-input-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.chat-input-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.5;
}

.chat-input-send.active {
  opacity: 1;
}

.chat-input-send:hover {
  background: var(--gold-2);
  transform: scale(1.08);
}

.chat-input-send svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

/* Chat bubble btn — override position for chat state */
.chat-bubble-btn.active {
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(198, 153, 48, 0.5);
}

/* ===========================================================
   HERO ACTION BUTTONS (Mic + Chat side by side)
   =========================================================== */
.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
  margin-top: 0.5rem;
}

.mobile-close-btn {
  display: none;
}

.mic-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0;
}

.mic-wrapper:hover .mic-ring {
  animation: mic-mini-pulse 4s infinite ease-out;
}

.mic-wrapper:hover .mic-ring.r2 {
  animation-delay: 2s;
}

@keyframes mic-mini-pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-chat-trigger {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  border: none;
  color: #07010f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(198, 153, 48, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 10;
}

.hero-chat-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.hero-chat-trigger:hover::before {
  animation: chat-ripple 4s infinite ease-out;
}

.hero-chat-trigger:hover {
  box-shadow: 0 6px 36px rgba(198, 153, 48, 0.7);
}

@keyframes chat-ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

.hero-chat-trigger svg {
  width: 26px;
  height: 26px;
}

/* hero-center needs overflow visible for trigger to show */
.hero-center {
  overflow: visible !important;
}

/* ===========================================================
   STATE 2 — BOTTOM CHAT BAR (Görsel 2 - pill input)
   =========================================================== */
.bottom-chat-bar {
  position: fixed;
  bottom: -100px;
  /* başlangıç: gizli */
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 94vw);
  z-index: 400;
  transition: bottom 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.bottom-chat-bar.open {
  bottom: 1.5rem;
}

.bcb-inner {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(179, 135, 40, 0.45);
  border-radius: 99px;
  padding: 0.5rem 0.6rem 0.5rem 0.8rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(179, 135, 40, 0.1) inset;
}

.bcb-left,
.bcb-right {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.bcb-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.bcb-icon-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.bcb-icon-btn svg {
  width: 16px;
  height: 16px;
}

.bcb-icon-btn.active {
  color: var(--gold);
  background: rgba(198, 153, 48, 0.1);
  animation: pulse-mic 1.5s infinite;
}

/* Separator after left icon */
.bcb-left::after {
  content: '';
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0.5rem;
}

.bcb-pill {
  flex: 1;
}

.bcb-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.45rem 0.5rem;
}

.bcb-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.bcb-send {
  background: rgba(179, 135, 40, 0.7) !important;
  color: white !important;
  border: 1px solid rgba(179, 135, 40, 0.9) !important;
  transition: background 0.2s, transform 0.15s !important;
}

.bcb-send:hover {
  background: rgba(179, 135, 40, 1) !important;
  transform: scale(1.08) !important;
}

/* ===========================================================
   14. Full-Screen Overlays (Chat & Voice)
   =========================================================== */
.fullscreen-chat,
.fullscreen-voice {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.fullscreen-chat.open,
.fullscreen-voice.open {
  opacity: 1;
  pointer-events: all;
}

.fsv-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 10;
}
.fsv-status {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
  animation: pulse-text 2s infinite ease-in-out;
}
.fsv-pulse-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(179, 135, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(179, 135, 40, 0.5);
  box-shadow: 0 0 40px rgba(179, 135, 40, 0.4);
  animation: pulse-circle 2s infinite;
}
.fsv-pulse-circle svg {
  width: 48px;
  height: 48px;
}
@keyframes pulse-text {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes pulse-circle {
  0% { transform: scale(0.95); box-shadow: 0 0 20px rgba(179, 135, 40, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(179, 135, 40, 0.6); }
  100% { transform: scale(0.95); box-shadow: 0 0 20px rgba(179, 135, 40, 0.2); }
}

.fullscreen-chat {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.fullscreen-chat.open {
  opacity: 1;
  pointer-events: all;
}

/* Arka plan: koyu mor gradient */
.fsc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(198, 153, 48, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(179, 135, 40, 0.1) 0%, transparent 50%),
    #07010f;
}

/* Sağ üst aksiyon butonlar */
.fsc-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 500;
}

.fsc-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.fsc-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.fsc-action-btn svg {
  width: 15px;
  height: 15px;
}

.fsc-close-btn:hover {
  border-color: rgba(255, 100, 100, 0.5);
  color: #ff6464;
}

/* Mesaj alanı */
.fsc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 4rem 2rem 1.5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  scroll-behavior: smooth;
}

.fsc-messages::-webkit-scrollbar {
  width: 4px;
}

.fsc-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}

/* Mesaj satırı */
.fsc-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: fsc-msg-in 0.35s ease-out;
}

@keyframes fsc-msg-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fsc-msg.user {
  flex-direction: row-reverse;
}

/* Avatar daire */
.fsc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.fsc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Asistan balon */
.fsc-bubble {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px 16px 16px 16px;
  padding: 1rem 1.25rem;
  max-width: 75%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fsc-bubble p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
}

/* Kullanıcı pill */
.fsc-user-pill {
  background: rgba(179, 135, 40, 0.2);
  border: 1px solid rgba(179, 135, 40, 0.35);
  border-radius: 16px 16px 4px 16px;
  padding: 0.8rem 1.1rem;
  font-size: 0.82rem;
  color: var(--fg);
  word-break: break-word;
}

/* Mesaj Aksiyonları (Zaman, Beğen, Düzenle vb.) */
.fsc-msg-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.fsc-msg-actions.user-actions {
  justify-content: flex-end;
  padding-right: 0.5rem;
}

.fsc-msg-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.5rem;
}

.user-actions .fsc-msg-time {
  margin-right: 0;
  margin-left: 0.5rem;
}

.fsc-action-btn-small {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.fsc-action-btn-small:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.fsc-action-btn-small svg {
  width: 15px;
  height: 15px;
}

/* Yazıyor göstergesi */
.fsc-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0;
}

.fsc-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: fsc-dot 1.2s ease-in-out infinite;
}

.fsc-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.fsc-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fsc-dot {

  0%,
  100% {
    transform: scale(0.6);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Alt input pill */
.fsc-input-area {
  position: relative;
  z-index: 2;
  padding: 1rem 1.5rem 1.5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.fsc-input-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(179, 135, 40, 0.4);
  border-radius: 99px;
  padding: 0.5rem 0.6rem 0.5rem 0.7rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fsc-input-pill:focus-within {
  border-color: rgba(179, 135, 40, 0.7);
  box-shadow: 0 0 0 3px rgba(179, 135, 40, 0.1), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.fsc-avatar-small {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(10, 10, 10, 0.8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  color: white;
}

.fsc-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.fsc-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 0.3rem;
}

.fsc-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fsc-mic-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.fsc-mic-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.fsc-mic-btn svg {
  width: 16px;
  height: 16px;
}

.fsc-mic-btn.active {
  color: var(--gold);
  background: rgba(198, 153, 48, 0.1);
  animation: pulse-mic 1.5s infinite;
}

@keyframes pulse-mic {
  0% { box-shadow: 0 0 0 0 rgba(198, 153, 48, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(198, 153, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 153, 48, 0); }
}

/* ── Chat Trigger Badge ────────────────────── */
.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #ef4444;
  border: 1.5px solid var(--bg);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 2;
}

.chat-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.chat-bubble-btn { display: none !important; }

/* ── Light Theme Adjustments ──────────────────────────────── */
.light-theme .hero-service-list li { opacity: 1; }
.light-theme .hero-service-list li h3 { color: #94711D; }
.light-theme .hero-service-list li p { color: var(--fg-muted); }
.light-theme .hero-service-list li:hover h3 { color: var(--fg); }
.light-theme .ai-badge { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
.light-theme .mic-btn { background: rgba(179,135,40,0.08); border-color: rgba(0,0,0,0.15); color: rgba(0,0,0,0.65); }
.light-theme .mic-btn:hover { background: rgba(179,135,40,0.18); color: var(--fg); }

/* ==========================================================================
   16. ORBIT MENU & DYNAMIC PANELS & GLASS ICONS
   ========================================================================== */

/* 16.1 Orbit Menu */
.orbit-menu {
  position: absolute; top: 50%; left: 50%;
  width: 88%; height: 88%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 10;
  border-radius: 50%;
}
.orbit-menu:hover .orbit-node { animation-play-state: paused; }
.orbit-node:hover { opacity: 1 !important; z-index: 20 !important; }

.orbit-node {
  position: absolute; top: 50%; left: 50%;
  width: 2rem; height: 2rem;
  margin-top: -1rem; margin-left: -1rem;
  transform: rotate(0deg) translateY(-44vh) rotate(0deg) scale(1);
  pointer-events: auto; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  animation: orbit-eccentric 60s linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes orbit-eccentric {
  0% { transform: rotate(0deg) translateY(-44vh) rotate(0deg); z-index: 10; opacity: 0.3; }
  25% { transform: rotate(90deg) translateY(-40vh) rotate(-90deg); z-index: 11; opacity: 0.7; }
  50% { transform: rotate(180deg) translateY(-34vh) rotate(-180deg); z-index: 12; opacity: 1; }
  75% { transform: rotate(270deg) translateY(-40vh) rotate(-270deg); z-index: 11; opacity: 0.7; }
  100% { transform: rotate(360deg) translateY(-44vh) rotate(-360deg); z-index: 10; opacity: 0.3; }
}

@media (max-width: 991px) {
  .orbit-menu { width: 88%; height: 88%; }
  .orbit-node {
    width: 3rem; height: 3rem;
  }
  @keyframes orbit-eccentric {
    0% { transform: rotate(0deg) translateY(-35vw) rotate(0deg); z-index: 10; opacity: 0.3; }
    25% { transform: rotate(90deg) translateY(-30vw) rotate(-90deg); z-index: 11; opacity: 0.7; }
    50% { transform: rotate(180deg) translateY(-28vw) rotate(-180deg); z-index: 12; opacity: 1; }
    75% { transform: rotate(270deg) translateY(-30vw) rotate(-270deg); z-index: 11; opacity: 0.7; }
    100% { transform: rotate(360deg) translateY(-35vw) rotate(-360deg); z-index: 10; opacity: 0.3; }
  }
}

@keyframes orbit-dot-scale {
  0% { scale: 0.6; box-shadow: 0 0 2px var(--gold-2); }
  25% { scale: 1.0; box-shadow: 0 0 10px var(--gold-2); }
  50% { scale: 1.5; box-shadow: 0 0 25px var(--gold-2); }
  75% { scale: 1.0; box-shadow: 0 0 10px var(--gold-2); }
  100% { scale: 0.6; box-shadow: 0 0 2px var(--gold-2); }
}
.orbit-menu:hover .orbit-dot { animation-play-state: paused; }

.orbit-dot {
  width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-2);
  transition: all 0.3s ease; position: relative;
  animation: orbit-dot-scale 60s linear infinite;
  animation-delay: var(--delay, 0s);
  scale: 1;
}
.orbit-dot::before {
  content: ''; position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1px solid var(--gold); border-radius: 50%;
  animation: pulse-ring 2.5s infinite; pointer-events: none;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.orbit-node:hover .orbit-dot, .orbit-node.active .orbit-dot {
  scale: 1.5 !important; background: var(--gold-2); box-shadow: 0 0 20px var(--gold-2);
}
.orbit-node:hover .orbit-dot::before, .orbit-node.active .orbit-dot::before {
  border-color: var(--gold-2); animation-duration: 1.5s;
}

.orbit-label {
  position: absolute; top: 150%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.8); border: 1px solid var(--border);
  backdrop-filter: blur(5px); padding: 0.4rem 1rem; border-radius: 20px;
  color: var(--gold); font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
}
:root.light-theme .orbit-label { background: rgba(255, 255, 255, 0.8); }
.orbit-node:hover .orbit-label, .orbit-node.active .orbit-label {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* 16.2 Dynamic Panels */
.hero-right { position: relative; perspective: 1000px; }
.panel-view {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}
.panel-view.active {
  position: relative; opacity: 1; pointer-events: auto;
  visibility: visible; transform: translateY(0);
}
.about-content { padding-top: 1rem; padding-right: 4rem; }
.blur-text { font-size: 0.9rem; line-height: 1.8; color: var(--fg-muted); display: block; text-align: justify; }
.blur-text.slogan { font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-top: 1.5rem; letter-spacing: 0.02em; }
.blur-word { display: inline-block; opacity: 0; will-change: transform, filter, opacity; animation: blur-text-reveal 0.6s cubic-bezier(0.34, 1.3, 0.64, 1) forwards; margin-right: 0.1em; }
@keyframes blur-text-reveal {
  0% { filter: blur(10px); opacity: 0; transform: translateY(10px); }
  100% { filter: blur(0px); opacity: 1; transform: translateY(0); }
}
@keyframes blink { 50% { opacity: 0; } }

/* 16.3 GlassIcons */
:root {
  --grad-corp-gold: linear-gradient(135deg, var(--gold), #7a5c1a);
  --grad-corp-purple: linear-gradient(135deg, #D4AF37, #996515); /* Replaced purple with alternative gold tint */
}
.icon-btns { display: grid; gap: 4.5rem 6rem; grid-template-columns: repeat(2, max-content); justify-content: center; padding: 2rem 0; overflow: visible; }
@media (min-width: 1200px) { .icon-btns { grid-template-columns: repeat(2, max-content); gap: 4.5rem 6rem; justify-content: center; } }
.icon-btn {
  background-color: transparent; outline: none; position: relative; width: 3.5em; height: 3.5em;
  perspective: 24em; transform-style: preserve-3d; -webkit-tap-highlight-color: transparent; border: none; cursor: pointer; margin: 0 auto;
}
.icon-btn__back, .icon-btn__front, .icon-btn__label { transition: opacity 0.3s cubic-bezier(0.83, 0, 0.17, 1), transform 0.3s cubic-bezier(0.83, 0, 0.17, 1); }
.icon-btn__back, .icon-btn__front { border-radius: 1.25em; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.icon-btn__back { box-shadow: 0.5em -0.5em 0.75em rgba(0,0,0,0.5); display: block; transform: rotate(15deg); transform-origin: 100% 100%; will-change: transform; }
.icon-btn__front {
  background-color: hsla(0, 0%, 100%, 0.1); box-shadow: 0 0 0 0.1em hsla(0, 0%, 100%, 0.2) inset;
  backdrop-filter: blur(0.75em); -webkit-backdrop-filter: blur(0.75em); display: flex; transform-origin: 80% 50%; will-change: transform; color: #fff;
}
:root.light-theme .icon-btn__front { background-color: hsla(0, 0%, 0%, 0.05); box-shadow: 0 0 0 0.1em hsla(0, 0%, 0%, 0.1) inset; color: var(--fg); }
.icon-btn__icon { margin: auto; width: 1.5em; height: 1.5em; display: flex; align-items: center; justify-content: center; }
.icon-btn__icon svg { width: 100%; height: 100%; }
.icon-btn__label {
  font-size: 0.9em; white-space: nowrap; text-align: center; line-height: 2; opacity: 1;
  position: absolute; top: 110%; right: 0; left: 0; transform: translateY(10px); color: var(--gold); font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8); letter-spacing: 0.5px;
}
.icon-btn:focus-visible .icon-btn__back, .icon-btn:hover .icon-btn__back { transform: rotate(25deg) translate3d(-0.5em, -0.5em, 0.5em); }
.icon-btn:focus-visible .icon-btn__front, .icon-btn:hover .icon-btn__front { transform: translate3d(0, 0, 2em); }

/* ── DOCK MENU (Footer) ──────────────────────────────── */
.dock-outer {
  margin: 1rem 0;
  display: flex;
  max-width: 100%;
  align-items: center;
  height: 34px; /* Panel height */
}

.dock-panel {
  display: flex;
  align-items: flex-end;
  width: fit-content;
  gap: 0.5rem;
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border);
  padding: 0 0.25rem 0.25rem;
  backdrop-filter: blur(5px);
  height: 34px; /* Fixed height for dock */
}

:root.light-theme .dock-panel {
  background: rgba(255, 255, 255, 0.8);
}

.dock-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(18, 15, 23, 0.8);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  width: 25px;
  height: 25px;
  /* Instead of React Spring, we use CSS transition for size */
  transition: width 0.15s ease-out, height 0.15s ease-out, transform 0.15s ease-out;
  transform-origin: bottom;
  color: var(--fg);
}

:root.light-theme .dock-item {
  background: rgba(255, 255, 255, 0.9);
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 40%;
  pointer-events: none;
}
.dock-icon svg {
  width: 100%;
  height: 100%;
}

.dock-label {
  position: absolute;
  top: -2rem;
  left: 50%;
  width: fit-content;
  white-space: pre;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #fff;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
:root.light-theme .dock-label {
  background: rgba(255, 255, 255, 0.9);
  color: var(--bg);
}

.dock-item:hover .dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── POLICY MODALS ───────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  color: var(--fg);
}
@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    padding: 4rem 1.5rem;
  }
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--fg-muted);
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--fg);
}
.modal-close svg { width: 20px; height: 20px; }

.modal-body h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}
.modal-body p {
  line-height: 1.6;
  color: var(--fg-muted);
}

/* Hide footer on mobile as requested */
@media (max-width: 768px) {
  .site-footer {
    display: none !important;
  }
}

.hero-right { z-index: 1000 !important; }
#sec-scene-2 { position: relative !important; z-index: 10 !important; background: black !important; }
.scene2-title { font-family: 'Outfit', sans-serif; font-size: 8vw; font-weight: 800; color: white; letter-spacing: 0.1em; text-transform: uppercase; background: linear-gradient(135deg, #fff 0%, #aaa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0; transform: translate(-50%, -50%) scale(0.1); }

