/* ============================================================
   EmirhanY — DEMO v3 "Büyüleyici"
   Aurora + cam + ışıltı. Framework yok, kütüphane yok.
   ============================================================ */

/* ── Yerel fontlar — Google Fonts yerine kendi sunucumuzdan.
      Değişken (variable) dosyalar: aile başına tek woff2. ── */
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/assets/site/fonts/unbounded-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/assets/site/fonts/unbounded-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/site/fonts/spacegrotesk-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/site/fonts/spacegrotesk-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --void:   #0A0614;
  --deep:   #110A24;
  --card:   rgba(255, 255, 255, .045);
  --stroke: rgba(255, 255, 255, .1);
  --stroke-hi: rgba(255, 255, 255, .22);
  --light:  #FAF9FF;
  --light-2:#F1EEFB;
  --ink:    #17122B;
  --mut-d:  #A89FCE;   /* koyu zeminde metin */
  --mut-l:  #6A6486;   /* açık zeminde metin */
  --vio:    #8B5CF6;
  --fuch:   #E879F9;
  --cy:     #22D3EE;
  --grad:   linear-gradient(92deg, #8B5CF6, #E879F9 50%, #22D3EE);
  --f-disp: 'Unbounded', system-ui, sans-serif;
  --f-body: 'Space Grotesk', system-ui, sans-serif;
  --nav-h:  72px;
  --loop:   11s;
  --e-out:  cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 10px); }

body {
  font-family: var(--f-body);
  background: var(--void);
  color: #F2EFFC;
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body:not(.loaded) { overflow: hidden; }

h1, h2, h3 { line-height: 1.15; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1180px, 92%); margin-inline: auto; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

::selection { background: rgba(139, 92, 246, .5); color: #fff; }

/* kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: #2C2150; border-radius: 6px; border: 2px solid var(--void); }
::-webkit-scrollbar-thumb:hover { background: var(--vio); }

/* ── Film greni ───────────────────────────────────────────── */
.grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Yükleme perdesi ──────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--void);
  display: grid; place-items: center;
  transition: opacity .55s ease, visibility .55s ease;
}
body.loaded .loader { opacity: 0; visibility: hidden; }
.loader-inner { display: grid; place-items: center; gap: 1rem; }
.loader-inner span {
  font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .25em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-box { stroke-dasharray: 130; stroke-dashoffset: 130; animation: drawBox 1.4s var(--e-out) forwards; }
@keyframes drawBox { to { stroke-dashoffset: 0; } }
@keyframes loaderPulse { 50% { opacity: .45; } }

/* ── Kaydırma ilerlemesi ──────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(232, 121, 249, .8);
}

/* ── Özel imleç ───────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 300;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--fuch); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(232, 121, 249, .6);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-ring.hot {
  width: 58px; height: 58px;
  background: rgba(139, 92, 246, .14);
  border-color: rgba(34, 211, 238, .8);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Butonlar ─────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  font-family: var(--f-body); font-weight: 700; font-size: .97rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
  will-change: transform;
}
.btn-grad {
  background: var(--grad);
  background-size: 160% 100%;
  color: #0A0614;
  box-shadow: 0 10px 32px -10px rgba(139, 92, 246, .65);
  animation: gradShift 5s ease-in-out infinite;
}
@keyframes gradShift { 50% { background-position: 100% 0; } }
.btn-grad:hover { box-shadow: 0 16px 44px -10px rgba(232, 121, 249, .7); }
.btn-line {
  border-color: var(--stroke-hi);
  color: #F2EFFC;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(6px);
}
.btn-line:hover { border-color: var(--fuch); }
.btn-wa { background: #25D366; color: #06250F; box-shadow: 0 12px 36px -10px rgba(37, 211, 102, .6); }
.btn-sm { padding: .55rem 1.3rem; font-size: .88rem; }
.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.05rem; }
.btn-xl { padding: 1.25rem 2.8rem; font-size: 1.15rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigasyon ───────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(10, 6, 20, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--stroke);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo span { font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.logo b {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links > a:not(.btn) {
  font-size: .92rem; font-weight: 600; color: var(--mut-d);
  position: relative;
  transition: color .2s ease;
}
.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--e-out);
}
.nav-links > a:not(.btn):hover { color: #fff; }
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Aurora ───────────────────────────────────────────────── */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  will-change: transform;
}
.blob.b1 {
  width: 560px; height: 560px;
  left: -10%; top: -16%;
  background: radial-gradient(circle, #6D28D9, transparent 65%);
  animation: drift1 16s ease-in-out infinite alternate;
}
.blob.b2 {
  width: 640px; height: 640px;
  right: -14%; top: 4%;
  background: radial-gradient(circle, rgba(232, 121, 249, .75), transparent 65%);
  animation: drift2 19s ease-in-out infinite alternate;
}
.blob.b3 {
  width: 480px; height: 480px;
  left: 32%; bottom: -28%;
  background: radial-gradient(circle, rgba(34, 211, 238, .55), transparent 65%);
  animation: drift3 14s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(70px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-80px, 70px) scale(.92); } }
@keyframes drift3 { to { transform: translate(60px, -50px) scale(1.1); } }

/* ── Yıldızlar ────────────────────────────────────────────── */
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--tw, 3s) ease-in-out var(--td, 0s) infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0; } 50% { opacity: var(--to, .8); } }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 56px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 50% -10%, #1B1038, transparent 70%),
    var(--void);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgba(139, 92, 246, .4);
  color: #D8CCFF;
  font-size: .85rem; font-weight: 600;
  padding: .5rem 1.15rem; border-radius: 999px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-badge .spark { color: var(--fuch); animation: sparkle 1.6s ease-in-out infinite; }
@keyframes sparkle { 50% { opacity: .3; transform: scale(.7) rotate(40deg); } }

.hero h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.3vw, 3.3rem);
  letter-spacing: -.01em;
  line-height: 1.18;
  margin-bottom: 1.4rem;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.12em; }
.hero h1 .w {
  display: inline-block;
  transform: translateY(115%) rotate(2.5deg);
  transition: transform 1s var(--e-out) var(--d, 0s);
}
body.loaded .hero h1 .w { transform: none; }

/* dönen kelime */
.rotator { display: inline-grid; text-align: left; }
.rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .5s ease, transform .55s var(--e-out);
  white-space: nowrap;
}
.rotator span.on { opacity: 1; transform: none; }
.rotator span.off { opacity: 0; transform: translateY(-60%); }

.hero-sub {
  color: var(--mut-d);
  font-size: 1.13rem;
  max-width: 33rem;
  margin-bottom: 2.2rem;
}
.hero-sub em { color: var(--fuch); font-style: normal; font-weight: 600; }
.hero-sub strong { color: #fff; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-points { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-points span {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--mut-d); font-size: .9rem; font-weight: 600;
}
.hero-points svg { color: #4ADE80; flex: none; }

/* yüklenince beliren öğeler */
.reveal-load { opacity: 0; transform: translateY(22px); transition: opacity .9s ease var(--d, 0s), transform .9s var(--e-out) var(--d, 0s); }
body.loaded .reveal-load { opacity: 1; transform: none; }

/* ── Cam tarayıcı + kendini inşa eden site ────────────────── */
.hero-visual { position: relative; z-index: 2; }
.tiltbox { position: relative; transform-style: preserve-3d; will-change: transform; }

.browser {
  background: rgba(22, 14, 46, .55);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, .8),
    0 0 70px -18px rgba(139, 92, 246, .45),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.b-bar {
  display: flex; align-items: center; gap: .6rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid var(--stroke);
}
.b-bar i { width: 11px; height: 11px; border-radius: 50%; }
.b-bar i:nth-child(1) { background: #FF5F57; }
.b-bar i:nth-child(2) { background: #FEBC2E; }
.b-bar i:nth-child(3) { background: #28C840; }
.b-url {
  flex: 1; margin-left: .4rem;
  background: rgba(10, 6, 20, .55);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: .78rem; color: var(--mut-d); font-weight: 600;
  padding: .34rem .95rem;
  display: flex; align-items: center; gap: .45rem;
}
.b-url svg { color: #4ADE80; flex: none; }
.url-type {
  display: inline-block; overflow: hidden; white-space: nowrap;
  width: 11ch; vertical-align: bottom;
  animation: urlType var(--loop) steps(11, end) infinite;
}
.url-caret { width: 1.5px; height: 12px; background: var(--fuch); opacity: 0; animation: urlCaret var(--loop) infinite; }
@keyframes urlType {
  0%, 2% { width: 0; opacity: 1; }
  10% { width: 11ch; }
  94% { width: 11ch; opacity: 1; }
  98%, 100% { width: 11ch; opacity: 0; }
}
@keyframes urlCaret {
  0% { opacity: 1; } 2% { opacity: 0; } 4% { opacity: 1; } 6% { opacity: 0; }
  8% { opacity: 1; } 10% { opacity: 0; } 11% { opacity: 1; } 13%, 100% { opacity: 0; }
}

.b-body { position: relative; padding: 1.2rem; display: grid; gap: .85rem; animation: stageFade var(--loop) infinite; }
@keyframes stageFade { 0%, 93% { opacity: 1; } 97%, 100% { opacity: 0; } }

.bw-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .75rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke);
  border-radius: 11px;
  animation: navDrop var(--loop) ease infinite;
}
.bw-logo { width: 54px; height: 10px; border-radius: 5px; background: var(--grad); }
.bw-links { display: flex; gap: .5rem; }
.bw-links i { width: 26px; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .16); }
@keyframes navDrop { 0%, 10% { opacity: 0; transform: translateY(-10px); } 14%, 100% { opacity: 1; transform: none; } }

.bw-hero {
  position: relative;
  height: 134px;
  border-radius: 13px;
  background: linear-gradient(120deg, rgba(139, 92, 246, .4), rgba(232, 121, 249, .28) 55%, rgba(34, 211, 238, .3));
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 1.05rem 1.15rem;
  overflow: visible;
  transform-origin: top center;
  animation: heroGrow var(--loop) ease infinite;
}
@keyframes heroGrow { 0%, 13% { opacity: 0; transform: scaleY(.05); } 19%, 100% { opacity: 1; transform: scaleY(1); } }
.bw-line { height: 11px; border-radius: 6px; background: rgba(255, 255, 255, .92); }
.bw-line.l1 { width: 64%; animation: lineGrow1 var(--loop) ease infinite; }
.bw-line.l2 { width: 42%; height: 8px; margin-top: .55rem; background: rgba(255, 255, 255, .45); animation: lineGrow2 var(--loop) ease infinite; }
@keyframes lineGrow1 { 0%, 18% { width: 0; opacity: 0; } 20% { opacity: 1; } 24%, 100% { width: 64%; opacity: 1; } }
@keyframes lineGrow2 { 0%, 21% { width: 0; opacity: 0; } 23% { opacity: 1; } 27%, 100% { width: 42%; opacity: 1; } }

.bw-btn {
  position: relative;
  width: 96px; height: 28px;
  border-radius: 999px;
  background: #fff;
  margin-top: 1rem;
  animation: btnLife var(--loop) ease infinite;
}
.bw-btn::after {
  content: '';
  position: absolute; left: 14px; top: 11px;
  width: 52px; height: 6px; border-radius: 3px;
  background: var(--grad);
}
@keyframes btnLife {
  0%, 26% { opacity: 0; transform: scale(.4); }
  30% { opacity: 1; transform: scale(1.06); }
  32% { transform: scale(1); }
  62% { transform: scale(1); }
  64% { transform: scale(.9); }
  67%, 100% { transform: scale(1); }
}
.bw-ripple { position: absolute; inset: 0; border-radius: 999px; opacity: 0; animation: ripple var(--loop) ease-out infinite; }
@keyframes ripple {
  0%, 62% { opacity: 0; box-shadow: 0 0 0 0 rgba(232, 121, 249, .6); }
  64% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 121, 249, .6); }
  74% { opacity: 0; box-shadow: 0 0 0 24px rgba(232, 121, 249, 0); }
  100% { opacity: 0; box-shadow: 0 0 0 24px rgba(232, 121, 249, 0); }
}

.bw-cursor {
  position: absolute;
  left: 78px; top: 98px;
  width: 22px; height: 22px;
  z-index: 5;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .5));
  animation: cursorMove var(--loop) cubic-bezier(.5, .1, .3, 1) infinite;
}
@keyframes cursorMove {
  0%, 44% { opacity: 0; transform: translate(190px, 150px); }
  48% { opacity: 1; transform: translate(150px, 118px); }
  59% { transform: translate(0, 0); }
  62% { transform: translate(0, 0) scale(1); }
  64% { transform: translate(0, 0) scale(.78); }
  66% { transform: translate(0, 0) scale(1); }
  92% { opacity: 1; transform: translate(0, 0); }
  96%, 100% { opacity: 0; transform: translate(0, 0); }
}

.bw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.bw-card {
  height: 62px; border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke);
  position: relative; overflow: hidden;
}
.bw-card::before {
  content: '';
  position: absolute; left: 10px; top: 12px;
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(139, 92, 246, .35);
  border: 1px solid rgba(139, 92, 246, .5);
}
.bw-card::after {
  content: '';
  position: absolute; left: 10px; bottom: 12px;
  width: 60%; height: 7px; border-radius: 4px;
  background: rgba(255, 255, 255, .18);
}
.bw-card.a1 { animation: cardPop1 var(--loop) ease infinite; }
.bw-card.a2 { animation: cardPop2 var(--loop) ease infinite; }
.bw-card.a3 { animation: cardPop3 var(--loop) ease infinite; }
@keyframes cardPop1 { 0%, 30% { opacity: 0; transform: translateY(16px) scale(.9); } 34% { opacity: 1; transform: translateY(-2px) scale(1.02); } 36%, 100% { opacity: 1; transform: none; } }
@keyframes cardPop2 { 0%, 33% { opacity: 0; transform: translateY(16px) scale(.9); } 37% { opacity: 1; transform: translateY(-2px) scale(1.02); } 39%, 100% { opacity: 1; transform: none; } }
@keyframes cardPop3 { 0%, 36% { opacity: 0; transform: translateY(16px) scale(.9); } 40% { opacity: 1; transform: translateY(-2px) scale(1.02); } 42%, 100% { opacity: 1; transform: none; } }

.bw-toast {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 6;
  display: flex; align-items: center; gap: .45rem;
  background: rgba(10, 6, 20, .85);
  border: 1px solid rgba(74, 222, 128, .5);
  border-radius: 999px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .6), 0 0 24px -6px rgba(74, 222, 128, .45);
  font-size: .8rem; font-weight: 700;
  padding: .5rem 1rem;
  color: #4ADE80;
  backdrop-filter: blur(8px);
  animation: toastIn var(--loop) ease infinite;
}
@keyframes toastIn {
  0%, 66% { opacity: 0; transform: translateX(40px); }
  70% { opacity: 1; transform: translateX(-4px); }
  72% { transform: translateX(0); }
  90% { opacity: 1; transform: translateX(0); }
  94%, 100% { opacity: 0; transform: translateX(40px); }
}

.chip {
  position: absolute;
  background: rgba(22, 14, 46, .8);
  border: 1px solid var(--stroke-hi);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-size: .84rem; font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
  display: flex; align-items: center; gap: .5rem;
  animation: floaty 5s ease-in-out infinite;
  z-index: 7;
  pointer-events: none; /* dekoratif — alttaki önizlemenin tıklanmasını asla engellemez */
}
.chip1 { top: -16px; right: -6px; color: #7DE3F4; }
.chip2 { bottom: -14px; left: -10px; color: #4ADE80; animation-delay: -2.5s; }
@keyframes floaty { 50% { transform: translateY(-9px); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--stroke-hi);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  width: 3px; height: 8px;
  background: var(--fuch);
  border-radius: 2px;
  margin-top: 7px;
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue { 50% { transform: translateY(14px); opacity: .2; } }

/* ── Kayan bant ───────────────────────────────────────────── */
.marquee {
  position: relative;
  background: var(--grad);
  padding: 1.05rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 18px 60px -20px rgba(139, 92, 246, .6);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--f-disp); font-weight: 700;
  font-size: 1rem; letter-spacing: .12em;
  color: #0A0614;
  white-space: nowrap;
  padding-right: .5rem;
}
.marquee-track i { font-style: normal; margin: 0 .8rem; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Canlı hız kanıtı şeridi (sayaç bölümü kaldırıldı) ── */
.stats { background: var(--light); color: var(--ink); padding: 84px 0 0; }

/* ── Bölümler ─────────────────────────────────────────────── */
.section { position: relative; padding: 110px 0; overflow: hidden; }
.section.light { background: var(--light); color: var(--ink); }
.section.dark { background: var(--deep); }

.sec-head { max-width: 50rem; margin-bottom: 3.6rem; }
.kicker {
  display: inline-block;
  font-weight: 700; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--vio);
  margin-bottom: 1rem;
}
.sec-title {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  letter-spacing: -.01em;
}
.st-line { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .12em; margin-bottom: -.12em; }
.st-line > span, .st-line > em { display: inline-block; transform: translateY(110%); transition: transform .9s var(--e-out); font-style: normal; }
.st-line.in > span, .st-line.in > em { transform: none; }
.sec-sub { color: var(--mut-d); margin-top: 1rem; font-size: 1.05rem; }
.section.light .sec-sub { color: var(--mut-l); }

/* ── Hizmet kartları (3D tilt + spot ışığı) ───────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.s-card {
  position: relative;
  background:
    radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), rgba(139, 92, 246, .1), transparent 45%),
    #fff;
  border: 1px solid #E9E5F5;
  border-radius: 20px;
  padding: 2rem 1.9rem;
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}
.s-card:hover {
  border-color: #D3C8F2;
  box-shadow: 0 30px 60px -24px rgba(76, 49, 150, .25);
}
.s-emoji {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #F3EFFF, #FDF0FF);
  border: 1px solid #E5DCFA;
  border-radius: 16px;
  margin-bottom: 1.3rem;
}
.s-card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: .5rem; }
.s-card p { color: var(--mut-l); font-size: .95rem; }

/* ── Güvence slabı ────────────────────────────────────────── */
.slab {
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 120%, #251347, transparent 70%),
    var(--void);
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.slab-title {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: 1.6rem;
}
.slab-title .st-line { display: block; }
.slab-inner > p { color: var(--mut-d); max-width: 42rem; margin: 0 auto 2.4rem; font-size: 1.1rem; }
.slab-chips { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.slab-chips span {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke-hi);
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 700; font-size: .95rem;
  backdrop-filter: blur(8px);
}
.slab-chips svg { color: #4ADE80; }

/* ── Süreç zaman çizelgesi ────────────────────────────────── */
.timeline { position: relative; max-width: 46rem; margin: 0 auto; display: grid; gap: 2rem; }
.tl-line {
  position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 3px; border-radius: 3px;
  background: #E7E2F4;
  overflow: hidden;
}
.tl-line i {
  display: block; width: 100%; height: 0;
  background: var(--grad);
  transition: height .25s linear;
}
.tl-step { position: relative; display: flex; gap: 1.6rem; align-items: flex-start; }
.tl-num {
  flex: none; z-index: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #fff;
  border: 2px solid #E0D9F3;
  border-radius: 50%;
  font-family: var(--f-disp); font-weight: 700; font-size: 1.2rem;
  color: var(--vio);
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tl-step.hit .tl-num {
  background: var(--vio);
  border-color: var(--vio);
  color: #fff;
  box-shadow: 0 0 0 7px rgba(139, 92, 246, .15), 0 10px 24px -8px rgba(139, 92, 246, .6);
}
.tl-card {
  position: relative; flex: 1;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(139, 92, 246, .08), transparent 45%),
    #fff;
  border: 1px solid #E9E5F5;
  border-radius: 18px;
  padding: 1.5rem 1.7rem;
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform .18s ease, box-shadow .3s ease;
}
.tl-card:hover { box-shadow: 0 24px 50px -22px rgba(76, 49, 150, .22); }
.tl-free {
  position: absolute; top: 1.35rem; right: 1.4rem;
  background: linear-gradient(92deg, #F3EFFF, #FDF0FF);
  border: 1px solid #E0D3FA;
  color: #7C3AED;
  font-size: .73rem; font-weight: 800; letter-spacing: .04em;
  padding: .22rem .75rem; border-radius: 999px;
}
.tl-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .4rem; }
.tl-card p { color: var(--mut-l); font-size: .94rem; }

/* ── Paketler ─────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.p-wrap { position: relative; border-radius: 24px; padding: 1.5px; background: var(--stroke); transition: transform .25s ease; }
.p-wrap:hover { transform: translateY(-6px); }
@property --pang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.p-wrap.popular {
  background: conic-gradient(from var(--pang), #8B5CF6, #E879F9, #22D3EE, #8B5CF6);
  animation: spinBorder 5s linear infinite;
  box-shadow: 0 0 60px -14px rgba(232, 121, 249, .55);
}
@keyframes spinBorder { to { --pang: 360deg; } }
.p-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #1A1133, #120B26 60%);
  border-radius: 22.5px;
  padding: 2.2rem 1.9rem;
  display: flex; flex-direction: column;
}
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #0A0614;
  font-weight: 800; font-size: .74rem; letter-spacing: .1em;
  padding: .34rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
}
.p-card h3 { font-size: 1.2rem; font-weight: 700; display: flex; gap: .5rem; align-items: center; }
.p-price { margin: 1.1rem 0 .3rem; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.p-price span { color: var(--mut-d); font-size: .85rem; font-weight: 600; }
.p-price b { font-family: var(--f-disp); font-size: 2rem; font-weight: 700; letter-spacing: -.01em; }
.p-note { color: var(--mut-d); font-size: .85rem; font-weight: 600; margin-bottom: 1rem; }
.p-tag { color: var(--mut-d); font-size: .93rem; margin-bottom: 1.3rem; min-height: 3em; }
.p-list { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.8rem; flex: 1; }
.p-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: #E4DFF5; }
.p-list svg { color: #4ADE80; flex: none; margin-top: .24rem; }

/* ── SSS ──────────────────────────────────────────────────── */
.faq { max-width: 46rem; margin: 0 auto; display: grid; gap: .9rem; }
.faq-item { background: #fff; border: 1px solid #E9E5F5; border-radius: 16px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item.open { border-color: #D3C8F2; box-shadow: 0 16px 40px -20px rgba(76, 49, 150, .25); }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer;
  color: var(--ink);
  font-family: var(--f-body); font-weight: 700; font-size: 1rem;
  padding: 1.15rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q svg { flex: none; transition: transform .25s ease; color: var(--mut-l); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--vio); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 1.4rem 1.2rem; color: var(--mut-l); font-size: .95rem; }

/* ── Final CTA ────────────────────────────────────────────── */
.finale {
  position: relative;
  padding: 150px 0;
  text-align: center;
  background: var(--void);
  overflow: hidden;
}
.finale .blob.b1 { left: 8%; top: 8%; opacity: .4; }
.finale .blob.b2 { right: 4%; bottom: -30%; opacity: .4; }
.finale .sec-title { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 1.4rem; }
.finale .st-line { display: block; }
.finale p { color: var(--mut-d); max-width: 36rem; margin: 0 auto 2.6rem; font-size: 1.12rem; }
.finale-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--void); border-top: 1px solid var(--stroke); padding: 1.6rem 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  color: var(--mut-d); font-size: .88rem;
}
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a:hover { color: #fff; }

/* ── Kaydırma reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease var(--rd, 0s), transform .8s var(--e-out) var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ── Erişilebilirlik ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; animation-iteration-count: 1 !important; transition-duration: .01s !important; }
  .reveal, .reveal-load, .hero h1 .w, .st-line > span, .st-line > em { opacity: 1 !important; transform: none !important; }
  .url-type { width: auto; }
  html { scroll-behavior: auto; }
}

/* Mobil-özel öğeler masaüstünde asla görünmez (mobile.css devralır) */
.tabbar, .m-cta, .car-dots { display: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.6rem; }
  .hero-visual { max-width: 560px; }
  .grid-3, .pricing { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 6, 20, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stroke);
    padding: 1rem 4%;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: .95rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--stroke); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: .9rem; justify-content: center; }

  .grid-3, .pricing { grid-template-columns: 1fr; }
  .chip1 { right: 2px; }
  .chip2 { left: 2px; }
  .tl-line { left: 21px; }
  .tl-num { width: 44px; height: 44px; font-size: 1rem; }
  .scroll-cue { display: none; }
  .marquee { transform: rotate(0) scale(1); }
}

/* ============================================================
   YENİ BÖLÜMLER — Canlı Stüdyo, Fiyat Sihirbazı,
   WhatsApp Sohbeti, Canlı Hız Kanıtı
   ============================================================ */

/* ── Canlı hız kanıtı ─────────────────────────────────────── */
.liveproof {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  margin: 0;
  background: linear-gradient(92deg, #F3EFFF, #FDF0FF, #EDFBFE);
  border: 1px solid #E0D6F8;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  font-size: .95rem; font-weight: 600;
  color: var(--ink);
  text-align: center;
  flex-wrap: wrap;
}
.liveproof[hidden] { display: none; }
.lp-bolt { font-size: 1.15rem; animation: sparkle 1.8s ease-in-out infinite; }
.liveproof b {
  font-family: var(--f-disp); font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.liveproof em { font-style: normal; color: var(--mut-l); font-weight: 500; }

/* ── Canlı Stüdyo ─────────────────────────────────────────── */
.studio-grid {
  display: grid; grid-template-columns: 1fr .9fr;
  gap: 3.4rem; align-items: center;
}
.studio-label {
  display: block;
  font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mut-d);
  margin: 1.6rem 0 .6rem;
}
.studio-label:first-child { margin-top: 0; }
.studio-input {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid var(--stroke-hi);
  border-radius: 16px;
  color: #fff;
  font-family: var(--f-body); font-size: 1.15rem; font-weight: 600;
  padding: 1rem 1.3rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.studio-input::placeholder { color: rgba(168, 159, 206, .55); }
.studio-input:focus {
  outline: none;
  border-color: var(--fuch);
  box-shadow: 0 0 0 4px rgba(232, 121, 249, .15), 0 0 30px -8px rgba(232, 121, 249, .5);
}
.sector-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.sector-pills button {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid var(--stroke);
  border-radius: 999px;
  color: var(--mut-d);
  font-family: var(--f-body); font-weight: 700; font-size: .92rem;
  padding: .6rem 1.2rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .15s ease;
}
.sector-pills button:hover { border-color: var(--stroke-hi); color: #fff; transform: translateY(-2px); }
.sector-pills button.on {
  background: var(--grad);
  border-color: transparent;
  color: #0A0614;
  box-shadow: 0 8px 24px -8px rgba(232, 121, 249, .6);
}
.studio-cta { margin-top: 2.2rem; display: grid; gap: .7rem; justify-items: start; }
.studio-note { color: var(--mut-d); font-size: .85rem; font-weight: 600; }

/* telefon önizleme */
.studio-stage { position: relative; display: grid; justify-items: center; }
.ph {
  position: relative;
  width: 272px;
  border: 7px solid #221740;
  border-radius: 42px;
  background: #221740;
  box-shadow:
    0 36px 80px -24px rgba(0, 0, 0, .85),
    0 0 70px -14px rgba(139, 92, 246, .5);
  animation: phoneFloat2 6.5s ease-in-out infinite;
  transition: transform .3s ease;
}
@keyframes phoneFloat2 { 50% { transform: translateY(-10px) rotate(-1.2deg); } }
.ph.pop { animation: phPop .45s cubic-bezier(.34, 1.56, .64, 1), phoneFloat2 6.5s ease-in-out .45s infinite; }
@keyframes phPop { 0% { transform: scale(.97); } 60% { transform: scale(1.03); } 100% { transform: scale(1); } }
.ph-notch {
  position: absolute; top: 9px; left: 50%; z-index: 3;
  transform: translateX(-50%);
  width: 84px; height: 20px;
  background: #221740;
  border-radius: 999px;
}
.ph-screen {
  --p1: #B45309;
  --p2: #FFF7E8;
  --p3: #3B2A12;
  border-radius: 35px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 470px;
}
.ph-screen > * { transition: background .45s ease, color .45s ease, border-color .45s ease; }

.ph-nav {
  display: flex; align-items: center; gap: .55rem;
  padding: 1.85rem .95rem .7rem;
  background: #fff;
  border-bottom: 1px solid #F0EDE6;
}
.ph-logo {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--p1);
  color: #fff;
  border-radius: 8px;
  font-family: var(--f-disp); font-weight: 700; font-size: .8rem;
}
.ph-name {
  flex: 1;
  font-family: var(--f-disp); font-weight: 700; font-size: .8rem;
  color: #1A1611;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ph-menu {
  width: 18px; height: 2px; border-radius: 2px;
  background: #1A1611;
  position: relative;
}
.ph-menu::before, .ph-menu::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: #1A1611;
}
.ph-menu::before { top: -6px; }
.ph-menu::after { top: 6px; }

.ph-hero {
  display: grid; justify-items: center; align-content: center; gap: .45rem;
  text-align: center;
  background: var(--p2);
  padding: 1.5rem 1rem;
}
.ph-emoji {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .18);
}
.ph-title {
  font-family: var(--f-disp); font-weight: 700; font-size: 1.02rem;
  color: var(--p3);
  max-width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ph-tag { font-size: .74rem; font-weight: 600; color: var(--p3); opacity: .65; }
.ph-btn {
  margin-top: .4rem;
  background: var(--p1);
  color: #fff;
  font-size: .74rem; font-weight: 700;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .25);
}

.ph-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  padding: .8rem .8rem;
  background: #fff;
}
.ph-card {
  background: var(--p2);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 11px;
  text-align: center;
  font-size: .68rem; font-weight: 700;
  color: var(--p3);
  padding: .85rem .25rem;
}
.ph-foot {
  display: flex; justify-content: center; gap: .6rem;
  padding: 0 .8rem .95rem;
  background: #fff;
  font-size: .7rem; font-weight: 700;
}
.ph-foot span {
  flex: 1; text-align: center;
  background: #F4F2EC;
  color: #1A1611;
  border-radius: 999px;
  padding: .5rem 0;
}
.ph-foot .ph-wa { background: #25D366; color: #06250F; }

.studio-chip {
  position: absolute; bottom: -30px; right: 0;
  color: #FFD773;
  animation: floaty 5s ease-in-out infinite;
}

/* ── Fiyat Sihirbazı ──────────────────────────────────────── */
.wiz {
  max-width: 42rem; margin: 0 auto;
  background: #fff;
  border: 1px solid #E9E5F5;
  border-radius: 26px;
  box-shadow: 0 30px 70px -30px rgba(76, 49, 150, .3);
  overflow: hidden;
}
.wiz-bar { height: 5px; background: #F0EDFA; }
.wiz-bar i {
  display: block; height: 100%; width: 33%;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 12px rgba(232, 121, 249, .6);
}
.wiz-stage { position: relative; padding: 2.4rem 2.2rem 2.6rem; min-height: 330px; }
.wiz-step {
  position: absolute; inset: 2.4rem 2.2rem 2.6rem;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity .4s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}
.wiz-step.on { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
.wiz-step.out { opacity: 0; transform: translateX(-40px); }
.wiz-step h3 {
  font-family: var(--f-body); font-weight: 700; font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .7rem;
}
.wiz-no {
  font-family: var(--f-disp); font-size: .72rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  border: 1.5px solid #E5DCFA;
  border-radius: 999px;
  padding: .25rem .7rem;
  flex: none;
}
.wiz-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .9rem; }
.wiz-opts button {
  display: grid; justify-items: start; gap: .15rem;
  background: #FAF9FF;
  border: 1.5px solid #E9E5F5;
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.wiz-opts button:hover {
  border-color: var(--vio);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -18px rgba(124, 58, 237, .4);
}
.wiz-opts button span { font-size: 1.5rem; margin-bottom: .25rem; }
.wiz-opts button b { font-size: 1rem; color: var(--ink); }
.wiz-opts button small { font-size: .8rem; color: var(--mut-l); font-weight: 600; }

.wiz-result { display: grid; justify-items: center; text-align: center; gap: .5rem; }
.wiz-kicker {
  font-weight: 800; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mut-l);
}
.wiz-price { font-family: var(--f-disp); font-weight: 700; font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1.1; }
.wiz-maint { color: var(--mut-l); font-weight: 600; font-size: .95rem; }
.wiz-incl { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .9rem; margin: .9rem 0 1.2rem; }
.wiz-incl span {
  font-size: .8rem; font-weight: 700;
  color: #166534;
  background: #F0FBF4;
  border: 1px solid #C9EED7;
  border-radius: 999px;
  padding: .3rem .85rem;
}
.wiz-reset {
  background: none; border: 0; cursor: pointer;
  color: var(--mut-l);
  font-family: var(--f-body); font-weight: 700; font-size: .88rem;
  margin-top: .8rem;
  transition: color .2s ease;
}
.wiz-reset:hover { color: var(--vio); }
.wiz-note { font-size: .8rem; color: var(--mut-l); font-weight: 500; }

/* ── WhatsApp sohbeti ─────────────────────────────────────── */
.chat-card {
  max-width: 27rem; margin: 0 auto;
  background: #fff;
  border: 1px solid #E9E5F5;
  border-radius: 24px;
  box-shadow: 0 30px 70px -28px rgba(76, 49, 150, .35);
  overflow: hidden;
}
.chat-top {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(92deg, #128C7E, #075E54);
  color: #fff;
}
.chat-ava {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--grad);
  border-radius: 50%;
  font-family: var(--f-disp); font-weight: 700; font-size: .8rem;
  color: #0A0614;
}
.chat-who { flex: 1; display: grid; line-height: 1.3; }
.chat-who b { font-size: .98rem; }
.chat-status { font-size: .76rem; opacity: .85; display: flex; align-items: center; gap: .35rem; }
.chat-status i { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.chat-body {
  display: grid; gap: .55rem;
  align-content: start;
  background:
    radial-gradient(rgba(18, 140, 126, .04) 1px, transparent 1.4px) 0 0 / 18px 18px,
    #F4F1EB;
  padding: 1.2rem 1rem;
  min-height: 360px;
}
.msg {
  position: relative;
  max-width: 82%;
  padding: .6rem .85rem .95rem;
  border-radius: 12px;
  font-size: .9rem;
  line-height: 1.45;
  color: #1A1D21;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  animation: msgIn .35s cubic-bezier(.16, 1, .3, 1) forwards;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}
@keyframes msgIn { to { opacity: 1; transform: none; } }
.msg.them { background: #fff; border-top-left-radius: 4px; justify-self: start; }
.msg.me { background: #DCF8C6; border-top-right-radius: 4px; justify-self: end; }
.msg-meta {
  position: absolute; right: .6rem; bottom: .25rem;
  font-size: .62rem; color: #8696A0;
  display: flex; gap: .2rem; align-items: center;
}
.msg.me .msg-meta { color: #53BDEB; }
.msg.typing {
  display: flex; gap: .3rem; align-items: center;
  padding: .8rem 1rem;
  min-width: 0;
}
.msg.typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #B0B8BE;
  animation: typDot 1.2s ease-in-out infinite;
}
.msg.typing i:nth-child(2) { animation-delay: .18s; }
.msg.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typDot { 30% { transform: translateY(-4px); opacity: .5; } }

.chat-input {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1rem;
  background: #fff;
  border-top: 1px solid #ECE9E2;
  color: #8696A0;
  font-size: .92rem; font-weight: 600;
  transition: background .2s ease;
}
.chat-input:hover { background: #FAFAF7; }
.chat-input span { flex: 1; }
.chat-send {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px -6px rgba(37, 211, 102, .6);
}
.chat-caption { text-align: center; color: var(--mut-l); margin-top: 1.8rem; font-size: .98rem; }
.chat-caption strong { color: var(--ink); }

/* yeni bölümler — tablet/altı yerleşim */
@media (max-width: 1024px) {
  .studio-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .studio-cta { justify-items: stretch; text-align: center; }
}

/* ============================================================
   STÜDYO 2.0 — gezilebilir telefon, slogan, renk, stil,
   cazibe modu, yeni sektörler
   ============================================================ */

.studio-label small { text-transform: none; letter-spacing: 0; font-weight: 600; opacity: .7; }
.studio-input-sm { font-size: 1rem; padding: .8rem 1.2rem; }

/* renk + stil ikilisi */
.studio-duo {
  display: flex; gap: 2.2rem; flex-wrap: wrap; align-items: flex-start;
}
.color-pills { display: flex; gap: .55rem; flex-wrap: wrap; }
.color-pills .cp {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .18);
  background: var(--c);
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s ease, border-color .2s ease;
}
.color-pills .cp:hover { transform: scale(1.12); }
.color-pills .cp.on {
  transform: scale(1.18);
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .18), 0 6px 18px -4px var(--c, rgba(139, 92, 246, .7));
}
.color-pills .cp-auto {
  background: conic-gradient(#7C3AED, #1D4ED8, #047857, #EA580C, #DB2777, #7C3AED);
  position: relative;
}
.color-pills .cp-auto::after {
  content: 'A';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-disp); font-weight: 700; font-size: .68rem;
  color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}
.style-toggle {
  display: inline-flex; gap: .2rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: .28rem;
}
.style-toggle button {
  border: 0; background: none; cursor: pointer;
  color: var(--mut-d);
  font-family: var(--f-body); font-weight: 700; font-size: .86rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.style-toggle button.on { background: var(--grad); color: #0A0614; }

/* telefon: sayfalı yapı */
.ph-screen {
  display: flex; flex-direction: column;
  min-height: 0;
}
.ph-pages {
  position: relative;
  height: 354px;
  background: #fff;
  overflow: hidden;
  transition: background .45s ease;
}
.ph-page {
  position: absolute; inset: 0;
  display: grid; align-content: start;
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .35s ease, transform .4s var(--e-out);
  pointer-events: none;
}
.ph-page.on { opacity: 1; transform: none; pointer-events: auto; }
.ph-page.back { transform: translateX(-26px); }

/* ana sayfa parçaları */
.ph-rate {
  justify-self: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .25);
  font-size: .64rem; font-weight: 800;
  color: #1A1611;
  padding: .32rem .75rem;
  margin: -.7rem 0 .15rem;
  position: relative; z-index: 2;
  transition: background .45s ease, color .45s ease;
}
.ph-tcaret {
  display: inline-block;
  width: 2px; height: .85em;
  background: var(--p1);
  margin-left: 2px;
  vertical-align: -10%;
  animation: phBlink .8s step-end infinite;
}
.ph-tcaret[hidden] { display: none; }
@keyframes phBlink { 50% { opacity: 0; } }

/* galeri sayfası */
.ph-ghead {
  font-family: var(--f-disp); font-weight: 700; font-size: .82rem;
  color: var(--p3);
  padding: 1rem .9rem .4rem;
  transition: color .45s ease;
}
.ph-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  padding: .2rem .8rem;
}
.ph-gallery i {
  height: 72px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--p1), var(--p2) 130%);
  position: relative;
  transition: background .45s ease;
}
.ph-gallery i:nth-child(2n) { background: linear-gradient(215deg, var(--p1), var(--p2) 130%); opacity: .8; }
.ph-gallery i:nth-child(3n) { opacity: .62; }
.ph-gallery i::after {
  content: var(--gemoji, '✦');
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.15rem;
  opacity: .65;
}
.ph-gnote {
  text-align: center;
  font-size: .66rem; font-weight: 700;
  color: #A9A395;
  padding-top: .55rem;
}

/* iletişim sayfası */
.ph-map {
  position: relative;
  margin: .2rem .8rem .6rem;
  height: 118px;
  border-radius: 13px;
  background:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(120deg, transparent 42%, rgba(0, 0, 0, .05) 42%, rgba(0, 0, 0, .05) 49%, transparent 49%),
    #F4F5F2;
  overflow: hidden;
}
.ph-pin {
  position: absolute; left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  font-size: 1.45rem;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .3));
  animation: pinBounce 1.8s ease-in-out infinite;
}
@keyframes pinBounce { 50% { transform: translate(-50%, -68%); } }
.ph-hours {
  justify-self: center;
  display: inline-flex; align-items: center; gap: .4rem;
  background: #F0FBF4;
  border: 1px solid #C9EED7;
  color: #166534;
  border-radius: 999px;
  font-size: .66rem; font-weight: 800;
  padding: .34rem .8rem;
}
.ph-hours i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  animation: pulse 1.8s ease-in-out infinite;
}
.ph-cbtns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .75rem .8rem;
}
.ph-cbtns span {
  text-align: center;
  background: var(--p2);
  color: var(--p3);
  border-radius: 999px;
  font-size: .7rem; font-weight: 800;
  padding: .55rem 0;
  transition: background .45s ease, color .45s ease;
}
.ph-cbtns .ph-call { background: var(--p1); color: #fff; }

/* telefon içi sekmeler */
.ph-tabs {
  display: flex;
  background: #fff;
  border-top: 1px solid #F0EDE6;
  transition: background .45s ease, border-color .45s ease;
}
.ph-tabs button {
  flex: 1;
  position: relative;
  border: 0; background: none; cursor: pointer;
  font-family: var(--f-body); font-weight: 800; font-size: .64rem;
  color: #9A9486;
  padding: .65rem 0 .8rem;
  transition: color .3s ease;
}
.ph-tabs button.on { color: var(--p1); }
.ph-tabs button.on::before {
  content: '';
  position: absolute; top: -1px; left: 26%; right: 26%;
  height: 2.5px; border-radius: 3px;
  background: var(--p1);
}

/* koyu mini-site stili */
.ph-screen.dark .ph-nav { background: #161122; border-color: rgba(255, 255, 255, .08); }
.ph-screen.dark .ph-name { color: #F2EFFC; }
.ph-screen.dark .ph-menu, .ph-screen.dark .ph-menu::before, .ph-screen.dark .ph-menu::after { background: #F2EFFC; }
.ph-screen.dark .ph-pages { background: #120D1E; }
.ph-screen.dark .ph-hero { background: rgba(255, 255, 255, .055); }
.ph-screen.dark .ph-title { color: #F2EFFC; }
.ph-screen.dark .ph-tag { color: #B9B3CF; opacity: 1; }
.ph-screen.dark .ph-emoji { background: #221B36; box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .6); }
.ph-screen.dark .ph-rate { background: #221B36; border-color: rgba(255, 255, 255, .1); color: #F2EFFC; }
.ph-screen.dark .ph-row { background: transparent; }
.ph-screen.dark .ph-card { background: #1C1530; border-color: rgba(255, 255, 255, .08); color: #D9D4EA; }
.ph-screen.dark .ph-ghead { color: #F2EFFC; }
.ph-screen.dark .ph-gnote { color: #6E6886; }
.ph-screen.dark .ph-map {
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 22px 22px,
    #1A1428;
}
.ph-screen.dark .ph-cbtns span { background: #1C1530; color: #D9D4EA; }
.ph-screen.dark .ph-cbtns .ph-call { background: var(--p1); color: #fff; }
.ph-screen.dark .ph-tabs { background: #161122; border-color: rgba(255, 255, 255, .08); }
.ph-screen.dark .ph-tabs button { color: #6E6886; }
.ph-screen.dark .ph-tabs button.on { color: var(--p1); }

/* ikinci yüzen rozet */
.studio-chip2 { top: -30px; left: 0; color: #7DE3F4; animation-delay: -1.8s; }

/* ── Sihirbaz sonuç satırları (kurulum / bakım / alan adı) ── */
.wiz-rows {
  display: grid; gap: .65rem;
  width: 100%; max-width: 27rem;
  margin: .7rem auto 1rem;
}
.wiz-row {
  display: grid; grid-template-columns: 96px 1fr;
  align-items: baseline; column-gap: 1rem;
  background: #FAF9FF;
  border: 1px solid #E9E5F5;
  border-radius: 14px;
  padding: .8rem 1.1rem;
  text-align: left;
}
.wiz-row > span {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mut-l);
}
.wiz-row b { font-family: var(--f-disp); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.wiz-row small { grid-column: 2; font-size: .76rem; font-weight: 600; color: var(--mut-l); }

/* ── "Beni arayın" lead formları ─────────────────────────── */
.wiz-lead {
  width: 100%; max-width: 27rem;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px dashed #E5DFF6;
}
.wiz-lead-t { display: block; font-size: .85rem; color: var(--mut-l); font-weight: 600; margin-bottom: .7rem; }
.wiz-lead-t b { color: var(--ink); }
.lead-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-form input:not(.hp) {
  flex: 1; min-width: 130px;
  background: #FAF9FF;
  border: 1.5px solid #E9E5F5;
  border-radius: 999px;
  font: inherit; font-size: .92rem;
  padding: .7rem 1.15rem;
  color: var(--ink);
}
.lead-form input:not(.hp):focus { outline: none; border-color: var(--vio); }
.lead-form .btn { padding: .7rem 1.5rem; font-size: .9rem; }
.lead-ok {
  background: #F0FBF4; border: 1px solid #C9EED7; color: #166534;
  border-radius: 14px; padding: .9rem 1.2rem;
  font-weight: 700; font-size: .92rem;
  margin-top: 1.1rem;
}

/* stüdyo (koyu zemin) varyantı */
.studio-ara-ac {
  background: none; border: 0; cursor: pointer;
  font: inherit; font-size: .85rem; font-weight: 700;
  color: var(--mut-d);
  text-decoration: underline dotted;
  text-align: left; padding: 0;
  margin-top: .2rem;
  transition: color .2s ease;
}
.studio-ara-ac:hover { color: #fff; }
.studio-lead { max-width: 460px; margin-top: .5rem; }
.studio-lead input:not(.hp) { background: rgba(255, 255, 255, .05); border-color: var(--stroke-hi); color: #fff; }
.studio-lead input:not(.hp)::placeholder { color: rgba(168, 159, 206, .55); }
.studio-cta .lead-ok { background: rgba(74, 222, 128, .1); border-color: rgba(74, 222, 128, .4); color: #86EFAC; }

/* ── Son İşler (portföy) ─────────────────────────────────── */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pf-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid #E9E5F5;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
}
.pf-card:hover { border-color: #D3C8F2; box-shadow: 0 30px 60px -24px rgba(76, 49, 150, .25); }
.pf-img {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #F3EFFF, #FDF0FF) center / cover no-repeat;
}
.pf-body { padding: 1.1rem 1.25rem 1.3rem; display: grid; gap: .3rem; justify-items: start; }
.pf-body b { font-size: 1.05rem; color: var(--ink); }
.pf-sektor {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--vio);
  background: #F3EFFF;
  border: 1px solid #E5DCFA;
  border-radius: 999px;
  padding: .18rem .65rem;
}
.pf-body small { color: var(--mut-l); font-size: .87rem; }

/* ════════════════════════════════════════════════════════════
   ALT SAYFALAR (v4 kabuk): paketler / hakkımda / iletişim
   ════════════════════════════════════════════════════════════ */

.nav-links > a.aktif { color: #fff; }
.nav-links > a.aktif::after { transform: scaleX(1); }

/* mini sayfa hero'su */
.pg-hero {
  position: relative;
  padding: calc(var(--nav-h) + 84px) 0 64px;
  text-align: center;
  background: radial-gradient(900px 480px at 50% -20%, #1B1038, transparent 72%), var(--void);
  overflow: hidden;
}
.pg-hero .blob { opacity: .35; }
.pg-hero h1 {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  position: relative;
}
.pg-hero p { color: var(--mut-d); max-width: 40rem; margin: 1rem auto 0; font-size: 1.08rem; position: relative; }

/* sayfa sonu küçük CTA */
.pg-cta { text-align: center; padding: 64px 0 96px; }
.pg-cta p { color: var(--mut-d); }
.pg-cta .btn { margin-top: .4rem; }

/* bakım & barındırma */
.bk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 1.8rem; }
.bk-card {
  background: #fff; border: 1px solid #E9E5F5; border-radius: 18px;
  padding: 1.5rem 1.2rem; text-align: center;
}
.bk-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.bk-fiyat {
  display: block;
  font-family: var(--f-disp); font-weight: 700; font-size: 1.45rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: .5rem;
}
.bk-alt { font-size: .8rem; color: var(--mut-l); font-weight: 600; }
.bk-not {
  text-align: center; color: var(--mut-l);
  font-size: .9rem; font-weight: 600;
  max-width: 38rem; margin: 1.4rem auto 0;
}
.bk-not b { color: var(--ink); }

/* ek hizmetler */
.eh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.eh-item {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid #E9E5F5; border-radius: 14px;
  padding: 1rem 1.25rem;
}
.eh-item b { color: var(--ink); font-size: .95rem; }
.eh-fiyat { font-family: var(--f-disp); font-weight: 700; color: var(--vio); white-space: nowrap; }
.eh-fiyat small { color: var(--mut-l); font-weight: 600; font-size: .73rem; }

/* hakkımda */
.ab-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.8rem; align-items: start; }
.ab-text p { color: var(--mut-l); margin-bottom: 1.05rem; font-size: 1.03rem; }
.ab-text strong { color: var(--ink); }
.ab-text a { color: var(--vio); font-weight: 700; }
.ab-kart {
  position: sticky; top: calc(var(--nav-h) + 18px);
  background: #fff; border: 1px solid #E9E5F5; border-radius: 20px;
  padding: 1.7rem;
  box-shadow: 0 26px 60px -34px rgba(76, 49, 150, .35);
}
.ab-kart h3 { color: var(--ink); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.ab-list { list-style: none; display: grid; gap: .65rem; margin-bottom: 1.5rem; }
.ab-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .93rem; font-weight: 600; }
.ab-list svg { color: #16A34A; flex: none; margin-top: .2rem; }
.ab-chips { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: 1.3rem; }
.ab-chips span {
  background: #fff; border: 1px solid #E9E5F5; border-radius: 999px;
  padding: .4rem 1rem; font-size: .84rem; font-weight: 700; color: var(--mut-l);
}

/* iletişim */
.cf-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.8rem; align-items: start; }
.cf-cards { display: grid; gap: .9rem; }
.cf-card {
  display: flex; gap: .95rem; align-items: center;
  background: #fff; border: 1px solid #E9E5F5; border-radius: 16px;
  padding: 1.05rem 1.2rem;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.cf-card:hover { border-color: #D3C8F2; box-shadow: 0 18px 40px -22px rgba(76, 49, 150, .25); transform: translateY(-2px); }
.cf-ikon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: #F3EFFF; border: 1px solid #E5DCFA; border-radius: 13px;
  font-size: 1.25rem;
}
.cf-card b { display: block; color: var(--ink); font-size: .97rem; }
.cf-card span { color: var(--mut-l); font-size: .85rem; }
.cf-form {
  background: #fff; border: 1px solid #E9E5F5; border-radius: 22px;
  padding: 1.9rem;
  box-shadow: 0 26px 60px -34px rgba(76, 49, 150, .35);
  display: grid; gap: 1rem;
}
.cf-form label { display: grid; gap: .4rem; font-size: .86rem; font-weight: 700; color: var(--ink); }
.cf-form input, .cf-form select, .cf-form textarea {
  background: #FAF9FF; border: 1.5px solid #E9E5F5; border-radius: 12px;
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .78rem 1rem; width: 100%;
}
.cf-form input:focus, .cf-form select:focus, .cf-form textarea:focus { outline: none; border-color: var(--vio); }
.cf-form textarea { min-height: 130px; resize: vertical; }
.cf-iki { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-not { border-radius: 14px; padding: .95rem 1.2rem; font-weight: 700; font-size: .93rem; }
.cf-not.ok { background: #F0FBF4; border: 1px solid #C9EED7; color: #166534; }
.cf-not.err { background: #FDECEC; border: 1px solid #F5C2C0; color: #8C1D18; }
.cf-map { border: 1px solid #E9E5F5; border-radius: 20px; overflow: hidden; margin-top: 2.4rem; }
.cf-map iframe { width: 100%; height: 340px; border: 0; display: block; }
