/* ============================================================
   SERDAR GÜL — DESIGN SYSTEM v2
   Marka B: Bone + Lacivert + Elektrik Yeşili
   ============================================================ */

:root {
  /* Color */
  --bg:        #FAFAF7;
  --bg-2:      #F2EFE8;
  --bg-3:      #ECE8DD;
  --ink:       #0B1F3A;
  --ink-2:     #1A2E4F;
  --ink-soft:  #2D3F5C;
  --muted:     #6B7785;
  --line:      #E5E2D9;
  --line-2:    #D9D5C9;
  --card:      #FFFFFF;
  --accent:    #00E08A;
  --accent-2:  #00B86F;
  --accent-3:  #008F54;
  --accent-soft: #D5F6E5;
  --danger:    #E5484D;
  --warning:   #F59E0B;
  --info:      #06B6D4;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-5xl:  5.5rem;
  --fs-6xl:  7rem;

  /* Spacing — DAHA SIKI (revize 11) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.75rem;
  --s-7:  2.25rem;
  --s-8:  3rem;
  --s-9:  4rem;
  --s-10: 5.5rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 31, 58, 0.06);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.08);
  --shadow-xl: 0 30px 80px rgba(11, 31, 58, 0.14);

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-back: cubic-bezier(0.68, -0.55, 0.27, 1.55);

  /* Layout */
  --container: 1240px;
  --nav-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 224, 138, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(11, 31, 58, 0.04), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.12 0 0 0 0 0.23 0 0 0 0.07 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
body.no-scroll { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

/* ---------- Typography ---------- */
.h-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; }
.h-serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.h1 { font-size: clamp(2.5rem, 6vw + 1rem, var(--fs-6xl)); }
.h2 { font-size: clamp(2rem, 4vw + 0.5rem, var(--fs-4xl)); }
.h3 { font-size: clamp(1.5rem, 2vw + 0.5rem, var(--fs-2xl)); }
.h4 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.02em; }
.lede { font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }
.eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: var(--s-8); position: relative; }
.section--sm { padding-block: var(--s-6); }
.section--lg { padding-block: var(--s-10); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-full); border: 1px solid var(--ink);
  font-weight: 500; font-size: var(--fs-base);
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { height: 58px; padding: 0 32px; font-size: var(--fs-md); }
.btn--sm { height: 38px; padding: 0 18px; font-size: var(--fs-sm); }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .3s var(--ease); display: inline-flex; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }

/* ---------- Tags/Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(0, 224, 138, 0.14);
  color: var(--ink);
  border: 1px solid rgba(0, 224, 138, 0.5);
  border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.02em;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s var(--ease) infinite; }
.pill--lg {
  padding: 12px 24px;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(95deg, rgba(0,224,138,0.18), rgba(0,224,138,0.05));
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,224,138,0.08);
  animation: pillFloat 4s ease-in-out infinite;
}
.pill--lg .dot { width: 8px; height: 8px; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
@keyframes pillFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ---------- Navigation — daha baskın ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250, 250, 247, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 226, 217, 0.6);
  transition: background .3s, border-bottom .3s, height .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  height: 72px;
  box-shadow: 0 6px 24px rgba(11, 31, 58, 0.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }

/* Daha büyük, daha belirgin logo */
.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform .25s var(--ease);
  color: var(--ink);
}
.nav__brand:hover { transform: scale(1.03); }
.nav__brand .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-3px);
  box-shadow: 0 0 0 4px rgba(0, 224, 138, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}

.nav__menu { display: flex; align-items: center; gap: var(--s-1); }
.nav__menu > li { position: relative; }
.nav__menu > li > a, .nav__menu > li > button {
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.nav__menu > li > a:hover, .nav__menu > li > button:hover { color: var(--ink); background: rgba(11,31,58,0.05); }
.nav__menu > li > a.active { color: var(--ink); background: rgba(0,224,138,0.18); }
.nav__menu > li > button .chev { transition: transform .25s var(--ease); }
.nav__menu > li.open > button .chev { transform: rotate(180deg); }

.nav__cta { display: inline-flex; align-items: center; gap: var(--s-2); }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); align-items: center; justify-content: center; background: var(--card); }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav.open .nav__burger span { background: transparent; }
.nav.open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__menu, .nav__cta > a.btn { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ---------- Mega Menu (revize 12) ---------- */
.mega {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(680px, 88vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--s-5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .35s var(--ease), visibility 0s .28s;
}
.nav__menu > li.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega__item {
  display: flex; gap: 14px; padding: 14px;
  border-radius: var(--r-md);
  transition: background .2s var(--ease), transform .2s var(--ease);
  align-items: flex-start;
}
.mega__item:hover { background: var(--bg-2); transform: translateX(2px); }
.mega__ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.mega__item:hover .mega__ic { background: var(--accent); }
.mega__txt strong { font-size: var(--fs-sm); font-weight: 600; display: block; margin-bottom: 3px; letter-spacing: -0.01em; }
.mega__txt span { font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }
.mega__cta {
  margin-top: var(--s-4); padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mega__cta strong { font-size: var(--fs-sm); }
.mega__cta a { color: var(--accent-2); font-weight: 600; font-size: var(--fs-sm); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  padding: calc(var(--nav-h) + var(--s-5)) var(--s-5) var(--s-5);
  opacity: 0; visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), visibility 0s .45s;
  display: flex; flex-direction: column;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a .num { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--muted); font-weight: 400; }
.mobile-menu__cta { margin-top: var(--s-5); }
.mobile-menu__contact { margin-top: var(--s-5); display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Hero — zengin background ---------- */
.hero {
  padding-block: calc(var(--nav-h) + var(--s-7)) var(--s-8);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.02) 0%, transparent 100%),
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(0, 224, 138, 0.10), transparent 60%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
  pointer-events: none;
  opacity: 0.7;
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
.hero__pill { margin-bottom: var(--s-5); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.hero__title em { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.hero__title .accent { color: var(--accent-2); position: relative; display: inline-block; }
.hero__title .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.12em; height: 0.18em;
  background: var(--accent); z-index: -1; opacity: 0.35;
}

/* Hero rotating words */
.hero__rotator {
  display: inline-block;
  vertical-align: baseline;
  overflow: hidden;
  height: 0.95em; line-height: 0.95;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  color: var(--accent-3);
  position: relative;
  /* natural sizing — no min-width lock */
}
.hero__rotator__inner { display: flex; flex-direction: column; transition: transform .7s var(--ease-spring); will-change: transform; }
.hero__rotator__inner span { line-height: 0.95; white-space: nowrap; }

.hero__sub { margin-top: var(--s-4); max-width: 56ch; font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem); color: var(--ink-2); line-height: 1.5; }
.hero__cta { margin-top: var(--s-5); display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Counter stats — orantılı, sola yaslı, grid (revize 8) */
.hero__meta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.hero__meta .stat strong {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2vw + 1.5rem, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__meta .stat strong * { font-size: inherit !important; line-height: inherit !important; font-weight: inherit !important; }
.hero__meta .stat .label {
  color: var(--muted); font-size: var(--fs-sm);
  display: block; margin-top: 8px;
}
@media (max-width: 720px) { .hero__meta { grid-template-columns: repeat(2, 1fr); } }

/* Animated blobs */
.hero__blob {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px;
  right: -200px; top: 10%;
  background: radial-gradient(circle, rgba(0,224,138,0.25), transparent 60%);
  filter: blur(60px);
  animation: float 14s ease-in-out infinite;
}
.hero__blob--2 { left: -200px; top: 60%; width: 500px; height: 500px; animation-delay: -7s; background: radial-gradient(circle, rgba(11,31,58,0.12), transparent 60%); }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.1); }
}

/* ---------- Marquee (logo strip) ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-5);
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track { display: flex; gap: var(--s-7); animation: scroll 40s linear infinite; width: max-content; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--muted);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: var(--s-5);
  opacity: 0.6;
  transition: opacity .2s, color .2s;
}
.marquee__item:hover { opacity: 1; color: var(--ink); }
.marquee__item::after { content: '✦'; color: var(--accent); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections / Grids ---------- */
.section-head { display: grid; grid-template-columns: 1fr; gap: var(--s-3); margin-bottom: var(--s-6); max-width: 80ch; }
.grid { display: grid; gap: var(--s-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Service Card (revize 9 — 4 sütun, renkli SVG) ---------- */
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: var(--s-5);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .25s, box-shadow .35s;
  min-height: 240px;
  --sv-color: var(--accent-2);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--sv-color); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--sv-color); box-shadow: 0 24px 60px rgba(11,31,58,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--sv-color) 12%, transparent);
  color: var(--sv-color);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  transition: transform .35s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.service-card p { color: var(--muted); line-height: 1.55; font-size: var(--fs-sm); }
.service-card__more {
  margin-top: auto; padding-top: var(--s-4);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--sv-color);
}
.service-card__more::after { content: '→'; transition: transform .3s; }
.service-card:hover .service-card__more::after { transform: translateX(4px); }

/* ---------- Process — yaratıcı, hareketli (revize 10) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 36px; left: 60px; right: 60px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; } .process-grid::before { display: none; } }
.process-step {
  position: relative;
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-5);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .25s;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.process-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-weight: 600; font-size: var(--fs-sm);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  transition: background .3s, transform .3s;
}
.process-step:hover .process-step__num { background: var(--accent); color: var(--ink); transform: scale(1.1); }
.process-step__ic { color: var(--accent-2); margin-bottom: 4px; }
.process-step h3 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; letter-spacing: -0.02em; }
.process-step p { color: var(--muted); font-size: var(--fs-sm); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testi {
  padding: var(--s-6);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.7rem);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  margin-bottom: var(--s-5);
}
.testi__quote::before { content: '\201C'; color: var(--accent); font-size: 1.5em; margin-right: 4px; line-height: 0; vertical-align: -0.4em; }
.testi__author { display: flex; align-items: center; gap: var(--s-3); }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi__author strong { display: block; font-weight: 600; font-size: var(--fs-sm); }
.testi__author span { color: var(--muted); font-size: var(--fs-xs); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 5vw, var(--s-8));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto var(--s-4);
}
.cta-band__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 50ch; margin: 0 auto var(--s-5); }
.cta-band__glow {
  position: absolute; inset: auto;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,138,0.35), transparent 60%);
  filter: blur(80px);
  left: 50%; top: 100%; transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ---------- Footer (revize 3 — daha dinamik) ---------- */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding-block: var(--s-10) var(--s-7);
  margin-top: var(--s-10);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,224,138,0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}
.footer::after {
  content: '';
  position: absolute; bottom: -300px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,224,138,0.08), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: float 22s ease-in-out infinite reverse;
}
.footer > * { position: relative; z-index: 1; }
.footer__hero {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--s-6);
  padding-bottom: var(--s-8);
  margin-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__hero h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  letter-spacing: -0.04em; line-height: 1;
  color: #fff;
  max-width: 18ch;
}
.footer__hero h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
@media (max-width: 800px) { .footer__hero { grid-template-columns: 1fr; gap: var(--s-4); padding-bottom: var(--s-6); margin-bottom: var(--s-6); } }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-6); padding-bottom: var(--s-7); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; letter-spacing: -0.04em; color: #fff; margin-bottom: var(--s-3); display: inline-flex; align-items: center; gap: 6px; }
.footer__brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); animation: pulse 2s var(--ease) infinite; }
.footer__tagline { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.85); font-size: var(--fs-md); max-width: 32ch; line-height: 1.4; }
.footer h4 { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.15em; color: #fff; margin-bottom: var(--s-4); }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a { color: rgba(255,255,255,0.7); transition: color .2s, transform .2s, padding-left .2s; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 6px; }
.footer a:hover { color: var(--accent); }
.footer ul a:hover { padding-left: 4px; }
.footer__social { display: inline-flex; gap: 10px; margin-top: var(--s-5); }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s, transform .2s, color .2s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-3px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); padding-top: var(--s-6); font-size: var(--fs-xs); color: rgba(255,255,255,0.5); }
.footer__legal { display: flex; gap: var(--s-4); flex-wrap: wrap; }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.input, .textarea, .select {
  width: 100%; padding: 13px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0,224,138,0.18);
}
.textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }
.honey { position: absolute; left: -9999px; visibility: hidden; }

/* Budget chip selector */
.budget-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 700px) { .budget-grid { grid-template-columns: repeat(2, 1fr); } }
.budget-chip {
  position: relative;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-sm); font-weight: 500;
  cursor: pointer;
  transition: all .15s var(--ease);
  background: var(--card);
  text-align: center;
}
.budget-chip:hover { border-color: var(--ink-soft); }
.budget-chip input { position: absolute; opacity: 0; pointer-events: none; }
.budget-chip:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); font-weight: 700; color: var(--ink); }

.alert { padding: 14px 18px; border-radius: var(--r-md); font-size: var(--fs-sm); border: 1px solid; }
.alert--success { background: var(--accent-soft); border-color: var(--accent); color: var(--ink); }
.alert--error { background: #FDECEC; border-color: var(--danger); color: #8B1F22; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent-2); }
.divider { height: 1px; background: var(--line); margin-block: var(--s-6); }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); }
.mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); } .mb-6 { margin-bottom: var(--s-6); }
.flex { display: flex; } .items-center { align-items: center; } .gap-3 { gap: var(--s-3); } .gap-4 { gap: var(--s-4); }
.no-wrap { white-space: nowrap; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Page hero ---------- */
.page-hero { padding-block: calc(var(--nav-h) + var(--s-7)) var(--s-6); border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 20ch;
}
.page-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.page-hero .lede { margin-top: var(--s-4); max-width: 65ch; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--s-4); }
.crumbs a:hover { color: var(--ink); }
.crumbs span:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--line); }

/* ---------- FAQ (revize 17 — animasyonlu) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); position: relative; }
.faq__item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.faq__item.open::before { transform: scaleY(1); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5) var(--s-4);
  font-family: var(--font-display);
  font-size: var(--fs-md); font-weight: 700;
  letter-spacing: -0.01em;
  transition: color .25s, padding .3s var(--ease);
}
.faq__item.open .faq__q { color: var(--accent-3); padding-left: var(--s-5); }
.faq__q:hover { color: var(--accent-2); }
.faq__icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .4s var(--ease-back), background .25s, color .25s, border-color .25s; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: transform .35s var(--ease);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item.open .faq__icon { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); color: var(--ink); }
.faq__item.open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.faq__a-inner {
  overflow: hidden;
  padding-left: var(--s-4);
  padding-right: var(--s-4);
}
.faq__a-inner > div {
  padding: 0 0 var(--s-5);
  color: var(--ink-2); max-width: 70ch; line-height: 1.7;
  opacity: 0; transform: translateY(-10px);
  transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__item.open .faq__a-inner > div { opacity: 1; transform: translateY(0); }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; gap: var(--s-3); padding: var(--s-5) 0; border-bottom: 1px solid var(--line); transition: padding .2s; }
.post-card:hover { padding-left: var(--s-3); }
.post-card .meta { display: flex; gap: var(--s-3); font-size: var(--fs-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.post-card h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); font-weight: 700; letter-spacing: -0.02em; }
.post-card p { color: var(--ink-2); max-width: 70ch; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .35s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.blog-card__cover { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); position: relative; }
.blog-card__cover img, .blog-card__cover svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__cover img, .blog-card:hover .blog-card__cover svg { transform: scale(1.04); }
.blog-card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.blog-card__meta { display: flex; gap: var(--s-3); font-size: var(--fs-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.blog-card__body h3 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.blog-card__body p { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.55; }

.article { max-width: 720px; margin-inline: auto; padding-block: var(--s-7); }
.article h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: var(--s-4); }
.article .meta { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--s-6); }
.article .cover { margin-bottom: var(--s-6); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-2); }
.article .cover img, .article .cover svg { width: 100%; height: 100%; object-fit: cover; }
.article h2 { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; margin-top: var(--s-7); margin-bottom: var(--s-3); letter-spacing: -0.02em; }
.article h3 { font-size: var(--fs-xl); font-weight: 700; margin-top: var(--s-6); margin-bottom: var(--s-3); }
.article p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-2); margin-bottom: var(--s-4); }
.article ul, .article ol { padding-left: 1.5rem; margin-bottom: var(--s-4); }
.article li { font-size: 1.125rem; line-height: 1.7; color: var(--ink-2); margin-bottom: 8px; list-style: disc; }
.article blockquote { border-left: 3px solid var(--accent); padding-left: var(--s-4); font-family: var(--font-serif); font-style: italic; font-size: var(--fs-xl); color: var(--ink); margin: var(--s-6) 0; }
.article a { color: var(--accent-3); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Referans Logo grid — 4 sütun, normalize logolar ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
@media (max-width: 980px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .ref-grid { grid-template-columns: 1fr; } }

.ref-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--s-4);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .25s;
  min-height: 230px;
}
.ref-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }

.ref-card__logo {
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFFFFF, var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  overflow: hidden;
}
.ref-card__logo img {
  max-width: 100%; max-height: 70px;
  width: auto; height: auto;
  object-fit: contain;
}
.ref-card[data-bg="dark"] .ref-card__logo { background: linear-gradient(135deg, var(--ink), var(--ink-2)); border-color: var(--ink); }
.ref-card[data-bg="dark"] .ref-card__logo img { max-height: 60px; }
.ref-card__logo .wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; letter-spacing: -0.03em; color: var(--ink);
  text-align: center;
}
.ref-card__name { font-weight: 700; font-size: var(--fs-sm); letter-spacing: -0.01em; }
.ref-card__sector { color: var(--muted); font-size: var(--fs-xs); }
.ref-card__link {
  margin-top: auto; padding-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-3); font-weight: 600; font-size: var(--fs-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ref-card__actions { margin-top: auto; padding-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.ref-card__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--bg-2);
  color: var(--ink);
  border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 600;
  transition: background .2s, color .2s, transform .2s;
}
.ref-card__btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-6); margin-top: var(--s-5); }
@media (max-width: 980px) { .booking { grid-template-columns: 1fr; } }
.booking__panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-5); }
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar__head { display: contents; }
.calendar__head span { font-size: var(--fs-xs); color: var(--muted); text-align: center; padding: 8px 0; text-transform: uppercase; letter-spacing: 0.1em; }
.calendar__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); border: 1px solid transparent;
  font-weight: 500; cursor: pointer; transition: all .15s;
  font-size: var(--fs-sm);
}
.calendar__day:disabled { color: var(--line-2); cursor: not-allowed; }
.calendar__day:not(:disabled):hover { background: var(--bg-2); border-color: var(--line); }
.calendar__day.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.calendar__day.today { color: var(--accent-3); font-weight: 700; }
.calendar__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-3); }
.calendar__nav h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; }
.calendar__nav button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.calendar__nav button:hover:not(:disabled) { background: var(--bg-2); }
.calendar__nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: var(--s-4); }
.slot { padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-md); font-size: var(--fs-sm); font-weight: 500; transition: all .15s; cursor: pointer; text-align: center; }
.slot:hover:not(:disabled) { border-color: var(--ink); }
.slot:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.slot.selected { background: var(--accent); color: var(--ink); border-color: var(--accent); font-weight: 700; }

/* ---------- Manifesto ---------- */
.manifesto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: 28ch;
}
.manifesto em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent-3); }

/* ---------- Modal (revize 5 - randevu popup) ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.modal {
  position: fixed; inset: 0; z-index: 2001;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-4);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.modal.open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.modal__box {
  background: var(--card);
  border-radius: var(--r-xl);
  max-width: 920px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: var(--s-6);
  transform: translateY(40px) scale(0.96);
  transition: transform .45s var(--ease-spring);
  position: relative;
}
.modal.open .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.modal__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal__head { margin-bottom: var(--s-5); padding-right: 50px; }
.modal__head .eyebrow { justify-content: flex-start; }
.modal__head h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2vw + 0.5rem, 2.2rem); font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; }

/* Exit-intent popup (revize 6) */
.modal--exit .modal__box { max-width: 560px; padding: var(--s-7); text-align: center; }
.modal--exit .modal__head { padding: 0; margin-bottom: var(--s-4); }
.modal--exit h2 { max-width: 100%; }
.exit-illustration { width: 96px; height: 96px; margin: 0 auto var(--s-4); display: flex; align-items: center; justify-content: center; background: var(--accent-soft); border-radius: 50%; color: var(--accent-3); animation: bounce 1.4s var(--ease) infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Skip link for accessibility */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 0; padding: 8px 14px; background: var(--ink); color: #fff; z-index: 9999; }

/* Lazy image fade */
img[loading="lazy"] { opacity: 0; transition: opacity .4s; }
img[loading="lazy"].loaded, img[loading="lazy"][src] { opacity: 1; }

/* Mobile fine tunes */
@media (max-width: 700px) {
  .hero { padding-block: calc(var(--nav-h) + var(--s-5)) var(--s-6); }
  .section { padding-block: var(--s-6); }
  .footer__top { padding-bottom: var(--s-4); }
  .testi { padding: var(--s-4); }
  .modal__box { padding: var(--s-5); }
  .nav__brand { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
