/* ==========================================================================
   KURUMSAL BOYACI — Editorial / Bold / Painterly
   ========================================================================== */

:root {
  --green: #00a651;
  --green-dark: #008542;
  --green-soft: #d4f1e1;
  --blue: #0066b3;
  --blue-light: #00aeef;
  --blue-soft: #d6ecfa;
  --red: #ed1c24;
  --red-dark: #c41019;
  --red-soft: #fbd7d9;
  --orange: #f37021;
  --yellow: #fbb040;
  --purple: #92278f;
  --ig-pink: #e1306c;
  --ig-grad: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  --ink: #0e1116;
  --ink-2: #1c2026;
  --ink-3: #393f47;
  --gray: #6b7280;
  --gray-2: #9ca3af;
  --line: #e5e7eb;
  --line-2: #f1f3f5;
  --bg: #fafaf7;
  --bg-2: #ffffff;
  --bg-warm: #f4f1ea;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(14,17,22,0.06), 0 1px 2px rgba(14,17,22,0.04);
  --shadow: 0 10px 30px rgba(14,17,22,0.08), 0 2px 8px rgba(14,17,22,0.04);
  --shadow-lg: 0 30px 80px rgba(14,17,22,0.14), 0 8px 24px rgba(14,17,22,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

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

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.topbar-divider { opacity: 0.4; }
.topbar-cta a {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 2px;
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.2s, background 0.2s;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: #34d399;
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 174, 239, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(237, 28, 36, 0.12), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(0, 166, 81, 0.15), transparent 50%),
    linear-gradient(180deg, #fffef9 0%, #fbf8f1 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.paint-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
  mix-blend-mode: multiply;
}
.blob-green { width: 540px; height: 540px; background: radial-gradient(circle, var(--green), transparent 70%); top: -140px; left: -160px; }
.blob-blue { width: 600px; height: 600px; background: radial-gradient(circle, var(--blue-light), transparent 70%); top: 20%; right: -200px; animation-delay: -5s; }
.blob-red { width: 420px; height: 420px; background: radial-gradient(circle, var(--red), transparent 70%); bottom: -120px; left: 28%; animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 17, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 17, 22, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
/* Floating paint splashes */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 166, 81, 0.18) 0%, transparent 8%),
    radial-gradient(circle at 88% 22%, rgba(237, 28, 36, 0.16) 0%, transparent 6%),
    radial-gradient(circle at 78% 70%, rgba(0, 102, 179, 0.18) 0%, transparent 7%),
    radial-gradient(circle at 18% 78%, rgba(243, 112, 33, 0.18) 0%, transparent 6%);
  animation: drift 20s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.14;
  mix-blend-mode: multiply;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 24px 70px;
  z-index: 2;
}
.hero-content {
  max-width: 880px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,166,81,0.18);
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title-line {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  flex-wrap: wrap;
}
.title-line-1 {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.title-word {
  display: inline-block;
  position: relative;
  animation: titleSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(3) { animation-delay: 0.2s; }
@keyframes titleSlideIn {
  from { opacity: 0; transform: translateY(20px); }
}
.title-comma {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  margin-left: -0.08em;
}
.title-line-2 {
  margin: 4px 0;
}
.title-paint {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--green) 0%, var(--blue) 35%, var(--purple) 65%, var(--red) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease-in-out infinite, titleSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
  position: relative;
  display: inline-block;
}
.title-paint::after {
  content: '';
  position: absolute;
  bottom: -0.05em;
  left: 0;
  right: 0;
  height: 0.08em;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  border-radius: 100px;
  opacity: 0.25;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.title-line-3 {
  font-weight: 800;
}
.title-mark {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--orange);
  font-size: 0.85em;
  margin-right: 0.1em;
  animation: titleSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}
.title-shine {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  display: inline-block;
  letter-spacing: -0.025em;
  font-size: 1.05em;
  animation: titleSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
}
.title-shine::after {
  content: '';
  position: absolute;
  bottom: 0.12em;
  left: -0.05em;
  right: -0.05em;
  height: 0.32em;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  z-index: -1;
  opacity: 0.55;
  transform: skewX(-8deg);
  animation: highlight 4s ease-in-out infinite;
  border-radius: 2px;
}
.title-dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--red);
  border-radius: 50%;
  margin-left: 0.05em;
  margin-bottom: 0.1em;
  vertical-align: baseline;
  animation: titleSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
}
@keyframes highlight {
  0%, 100% { transform: skewX(-8deg) scaleX(1); }
  50% { transform: skewX(-8deg) scaleX(1.04); }
}
.hero-desc {
  font-size: 17.5px;
  color: var(--ink-3);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14,17,22,0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  box-shadow: 0 10px 30px rgba(14,17,22,0.25);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 2px solid var(--line);
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  border-radius: 4px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 17, 22, 0.1);
}
.stat:nth-child(1) { border-top: 3px solid var(--green); }
.stat:nth-child(2) { border-top: 3px solid var(--blue); }
.stat:nth-child(3) { border-top: 3px solid var(--red); }
.stat:nth-child(4) { border-top: 3px solid var(--orange); }
.stat-num {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
}

/* ==========================================================================
   HERO VIDEO KARTLARI (3'lü yan yana - ortadaki büyük) - TEMİZ VERSİYON
   ========================================================================== */
.hero-videos {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  width: 100%;
  perspective: 1400px;
  align-items: center;
}
.video-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14, 17, 22, 0.12), 0 4px 12px rgba(14, 17, 22, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  animation: cardEnter 0.8s ease-out backwards;
}
.video-card-1 { transform: rotate(-2deg) translateY(20px) scale(0.92); animation-delay: 0.1s; }
.video-card-2 {
  transform: rotate(0deg) translateY(-10px) scale(1.08);
  animation-delay: 0.25s;
  z-index: 3;
  box-shadow: 0 30px 80px rgba(14, 17, 22, 0.18), 0 8px 20px rgba(14, 17, 22, 0.1);
}
.video-card-3 { transform: rotate(2deg) translateY(20px) scale(0.92); animation-delay: 0.4s; }
.video-card:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.05) !important;
  box-shadow: 0 40px 100px rgba(14, 17, 22, 0.22), 0 10px 24px rgba(14, 17, 22, 0.1);
  z-index: 5;
}
.video-card-2:hover {
  transform: rotate(0deg) translateY(-16px) scale(1.12) !important;
}
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(40px) rotate(0deg) scale(0.9); }
}
.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  max-height: 460px;
}
.video-frame iframe,
.video-frame video,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
  pointer-events: none;
}
.hero-video-el {
  background: #000;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 166, 81, 0.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(237, 28, 36, 0.2), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 102, 179, 0.2), transparent 60%),
    linear-gradient(135deg, #f8fafe, #fef0e8);
  pointer-events: none;
}
.video-placeholder svg {
  width: 56px;
  height: 56px;
  background: #fff;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--ink);
}
.video-placeholder span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.video-info {
  padding: 16px 20px;
}
.video-card-2 .video-info {
  padding: 18px 22px;
}
.video-ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ig-pink);
  margin-bottom: 6px;
}
.video-info p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   VIDEO MODAL — Tıklanınca açılır
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open {
  display: flex;
  animation: modalFade 0.3s ease-out;
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.video-modal-content {
  position: relative;
  max-width: 500px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}
.video-modal-media {
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 75vh;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Fullscreen aktifken modal-media tüm ekranı doldursun */
.video-modal-media:fullscreen,
.video-modal-media:-webkit-full-screen,
.video-modal-media:-moz-full-screen,
.video-modal-media:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
  background: #000;
}
.video-modal-media:fullscreen .modal-video,
.video-modal-media:-webkit-full-screen .modal-video,
.video-modal-media:-moz-full-screen .modal-video,
.video-modal-media:-ms-fullscreen .modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-modal-bottom {
  padding: 16px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.video-modal-caption {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.video-modal-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ig-grad);
  color: #fff;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s;
}
.video-modal-ig-link:hover {
  transform: translateY(-1px);
}

.hero-marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.hero-marquee::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 50%, var(--red) 100%);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-track .dot { color: var(--red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 880px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--green), var(--blue), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-3);
  max-width: 640px;
  line-height: 1.6;
}
.section-head { margin-bottom: 56px; }

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.ig-section {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ig-head .section-title { margin-bottom: 0; }
.ig-head .section-eyebrow { color: var(--ig-pink); }
.ig-head .section-title em { background: var(--ig-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ig-grad);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
  transition: transform 0.2s;
}
.ig-follow:hover { transform: translateY(-2px); }

.ig-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: linear-gradient(135deg, #fff, var(--bg-warm));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ig-avatar-ring {
  width: 96px;
  height: 96px;
  padding: 4px;
  background: var(--ig-grad);
  border-radius: 50%;
  position: relative;
}
.ig-avatar-ring::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: #fff;
  border-radius: 50%;
}
.ig-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
  z-index: 1;
}
.ig-profile-info { flex: 1; min-width: 250px; }
.ig-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ig-name-row h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ig-verified {
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.ig-mini-btn {
  padding: 6px 18px;
  background: var(--blue-light);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.ig-counts {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.ig-counts strong { color: var(--ink); }
.ig-bio {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.ig-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(60px, 10vw, 100px);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ig-overlay-content {
  display: flex;
  gap: 28px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.ig-overlay-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-video-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.ig-video-icon svg { width: 18px; height: 18px; }

.ig-disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border-radius: var(--r);
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ig-disclaimer a {
  color: var(--ig-pink);
  font-weight: 600;
  text-decoration: underline;
}

/* IG MODAL */
.ig-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ig-modal.open { display: flex; }
.ig-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.ig-modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.ig-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-modal-media {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 90vh;
}
.ig-modal-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-modal-side {
  display: flex;
  flex-direction: column;
}
.ig-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ig-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ig-grad);
  padding: 2px;
}
.ig-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.ig-modal-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
.ig-modal-body p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.ig-modal-actions {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}
.ig-modal-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: var(--ig-grad);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: 120px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, color-mix(in srgb, var(--c, var(--blue)) 12%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-2);
  font-weight: 500;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}
.service-card p {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ==========================================================================
   PRICES
   ========================================================================== */
.prices {
  padding: 120px 0;
  background: var(--bg-2);
}
.price-disclaimer {
  margin-top: 24px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(251,176,64,0.1), rgba(243,112,33,0.05));
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 720px;
}
.price-disclaimer svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}
.price-disclaimer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.price-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-table {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-table:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-table-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 18px;
}
.price-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.price-icon svg { width: 22px; height: 22px; }
.price-table h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  gap: 12px;
}
.price-list li:last-child { border-bottom: none; }
.price-name {
  font-size: 14px;
  color: var(--ink-2);
  flex: 1;
}
.price-value {
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.price-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.price-cta:hover { color: var(--red); }

/* ==========================================================================
   DISTRICTS
   ========================================================================== */
.districts {
  padding: 120px 0;
  background: var(--bg);
}
.district-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.d-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.25s ease;
}
.d-tab:hover { border-color: var(--ink); }
.d-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.d-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.district-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.district-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.district-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.district-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.district-card-cta {
  width: 36px;
  height: 36px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.district-card-cta:hover { transform: scale(1.1); }
.district-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 14px;
}
.district-neighborhoods {
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.district-neighborhoods summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.district-neighborhoods summary::-webkit-details-marker { display: none; }
.district-neighborhoods summary span {
  font-size: 11px;
  transition: transform 0.3s;
  display: inline-block;
}
.district-neighborhoods[open] summary span { transform: rotate(180deg); }
.district-neighborhoods p {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gray);
}
.district-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.district-tags span {
  padding: 4px 9px;
  background: var(--bg);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 100px;
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all 0.2s;
}
.district-tags span:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.district-services-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.district-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
}
.district-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 179, 0.3);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  padding: 100px 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: 'PROFESYONEL · GARANTİLİ · HIZLI';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  color: rgba(14,17,22,0.04);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.process-step {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,81,0.25), transparent 70%);
  filter: blur(60px);
}
.why::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(237,28,36,0.2), transparent 70%);
  filter: blur(60px);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.why-text .section-title { color: #fff; }
.why-text .section-eyebrow { color: var(--blue-light); }
.why-text .section-desc { color: rgba(255,255,255,0.7); }
.why-text .btn-primary {
  margin-top: 28px;
  background: #fff;
  color: var(--ink);
}
.why-text .btn-primary:hover {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  color: #fff;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.why-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-light);
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 4px;
}
.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.why-item p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 120px 0;
  background: var(--bg-warm);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.testi-author strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.testi-author span {
  font-size: 13px;
  color: var(--gray);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 120px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.faq-item[open] {
  border-color: transparent;
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 28px 22px;
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 17px;
  color: var(--ink-3);
  margin-top: 16px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
a.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-item small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.contact-form {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,102,179,0.15), transparent 70%);
  filter: blur(20px);
}
.contact-form > * { position: relative; z-index: 1; }
.contact-form h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.form-desc {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 8px 0 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}
.form-row input { margin-bottom: 0; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,179,0.12);
}
.contact-form textarea { resize: vertical; }
.form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  display: block;
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 50%, var(--red) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo .logo-title { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover {
  background: var(--ig-grad);
  transform: translateY(-2px);
}
.footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.55;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 0.85; }

.footer-partner {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.footer-partner small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.partner-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  font-weight: 600;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-bottom: 0 !important;
  transition: background-position 0.4s ease;
}
.partner-link svg { color: var(--blue-light); }
.partner-link:hover { background-position: 100% 0; }

/* ==========================================================================
   FLOAT QUICK ACTIONS (Telefon, WhatsApp, Instagram)
   ========================================================================== */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatIn 0.5s ease-out backwards;
}
.float-btn:nth-child(1) { animation-delay: 0.2s; }
.float-btn:nth-child(2) { animation-delay: 0.35s; }
.float-btn:nth-child(3) { animation-delay: 0.5s; }
@keyframes floatIn {
  from { opacity: 0; transform: translateX(60px); }
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: scale(1.12); }

.float-tel {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 8px 24px rgba(0, 102, 179, 0.45);
}
.float-tel::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  opacity: 0.5;
  animation: ringPulse 2.4s ease-out infinite;
  animation-delay: 0.3s;
}
.float-ig {
  background: var(--ig-grad);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}
.float-ig::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--ig-pink);
  border-radius: 50%;
  opacity: 0.5;
  animation: ringPulse 2.4s ease-out infinite;
  animation-delay: 0.6s;
}
.float-wa {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  position: relative;
  transition: transform 0.25s;
  animation: floatIn 0.5s ease-out backwards;
  animation-delay: 0.5s;
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0.6;
  animation: ringPulse 2s ease-out infinite;
}
.float-wa:hover { transform: scale(1.12); }
.float-wa svg { width: 30px; height: 30px; }
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip on float buttons */
.float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.float-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 36px;
    padding: 36px 24px 60px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-tables { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ig-modal-content { grid-template-columns: 1fr; max-height: 90vh; }
  .ig-modal-media { max-height: 50vh; }
}

@media (max-width: 768px) {
  .topbar-inner { font-size: 12px; gap: 10px; padding: 8px 16px; }
  .topbar-divider { display: none; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 12px 20px; }
  .logo-img { width: 44px; height: 44px; }
  .logo-title { font-size: 16px; }
  .logo-sub { font-size: 12px; }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-2);
  }

  /* HERO MOBILE — ORTALANMIŞ ŞIK GÖRÜNÜM */
  .hero { padding: 24px 0 0; }
  .hero-inner {
    padding: 28px 20px 50px;
    gap: 32px;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.0;
    margin-bottom: 22px;
    text-align: center;
    align-items: center;
    gap: 2px;
  }
  .title-line {
    justify-content: center;
    gap: 0.15em;
  }
  .title-paint {
    font-size: 1.1em;
  }
  .title-shine {
    font-size: 1em;
  }
  .title-shine::after {
    height: 0.28em;
    bottom: 0.1em;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
    text-align: center;
    max-width: 100%;
    padding: 0 4px;
  }

  /* BUTONLAR EŞİT GENİŞLİKTE ORTALANMIŞ */
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 32px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 12px;
    font-size: 13px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-actions .btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* STATS — 2x2 EŞİT GRID, ORTALANMIŞ */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 24px;
    width: 100%;
  }
  .hero-stats::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
  }
  .stat {
    padding: 16px 14px;
    align-items: center;
    text-align: center;
  }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 11.5px; }

  .marquee-track { font-size: 16px; gap: 24px; }

  /* Video kartları - mobilde ortadaki büyük */
  .hero-videos {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 6px;
    align-items: center;
  }
  .video-card-1 { transform: rotate(-2deg) translateY(10px) scale(0.94); }
  .video-card-2 { transform: rotate(0deg) translateY(-6px) scale(1.04); z-index: 3; }
  .video-card-3 { transform: rotate(2deg) translateY(10px) scale(0.94); }
  .video-info {
    padding: 8px 10px;
  }
  .video-info p {
    font-size: 11px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .video-ig-tag { font-size: 9.5px; gap: 4px; margin-bottom: 4px; }
  .video-ig-tag svg { width: 11px; height: 11px; }
  .video-placeholder svg { width: 36px; height: 36px; padding: 9px; }
  .video-placeholder span { font-size: 10.5px; }
  .play-circle { width: 40px; height: 40px; }
  .play-circle svg { width: 16px; height: 16px; }
  .video-mute-toggle {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
  }
  .video-mute-toggle svg { width: 14px; height: 14px; }
  .video-card::after {
    font-size: 9px;
    padding: 3px 7px;
    top: 8px;
    left: 8px;
  }

  .container { padding: 0 20px; }
  .ig-section, .services, .prices, .districts, .process, .why, .testimonials, .faq, .contact {
    padding: 70px 0;
  }
  .services-grid { grid-template-columns: 1fr; }
  .price-tables { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-step { padding: 24px 20px; }
  .step-number { font-size: 42px; }

  .ig-grid { gap: 2px; }
  .ig-profile { padding: 24px; gap: 20px; }
  .ig-avatar-ring { width: 76px; height: 76px; }
  .ig-name-row h3 { font-size: 20px; }
  .ig-counts { gap: 16px; font-size: 14px; }
  .ig-head { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Float butonları mobilde küçük */
  .float-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn svg { width: 22px; height: 22px; }
  .float-btn::after { display: none; }
  .float-wa {
    width: 54px;
    height: 54px;
  }
  .float-wa svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .section-head { margin-bottom: 32px; }
  .hero-title { font-size: 2rem; gap: 0; }
  .title-paint { font-size: 1.05em; }
  .hero-actions .btn { font-size: 12.5px; padding: 13px 10px; gap: 6px; }
  .section-title { font-size: 1.7rem; }
  .video-info { padding: 6px 8px; }
  .video-info p { font-size: 10.5px; }
}

@media (max-width: 380px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { padding: 12px 10px; }
  .stat-num { font-size: 1.3rem; }
  .hero-actions .btn { font-size: 12px; }
}
