/* ============================================
   TemizPro — Kuru Temizleme Firma Sitesi
   Design System + Landing Page Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-50: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.10);
  --accent: #047857;
  --accent-dark: #065f46;
  --accent-light: #06d6a0;
  --accent-glow: rgba(6, 214, 160, 0.10);
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --gray: #64748b;
  --gray-light: #6b7280;
  --gray-lighter: #9ca3af;
  --light: #f1f5f9;
  --light-2: #e2e8f0;
  --white: #ffffff;
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --orange: #f97316;

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);
  --shadow-glow: 0 0 40px rgba(37,99,235,.18);
  --shadow-accent: 0 4px 16px rgba(6,214,160,.25);

  /* Transitions */
  --fast: .15s cubic-bezier(.4,0,.2,1);
  --ease: .3s cubic-bezier(.4,0,.2,1);
  --slow: .5s cubic-bezier(.4,0,.2,1);
  --spring: .6s cubic-bezier(.34,1.56,.64,1);

  /* Fonts */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);

  /* Layout */
  --container: 1200px;
  --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--dark); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--fast); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; border: none; outline: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }

/* --- Utility --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Scroll Animations --- */
/* Use noscript-safe approach: animations only apply when JS adds the class */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Reduced motion: disable animations, keep content visible */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}
/* No-JS fallback: make content visible */
@media (scripting: none) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .10s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .20s; }
.stagger > *:nth-child(5) { transition-delay: .25s; }
.stagger > *:nth-child(6) { transition-delay: .30s; }
.stagger > *:nth-child(7) { transition-delay: .35s; }
.stagger > *:nth-child(8) { transition-delay: .40s; }

/* --- Keyframes --- */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float      { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse      { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.5); } }
@keyframes scaleIn    { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes ripple     { to { transform: scale(4); opacity: 0; } }
@keyframes shimmer    { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes barGrow    { from { height: 0; } }
@keyframes spin       { to { transform: rotate(360deg); } }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: .9rem; position: relative;
  overflow: hidden; white-space: nowrap; transition: all var(--ease);
  letter-spacing: .01em;
}
.btn--primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 16px rgba(37,99,235,.3); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 6px 24px rgba(37,99,235,.4); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--white); box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--accent-dark); box-shadow: 0 6px 24px rgba(6,214,160,.4); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--light-2); color: var(--dark); background: var(--white); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }
.btn--white { background: var(--white); color: var(--dark); box-shadow: var(--shadow); }
.btn--white:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn--ghost { color: var(--primary); padding: 12px 16px; }
.btn--ghost:hover { background: var(--primary-glow); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 20px; font-size: .85rem; }
.btn__icon { font-size: 1.1em; transition: transform var(--ease); display: flex; }
.btn:hover .btn__icon { transform: translateX(3px); }
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3); transform: scale(0);
  animation: ripple .6s ease-out; pointer-events: none;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--light-2);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,.95);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--dark); }
.logo__icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.logo__icon svg { width: 22px; height: 22px; }
.logo__text span { color: var(--primary); }

/* Nav */
.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: .9rem; font-weight: 500; color: var(--gray);
  position: relative; padding: 4px 0; transition: color var(--fast);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--primary); transition: width var(--ease);
}
.nav__link:hover { color: var(--dark); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--primary); }
.nav__link--active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .88rem; color: var(--dark);
  padding: 8px 14px; border-radius: var(--radius-full);
  transition: background var(--fast);
}
.nav__phone:hover { background: var(--light); }
.nav__phone svg { color: var(--primary); width: 16px; height: 16px; }

/* Mobile Menu */
.menu-toggle {
  display: none; width: 40px; height: 40px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; transition: background var(--fast);
}
.menu-toggle:hover { background: var(--light); }
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--ease); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after  { top: 0; transform: rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: calc(var(--header-h) + 64px); padding-bottom: 80px;
  position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--primary-glow), transparent),
    radial-gradient(ellipse 50% 40% at 85% 80%, var(--accent-glow), transparent),
    linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}
.hero__bg::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,.06), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Hero Content */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px; border-radius: var(--radius-full);
  background: var(--primary-glow); color: var(--primary-dark);
  font-size: .82rem; font-weight: 600; margin-bottom: 24px;
  animation: fadeInDown .8s cubic-bezier(.4,0,.2,1) both;
}
.hero__badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-light); animation: pulse 2s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--dark); letter-spacing: -.02em;
  animation: fadeInUp .8s .12s cubic-bezier(.4,0,.2,1) both;
}
.hero__title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  margin-top: 20px; font-size: 1.12rem; color: var(--gray);
  max-width: 520px; line-height: 1.75;
  animation: fadeInUp .8s .25s cubic-bezier(.4,0,.2,1) both;
}
.hero__actions {
  display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap;
  animation: fadeInUp .8s .38s cubic-bezier(.4,0,.2,1) both;
}
.hero__stats {
  display: flex; gap: 40px; margin-top: 48px;
  animation: fadeInUp .8s .5s cubic-bezier(.4,0,.2,1) both;
}
.hero__stat { }
.hero__stat-value, .hero__stat h4 { font-size: 1.8rem; font-weight: 800; color: var(--dark); font-variant-numeric: tabular-nums; margin: 0; }
.hero__stat-value span, .hero__stat h4 span { color: var(--primary); }
.hero__stat p  { font-size: .82rem; color: var(--gray); margin-top: 2px; }

/* Hero Visual */
.hero__visual { position: relative; animation: fadeInUp 1s .3s cubic-bezier(.4,0,.2,1) both; }
.hero__card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px 28px 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-2); position: relative;
}
.hero__card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__card__title  { font-weight: 700; font-size: 1rem; }
.hero__card__badge  {
  padding: 4px 12px; border-radius: var(--radius-full);
  background: rgba(16,185,129,.1); color: #047857;
  font-size: .78rem; font-weight: 600;
}
.hero__order-list { display: flex; flex-direction: column; gap: 10px; }
.hero__order-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--light); transition: all var(--ease);
}
.hero__order-item:hover { background: var(--primary-50); transform: translateX(4px); }
.hero__order-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.hero__order-info h5 { font-size: .88rem; font-weight: 600; color: var(--dark); }
.hero__order-info p  { font-size: .78rem; color: #566479; margin-top: 1px; }
.hero__order-status  {
  margin-left: auto; font-size: .75rem; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-full); flex-shrink: 0;
}
.status--done     { background: rgba(16,185,129,.1); color: #047857; }
.status--progress { background: rgba(37,99,235,.1);  color: var(--primary-dark); }
.status--wait     { background: rgba(245,158,11,.1); color: #854d0e; }

/* Floating Cards */
.float-card {
  position: absolute; padding: 14px 18px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--light-2);
  display: flex; align-items: center; gap: 12px; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.float-card--1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-card--2 { bottom: 0; left: -24px; animation-delay: -3s; }
.float-card__icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.float-card__icon--blue  { background: var(--primary-glow); color: var(--primary); }
.float-card__icon--green { background: var(--accent-glow);  color: var(--accent); }
.float-card__text { font-size: .8rem; }
.float-card__text strong { display: block; font-weight: 700; color: var(--dark); font-size: .85rem; }
.float-card__text span   { color: var(--gray); font-size: .78rem; }

/* =========================================
   SECTION COMMON
   ========================================= */
.section { padding: 100px 0; }
.section--gray { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }
.section__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px;
}
.section__label svg { width: 16px; height: 16px; }
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--dark); letter-spacing: -.015em;
}
.section--dark .section__title { color: var(--white); }
.section__desc {
  margin-top: 14px; font-size: 1.05rem; color: var(--gray); line-height: 1.75;
}
.section--dark .section__desc { color: #94a3b8; }
.section--gray .section__desc { color: #5f6e84; }

/* =========================================
   SERVICES
   ========================================= */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--light-2);
  transition: all var(--ease); position: relative;
  overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.service-card:hover    { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
  transition: transform var(--spring);
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-5deg); }
.service-card__icon--blue   { background: rgba(37,99,235,.08); }
.service-card__icon--green  { background: rgba(6,214,160,.08); }
.service-card__icon--purple { background: rgba(139,92,246,.08); }
.service-card__icon--orange { background: rgba(249,115,22,.08); }
.service-card__icon--pink   { background: rgba(236,72,153,.08); }
.service-card__icon--cyan   { background: rgba(6,182,212,.08); }
.service-card__icon--yellow { background: rgba(245,158,11,.08); }
.service-card__icon--red    { background: rgba(239,68,68,.08); }
.service-card__title { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card__desc  { font-size: .84rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.service-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.service-card__price small { font-size: .75rem; font-weight: 500; color: var(--gray); }

/* =========================================
   STEPS — How It Works
   ========================================= */
.steps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.steps__grid::before {
  content: ''; position: absolute; top: 36px;
  left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: .18;
}
.step { text-align: center; position: relative; }
.step__number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; color: var(--primary);
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all var(--ease);
}
.step:hover .step__number {
  background: var(--primary); color: var(--white);
  box-shadow: var(--shadow-glow); transform: scale(1.1);
}
.step__icon  { font-size: 1.6rem; margin-bottom: 10px; }
.step__title { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.step__desc  { font-size: .88rem; color: var(--gray); line-height: 1.65; max-width: 220px; margin: 0 auto; }

/* =========================================
   PRICE TABLE
   ========================================= */
.price-tabs {
  display: flex; gap: 6px; justify-content: center; margin-bottom: 36px;
}
.price-tab {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: .88rem; font-weight: 600; color: var(--gray);
  background: var(--white); border: 2px solid var(--light-2);
  cursor: pointer; transition: all var(--ease);
}
.price-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.price-tab.active {
  background: var(--primary); color: var(--white);
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(37,99,235,.25);
}

.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeInUp .4s ease both; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--light-2);
  transition: all var(--fast);
}
.price-row:hover {
  border-color: var(--primary); background: var(--primary-50);
  transform: translateX(4px);
}
.price-row__name {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 500; color: var(--dark);
}
.price-row__icon { font-size: 1.1rem; }
.price-row__amount {
  font-family: var(--font-display); font-weight: 800;
  color: var(--primary); font-size: 1rem; white-space: nowrap;
}

/* =========================================
   WHY US — Dark Section
   ========================================= */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  transition: all var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.why-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 18px;
  transition: transform var(--spring);
}
.why-card:hover .why-card__icon { transform: scale(1.12) rotate(-5deg); }
.why-card__title { font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.why-card__desc  { font-size: .86rem; color: #94a3b8; line-height: 1.65; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--light-2);
  transition: all var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__stars { display: flex; gap: 3px; color: var(--warning); font-size: .9rem; margin-bottom: 16px; }
.testimonial__text  { font-size: .93rem; color: var(--dark-3); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: .9rem;
  border: 2px solid var(--light-2);
}
.testimonial__name, .testimonial__info h5 { font-size: .88rem; font-weight: 600; color: var(--dark); margin: 0; }
.testimonial__info p  { font-size: .78rem; color: var(--gray); }

/* =========================================
   FAQ
   ========================================= */
.faq__list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  border-radius: var(--radius); border: 1px solid var(--light-2);
  background: var(--white); overflow: hidden;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--dark);
  transition: color var(--fast); gap: 12px; user-select: none;
}
.faq-item__question:hover { color: var(--primary); }
.faq-item__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--ease);
  font-size: .9rem; color: var(--gray);
}
.faq-item.open .faq-item__icon {
  background: var(--primary); color: var(--white); transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-item__answer { max-height: 600px; padding: 0 22px 20px; }
.faq-item__answer p { font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* =========================================
   CONTACT
   ========================================= */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__info-item { display: flex; gap: 16px; }
.contact__info-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--primary-glow); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.contact__info-icon svg { width: 22px; height: 22px; }
.contact__info-title, .contact__info-text h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; margin-top: 0; }
.contact__info-text p,
.contact__info-text a { font-size: .88rem; color: var(--gray); line-height: 1.55; }
.contact__info-text a:hover { color: var(--primary); }

.contact__map {
  width: 100%; height: 200px; border-radius: var(--radius);
  background: var(--light); border: 1px solid var(--light-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: .88rem; margin-top: 8px;
  overflow: hidden; position: relative;
}
.contact__map::after {
  content: '📍 Harita burada görünecek';
  font-size: .85rem; color: var(--gray-light);
}

.contact__form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-2);
}
.contact__form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.contact__form > p { font-size: .88rem; color: var(--gray); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 2px solid var(--light-2); background: var(--white);
  font-size: .92rem; color: var(--dark); transition: all var(--fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-lighter); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-success {
  display: none; text-align: center; padding: 32px 20px;
}
.form-success.show { display: block; animation: fadeInUp .5s ease both; }
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(16,185,129,.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--success);
}
.form-success h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.form-success p  { font-size: .88rem; color: var(--gray); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
}
.cta::after {
  content: ''; position: absolute; bottom: -40%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,214,160,.08), transparent 70%);
}
.cta__inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--white); line-height: 1.25; margin-bottom: 16px;
}
.cta__desc {
  font-size: 1.05rem; color: #94a3b8;
  line-height: 1.7; margin-bottom: 36px;
}
.cta__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer { padding: 64px 0 32px; background: var(--dark); color: #94a3b8; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand .logo { margin-bottom: 4px; }
.footer__brand .logo__text { color: var(--white); }
.footer__brand p { font-size: .88rem; line-height: 1.75; margin-top: 14px; max-width: 300px; }
.footer__col h3 { font-weight: 700; color: var(--white); font-size: .95rem; margin-bottom: 18px; }
.footer__link {
  display: block; padding: 5px 0; font-size: .86rem;
  color: #94a3b8; transition: color var(--fast);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--dark-3); font-size: .82rem;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark-2); display: flex;
  align-items: center; justify-content: center;
  color: #94a3b8; transition: all var(--fast); font-size: .9rem;
}
.footer__social a:hover { background: var(--primary); color: var(--white); }
.footer__social a svg { width: 16px; height: 16px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { text-align: left; }
  .hero__visual { max-width: 520px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps__grid::before { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid > :last-child { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); padding: 20px 24px;
    flex-direction: column; gap: 6px;
    border-bottom: 1px solid var(--light-2); box-shadow: var(--shadow-md);
    transform: translateY(-120%); opacity: 0;
    transition: all var(--ease); z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__link { padding: 12px 0; width: 100%; font-size: .95rem; }
  .nav__cta {
    flex-direction: column; width: 100%; gap: 8px; margin-top: 12px;
    padding-top: 12px; border-top: 1px solid var(--light-2);
  }
  .nav__cta .btn, .nav__phone { width: 100%; justify-content: center; }
  .menu-toggle { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 32px); min-height: auto; padding-bottom: 60px; }
  .hero__stats { gap: 24px; }
  .hero__stat h4 { font-size: 1.4rem; }
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: 1fr; gap: 28px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid > :last-child { display: block; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .float-card { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .price-tabs { flex-wrap: wrap; justify-content: center; }
  .price-tab { flex: 1; min-width: 100px; text-align: center; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; }
}

/* --- Accessibility & Print --- */
:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media print {
  .header, .footer, .cta, .float-card { display: none; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; padding: 24px 0; }
  .section { padding: 32px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

.counter[data-target] { font-variant-numeric: tabular-nums; }

/* =========================================
   SKIP-TO-CONTENT
   ========================================= */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 12px 24px; background: var(--primary); color: var(--white);
  border-radius: var(--radius); font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* =========================================
   SCREEN READER ONLY
   ========================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.toast-container {
  position: fixed; top: 24px; right: 24px; z-index: 9000;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto; display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary); min-width: 280px; max-width: 420px;
  animation: toastIn .35s cubic-bezier(.34,1.56,.64,1) both;
  font-size: .88rem; color: var(--dark);
}
.toast--success { border-left-color: var(--success); }
.toast--error   { border-left-color: var(--danger); }
.toast--warning { border-left-color: var(--warning); }
.toast__icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.toast--success .toast__icon { background: rgba(16,185,129,.12); color: var(--success); }
.toast--error   .toast__icon { background: rgba(239,68,68,.12); color: var(--danger); }
.toast--warning .toast__icon { background: rgba(245,158,11,.12); color: var(--warning); }
.toast__message { flex: 1; line-height: 1.4; }
.toast__close { flex-shrink: 0; border: none; background: none; cursor: pointer; color: var(--gray); font-size: 1.1rem; padding: 2px; }
.toast__close:hover { color: var(--dark); }
.toast.removing { animation: toastOut .3s ease forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(80px); } }

/* =========================================
   FORM ERROR STATES
   ========================================= */
.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 4px rgba(239,68,68,.1) !important;
  animation: shake .4s ease;
}
.form-error-text {
  color: var(--danger); font-size: .78rem; margin-top: 4px;
  display: none; align-items: center; gap: 4px;
}
.form-error-text.visible { display: flex; }
.form-error-text::before { content: '⚠'; font-size: .7rem; }
.form-hint {
  display: block; font-size: .75rem; margin-top: 4px;
  min-height: 1.1em; transition: color var(--fast);
  color: var(--gray);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-4px); }
  40%, 80%  { transform: translateX(4px); }
}

/* =========================================
   SPINNER (for submit buttons)
   ========================================= */
.spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .6s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
