:root {
  interpolate-size: allow-keywords;
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --surface-2: #F2EFEA;
  --ink: #2D2926;
  --ink-soft: #6B6560;
  --accent: #D4576B;
  --accent-2: #F0C8A8;
  --line: rgba(45,41,38,0.12);
  --line-strong: rgba(45,41,38,0.24);
  --header-h: 72px;
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-std: cubic-bezier(.4,0,.2,1);
  --radius: 16px;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

a, span, td, .footer-contact-item a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms var(--ease-std); }
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 500;
  transition: top 200ms;
}
.skip-link:focus { top: 0; color: var(--surface); }

/* ===== FOCUS RING ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(247,245,240,0.88);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.is-scrolled {
  background: var(--bg);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); }
.logo strong { font-weight: 800; color: var(--accent); display: block; font-size: 1.15rem; }

/* ===== DESKTOP NAV ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms var(--ease-std);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms var(--ease-out);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface) !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 240ms var(--ease-std), transform 240ms var(--ease-std), color 240ms var(--ease-std);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}

/* ===== NAV TOGGLE (HAMBURGER) ===== */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 280ms var(--ease-out);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DRAWER CLOSE ===== */

/* ===== DRAWER ===== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-std);
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  display: block;
  transition: color 240ms var(--ease-std), transform 240ms var(--ease-std);
}
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 16px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface);
  border: none;
  font-size: 1rem;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--surface);
  transform: none;
}
@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }
section { padding: clamp(48px, 8vw, 96px) 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 240ms var(--ease-std), transform 240ms var(--ease-std), color 240ms var(--ease-std), box-shadow 240ms var(--ease-std);
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(212,87,107,0.35);
}
.btn-primary .btn-arrow {
  display: inline-block;
  transition: transform 240ms var(--ease-out);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms var(--ease-std), color 240ms var(--ease-std), border-color 240ms var(--ease-std), transform 240ms var(--ease-std);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 16px auto 28px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

/* Category chips */
.chip-band {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
  cursor: default;
}
.chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(212,87,107,0.2);
  border-color: var(--accent-2);
}
.chip svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* Hero kinetic letter animation */
.hero-h1 .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: letterIn 500ms var(--ease-out) forwards;
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Decorative shimmer */
.hero::before {
  content: '';
  position: absolute;
  top: 20%; left: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(212,87,107,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0,0) scale(1); opacity: 0.6; }
  100% { transform: translate(10%,5%) scale(1.15); opacity: 1; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--ink);
  padding: 36px 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { color: var(--surface); }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent-2);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ===== KATALOG ===== */
.katalog { background: var(--surface); }
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.katalog-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  overflow: hidden;
}
.katalog-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px -12px rgba(212,87,107,0.18);
}
.katalog-card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--accent);
}
.katalog-card-icon svg { width: 24px; height: 24px; }
.katalog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.katalog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.katalog-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}
.katalog-duration {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Nail palette fan-out — theme signature */
.nail-palette {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 36px; height: 36px;
  pointer-events: none;
}
.nail-palette span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 7px;
  height: 28px;
  border-radius: 3.5px;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg) scaleY(0);
  opacity: 0;
  transition: transform 360ms var(--ease-out), opacity 300ms var(--ease-out);
}
.nail-palette span:nth-child(1) { background: #D4576B; transition-delay: 0ms; }
.nail-palette span:nth-child(2) { background: #F0C8A8; transition-delay: 40ms; }
.nail-palette span:nth-child(3) { background: #8B2252; transition-delay: 80ms; }
.nail-palette span:nth-child(4) { background: #E88B96; transition-delay: 120ms; }
.nail-palette span:nth-child(5) { background: #C9A0DC; transition-delay: 160ms; }

.katalog-card:hover .nail-palette span { opacity: 1; }
.katalog-card:hover .nail-palette span:nth-child(1) { transform: translateX(-50%) rotate(-28deg) scaleY(1); }
.katalog-card:hover .nail-palette span:nth-child(2) { transform: translateX(-50%) rotate(-14deg) scaleY(1); }
.katalog-card:hover .nail-palette span:nth-child(3) { transform: translateX(-50%) rotate(0deg) scaleY(1); }
.katalog-card:hover .nail-palette span:nth-child(4) { transform: translateX(-50%) rotate(14deg) scaleY(1); }
.katalog-card:hover .nail-palette span:nth-child(5) { transform: translateX(-50%) rotate(28deg) scaleY(1); }

@media (max-width: 768px) {
  .katalog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .katalog-grid { grid-template-columns: 1fr; }
  .katalog-card { padding: 20px 18px; }
}

/* ===== PAKETLER ===== */
.paketler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.paket-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,87,107,0.15);
}
.paket-card.is-featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.paket-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 999px;
}
.paket-card h3 { margin-bottom: 8px; }
.paket-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.paket-price small {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-soft);
}
.paket-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.paket-list li {
  padding: 8px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.paket-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%23D4576B' stroke-width='1.5'/%3E%3Cpath d='M5.5 9.5L7.5 11.5L12.5 6.5' stroke='%23D4576B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.paket-list li.excluded {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.paket-list li.excluded::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%236B6560' stroke-width='1.5'/%3E%3Cpath d='M6.5 6.5L11.5 11.5M11.5 6.5L6.5 11.5' stroke='%236B6560' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.paket-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .paketler-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ===== PROCESS / SÜREÇ ===== */
.surec { background: var(--surface); }
.surec-timeline {
  margin-top: 48px;
  position: relative;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.surec-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 23px;
  width: 2px;
  background: var(--line);
}
.surec-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.surec-step:last-child { padding-bottom: 0; }
.surec-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.surec-content { padding-top: 8px; }
.surec-content h3 { margin-bottom: 6px; }
.surec-content p { color: var(--ink-soft); font-size: 0.92rem; }
.surec-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(212,87,107,0.08);
  padding: 3px 12px;
  border-radius: 999px;
}

/* ===== EKİP ===== */
.ekip-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0 16px;
  margin-top: 32px;
}
.ekip-scroll::-webkit-scrollbar { height: 4px; }
.ekip-scroll::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.ekip-scroll::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 2px; }
.ekip-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.ekip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(212,87,107,0.15);
}
.ekip-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent-2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.ekip-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.ekip-card:hover .ekip-avatar::after { opacity: 1; transform: scale(1); }
.ekip-card h3 { font-size: 1rem; margin-bottom: 4px; }
.ekip-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.ekip-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* ===== REFERANSLAR / TESTİMONIALS ===== */
.referanslar { background: var(--surface); }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ref-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.ref-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-2);
  position: absolute;
  top: 16px; left: 20px;
}
.ref-card blockquote {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.7;
  padding-top: 28px;
  font-style: italic;
}
.ref-author {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.ref-author span { font-weight: 400; color: var(--ink-soft); display: block; }

@media (max-width: 768px) {
  .ref-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ===== SSS — PILL TABS ===== */
.sss-wrap { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.sss-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.sss-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.sss-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  cursor: pointer;
  background: var(--surface);
  transition: background 240ms var(--ease-std), color 240ms var(--ease-std), border-color 240ms var(--ease-std), transform 240ms var(--ease-std);
}
.sss-pill:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.sss-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  animation: panelIn 320ms var(--ease-out);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* :has() based pill-tab logic */
.sss-wrap:has(#sss1:checked) label[for="sss1"],
.sss-wrap:has(#sss2:checked) label[for="sss2"],
.sss-wrap:has(#sss3:checked) label[for="sss3"],
.sss-wrap:has(#sss4:checked) label[for="sss4"],
.sss-wrap:has(#sss5:checked) label[for="sss5"],
.sss-wrap:has(#sss6:checked) label[for="sss6"],
.sss-wrap:has(#sss7:checked) label[for="sss7"] {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.sss-wrap:has(#sss1:checked) [data-panel="1"],
.sss-wrap:has(#sss2:checked) [data-panel="2"],
.sss-wrap:has(#sss3:checked) [data-panel="3"],
.sss-wrap:has(#sss4:checked) [data-panel="4"],
.sss-wrap:has(#sss5:checked) [data-panel="5"],
.sss-wrap:has(#sss6:checked) [data-panel="6"],
.sss-wrap:has(#sss7:checked) [data-panel="7"] {
  display: block;
}

@media (max-width: 480px) {
  .sss-pill { font-size: 0.75rem; padding: 8px 14px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo { color: var(--surface); margin-bottom: 14px; }
.footer-brand .logo strong { color: var(--accent-2); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.6); }
.site-footer h4 {
  color: var(--surface);
  font-size: 0.88rem;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; text-decoration: none; transition: color 240ms; }
.footer-links a:hover { color: var(--accent-2); }
.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent-2); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); word-break: break-all; }
.footer-contact-item a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent-2); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease-out), opacity 240ms;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 240ms var(--ease-std), color 240ms var(--ease-std), border-color 240ms var(--ease-std);
  min-height: 44px;
}
.cookie-actions button:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===== NAV ACTIVE ===== */
.nav-desktop a.is-active { color: var(--accent); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-stagger { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero::before { animation: none; }
  .hero-h1 .letter { animation: none; opacity: 1; transform: none; }
}

/* ===== NICHE ANIMATIONS ===== */

/* 1. Polish brush stroke underline on section headings */
.brush-underline {
  position: relative;
  display: inline-block;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 4px;
  background: var(--accent-2);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.brush-underline.is-in::after { transform: scaleX(1); }

/* 2. Sparkle shimmer on accent elements */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-accent {
  background: linear-gradient(110deg, var(--accent) 30%, #f0a0b0 50%, var(--accent) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* 3. Nail shape pulse on hover */
@keyframes nailPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.ekip-card:hover .ekip-avatar {
  animation: nailPulse 800ms var(--ease-out);
}

/* 4. Polish drip ambient on hero */
@keyframes polishFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(2deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  animation: polishFloat 12s ease-in-out infinite;
}
.hero-deco-1 { top: 15%; right: 8%; width: 60px; }
.hero-deco-2 { bottom: 20%; left: 5%; width: 48px; }

@media (prefers-reduced-motion: reduce) {
  .shimmer-accent { animation: none; background: var(--accent); -webkit-text-fill-color: var(--accent); }
  .ekip-card:hover .ekip-avatar { animation: none; }
  .hero-deco { animation: none; }
  .nail-palette span { transition: none; }
}

/* ===== COUNTER UP ===== */
.counter-num { font-variant-numeric: tabular-nums; }

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  gap: 20px;
  max-width: 600px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 240ms var(--ease-std), box-shadow 240ms var(--ease-std);
  width: 100%;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,87,107,0.1);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400 !important;
  cursor: pointer;
}
.kvkk a { text-decoration: underline; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary { width: 100%; justify-content: center; }

/* ===== CONTACT CHANNELS ===== */
.contact-channels {
  display: grid;
  gap: 16px;
}
.contact-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms var(--ease-std), background 240ms var(--ease-std);
  border-radius: 6px;
}
.contact-row:hover { transform: translateX(4px); }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms var(--ease-std);
}
.contact-row:hover svg { color: var(--accent); }
.contact-row strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.contact-row a {
  color: var(--ink);
  word-break: break-all;
}
.contact-row a:hover { color: var(--accent); }
.contact-row span { color: var(--ink-soft); font-size: 0.9rem; }

/* ===== PAGE HEADER (INNER PAGES) ===== */
.page-header {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 8px; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p,
.legal-content li { font-size: 0.92rem; line-height: 1.75; color: var(--ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface-2);
  color: var(--ink);
}
td { color: var(--ink-soft); }

/* ===== 404 / THANK YOU ===== */
.center-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.center-page h1 { margin-bottom: 16px; }
.center-page p { color: var(--ink-soft); margin-bottom: 28px; max-width: 480px; }

/* ===== SITEMAP PAGE ===== */
.sitemap-list { list-style: none; }
.sitemap-list li { margin-bottom: 8px; }
.sitemap-list a { font-weight: 500; }
.sitemap-section { margin-bottom: 32px; }

/* ===== HAKKIMIZDA ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { color: var(--ink-soft); }
.about-stats-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-stat-item {
  text-align: center;
}
.about-stat-item .stat-num {
  color: var(--accent);
  font-size: 2rem;
}
.about-stat-item .stat-label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 4px;
}

.team-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.team-detail-card .ekip-avatar { margin-bottom: 16px; }
.team-detail-card h3 { text-align: center; margin-bottom: 4px; }
.team-detail-card .ekip-role { text-align: center; margin-bottom: 14px; }
.team-detail-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--ink);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
}
.cta-section h2 { color: var(--surface); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.cta-section .btn-primary:hover {
  background: var(--accent-2);
  color: var(--ink);
}

/* ===== SMOOTH SCROLL OFFSET ===== */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  .chip-band { gap: 8px; }
  .chip { padding: 10px 16px; font-size: 0.82rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { justify-content: center; }
  .trust-strip { gap: 10px; }
  .trust-badge { font-size: 0.75rem; padding: 5px 10px; }
}
@media (max-width: 480px) {
  .paket-card { padding: 24px 18px; }
  .ref-card { padding: 24px 18px; }
  .ekip-card { flex: 0 0 220px; padding: 22px 16px; }
  .surec-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .surec-num { width: 40px; height: 40px; font-size: 0.95rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 360px) {
  body { font-size: 15px; }
  .katalog-card { padding: 16px 14px; }
}
