:root {
  --bg: #FEFEFE;
  --surface: #F0F4F8;
  --surface-2: #E8EDF3;
  --ink: #1B2D45;
  --ink-soft: #4A5D73;
  --accent: #0077CC;
  --accent-2: #FF5252;
  --line: rgba(27, 45, 69, 0.12);
  --line-strong: rgba(27, 45, 69, 0.22);
  --header-h: 72px;
  --radius: 999px;
  --radius-card: 16px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 36px rgba(0, 119, 204, 0.14);
  interpolate-size: allow-keywords;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.mono {
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--accent-2); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(254, 254, 254, 0.98);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.10), 0 1px 0 rgba(0, 119, 204, 0.04);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--ink); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* NAV TOGGLE */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(0, 119, 204, 0.04);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.22,.68,.31,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* DRAWER */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, transform 200ms ease;
}
.drawer a:hover {
  color: var(--accent);
  transform: translateX(6px);
}
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: none;
}

/* ===== MAIN ===== */
main {
  padding-top: var(--header-h);
}

/* ===== SECTIONS ===== */
section {
  padding: clamp(48px, 8vw, 96px) 0;
}
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== HERO / PLANLAYICI ===== */
#planlayici {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(48px, 8vw, 80px);
}
.hero-stack {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.hero-stack h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
html.js .hero-stack h1 {
  animation: heroReveal 650ms cubic-bezier(.22,.68,.31,1) both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-stack .hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
html.js .hero-stack .hero-sub {
  animation: heroReveal 650ms cubic-bezier(.22,.68,.31,1) 120ms both;
}

/* CONFIGURATOR */
.configurator {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* STEP INDICATOR */
.step-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  transition: background 320ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.step-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.step-dot.done {
  background: var(--accent);
  opacity: 0.5;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  transition: background 320ms ease;
}
.step-connector.done { background: var(--accent); }

/* STEP PANELS */
.step-panel {
  display: none;
  animation: slideLeft 400ms cubic-bezier(.2,.7,.2,1);
}
.step-panel.active { display: block; }
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: none; }
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: center;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 28px;
}

/* EVENT TYPE CARDS */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.event-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 280ms ease, transform 280ms cubic-bezier(.22,.68,.31,1), box-shadow 320ms ease;
}
.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.event-card.selected {
  border-color: var(--accent);
  background: rgba(0, 119, 204, 0.06);
}
.event-card .event-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
}
.event-card .event-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.event-card .event-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* SERVICE OPTIONS */
.service-options {
  display: grid;
  gap: 12px;
}
.service-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 240ms ease, background 200ms ease;
}
.service-option:hover {
  border-color: var(--accent);
}
.service-option.selected {
  border-color: var(--accent);
  background: rgba(0, 119, 204, 0.04);
}
.service-option 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);
}
.service-option .service-info { flex: 1; }
.service-option .service-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.service-option .service-detail {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.service-option .service-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  white-space: nowrap;
}

/* PRICE SUMMARY */
.price-summary {
  text-align: center;
  padding: 32px 0;
}
.price-total-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.price-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.price-total .digit {
  display: inline-block;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.price-total .digit.ticking {
  animation: slotTick 300ms cubic-bezier(.2,.7,.2,1);
}
@keyframes slotTick {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-100%); opacity: 0; }
  41% { transform: translateY(100%); }
  100% { transform: translateY(0); opacity: 1; }
}
.price-currency {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-left: 8px;
}
.price-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 12px;
  opacity: 0.7;
}

.summary-breakdown {
  margin-top: 24px;
  text-align: left;
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* STEP BUTTONS */
.step-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 240ms ease, transform 180ms ease, box-shadow 240ms ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 204, 0.22);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--ink);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
html.js .trust-strip {
  animation: heroReveal 550ms cubic-bezier(.22,.68,.31,1) 220ms both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ===== NASIL - 3 STEPS ===== */
#nasil {
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
}
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-card .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 18px;
}
.step-card .step-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  color: var(--accent);
}
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== PORTFOLIO ===== */
#portfoy {
  padding-bottom: clamp(48px, 8vw, 80px);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-2);
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22,.68,.31,1);
}
.portfolio-card:hover img {
  transform: scale(1.05);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 45, 69, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.22,.68,.31,1);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

@media (hover: none), (max-width: 640px) {
  .portfolio-overlay { opacity: 1; }
}

/* SHINE SWEEP on portfolio cards — warm mirror flash */
.portfolio-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,245,235,0.18), transparent);
  transition: left 700ms cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
}
.portfolio-card:hover::after { left: 130%; }

/* ===== FAQ TABS ===== */
#sikca {
  background: var(--surface);
}
.faq-container {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.faq-tab {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease, transform 180ms ease;
}
.faq-tab:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.faq-tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.faq-panel {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: none;
  animation: slideLeft 360ms cubic-bezier(.2,.7,.2,1);
}
.faq-panel.active { display: block; }
.faq-panel h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.faq-panel p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
#iletisim {
  padding-bottom: clamp(48px, 8vw, 96px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FORM */
.form-wrap form {
  display: grid;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms ease, box-shadow 240ms ease;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}
.field textarea {
  border-radius: var(--radius-card);
  min-height: 120px;
  resize: vertical;
}
.field select { cursor: pointer; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.field-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  padding: 0;
  border: 2px solid var(--line-strong);
  border-radius: 6px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
  position: relative;
  background: var(--bg);
  transition: border-color 200ms ease, background 200ms ease;
}
.field-checkbox input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.field-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.field-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.field-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.field-checkbox label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0;
  padding-top: 2px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* CONTACT INFO */
.contact-info {
  display: grid;
  gap: 20px;
  align-content: start;
}
.contact-channel {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  transition: transform 280ms cubic-bezier(.22,.68,.31,1), background 280ms ease;
}
.contact-channel:hover {
  transform: translateX(4px);
}
.contact-channel svg {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms ease;
}
.contact-channel:hover svg { color: var(--accent); }
.contact-channel .channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-channel .channel-value {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel .channel-value a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.contact-channel .channel-value a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--ink);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
}
.stat-item .stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: clamp(48px, 8vw, 80px) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ===== NEWS BLOCK ===== */
.news-block {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 48px;
}
.news-block h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.news-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.88rem;
}
.news-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.news-text { color: var(--ink); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(40px, 6vw, 64px) 0 24px;
}
.site-footer.cookie-banner-spacer {
  padding-bottom: 140px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.footer-col p,
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}
.footer-col a {
  display: block;
  transition: color 200ms ease;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--line);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 44px;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.16,.84,.44,1), transform 700ms cubic-bezier(.16,.84,.44,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 120ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== NICHE ANIMATIONS ===== */

/* Brush stroke underline on active */
@keyframes brushStroke {
  from { width: 0; }
  to { width: 100%; }
}
.brush-underline {
  position: relative;
  display: inline-block;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #c8a082, #e0a890, var(--accent-2));
  border-radius: 2px;
  animation: brushStroke 1000ms cubic-bezier(.16,.84,.44,1) 400ms forwards;
}

/* Powder float particles */
@keyframes powderFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  20% { transform: translate(5px, -14px) scale(1.15); opacity: 0.4; }
  45% { transform: translate(-6px, -24px) scale(0.85); opacity: 0.55; }
  70% { transform: translate(7px, -16px) scale(1.1); opacity: 0.3; }
  90% { transform: translate(-3px, -8px) scale(0.95); opacity: 0.22; }
}
.powder-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 160, 130, 0.5);
  opacity: 0.2;
  animation: powderFloat 12s ease-in-out infinite;
  pointer-events: none;
  filter: blur(0.8px);
}
.powder-particle:nth-child(2) { animation-delay: -2.5s; background: rgba(224, 168, 144, 0.5); width: 7px; height: 7px; }
.powder-particle:nth-child(3) { animation-delay: -5s; background: rgba(180, 140, 120, 0.45); }
.powder-particle:nth-child(4) { animation-delay: -7s; background: rgba(200, 160, 130, 0.5); width: 4px; height: 4px; }
.powder-particle:nth-child(5) { animation-delay: -3.5s; background: rgba(0, 119, 204, 0.25); width: 6px; height: 6px; }

@media (prefers-reduced-motion: reduce) {
  .powder-particle { animation: none; opacity: 0; }
  .brush-underline::after { animation: none; width: 100%; }
}

/* Mirror shine on cards hover */
@keyframes mirrorShine {
  from { left: -100%; }
  to { left: 120%; }
}

/* Blush gradient pulse on price — warm rose-gold for makeup theme */
@keyframes blushPulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 28px rgba(200, 160, 130, 0.35), 0 0 12px rgba(0, 119, 204, 0.2); }
}
.price-total.animating {
  animation: blushPulse 600ms ease;
}

/* Lipstick swipe for step indicator */
@keyframes lipSwipe {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===== PAGE STYLES ===== */
.page-hero {
  padding: clamp(32px, 6vw, 64px) 0;
  padding-bottom: clamp(16px, 3vw, 32px);
  text-align: center;
}
.page-hero + section {
  padding-top: clamp(24px, 4vw, 48px);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}
.page-content {
  padding: clamp(32px, 6vw, 64px) 0;
}
.page-content h2 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.page-content p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.page-content ul,
.page-content ol {
  margin: 12px 0;
  padding-left: 24px;
}
.page-content li {
  margin-bottom: 8px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* 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%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  background: var(--surface);
  color: var(--ink);
}
td { color: var(--ink-soft); }

/* THANK YOU PAGE */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.thankyou-wrap h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}
.thankyou-wrap p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* 404 PAGE */
.error-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.error-wrap .error-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.error-wrap h1 { margin-bottom: 12px; }
.error-wrap p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* FOCUS RING */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ABOUT PAGE */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
}
.team-card .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.team-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* PROCESS TIMELINE */
.process-timeline {
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-bottom: 32px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.process-step .step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* PRICING SECTION */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 2px solid transparent;
  transition: border-color 280ms ease, transform 320ms cubic-bezier(.22,.68,.31,1), box-shadow 360ms ease;
}
.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.10);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0,119,204,0.04), rgba(200,160,130,0.04));
}
.pricing-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.pricing-card .pricing-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-card .pricing-amount small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
}
.pricing-card li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.pricing-card .not-included li::before { background: var(--accent-2); opacity: 0.4; }

/* AVAILABILITY */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 119, 204, 0.08);
  border: 1px solid rgba(0, 119, 204, 0.2);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
}
.availability-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: availPulse 2s ease infinite;
}
@keyframes availPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .availability-badge::before { animation: none; }
}

/* HOURS TABLE */
.hours-list {
  display: grid;
  gap: 6px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
}
.hours-row .day { font-weight: 600; color: var(--ink); }
.hours-row .time { color: var(--ink-soft); }

/* SITEMAP */
.sitemap-list {
  list-style: none;
  padding: 0;
}
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 0.95rem;
  color: var(--ink);
}
.sitemap-list a:hover { color: var(--accent); }

/* ===== ENHANCED HOVER & THEME EFFECTS ===== */

/* Team card hover */
.team-card {
  transition: transform 360ms cubic-bezier(.22,.68,.31,1), box-shadow 360ms ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.10), 0 0 0 1px rgba(0, 119, 204, 0.08);
}

/* Testimonial card hover */
.testimonial-card {
  transition: transform 360ms cubic-bezier(.22,.68,.31,1), box-shadow 360ms ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

/* Process step hover */
.process-step {
  transition: transform 280ms cubic-bezier(.22,.68,.31,1);
}
.process-step:hover {
  transform: translateX(6px);
}
.process-step:hover::before {
  box-shadow: 0 0 0 4px rgba(0, 119, 204, 0.18);
}

/* Step card (3 Adımda) hover */
.step-card {
  transition: transform 320ms cubic-bezier(.22,.68,.31,1), box-shadow 320ms ease;
  border-radius: var(--radius-card);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Contact channel hover glow */
.contact-channel {
  border-radius: 8px;
  padding: 12px 8px;
}
.contact-channel:hover {
  background: rgba(0, 119, 204, 0.03);
}

/* Trust badge hover */
.trust-badge {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.08);
}

/* FAQ tab enhanced transitions */
.faq-tab {
  transition: border-color 240ms ease, color 240ms ease, background 280ms cubic-bezier(.22,.68,.31,1), transform 200ms ease, box-shadow 240ms ease;
}
.faq-tab:hover {
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.08);
}

/* Warm glow on CTA buttons (makeup theme) */
.btn-primary {
  transition: background 240ms ease, transform 200ms cubic-bezier(.16,.84,.44,1), box-shadow 320ms ease, color 240ms ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.22), 0 0 48px rgba(200, 160, 130, 0.08);
}

/* Nav CTA warm hover */
.nav-desktop .nav-cta {
  transition: background 260ms cubic-bezier(.22,.68,.31,1), color 240ms ease, box-shadow 320ms ease, transform 200ms ease;
}
.nav-desktop .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 119, 204, 0.18);
}

/* Drawer CTA hover */
.drawer .drawer-cta {
  transition: background 260ms cubic-bezier(.22,.68,.31,1), color 240ms ease, transform 200ms ease, box-shadow 320ms ease;
}
.drawer .drawer-cta:hover {
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.16);
}

/* Pricing card shimmer on hover — warm rose gold */
.pricing-card {
  position: relative;
  overflow: hidden;
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 160, 130, 0.06), transparent);
  transition: left 700ms cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
}
.pricing-card:hover::after {
  left: 130%;
}

/* Configurator warm ambient glow */
.configurator {
  transition: box-shadow 400ms ease;
}
.configurator:hover {
  box-shadow: var(--shadow-card), 0 0 60px rgba(0, 119, 204, 0.04);
}

/* Stats bar subtle float */
.stat-item {
  transition: transform 320ms cubic-bezier(.22,.68,.31,1);
}
.stat-item:hover {
  transform: translateY(-3px);
}

/* Cookie banner — Reddet button more balanced visual weight */
.cookie-actions button[data-consent="reject"] {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 600;
  background: var(--surface);
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cookie-actions button[data-consent="settings"] {
  font-weight: 500;
}

/* Cookie banner mobile fix: don't cover critical content */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 16px 18px;
  }
  .cookie-actions {
    gap: 6px;
  }
  .cookie-actions button {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    min-height: 44px;
    font-size: 0.82rem;
  }
}

/* Footer links hover warmth */
.footer-col a {
  transition: color 220ms ease, transform 220ms ease;
}
.footer-col a:hover {
  transform: translateX(3px);
}

/* Footer legal links */
.footer-bottom a {
  transition: color 220ms ease;
}

/* Availability badge glow */
.availability-badge {
  transition: box-shadow 320ms ease;
}
.availability-badge:hover {
  box-shadow: 0 0 16px rgba(0, 119, 204, 0.12);
}

/* Warm shadow on news items */
.news-item {
  transition: transform 240ms ease;
  padding: 8px 4px;
  border-radius: 6px;
}
.news-item:hover {
  transform: translateX(4px);
  background: rgba(0, 119, 204, 0.02);
}

/* Warm glow on portfolio card hover — makeup theme */
.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(200, 160, 130, 0.18), 0 0 0 1px rgba(200, 160, 130, 0.08);
}

/* Soft blush shadow on testimonial quote mark */
.testimonial-card:hover::before {
  opacity: 0.35;
  transition: opacity 320ms ease;
}

/* Configurator event card — rose gold selected ring */
.event-card.selected {
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(200, 160, 130, 0.12);
}

/* Warm ambient on price display */
.price-total {
  transition: text-shadow 400ms ease;
}
.price-total:hover {
  text-shadow: 0 0 20px rgba(200, 160, 130, 0.25);
}

/* Reduced motion: strip all hover transforms */
@media (prefers-reduced-motion: reduce) {
  .team-card:hover,
  .testimonial-card:hover,
  .process-step:hover,
  .step-card:hover,
  .stat-item:hover,
  .trust-badge:hover,
  .pricing-card:hover,
  .news-item:hover,
  .event-card:hover,
  .footer-col a:hover,
  .nav-desktop .nav-cta:hover,
  .btn-primary:hover,
  .portfolio-card:hover {
    transform: none;
  }
  .pricing-card::after,
  .portfolio-card::after {
    display: none;
  }
  html.js .hero-stack h1,
  html.js .hero-stack .hero-sub,
  html.js .trust-strip {
    opacity: 1 !important;
    animation: none !important;
  }
  .hero-stack h1 {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--ink);
  }
  .portfolio-card:hover img {
    filter: none;
  }
}

/* ===== TABLE SCROLL MOBILE AFFORDANCE ===== */
@media (max-width: 640px) {
  .table-scroll {
    position: relative;
  }
  .table-scroll::after {
    content: '← swipe →';
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: var(--ink-soft);
    opacity: 0.6;
    padding: 6px 0 2px;
    letter-spacing: 0.04em;
  }
}

/* ===== KVKK LINK VISIBILITY ===== */
.field-checkbox label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.field-checkbox label a:hover {
  color: var(--accent-2);
}

/* ===== ENHANCED STAGGER REVEALS ===== */
.reveal.is-in {
  transition-timing-function: cubic-bezier(.16, .84, .44, 1);
}

/* ===== WARM GLOW HOVER: MAKEUP THEME ===== */

/* Warm shimmer on hero heading */
.hero-stack h1 {
  background: linear-gradient(135deg, var(--ink) 0%, #2a4060 40%, var(--ink) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-stack h1 {
    animation: heroReveal 650ms cubic-bezier(.22,.68,.31,1) both, shimmerText 8s ease-in-out infinite 1.5s;
  }
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Warm glow on portfolio images on hover */
.portfolio-card:hover img {
  filter: brightness(1.04) saturate(1.08);
}

/* Warm blush glow on stats numbers */
.stat-number {
  transition: text-shadow 400ms ease;
}
.stat-item:hover .stat-number {
  text-shadow: 0 0 24px rgba(200, 160, 130, 0.4);
}

/* Step cards — subtle warm lift shadow */
.step-card:hover {
  box-shadow: 0 8px 28px rgba(200, 160, 130, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Team cards — warm rose gold border on hover */
.team-card:hover {
  box-shadow: 0 12px 32px rgba(200, 160, 130, 0.14), 0 0 0 1px rgba(200, 160, 130, 0.2);
}

/* Testimonial cards — soft rose lift */
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(200, 160, 130, 0.10), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Pricing cards — featured card warm glow */
.pricing-card.featured:hover {
  box-shadow: 0 16px 48px rgba(200, 160, 130, 0.16), 0 0 0 1px rgba(0, 119, 204, 0.12);
}

/* FAQ tab active — soft glow ring */
.faq-tab.active {
  box-shadow: 0 4px 16px rgba(0, 119, 204, 0.18);
}

/* Contact CTA box warm hover */
.form-wrap > div:hover {
  box-shadow: 0 8px 32px rgba(200, 160, 130, 0.10);
  transition: box-shadow 400ms ease;
}

/* ===== FOOTER COOKIE-BANNER SPACING (JS fallback) ===== */
.cookie-banner-spacer {
  padding-bottom: 140px !important;
}

/* ===== PRINT ===== */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
