/* ───────────────────────────────────────────
   Reset
─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ───────────────────────────────────────────
   Design Tokens
─────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-2: #F5F5F7;
  --text: #0F0F0F;
  --text-muted: #6B6B6B;
  --border: #E4E4E7;
  --header-bg: rgba(255, 255, 255, 0.85);

  --card-bg: #ffffff;
  --card-hover: 0 12px 40px rgba(0, 0, 0, 0.10);

  --btn-p-bg: #0F0F0F;
  --btn-p-text: #ffffff;
  --btn-s-text: #0F0F0F;
  --btn-s-border: #D1D1D6;

  /* Soft indigo accent */
  --accent: #6366f1;
  --accent-bg: rgba(99, 102, 241, 0.07);
  --accent-border: rgba(99, 102, 241, 0.18);

  /* Glow orbs */
  --glow-a: rgba(99, 102, 241, 0.07);
  --glow-b: rgba(139, 92, 246, 0.05);

  /* Featured pricing */
  --featured-bg: #0F0F0F;
  --featured-text: #F5F5F7;
  --featured-dim: #909090;

  /* WhatsApp */
  --wa: #25D366;
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --text: #EDEDED;
  --text-muted: #888888;
  --border: #242424;
  --header-bg: rgba(10, 10, 10, 0.85);

  --card-bg: #141414;
  --card-hover: 0 12px 40px rgba(0, 0, 0, 0.55);

  --btn-p-bg: #EDEDED;
  --btn-p-text: #0F0F0F;
  --btn-s-text: #EDEDED;
  --btn-s-border: #2E2E2E;

  --accent: #818cf8;
  --accent-bg: rgba(129, 140, 248, 0.09);
  --accent-border: rgba(129, 140, 248, 0.20);

  --glow-a: rgba(99, 102, 241, 0.14);
  --glow-b: rgba(139, 92, 246, 0.10);

  --featured-bg: #EDEDED;
  --featured-text: #0F0F0F;
  --featured-dim: #555555;
}

/* ───────────────────────────────────────────
   Globals
─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* Smooth dark-mode on surfaces */
.header,
.feature-card,
.quote-form-card,
.ref-card,
.video-card,
.faq-question,
.faq-answer,
.contact-card,
.mobile-nav,
.dark-toggle,
.hamburger,
.footer,
.about-card,
.faq-list,
.faq-item {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ───────────────────────────────────────────
   Layout
─────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* ───────────────────────────────────────────
   Floating WhatsApp
─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 400;
  width: 52px;
  height: 52px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ───────────────────────────────────────────
   Header
─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .header.scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.40);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: 12px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  margin-right: 20px;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header WhatsApp mini button */
.btn-header-wa {
  display: none;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 8px;

  cursor: pointer;
  position: relative;
  overflow: visible;

  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-header-wa svg {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  z-index: 2;
  color: #fff;
}

/* pulse dışarıda */
/* .btn-header-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.25);
  opacity: 0;
  transform: scale(0.9);
  animation: waPulse 2.4s infinite;
  z-index: 0;
}

.btn-header-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}

@keyframes waPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (min-width: 640px) {
  .btn-header-wa {
    display: flex;
  }
} */

/* sadece desktopta göster */
@media (min-width: 640px) {
  .btn-header-wa {
    display: flex;
  }
}

/* Dark toggle */
.dark-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.dark-toggle:hover {
  background: var(--bg-2);
}

.dark-toggle svg {
  width: 15px;
  height: 15px;
}

[data-theme="light"] .icon-moon {
  display: none;
}

[data-theme="dark"] .icon-sun {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.hamburger:hover {
  background: var(--bg-2);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--text);
  background: var(--bg-2);
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Lang switcher — inside mobile nav only */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.lang-btn:hover {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-bg);
}
.lang-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-bg);
}

/* ───────────────────────────────────────────
   Buttons
─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s ease;
}

/* shimmer */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255, 255, 255, 0.13) 55%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  transition: transform 0s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(140%);
  transition: transform 0.5s ease;
}

.btn:active {
  transform: scale(0.97) translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.42);
}

[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 6px 28px rgba(129, 140, 248, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--btn-s-text);
  border-color: var(--btn-s-border);
}

.btn-secondary:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.btn-secondary::after {
  background: linear-gradient(108deg, transparent 30%, rgba(0, 0, 0, 0.04) 55%, transparent 70%);
}

[data-theme="dark"] .btn-secondary::after {
  background: linear-gradient(108deg, transparent 30%, rgba(255, 255, 255, 0.06) 55%, transparent 70%);
}

.btn-featured {
  background: var(--featured-text);
  color: var(--featured-bg);
  border-color: var(--featured-text);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}

.btn-wa:hover {
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.28);
}

.btn-wa::after {
  display: none;
}

.btn-cta {
  background: #ffffff;
  color: #0F0F0F;
  border-color: #ffffff;
  font-size: 16px;
  padding: 14px 30px;
}

.btn-cta:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.20);
}

.btn-cta::after {
  background: linear-gradient(108deg, transparent 30%, rgba(0, 0, 0, 0.05) 55%, transparent 70%);
}

[data-theme="dark"] .btn-cta {
  background: #0F0F0F;
  color: #EDEDED;
  border-color: #0F0F0F;
}

[data-theme="dark"] .btn-cta:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
}

.btn-full {
  width: 100%;
}

/* ───────────────────────────────────────────
   Sections
─────────────────────────────────────────── */
.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--bg-2);
  transition: background-color 0.35s ease;
}

@media (min-width: 768px) {
  .section {
    padding: 112px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.025em;
}

.section-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────
   Hero
─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 152px 0 112px;
  }
}

/* Gradient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.hero-glow-a {
  width: 800px;
  height: 600px;
  top: -180px;
  left: calc(50% - 540px);
  background: radial-gradient(ellipse, var(--glow-a) 0%, transparent 65%);
  animation: orbDrift 15s ease-in-out infinite;
}

.hero-glow-b {
  width: 620px;
  height: 480px;
  bottom: -80px;
  right: calc(50% - 480px);
  background: radial-gradient(ellipse, var(--glow-b) 0%, transparent 65%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wa);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-title-accent {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (max-width: 479px) {
  .hero-cta .btn {
    width: 100%;
  }
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.trust-item:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-bg);
  color: var(--text);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   Features
─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.35s ease, background-color 0.35s ease;
}

.feature-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-5px);
  border-color: var(--accent-border);
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
}

/* ───────────────────────────────────────────
   Referanslar
─────────────────────────────────────────── */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .ref-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ref-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.25s ease, background-color 0.35s ease;
}

.ref-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.28);
}

.ref-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ref-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ref-icon svg {
  width: 18px;
  height: 18px;
}

.ref-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ref-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ref-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ref-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* ───────────────────────────────────────────
   Video
─────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.video-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-4px);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-featured {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 1px var(--accent-border), 0 8px 32px var(--accent-bg);
}

.video-card-featured:hover {
  box-shadow: 0 0 0 1px var(--accent-border), 0 12px 40px rgba(99, 102, 241, 0.18);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--card-bg) 100%);
}

.video-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.video-icon svg {
  width: 24px;
  height: 24px;
}

.video-placeholder p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.video-placeholder span {
  font-size: 12px;
  color: var(--text-muted);
}

.video-single {
  max-width: 360px;
  margin: 0 auto;
}

.video-cta {
  text-align: center;
  margin-top: 40px;
}
.video-cta-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ───────────────────────────────────────────
   Quote Form
─────────────────────────────────────────── */
.quote-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.35s ease, background-color 0.35s ease;
}

@media (min-width: 768px) {
  .quote-form-card {
    padding: 34px;
  }
}

.quote-form {
  display: grid;
  gap: 18px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .quote-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-2);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.35s ease, color 0.35s ease;
}

.quote-field textarea {
  min-height: 160px;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: var(--text-muted);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--accent-border);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

/* ───────────────────────────────────────────
   Süreç
─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.step-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14px;
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   Hakkımda
─────────────────────────────────────────── */
.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-inner {
    flex-direction: row;
    text-align: left;
    gap: 64px;
    align-items: center;
  }
}

.about-card {
  flex-shrink: 0;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.about-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (min-width: 768px) {
  .about-image {
    width: 240px;
    height: 240px;
  }
}

.about-card-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-card-label .badge-dot {
  background: var(--wa);
}

.about-content .section-label {
  display: block;
  margin-bottom: 8px;
}

.about-content .section-title {
  margin-bottom: 16px;
}

@media (max-width: 767px) {

  .about-content .section-title,
  .about-content .section-label {
    text-align: center;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

/* ───────────────────────────────────────────
   FAQ
─────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--card-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-2);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--card-bg);
  transition: max-height 0.35s ease;
}

.faq-answer.open {
  max-height: 480px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────
   CTA Section
─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, #0a0a10 0%, #0f0f1a 100%);
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(160deg, #F0F0F4 0%, #E8E8F0 100%);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: -0.03em;
  color: #EDEDED;
  margin-bottom: 16px;
  line-height: 1.1;
}

[data-theme="dark"] .cta-title {
  color: #0F0F0F;
}

.cta-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #888888;
  margin-bottom: 36px;
}

[data-theme="dark"] .cta-sub {
  color: #555555;
}

.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: #555555;
}

[data-theme="dark"] .cta-note {
  color: #888888;
}

/* ───────────────────────────────────────────
   Contact
─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    background-color 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────
   Footer
─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  transition: border-color 0.35s ease, background-color 0.35s ease;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--text); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.footer-social-link svg { width: 17px; height: 17px; }
.footer-social-link:hover {
  color: var(--text);
  border-color: var(--accent-border);
  background: var(--accent-bg);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-email {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-email:hover { color: var(--accent); }

/* ───────────────────────────────────────────
   Scroll Animations
─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .fade-up {
    transform: translateY(14px);
  }

  .fade-up,
  .fade-up.visible {
    transition-duration: 0.45s;
  }
}

/* ───────────────────────────────────────────
   Keyframes
─────────────────────────────────────────── */
@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(50px, -38px) scale(1.06);
  }

  66% {
    transform: translate(-34px, 26px) scale(0.96);
  }
}

/* ───────────────────────────────────────────
   prefers-reduced-motion
─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    animation: none;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn::after {
    display: none;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .feature-card:hover,
  .quote-form-card:hover,
  .ref-card:hover,
  .contact-card:hover,
  .video-card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
