:root {
  --bg: #faf7ef;
  --ink: #171510;
  --gold: #dfa50a;
  --dim: #6e6a5e;
  --faint: #a19c8e;
  --hairline: rgba(23, 21, 16, 0.1);
  --hairline-gold: rgba(200, 150, 10, 0.4);
  --display: 'Poppins', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --body: 'Poppins', sans-serif;
  --logo: 'Baloo 2', sans-serif;
}

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

html {
  scrollbar-width: thin;
  scrollbar-color: #c8a234 #efe9da;
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #efe9da; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e2b32a, #c08f08);
  border-radius: 8px;
  border: 2.5px solid #efe9da;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #efc23a, #d3a00a);
}
::-webkit-scrollbar-corner { background: #efe9da; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 2%); }
}

main { position: relative; z-index: 3; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: radial-gradient(ellipse 90% 70% at 50% 42%, #fdfbf5 0%, #f3eedf 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease 0.15s;
}
.loader.done { opacity: 0; pointer-events: none; }
.loader-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}
.loader.done .loader-fx { opacity: 0; }
.loader-mid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s ease;
}
.loader.done .loader-mid { opacity: 0; }
.loader-logo {
  font-family: var(--logo);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.loader-logo span { color: var(--gold); text-shadow: 0 0 26px rgba(202, 150, 8, 0.45); }
.loader-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.22em;
  color: var(--dim);
}

/* ---------- Cursor ---------- */
.cursor, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
}
.cursor { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(202, 150, 8, 0.38);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: rgba(202, 150, 8, 0.05);
}
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px min(54px, 5vw);
  background: linear-gradient(180deg, rgba(16, 15, 12, 0.97), rgba(10, 10, 8, 0.93));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 165, 10, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 10px 34px rgba(20, 16, 6, 0.18);
  transition: padding 0.45s ease;
}
.nav.scrolled { padding: 4px min(54px, 5vw); }
.nav-logo {
  position: relative;
  font-family: var(--logo);
  font-weight: 800;
  font-size: 31px;
  line-height: 1.3;
  color: #f6f3ea;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: #ffc60a;
  text-shadow: 0 0 14px rgba(255, 198, 10, 0.4);
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(202, 150, 8, 0.25); }
  50% { text-shadow: 0 0 22px rgba(202, 150, 8, 0.6); }
}
.logo-spark {
  position: absolute;
  top: 2px;
  right: -13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: sparkTw 2.6s ease-in-out infinite;
}
@keyframes sparkTw {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}
.nav-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(202, 150, 8, 0.35), var(--gold));
  box-shadow: 0 0 10px rgba(202, 150, 8, 0.55);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}
.nav-links {
  display: flex;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 2px 0;
}
.nav-links .lnk {
  display: block;
  overflow: hidden;
  height: 1.45em;
}
.nav-links .lnk i {
  display: block;
  font-style: normal;
  height: 1.45em;
  line-height: 1.45em;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links .lnk i:last-child { color: #ffc60a; }
.nav-links a:hover .lnk i { transform: translateY(-100%); }
.nav-links a.active .lnk i { transform: translateY(-100%); }
.nav-right { display: flex; align-items: center; gap: 26px; }
.sound-toggle {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #a59f8f;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.sound-toggle:hover { color: #f6f3ea; border-color: rgba(255, 198, 10, 0.4); }
.sound-toggle.on { border-color: rgba(255, 198, 10, 0.45); background: rgba(255, 198, 10, 0.08); }
.sound-toggle em { font-style: normal; color: #7d786a; transition: color 0.3s ease; }
.sound-toggle.on em { color: #ffc60a; }
.eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 13px;
}
.eq i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--faint);
  height: 22%;
  transition: background 0.3s ease;
}
.sound-toggle.on .eq i {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(202, 150, 8, 0.5);
  animation: eqB 0.9s ease-in-out infinite;
}
.eq i:nth-child(1) { animation-delay: 0s; }
.eq i:nth-child(2) { animation-delay: 0.22s; }
.eq i:nth-child(3) { animation-delay: 0.45s; }
.eq i:nth-child(4) { animation-delay: 0.12s; }
@keyframes eqB {
  0%, 100% { height: 25%; }
  50% { height: 100%; }
}
.nav-cta {
  position: relative;
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #000;
  background: linear-gradient(180deg, #ffd23a, #f0b408);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(202, 150, 8, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.nav-cta:hover {
  background: #efb91a;
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(202, 150, 8, 0.45);
}
.nav-cta:hover::before { left: 130%; }
.nav-cta span { position: relative; }
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 560px) { .sound-toggle { display: none; } }
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #ffd23a, #f0b408);
  cursor: pointer;
  transition: background 0.3s ease;
}
.nav-burger:active { background: #efb91a; }
.nav-burger span {
  display: block;
  width: 17px;
  height: 2px;
  background: #000;
  transition: transform 0.32s ease, opacity 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .nav-right { gap: 10px; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 88px min(54px, 6vw) 24px;
  background: linear-gradient(180deg, #14120e, #1c1913);
  border-bottom: 1px solid rgba(202, 150, 8, 0.3);
  transform: translateY(-103%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: #f3efe2;
  text-decoration: none;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a em { font-style: normal; color: var(--gold); }
.mobile-menu a.mm-sub {
  font-size: 15.5px;
  font-weight: 500;
  color: #c9c3b2;
  padding-left: 20px;
}
@media (min-width: 981px) { .mobile-menu { display: none; } }

/* ---------- Panels ---------- */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vh, 96px) 0;
}
.panel:not(.hero) { min-height: 0; }
.about-row {
  position: relative;
}
.medal-spot {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(48%, 660px);
  height: clamp(250px, 26vw, 340px);
  pointer-events: none;
}
@media (max-width: 860px) {
  .medal-spot {
    position: static;
    transform: none;
    width: 100%;
    height: clamp(150px, 44vw, 220px);
    margin-top: 10px;
  }
}
#teklif .frame { position: relative; }
.stairs-spot {
  position: absolute;
  top: -85px;
  right: 7%;
  width: min(44%, 560px);
  height: clamp(320px, 30vw, 440px);
  pointer-events: none;
}
@media (max-width: 860px) {
  .stairs-spot {
    position: static;
    width: 100%;
    height: clamp(180px, 52vw, 250px);
    margin-top: 14px;
  }
}
.frame {
  width: min(1280px, 90vw);
  margin: 0 auto;
}
.frame-wide { width: min(1380px, 92vw); }
.frame-half {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.frame-half > * { max-width: min(620px, 52vw); }
.frame-right { align-items: flex-end; text-align: right; }
@media (max-width: 860px) {
  .frame-half > * { max-width: 100%; }
  .frame-right { align-items: flex-start; text-align: left; }
}
@media (max-width: 767px) {
  .hero .frame.frame-half { padding-top: 37vh; }
}

.mono-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(28px, 5vh, 52px);
}
.mono-label::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ---------- Hero ---------- */
.hero { justify-content: center; }
.hero .frame { padding-top: 6vh; }
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 100px);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-shadow: none;
}
.hero-title .rl { display: block; }
.hero-title em {
  font-style: normal;
  color: var(--ink);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% 0.13em;
  background-position: 0 88%;
  padding: 0 0.06em;
  margin: 0 -0.06em;
}
.hero-sub {
  margin-top: clamp(24px, 4vh, 40px);
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15.5px, 1.4vw, 18.5px);
  line-height: 1.75;
  color: #5c584d;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 5vh, 46px);
}
.btn-fill, .btn-ghost {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-fill {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 28px rgba(202, 150, 8, 0.22);
}
.btn-fill:hover {
  background: #efb91a;
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(202, 150, 8, 0.38);
}
.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(23, 21, 16, 0.2);
  background: rgba(23, 21, 16, 0.03);
}
.btn-ghost:hover {
  border-color: var(--hairline-gold);
  background: rgba(202, 150, 8, 0.07);
  transform: translateY(-2px);
}
.hero-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 min(54px, 5vw) 30px;
}
.hero-foot .mono-label { margin: 0; color: var(--faint); letter-spacing: 0.2em; font-size: 11px; }
.hero-foot .mono-label::before { display: none; }
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cuePulse 2.2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 720px) {
  .hero-foot .mono-label { display: none; }
  .scroll-cue { margin: 0 auto; gap: 7px; }
  .scroll-cue i { height: 26px; }
  .hero-foot { padding-bottom: 16px; }
}
@media (max-width: 767px) {
  .panel.hero { padding-bottom: 120px; }
}

/* ---------- Statements ---------- */
.statement {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.9vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-shadow: none;
}
.statement em { font-style: normal; color: var(--gold); }
.statement-2 {
  margin-top: clamp(20px, 3.5vh, 36px);
  color: var(--dim);
}
.support {
  margin-top: clamp(32px, 6vh, 60px);
  max-width: 460px;
  color: var(--dim);
  font-size: 16px;
}

/* ---------- Services ---------- */
.svc-head { margin-bottom: clamp(40px, 7vh, 70px); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}
.svcf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(32px, 4.5vw, 80px);
  row-gap: clamp(48px, 7vh, 76px);
  margin-top: clamp(36px, 6vh, 60px);
}
.svcf { display: flex; flex-direction: column; align-items: flex-start; }
.svc-fig {
  width: min(210px, 64%);
  aspect-ratio: 1;
  display: block;
  margin-bottom: 4px;
}
.svcf h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(21px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.svcf h3 em {
  font-style: normal;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% 0.16em;
  background-position: 0 92%;
  padding: 0 0.05em;
  margin: 0 -0.05em;
}
.svcf-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svcf-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--dim);
}
.svcf-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
  color: var(--gold);
}
.svcf-go {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid rgba(200, 150, 10, 0.45);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.svcf-go:hover { color: var(--gold); border-color: var(--gold); }
.svcf-text {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dim);
  max-width: 320px;
}
@media (max-width: 980px) { .svcf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .svcf-grid { grid-template-columns: 1fr; }
  .svc-fig { width: min(190px, 70%); margin-left: auto; margin-right: auto; }
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(26px, 2.4vw, 36px);
  background: #fffdf8;
  border: 1px solid rgba(23, 21, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(60, 50, 20, 0.05), 0 12px 32px rgba(60, 50, 20, 0.06);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, translate 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: translate;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f0c044);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  border-color: rgba(200, 150, 10, 0.35);
  box-shadow: 0 4px 14px rgba(60, 50, 20, 0.07), 0 24px 54px rgba(60, 50, 20, 0.13);
  translate: 0 -8px;
}
.svc-const {
  position: absolute;
  top: 14px;
  right: 14px;
  width: clamp(86px, 8vw, 118px);
  height: auto;
  opacity: 0.55;
  transition: opacity 0.45s ease;
}
.svc-const circle { fill: #cfc6ae; }
.svc-const circle.dim { fill: rgba(180, 170, 140, 0.45); }
.svc-const .cl {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.35;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.svc-card:hover .svc-const { opacity: 1; }
.svc-card:hover .svc-const .cl { stroke-dashoffset: 0; opacity: 0.85; }
.svc-orbit {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(202, 150, 8, 0.3);
  border-radius: 50%;
}
.svc-orbit i {
  position: absolute;
  inset: 0;
  animation: orbitSpin 7s linear infinite;
}
.svc-orbit i::before {
  content: '';
  position: absolute;
  top: -2.5px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.svc-card:hover .svc-orbit i { animation-duration: 2.2s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.svc-num {
  margin: 52px 0 auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--faint);
  transition: color 0.4s ease;
}
.svc-card:hover .svc-num { color: var(--gold); }
.svc-card h3 {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.svc-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--dim);
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.svc-tags i {
  font-style: normal;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  color: #57534a;
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.svc-card:hover .svc-tags i { border-color: rgba(202, 150, 8, 0.25); color: var(--ink); }
.svc-go {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dim);
  transition: color 0.4s ease;
}
.svc-go b { font-weight: 600; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.svc-card:hover .svc-go { color: var(--gold); }
.svc-card:hover .svc-go b { transform: translate(4px, -4px); }
.svc-card-cta {
  justify-content: center;
  align-items: flex-start;
  border-style: dashed;
  border-color: rgba(202, 150, 8, 0.3);
  background: rgba(202, 150, 8, 0.035);
}
.svc-card-cta:hover { border-style: solid; }
.svc-card-cta .svc-cta-star {
  font-size: 26px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(202, 150, 8, 0.6);
  animation: ctaStar 3.2s ease-in-out infinite;
}
@keyframes ctaStar {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.75; }
  50% { transform: rotate(180deg) scale(1.25); opacity: 1; }
}
.svc-card-cta h3 { margin-top: 20px; }
.svc-card-cta .svc-go { border-top: none; padding-top: 0; margin-top: 16px; }
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid > :nth-child(3n+2), .svc-grid > :nth-child(3n+3) { margin-top: 0; }
  .svc-grid > :nth-child(2n) { margin-top: 36px; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid > * { margin-top: 0 !important; }
  .svc-card { min-height: 0; }
}

/* ---------- Referanslar logo duvarı ---------- */
.refs-panel { padding-bottom: clamp(30px, 5vh, 60px); }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(36px, 6vh, 60px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(36px, 4vw, 52px) clamp(20px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.logo-tile:hover {
  border-color: var(--hairline-gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(60, 50, 20, 0.12);
}
.logo-tile-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  width: 100%;
}
.logo-tile-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.4s ease;
}
.logo-tile:hover .logo-tile-img img { filter: grayscale(0) opacity(1); }
.logo-name {
  position: relative;
  margin-top: clamp(20px, 3vh, 28px);
  padding-top: clamp(16px, 2.4vh, 22px);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.4s ease;
}
.logo-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--hairline-gold);
}
.logo-tile:hover .logo-name { color: var(--ink); }
@media (max-width: 760px) {
  .logo-wall { grid-template-columns: 1fr; max-width: 380px; }
}

/* ---------- Süreç timeline ---------- */
.tl {
  position: relative;
  margin-top: clamp(40px, 7vh, 70px);
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 8vh, 90px);
  padding: clamp(30px, 5vh, 60px) 0;
}
.tl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(23, 21, 16, 0.14) 8%, rgba(23, 21, 16, 0.14) 92%, transparent);
}
.tl-fig {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(440px, 44vw);
  transform: translateX(-50%);
  pointer-events: none;
}
.tl-item {
  position: relative;
  width: 44%;
  z-index: 1;
}
.tl-item.tl-r { align-self: flex-end; text-align: left; }
.tl-item.tl-l { align-self: flex-start; text-align: right; }
.tl-item::before {
  content: '';
  position: absolute;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(223, 165, 10, 0.15);
}
.tl-item.tl-r::before { left: calc(-13.65% - 6px); }
.tl-item.tl-l::before { right: calc(-13.65% - 6px); }
.tl-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 1.75vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}
.tl-item p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dim);
}
@media (max-width: 820px) {
  .tl::before { left: 8px; }
  .tl-fig { left: 8px; right: auto; width: 170px; transform: translateX(-50%); }
  .tl-item, .tl-item.tl-r, .tl-item.tl-l {
    width: auto;
    align-self: stretch;
    text-align: left;
    padding-left: 34px;
  }
  .tl-item.tl-r::before, .tl-item.tl-l::before { left: 2px; right: auto; }
}

/* ---------- Mission console ---------- */
.console {
  margin-top: clamp(40px, 7vh, 70px);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  overflow: hidden;
}
.console-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(22px, 2.6vw, 34px);
  border-bottom: 1px solid var(--hairline);
  background: rgba(23, 21, 16, 0.02);
}
.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: consoleDot 2s ease-in-out infinite;
}
@keyframes consoleDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.console-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.console-status {
  margin-left: auto;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.console-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(30px, 4.5vh, 52px) clamp(18px, 2vw, 30px);
  gap: 16px;
}
.gauge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gauge svg {
  width: clamp(120px, 11vw, 158px);
  height: auto;
  transform: rotate(-90deg);
}
.gauge .track {
  fill: none;
  stroke: rgba(23, 21, 16, 0.09);
  stroke-width: 4;
}
.gauge .bar {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  filter: drop-shadow(0 0 6px rgba(202, 150, 8, 0.55));
}
.gauge-val {
  position: absolute;
  top: clamp(60px, 5.5vw, 79px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.gauge-label {
  margin-top: 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.console-foot {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 44px);
  padding: 20px clamp(22px, 2.6vw, 34px);
  border-top: 1px solid var(--hairline);
  background: rgba(23, 21, 16, 0.02);
}
.check {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: #57534a;
  display: flex;
  align-items: center;
  gap: 9px;
}
.check b {
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(202, 150, 8, 0.5);
}
@media (max-width: 900px) {
  .console-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .console-status { display: none; }
}

/* ---------- Contact ---------- */
.contact { padding-bottom: 0; }
.mail-link {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 24px);
  margin-top: clamp(36px, 7vh, 70px);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 72px);
  letter-spacing: -0.035em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 12px;
  transition: color 0.35s ease;
}
.mail-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--hairline-gold);
  transform-origin: left;
  transition: background 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mail-link i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.6em;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mail-link:hover { color: var(--gold); }
.mail-link:hover::after { background: var(--gold); transform: scaleX(1.0); }
.mail-link:hover i { transform: translate(6px, -6px); }
.contact .support { margin-top: clamp(30px, 5vh, 50px); }

.footer {
  margin-top: clamp(60px, 12vh, 120px);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px min(54px, 5vw);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-nav { display: flex; gap: 26px; }
.footer-nav a {
  color: var(--faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--gold); }
@media (max-width: 720px) { .footer { flex-direction: column; gap: 14px; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .scroll-cue i { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Big footer ---------- */
.footer-big {
  position: relative;
  z-index: 3;
  margin-top: clamp(20px, 4vh, 44px);
  background: linear-gradient(180deg, #14120e, #0c0b08);
  border-top: 4px solid var(--gold);
  color: #b9b4a6;
}
.fb-inner {
  width: min(1280px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(48px, 7vh, 72px) 0 clamp(36px, 5vh, 56px);
}
.fb-logo {
  font-family: var(--logo);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  color: #f6f3ea;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.fb-logo span { color: #ffc60a; }
.fb-tag {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: #ffc60a;
  letter-spacing: 0.02em;
}
.fb-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #8f8a7b;
  max-width: 340px;
}
.fb-col h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: #f6f3ea;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.fb-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--gold);
}
.fb-mail {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: #e6e1d3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fb-mail:hover { color: #ffc60a; }
.fb-note { margin-top: 8px; font-size: 12.5px; color: #7d786a; }
.gp-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 22px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.gp-badge i { font-style: normal; }
.gp-badge .gp-g1 { color: #4285F4; }
.gp-badge .gp-g2 { color: #EA4335; }
.gp-badge .gp-g3 { color: #FBBC05; }
.gp-badge .gp-g4 { color: #34A853; }
.gp-badge i + i { margin-left: -2px; }
.gp-badge em {
  font-style: normal;
  font-weight: 400;
  color: #5f6368;
  font-size: 17px;
}
.fb-nav { display: flex; flex-direction: column; gap: 12px; }
.fb-nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14.5px;
  color: #b9b4a6;
  text-decoration: none;
  width: fit-content;
  transition: color 0.3s ease, transform 0.3s ease;
}
.fb-nav a:hover { color: #ffc60a; transform: translateX(4px); }
.fb-bottom {
  display: flex;
  justify-content: space-between;
  width: min(1280px, 90vw);
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.fb-bottom span {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: #7d786a;
}
@media (max-width: 880px) {
  .fb-inner { grid-template-columns: 1fr; gap: 40px; }
  .fb-bottom { flex-direction: column; gap: 6px; }
}
.sig-spot {
  width: min(820px, 90vw);
  height: clamp(120px, 17vw, 180px);
  margin: 16px auto 0;
}
.panel.contact { min-height: 0; padding-bottom: 0; }