/* ============================================================
   ORE — Brand, Design & Technology Ecosystem
   Design system + landing page styles
   Aesthetic: Ramp — editorial, warm paper/cream background,
   high-contrast near-black ink, one sharp lime accent, flat
   minimal surfaces, generous whitespace.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Neutrals — warm paper / ink */
  --bg:           #f5f2ea;
  --bg-soft:      #faf8f1;
  --bg-tint:      #ece7dc;
  --ink:          #15140f;
  --ink-2:        #44423a;
  --ink-3:        #6f6d62;
  --ink-4:        #9b998c;
  --line:         rgba(21, 20, 15, 0.13);
  --line-2:       rgba(21, 20, 15, 0.07);

  /* Accent — Ramp lime, used sparingly */
  --lime:         #bfe84a;
  --lime-deep:    #a6d52e;

  /* Hue tokens kept by name but remapped to a muted, earthy editorial
     set so existing small accents (dots, swatches) stay tasteful on cream
     and any leftover gradients flatten into quiet tonal blends. */
  --violet:  #15140f;
  --blue:    #6b6a5e;
  --cyan:    #a9d83a;
  --pink:    #b6603a;
  --orange:  #c79a3e;

  --violet-soft: rgba(21, 20, 15, 0.06);
  --blue-soft:   rgba(21, 20, 15, 0.05);
  --pink-soft:   rgba(182, 96, 58, 0.10);
  --orange-soft: rgba(199, 154, 62, 0.12);

  /* Surfaces */
  --glass-bg:     rgba(255, 255, 255, 0.6);
  --glass-bord:   rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 1px 2px rgba(21,20,15,.04), 0 14px 32px -16px rgba(21,20,15,.20);

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Display face — Hanken Grotesk approximates Ramp's Lausanne (a paid font) */
  --font-head: "Hanken Grotesk", "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1440px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-sm: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(191, 232, 74, 0.45); color: var(--ink); }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--lime-deep);
}

/* Highlighted phrases — editorial solid ink (no rainbow) */
.grad-text { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 22px; border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
/* Primary CTA — solid ink on the cream canvas (Ramp's signature button) */
.btn-grad {
  color: #faf8f1;
  background: var(--ink);
  box-shadow: 0 1px 2px rgba(21,20,15,.18), 0 12px 26px -14px rgba(21,20,15,.4);
}
.btn-grad:hover { transform: translateY(-2px); background: #000; box-shadow: 0 1px 2px rgba(21,20,15,.2), 0 20px 38px -16px rgba(21,20,15,.45); }
.btn-ghost {
  color: var(--ink); background: var(--bg-soft);
  border: 1px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--glass-shadow); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
/* Soft light pill (header "Hadi Konuşalım") with ink circle-fill hover */
.btn-soft {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--ink); background: #e9e9ec; border: 1px solid rgba(21,20,15,.08);
  border-radius: 100px; gap: 8px;
  transition: color .35s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-soft.btn-sm { height: 48px; padding: 0 26px; font-size: 15px; }
.btn-soft::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 0; height: 0; z-index: -1;
  border-radius: 50%; background: var(--ink); transform: translate(-50%, -50%);
  transition: width .6s var(--ease), height .6s var(--ease);
}
.btn-soft:hover::before { width: 280%; height: 760%; }
.btn-soft .btn-label { position: relative; z-index: 1; transition: letter-spacing .35s var(--ease); }
.btn-soft:hover { color: #faf8f1; transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(21,20,15,.45); }
.btn-soft:hover .btn-label { letter-spacing: .01em; }
.btn-soft .wave {
  display: inline-block; font-size: 1.35em; line-height: 1; transform-origin: 70% 80%;
  animation: wave 2.2s ease-in-out infinite;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(16deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(16deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(12deg); }
}
@media (prefers-reduced-motion: reduce) { .btn-soft .wave { animation: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(245,242,234,0.78);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 116px; gap: 24px; }

.logo { display: inline-flex; align-items: center; }
.logo .logo-mark { height: 96px; width: auto; display: block; }
.footer-brand .logo .logo-mark { height: 76px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 8px 13px; border-radius: 9px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--bg-tint); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Language selector */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 12px;
  border-radius: 100px; border: 1px solid var(--line); background: var(--bg-soft);
  color: var(--ink-2); font-size: 14px; font-weight: 600;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lang-btn:hover { background: #fff; border-color: rgba(21,20,15,.16); }
.lang-flag, .lang-opt img {
  width: 22px; height: 16px; border-radius: 3px; object-fit: cover; display: block;
  box-shadow: 0 0 0 1px rgba(21,20,15,.10);
}
.lang-chev { width: 14px; height: 14px; color: var(--ink-4); transition: transform .25s var(--ease); }
.lang.open .lang-chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 190px; z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 6px;
  box-shadow: var(--glass-shadow); display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-6px); pointer-events: none; transition: .2s var(--ease);
}
.lang.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-opt {
  display: flex; align-items: center; gap: 11px; width: 100%; padding: 10px 12px; border-radius: 9px;
  font-size: 14.5px; font-weight: 550; color: var(--ink-2); text-align: left; transition: background .15s, color .15s;
}
.lang-opt:hover { background: var(--bg-tint); color: var(--ink); }
.lang-opt.is-active { background: var(--bg-tint); color: var(--ink); font-weight: 650; }

.burger { display: none; width: 44px; height: 44px; border-radius: 11px; align-items: center; justify-content: center; }
.burger span { position: relative; width: 19px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 19px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 116px 0 0 0; z-index: 99;
  background: rgba(245,242,234,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 18px var(--pad) 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
}
body.menu-open .mobile-nav { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav a { font-size: 19px; font-weight: 600; padding: 14px 8px; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mobile-nav .btn { margin-top: 18px; height: 52px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  height: 34px; padding: 0 14px 0 10px; border-radius: 100px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-deep); box-shadow: 0 0 0 4px rgba(166,213,46,.20); }

.hero h1 {
  margin: 24px 0 0; font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.0; letter-spacing: -0.04em; font-weight: 800; text-wrap: balance;
}
.hero .sub {
  margin: 26px 0 0; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-3);
  max-width: 540px; line-height: 1.6; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-3); max-width: 480px; text-wrap: pretty;
}
.hero-trust .av { display: flex; }
.hero-trust .av i {
  width: 24px; height: 24px; border-radius: 50%; margin-left: -7px; border: 2px solid var(--bg); display: block;
}
.hero-trust .av i:nth-child(1){ background: var(--ink); margin: 0; }
.hero-trust .av i:nth-child(2){ background: var(--blue); }
.hero-trust .av i:nth-child(3){ background: var(--pink); }
.hero-trust .av i:nth-child(4){ background: var(--lime-deep); }

/* Hero visual */
.hero-visual { position: relative; height: 480px; }
/* Floating chip animation — used by the hero dashboard's floating labels */
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

/* ---------- Background mesh + grid ---------- */
.mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; will-change: transform; }
.blob.b1 { width: 520px; height: 520px; top: -160px; left: -120px; background: var(--lime); opacity: .14; }
.blob.b2 { width: 480px; height: 480px; top: -100px; right: -120px; background: var(--orange); opacity: .10; }
.blob.b3 { width: 420px; height: 420px; top: 180px; right: 18%; background: var(--pink); opacity: .07; }
.blob.b4 { width: 360px; height: 360px; top: 120px; left: 22%; background: var(--ink); opacity: .04; }

.grid-tex {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ============================================================
   SECTIONS — general
   ============================================================ */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-tint { background: var(--bg-tint); }

.section-head { max-width: 820px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin: 16px 0 0; font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; text-wrap: balance;
}
.section-head p { margin: 18px 0 0; font-size: clamp(16px,1.4vw,18px); color: var(--ink-3); line-height: 1.6; text-wrap: pretty; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Ekosistem — paper-shader background ---------- */
#ekosistem { position: relative; overflow: hidden; }
#ekosistem > .wrap { position: relative; z-index: 1; }
.eco-shader { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.eco-shader::before {
  content: ""; position: absolute; inset: -25%;
  background:
    radial-gradient(38% 48% at 20% 30%, rgba(166,213,46,.22), transparent 62%),
    radial-gradient(44% 54% at 80% 24%, rgba(199,154,62,.20), transparent 62%),
    radial-gradient(50% 60% at 66% 82%, rgba(182,96,58,.15), transparent 62%),
    radial-gradient(46% 56% at 24% 84%, rgba(166,213,46,.14), transparent 62%);
  filter: blur(26px);
  animation: shaderDrift 24s ease-in-out infinite alternate;
}
.eco-shader::after {
  content: ""; position: absolute; inset: 0; opacity: .07; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes shaderDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1.05); }
  50%  { transform: translate(-3%, 2%) rotate(7deg) scale(1.14); }
  100% { transform: translate(2%, -2%) rotate(-5deg) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .eco-shader::before { animation: none; } }

/* ---------- Ekosistem — 3 big cards ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.eco-card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.eco-card::after {
  content: ""; position: absolute; top: -40%; right: -30%; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--g1), transparent 65%); opacity: 0; filter: blur(34px); transition: opacity .4s var(--ease);
}
.eco-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(21,20,15,.3); border-color: var(--ink); }
.eco-card:hover::after { opacity: .10; }
.eco-card.d1 { --g1: var(--lime); }
.eco-card.d2 { --g1: var(--pink); }
.eco-card.d3 { --g1: var(--orange); }

.eco-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.02em; padding: 6px 11px; border-radius: 100px; color: var(--ink-2);
  background: var(--bg-tint); border: 1px solid var(--line);
}
.eco-badge .swatch { width: 9px; height: 9px; border-radius: 3px; background: var(--g1); }
.eco-card h3 { margin: 18px 0 0; font-size: 23px; letter-spacing: -0.02em; font-weight: 750; line-height: 1.2; }
.eco-card p { margin: 12px 0 0; font-size: 15px; color: var(--ink-3); line-height: 1.6; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.eco-tags span {
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  padding: 6px 11px; border-radius: 9px; background: var(--bg-tint); border: 1px solid var(--line-2);
}
.eco-num { position: absolute; top: 26px; right: 28px; font-size: 13px; font-weight: 700; color: var(--ink-4); letter-spacing: .05em; }

/* Enriched eco card — icon, accent bar, checklist, link, animation */
.eco-card { padding-top: 34px; }
.eco-card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--g1), transparent);
  border-radius: 3px; transition: width .5s var(--ease);
}
.eco-card.in::before { width: 64px; }
.eco-card:hover::before { width: 100%; }
.eco-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  margin-bottom: 16px; color: #15140f;
  background: color-mix(in srgb, var(--g1) 24%, var(--bg-tint));
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.eco-ic svg { width: 23px; height: 23px; }
.eco-card:hover .eco-ic { transform: translateY(-3px) rotate(-4deg); background: var(--g1); }
.eco-card h3 { margin-top: 14px; }
.eco-card p strong { color: var(--ink); font-weight: 700; }

.eco-list { list-style: none; margin: 20px 0 0; display: flex; flex-direction: column; gap: 11px; }
.eco-list li {
  display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-2); line-height: 1.4;
  opacity: 0; transform: translateX(-8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.eco-card.in .eco-list li { opacity: 1; transform: none; }
.eco-card.in .eco-list li:nth-child(1) { transition-delay: .14s; }
.eco-card.in .eco-list li:nth-child(2) { transition-delay: .22s; }
.eco-card.in .eco-list li:nth-child(3) { transition-delay: .30s; }
.eco-card.in .eco-list li:nth-child(4) { transition-delay: .38s; }
.eco-list .ck {
  flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--g1) 26%, var(--bg-tint)); color: #15140f;
}
.eco-list .ck svg { width: 13px; height: 13px; stroke: #15140f; }

.eco-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 24px;
  font-size: 14.5px; font-weight: 650; color: var(--ink);
}
.eco-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.eco-card:hover .eco-link svg { transform: translateX(4px); }
.eco-card:hover .eco-link { color: var(--g1); }

@media (prefers-reduced-motion: reduce) {
  .eco-list li { opacity: 1; transform: none; }
}

/* ---------- Hizmetler grid ---------- */
/* Keep this category a touch narrower than the global container. */
#hizmetler > .wrap { max-width: 1120px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.svc {
  padding: 24px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(21,20,15,.25); border-color: var(--ink); }
.svc .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid var(--line); margin-bottom: 16px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.svc .ic svg { width: 20px; height: 20px; stroke: var(--ink); transition: stroke .3s var(--ease); }
.svc:hover .ic { background: var(--lime); border-color: transparent; }
.svc:hover .ic svg { stroke: #15140f; }
.svc h4 { font-size: 16px; font-weight: 650; letter-spacing: -0.01em; }
.svc p { margin-top: 6px; font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* ---------- Neden ORE — 3 cols ---------- */
.why { background: #15140f; color: #faf8f1; border-radius: 0; position: relative; overflow: hidden; }
.why > .wrap { position: relative; z-index: 2; }

/* Floating geometric gradient shapes (elegant-shape background) */
.why-shapes { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.why-shapes::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 50% -10%, rgba(191,232,74,.10), transparent 70%);
}
.why-shape { position: absolute; }
.why-shape i {
  display: block; width: 100%; height: 100%; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 40px rgba(255,255,255,.06), 0 24px 60px -20px rgba(0,0,0,.5);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  animation: shapefloat var(--dur, 12s) ease-in-out infinite; animation-delay: var(--delay, 0s);
}
@keyframes shapefloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.why-shape.s1 { width: 600px; height: 140px; left: -6%; top: 14%; transform: rotate(12deg); --dur: 13s; }
.why-shape.s1 i { background: linear-gradient(90deg, rgba(99,102,241,.18), transparent); }
.why-shape.s2 { width: 520px; height: 120px; right: -5%; top: 66%; transform: rotate(-15deg); --dur: 15s; --delay: .5s; }
.why-shape.s2 i { background: linear-gradient(90deg, rgba(244,63,94,.16), transparent); }
.why-shape.s3 { width: 320px; height: 92px; left: 4%; bottom: 6%; transform: rotate(-8deg); --dur: 12s; --delay: 1s; }
.why-shape.s3 i { background: linear-gradient(90deg, rgba(166,213,46,.20), transparent); }
.why-shape.s4 { width: 230px; height: 72px; right: 12%; top: 10%; transform: rotate(20deg); --dur: 14s; --delay: .3s; }
.why-shape.s4 i { background: linear-gradient(90deg, rgba(245,158,11,.16), transparent); }
.why-shape.s5 { width: 190px; height: 62px; left: 24%; top: 6%; transform: rotate(-24deg); --dur: 11s; --delay: .7s; }
.why-shape.s5 i { background: linear-gradient(90deg, rgba(34,211,238,.16), transparent); }
.why .section-head h2 { color: #faf8f1; }
.why .section-head p { color: rgba(250,248,241,.6); }
.why .eyebrow { color: rgba(250,248,241,.6); }
.why .eyebrow::before { background: var(--lime); }
.why .grad-text { color: var(--lime); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.why-card {
  padding: 30px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  position: relative; overflow: hidden;
}
.why-card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--lime-deep); box-shadow: 0 10px 24px -12px rgba(166,213,46,.5);
}
.why-card .ic svg { width: 22px; height: 22px; stroke: #15140f; }
.why-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.why-card p { margin-top: 10px; font-size: 14.5px; color: rgba(250,248,241,.62); line-height: 1.6; }


/* ---------- Süreç — animated journey (flow) ---------- */
.flow { margin-top: 56px; display: flex; flex-direction: column; gap: 52px; }

/* Spotlight stage for the active step */
.flow-stage {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  background: #15140f; color: #faf8f1; border-radius: 26px; padding: 36px 38px; overflow: hidden;
  box-shadow: 0 44px 90px -46px rgba(21,20,15,.55);
}
.flow-stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px 280px at 12% -20%, rgba(191,232,74,.22), transparent 70%);
}
.flow-stage > * { position: relative; z-index: 1; }
.flow-stage-num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(64px, 9vw, 118px);
  line-height: .85; letter-spacing: -.06em; color: var(--lime); min-width: 1.5em; text-align: center;
}
.flow-stage-kicker { display: inline-flex; align-items: baseline; gap: 5px; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,248,241,.5); }
.flow-stage-kicker b { color: var(--lime); font-size: 14px; }
.flow-stage-kicker i { font-style: normal; }
.flow-stage h3 { font-family: var(--font-head); font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; letter-spacing: -.03em; margin-top: 8px; }
.flow-stage p { margin-top: 10px; font-size: 16px; color: rgba(250,248,241,.66); max-width: 540px; line-height: 1.55; }
.flow-toggle { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(250,248,241,.2); color: #faf8f1; display: grid; place-items: center; align-self: start; transition: background .2s, border-color .2s; }
.flow-toggle:hover { background: rgba(250,248,241,.1); }
.flow-toggle svg { width: 18px; height: 18px; }
.flow-toggle .ic-play { display: none; }
.flow.paused .flow-toggle .ic-pause { display: none; }
.flow.paused .flow-toggle .ic-play { display: block; }
.flow-stage-prog { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(250,248,241,.1); z-index: 1; }
.flow-stage-prog span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--lime-deep), var(--lime)); }

/* Step-change entrance */
@keyframes flowSwap { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.flow-anim { animation: flowSwap .55s var(--ease) both; }

/* Rail with traveling comet */
.flow-rail { position: relative; padding-top: 8px; }
.flow-line { position: absolute; left: 0; right: 0; top: 35px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.flow-line-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime), var(--lime-deep)); background-size: 200% 100%;
  animation: flowEnergy 2s linear infinite; transition: width 1s var(--ease); }
@keyframes flowEnergy { from { background-position: 0 0; } to { background-position: -200% 0; } }
.flow-comet { position: absolute; top: 35px; left: 0; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 6px rgba(166,213,46,.22), 0 0 26px 5px rgba(166,213,46,.7);
  transition: left 1s var(--ease); z-index: 3; pointer-events: none; }

.flow-nodes { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.flow-node { position: relative; display: flex; flex-direction: column; align-items: flex-start; cursor: pointer; }
.flow-node .dot {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; position: relative; z-index: 2;
  background: var(--bg-soft); border: 1px solid var(--line); font-weight: 800; font-size: 17px; color: var(--ink-4);
  box-shadow: 0 1px 2px rgba(21,20,15,.04); transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.flow-node .dot::after { content: ""; position: absolute; inset: 0; border-radius: 16px; border: 2px solid var(--lime); opacity: 0; }
.flow-node.done .dot { color: var(--ink); border-color: var(--ink); }
.flow-node.active .dot { color: #15140f; background: var(--lime); border-color: transparent; transform: scale(1.14); box-shadow: 0 16px 32px -10px rgba(166,213,46,.6); }
.flow-node.active .dot::after { animation: flowRipple 1.7s var(--ease) infinite; }
@keyframes flowRipple { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.8); } }
.flow-node h4 { margin-top: 16px; font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-3); transition: color .3s var(--ease); }
.flow-node p { margin-top: 5px; font-size: 13px; color: var(--ink-4); line-height: 1.5; transition: color .3s var(--ease); }
.flow-node.active h4, .flow-node.done h4 { color: var(--ink); }
.flow-node.active p { color: var(--ink-3); }

@media (max-width: 1000px) {
  .flow-stage { grid-template-columns: auto 1fr; }
  .flow-toggle { grid-column: 1; grid-row: 2; }
  .flow-line, .flow-comet { display: none; }
  .flow-nodes { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
}
@media (max-width: 640px) {
  .flow-stage { grid-template-columns: 1fr; gap: 14px; padding: 28px; }
  .flow-stage-num { text-align: left; }
  .flow-toggle { grid-column: 1; grid-row: 1; justify-self: end; }
  .flow-nodes { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .flow-line-fill { animation: none; }
  .flow-comet { transition: none; }
}

/* ---------- Paket / pricing ---------- */
.pkg-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; margin-top: 56px; align-items: stretch; }
.pkg-card {
  position: relative; padding: 38px; border-radius: 26px; color: #faf8f1; overflow: hidden;
  background: #15140f;
  box-shadow: 0 40px 80px -44px rgba(21,20,15,.6);
}
.pkg-card::before {
  content: ""; position: absolute; inset: 0; opacity: 1;
  background:
    radial-gradient(440px 320px at 90% -10%, rgba(191,232,74,.16), transparent 70%),
    radial-gradient(420px 320px at 0% 115%, rgba(199,154,62,.12), transparent 70%);
}
.pkg-card > * { position: relative; z-index: 1; }
.pkg-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.pkg-card h3 { font-size: 27px; font-weight: 750; letter-spacing: -0.02em; }
.pkg-card .pkg-sub { margin-top: 10px; font-size: 15px; color: rgba(250,248,241,.66); max-width: 440px; line-height: 1.55; }
.pkg-price { text-align: right; }
.pkg-price .amount { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.pkg-price .meta { font-size: 12.5px; color: rgba(250,248,241,.5); }
.pkg-feats { list-style: none; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.pkg-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(250,248,241,.85); }
.pkg-feats .chk { width: 19px; height: 19px; border-radius: 6px; flex: none; display: grid; place-items: center; margin-top: 1px; background: var(--lime-deep); }
.pkg-feats .chk svg { width: 12px; height: 12px; stroke: #15140f; }
.pkg-card .btn { margin-top: 30px; width: 100%; }
/* Light/lime CTA on the dark card */
.pkg-card .btn-grad, .final-card .btn-grad { background: var(--lime); color: #15140f; box-shadow: 0 1px 2px rgba(21,20,15,.2), 0 14px 28px -14px rgba(166,213,46,.5); }
.pkg-card .btn-grad:hover, .final-card .btn-grad:hover { background: #cdf25a; }

.quote-card {
  padding: 34px; border-radius: 26px; background: var(--bg-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.quote-card .qm { font-size: 54px; line-height: .6; font-weight: 800; letter-spacing: -.04em; color: var(--lime-deep); }
.quote-card blockquote { margin: 18px 0 0; font-size: 19px; line-height: 1.5; letter-spacing: -0.01em; font-weight: 500; color: var(--ink); text-wrap: pretty; }
.quote-card .by { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 12px; }
.quote-card .by .av { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); }
.quote-card .by b { font-size: 14.5px; font-weight: 650; display: block; }
.quote-card .by span { font-size: 13px; color: var(--ink-3); }

/* ---------- Sektörler — storytelling manifesto ---------- */
.story { max-width: 940px; margin-inline: auto; text-align: center; }
.story .eyebrow { justify-content: center; }
.story-manifesto {
  margin-top: 22px; font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 70px); line-height: 1.12; letter-spacing: -.035em; font-weight: 800;
  text-wrap: balance; color: var(--ink);
}
.story-manifesto .ml { display: block; }
/* Marker-highlight boxes behind the key verbs — clean, bold, animated */
.story-manifesto .hl {
  position: relative; isolation: isolate; display: inline-block; white-space: nowrap;
  color: var(--ink); padding: 0 .18em; border-radius: .16em;
}
.story-manifesto .hl::before {
  content: ""; position: absolute; inset: .08em 0 .1em; z-index: -1; border-radius: .18em;
  background: var(--lime); box-shadow: 0 10px 26px -10px rgba(166,213,46,.65);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.65,0,.35,1);
}
.story.in .story-manifesto .hl::before { transform: scaleX(1); }
.story.in .story-manifesto .hl[data-i="1"]::before { transition-delay: .25s; }
.story.in .story-manifesto .hl[data-i="2"]::before { transition-delay: .48s; }
.story.in .story-manifesto .hl[data-i="3"]::before { transition-delay: .71s; }
@media (prefers-reduced-motion: reduce) {
  .story-manifesto .hl::before { transition: none; transform: scaleX(1); }
}

.story-hook {
  margin: 30px auto 0; max-width: 620px; font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55; color: var(--ink-3); text-wrap: pretty;
}
.story-hook strong { color: var(--ink); font-weight: 700; }

.story-cta {
  margin-top: 36px; height: 62px; padding: 0 34px; font-size: 17px; border-radius: 100px;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.story-cta svg { width: 19px; height: 19px; transition: transform .25s var(--ease); }
.story-cta:hover svg { transform: translateX(4px); }
@keyframes ctaPulse {
  0%   { box-shadow: 0 14px 30px -12px rgba(21,20,15,.45), 0 0 0 0 rgba(166,213,46,.55); }
  70%  { box-shadow: 0 14px 30px -12px rgba(21,20,15,.45), 0 0 0 18px rgba(166,213,46,0); }
  100% { box-shadow: 0 14px 30px -12px rgba(21,20,15,.45), 0 0 0 0 rgba(166,213,46,0); }
}
@media (prefers-reduced-motion: reduce) {
  .story-cta { animation: none; }
  .story.in .story-manifesto .hl::after { transition: none; }
}


/* ---------- Final CTA ---------- */
.final { padding: clamp(72px, 9vw, 110px) 0; }
.final-card {
  position: relative; padding: clamp(48px, 7vw, 84px) clamp(28px,5vw,72px); border-radius: 32px; text-align: center; overflow: hidden;
  background: #15140f;
  box-shadow: 0 40px 90px -44px rgba(21,20,15,.6);
}
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 360px at 20% -10%, rgba(191,232,74,.22), transparent 65%),
    radial-gradient(560px 360px at 85% 120%, rgba(199,154,62,.16), transparent 65%);
}

/* Aceternity-style interactive background boxes (hover lights cells) */
.boxes { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.final-card .boxes { z-index: 0; }
.boxes-grid {
  position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column;
  transform: translate(-50%, -50%) skewX(-48deg) skewY(14deg);
  transform-origin: center;
}
.boxes-row { display: flex; }
.box {
  width: 64px; height: 40px; flex: none;
  border-top: 1px solid rgba(255,255,255,.07);
  border-left: 1px solid rgba(255,255,255,.07);
  transition: background-color 2s ease;
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 { font-size: clamp(30px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -0.04em; font-weight: 800; color: #faf8f1; text-wrap: balance; }
.final-card .grad-text { color: var(--lime); }
.final-card p { margin: 20px auto 0; max-width: 560px; font-size: clamp(16px,1.5vw,19px); color: rgba(250,248,241,.66); line-height: 1.6; text-wrap: pretty; }
.final-actions { display: flex; gap: 13px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.final-card .btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.20); color: #faf8f1; }
.final-card .btn-ghost:hover { background: rgba(255,255,255,.16); }

/* ---------- Footer ---------- */
.footer { padding: 72px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--ink-3); max-width: 280px; line-height: 1.6; }
.footer-soc { display: flex; gap: 10px; margin-top: 20px; }
.footer-soc a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s var(--ease); }
.footer-soc a:hover { background: var(--bg-tint); transform: translateY(-2px); }
.footer-soc svg { width: 17px; height: 17px; stroke: var(--ink-2); }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 7px 0; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-4); }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ink-2); }


/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn-grad, .header-cta .btn-soft { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 420px; order: 2; }
  .eco-grid, .svc-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 0 64px; }
  .hero-visual { height: 360px; transform: scale(.86); }
  .eco-grid, .svc-grid, .why-grid { grid-template-columns: 1fr; }
  .pkg-feats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions .btn, .final-actions .btn { width: 100%; }
}

/* ============================================================
   RAMP-STYLE STRUCTURE — product mockup, stats, marquee, bento
   ============================================================ */

/* ---------- Hero product dashboard mockup ---------- */
.hero-visual { perspective: 1500px; }
.dash {
  position: absolute; top: 38px; left: 0; right: 0; margin-inline: auto;
  width: min(100%, 540px); height: 400px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 42px 80px -42px rgba(21,20,15,.45), 0 2px 6px rgba(21,20,15,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transform: rotateY(-9deg) rotateX(3deg);
  animation: dashfloat 8s ease-in-out infinite;
}
@keyframes dashfloat {
  0%,100% { transform: rotateY(-9deg) rotateX(3deg) translateY(0); }
  50%     { transform: rotateY(-9deg) rotateX(3deg) translateY(-12px); }
}
.dash-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line-2); }
.dash-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); box-shadow: none; }
.dash-bar .dot:first-child { background: var(--lime-deep); }
.dash-url { margin-left: 10px; font-size: 11.5px; color: var(--ink-4); font-weight: 500; }
.dash-body { display: grid; grid-template-columns: 116px 1fr; flex: 1; min-height: 0; }
.dash-side { display: flex; flex-direction: column; gap: 3px; padding: 14px 12px; background: var(--bg-soft); border-right: 1px solid var(--line-2); }
.dash-logo { font-weight: 800; font-size: 17px; letter-spacing: -.04em; color: var(--ink); padding: 4px 8px 12px; }
.dash-side a { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 550; color: var(--ink-3); padding: 7px 8px; border-radius: 8px; }
.dash-side a span { width: 13px; height: 13px; border-radius: 4px; background: var(--bg-tint); border: 1px solid var(--line); }
.dash-side a.on { background: var(--ink); color: #faf8f1; }
.dash-side a.on span { background: var(--lime); border-color: transparent; }
.dash-main { display: flex; flex-direction: column; gap: 12px; padding: 16px; min-width: 0; }
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-kpi { padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); }
.dash-kpi span { font-size: 11px; color: var(--ink-3); font-weight: 550; }
.dash-kpi b { display: block; margin-top: 3px; font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.dash-kpi i { font-style: normal; font-size: 11px; font-weight: 700; color: var(--lime-deep); }
.dash-chart { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.dash-chart-head { display: flex; align-items: center; justify-content: space-between; }
.dash-chart-head span:first-child { font-size: 11.5px; font-weight: 600; color: var(--ink-2); }
.dash-pill { font-size: 10px; font-weight: 600; color: var(--ink-3); padding: 3px 8px; border-radius: 100px; background: var(--bg-tint); border: 1px solid var(--line-2); }
.bars { display: flex; align-items: flex-end; gap: 8px; flex: 1; min-height: 54px; margin-top: 10px; }
.bars i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: var(--ink); opacity: .16; }
.bars i.hot { background: var(--lime-deep); opacity: 1; }
.dash-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-tags span { font-size: 10.5px; font-weight: 600; color: var(--ink-2); padding: 4px 9px; border-radius: 100px; background: var(--bg-tint); border: 1px solid var(--line-2); }
.dash-float {
  position: absolute; z-index: 6; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 650; padding: 9px 13px; border-radius: 11px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--glass-shadow);
  animation: floaty 6.5s ease-in-out infinite;
}
.dash-float .ic { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: 9px; background: var(--lime); color: #15140f; }
.dash-float.f1 { top: 6%; left: -4%; }
.dash-float.f2 { bottom: 9%; right: -2%; animation-delay: .6s; }
.dash-float.f2 .ic { background: var(--ink); }

/* ---------- Stats band ---------- */
.stats-band { padding: 6px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-block: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat b { display: block; font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stat b em { font-style: normal; color: var(--lime-deep); }
.stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-3); line-height: 1.45; max-width: 210px; }

/* ---------- Logo marquee ---------- */
.marquee-sec { padding: 44px 0 6px; }
.marquee-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-4); }
.marquee {
  margin-top: 52px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
/* JS takes over scrolling (smooth speed easing); CSS animation is the no-JS fallback. */
.marquee-track.js-driven { animation: none; }
.marquee-track span {
  font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); opacity: .30;
  white-space: nowrap; transition: opacity .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.marquee-track span:hover { opacity: 1; color: var(--lime-deep); transform: scale(1.12); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Bento services grid ---------- */
.svc-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(152px, auto); grid-auto-flow: dense; }
.svc-feature {
  grid-column: span 2; grid-row: span 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 30px; background: var(--ink); border-color: transparent; color: #faf8f1;
}
.svc-feature:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 30px 60px -34px rgba(21,20,15,.5); }
.svc-feature .ic { background: var(--lime); border-color: transparent; }
.svc-feature .ic svg { stroke: #15140f; }
.svc-feature h4 { margin-top: 2px; font-size: 22px; letter-spacing: -.02em; color: #faf8f1; }
.svc-feature p { margin-top: 8px; max-width: 360px; font-size: 15px; color: rgba(250,248,241,.7); }
.svc-feature-tag { align-self: flex-start; margin-top: 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #15140f; background: var(--lime); padding: 5px 11px; border-radius: 100px; }
.svc-mini { margin-top: 18px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); }
.svc-mini-bars { display: flex; align-items: flex-end; gap: 10px; height: 92px; }
.svc-mini-bars i { flex: 1; height: var(--h); border-radius: 6px 6px 0 0; background: rgba(250,248,241,.16); }
.svc-mini-bars i.hot { background: var(--lime); }
.svc-wide { grid-column: span 2; }

/* ---------- Ramp-structure responsive ---------- */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(150px, auto); }
  .svc-feature { grid-column: span 2; grid-row: auto; }
  .svc-wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .dash { max-width: 460px; transform: rotateY(-7deg) rotateX(2deg); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-feature, .svc-wide { grid-column: auto; grid-row: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .stat b { font-size: clamp(30px, 9vw, 42px); }
  .dash { transform: none; max-width: 420px; height: 380px; }
  .dash-float.f1 { left: 0; } .dash-float.f2 { right: 0; }
  .marquee-track span { font-size: 20px; }
}

/* ============================================================
   RAMP HERO — display type, white canvas, load animations
   ============================================================ */
.hero h1, .section-head h2, .final-card h2, .stat b, .dash-logo, .core-word,
.svc-feature h4, .pkg-card h3, .eco-card h3 {
  font-family: var(--font-head);
}

/* Ramp hero sits on a clean white canvas that melts into the cream
   body toward the bottom — a seamless fade into the stats band below. */
.hero { background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, var(--bg) 100%); }
/* Soften the stats band's top hairline so the blend reads as one surface */
.stats-band { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.stats-grid { border-top: none; }
.hero h1 { font-size: clamp(44px, 6.2vw, 84px); line-height: 0.98; letter-spacing: -0.045em; font-weight: 800; }
.hero .sub { font-size: clamp(17px, 1.6vw, 21px); max-width: 520px; }

.hero-trust strong { color: var(--ink); font-weight: 700; }

/* Small muted lead-in above the emphasis line (the "not X, but Y" contrast) */
.hero-neg {
  display: block; font-size: 0.4em; line-height: 1.25; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-3); margin-bottom: 0.22em;
}

/* Rotating headline word — a single element whose text is swapped, so two
   words can never appear at once. Vertical slide + fade between words. */
.rotator { display: inline-block; }
.rot-word {
  display: inline-block; white-space: nowrap; will-change: transform, opacity;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .rot-word { transition: none; }
}

/* Secondary CTA gets a play glyph (Ramp's "Watch demo") */
.hero-actions .btn-ghost svg { width: 15px; height: 15px; }

/* Entrance: dashboard bars grow from the baseline, staggered */
@keyframes growbar { from { height: 0; } to { height: var(--h); } }
.dash .bars i { animation: growbar 1.1s var(--ease) both; }
.dash .bars i:nth-child(1) { animation-delay: .25s; }
.dash .bars i:nth-child(2) { animation-delay: .33s; }
.dash .bars i:nth-child(3) { animation-delay: .41s; }
.dash .bars i:nth-child(4) { animation-delay: .49s; }
.dash .bars i:nth-child(5) { animation-delay: .57s; }
.dash .bars i:nth-child(6) { animation-delay: .65s; }
.svc-mini-bars i { animation: growbar 1.1s var(--ease) both; }
.svc-mini-bars i:nth-child(2) { animation-delay: .08s; }
.svc-mini-bars i:nth-child(3) { animation-delay: .16s; }
.svc-mini-bars i:nth-child(4) { animation-delay: .24s; }
.svc-mini-bars i:nth-child(5) { animation-delay: .32s; }

/* ============================================================
   TEAM — Stripe-style card carousel
   ============================================================ */
.team-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
.team-head-main h2 {
  margin: 14px 0 0; font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 800; max-width: 560px; text-wrap: balance;
}
.team-head-cta { margin-top: 24px; }
.team-head-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.team-head-aside p { font-size: 16px; color: var(--ink-3); line-height: 1.6; text-align: left; }
.carousel-nav { display: flex; gap: 10px; }
.cnav {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), opacity .2s;
}
.cnav svg { width: 18px; height: 18px; }
.cnav:hover { background: var(--ink); color: #faf8f1; border-color: transparent; transform: translateY(-1px); }
.cnav:disabled { opacity: .35; pointer-events: none; }

.team-carousel {
  display: flex; gap: 18px; margin-top: 40px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px; /* room so card shadow isn't clipped */
}
.team-carousel::-webkit-scrollbar { display: none; }

.tcard { flex: 0 0 300px; scroll-snap-align: start; display: flex; flex-direction: column; }
.tcard-media {
  position: relative; aspect-ratio: 3 / 4; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tcard-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tcard.t1 .tcard-media { background: linear-gradient(160deg, rgba(21,20,15,.07), var(--bg-tint)); }
.tcard.t2 .tcard-media { background: linear-gradient(160deg, rgba(182,96,58,.16), var(--bg-tint)); }
.tcard.t3 .tcard-media { background: linear-gradient(160deg, rgba(166,213,46,.22), var(--bg-tint)); }
.tcard.t4 .tcard-media { background: linear-gradient(160deg, rgba(107,106,94,.16), var(--bg-tint)); }
.tcard:hover .tcard-media { transform: translateY(-4px); box-shadow: 0 28px 54px -28px rgba(21,20,15,.4); }
.tcard-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: 18px;
  background: linear-gradient(180deg, transparent 45%, rgba(10,9,6,.62) 100%);
}
.tcard-name {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.tcard-name .sw { width: 11px; height: 11px; border-radius: 4px; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.tcard-desc { margin-top: 16px; font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }
.tcard-link {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px; font-weight: 650; color: var(--ink);
}
.tcard-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.tcard-link:hover svg { transform: translateX(3px); }

@media (max-width: 1000px) {
  .team-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .team-head-aside { align-items: flex-start; }
  .tcard { flex-basis: 260px; }
}
@media (max-width: 640px) {
  .tcard { flex-basis: 78%; }
}

/* ============================================================
   BRAND SLOGAN — #İyiFikir (animated sheen, mounted site-wide)
   ============================================================ */
.slogan {
  font-weight: 800; letter-spacing: -0.01em; white-space: nowrap;
  /* A lime highlight sweeps across the ink text on a loop */
  background: linear-gradient(100deg,
    var(--ink) 0%, var(--ink) 42%, var(--lime-deep) 50%, var(--ink) 58%, var(--ink) 100%);
  background-size: 220% 100%; background-position: 120% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sheen 5s var(--ease) infinite;
}
@keyframes sheen { 0% { background-position: 120% 0; } 55%, 100% { background-position: -30% 0; } }
/* On dark surfaces the base is cream, the sweep is bright lime */
.why .slogan, .pkg-card .slogan, .final-card .slogan, .footer .slogan-foot.on-dark {
  background-image: linear-gradient(100deg,
    #faf8f1 0%, #faf8f1 42%, var(--lime) 50%, #faf8f1 58%, #faf8f1 100%);
}
@media (prefers-reduced-motion: reduce) {
  .slogan { animation: none; background-position: 0 0; }
}

/* Header tagline chip */
.header-slogan {
  display: inline-flex; align-items: center; font-size: 13px;
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--bg-soft);
}

/* Hero pill — the slogan leads the pill text */
.pill .slogan { font-size: 13px; font-weight: 700; }

/* Final CTA — big animated kicker above the heading */
.final-slogan {
  display: inline-block; margin-bottom: 18px;
  font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.02em;
}

/* Footer brand slogan */
.slogan-foot { display: inline-block; font-size: 18px; margin-bottom: 6px; }

@media (max-width: 1000px) { .header-slogan { display: none; } }

/* Face trail — grayscale smiling faces follow the cursor in the hero */
.face-trail {
  position: fixed; z-index: 50; pointer-events: none;
  width: 150px; height: 188px; object-fit: cover; border-radius: 18px;
  filter: grayscale(1) contrast(1.02) brightness(1.04);
  box-shadow: 0 18px 44px -18px rgba(21,20,15,.3);
  opacity: 0; will-change: transform, opacity;
  animation: facetrail 2600ms ease-in-out forwards;
}
@keyframes facetrail {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.78) rotate(var(--r, 0deg)); }
  42%  { opacity: .4; transform: translate(-50%, -54%) scale(1) rotate(var(--r, 0deg)); }
  60%  { opacity: .4; transform: translate(-50%, -58%) scale(1) rotate(var(--r, 0deg)); }
  100% { opacity: 0; transform: translate(-50%, -66%) scale(.99) rotate(var(--r, 0deg)); }
}
@media (prefers-reduced-motion: reduce) { .face-trail { display: none; } }

/* Click spark — a large, faint #İyiFikir floats up wherever you click */
.click-spark {
  position: fixed; z-index: 9999; pointer-events: none;
  transform: translate(-50%, -50%);
  font-weight: 800; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; white-space: nowrap;
  color: rgba(21, 20, 15, 0.18);
  animation: clickspark 1100ms var(--ease) forwards;
}
.click-spark b { color: rgba(166, 213, 46, 0.55); font-weight: 800; }
@keyframes clickspark {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.55); }
  18%  { opacity: 1; transform: translate(-50%, -95%) scale(1.06); }
  100% { opacity: 0; transform: translate(-50%, -235%) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .click-spark { animation: none; }
}

/* ============================================================
   CONTACT FORM — editorial split card
   ============================================================ */
.contact-sec { background: var(--bg-tint); padding-top: clamp(24px, 3vw, 44px); }
/* Tighten the gap between the story manifesto and the contact form */
#referanslar { padding-bottom: clamp(24px, 3vw, 44px); }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 32px;
  padding: clamp(32px, 4vw, 64px);
  box-shadow: 0 40px 90px -50px rgba(21,20,15,.4), 0 1px 2px rgba(21,20,15,.04);
}
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); }

.contact-pill {
  display: inline-flex; align-items: center; gap: 9px; height: 36px; padding: 0 16px;
  border-radius: 100px; border: 1px solid var(--line); color: var(--ink-3);
  font-size: 14px; font-weight: 500;
}
.contact-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-deep); box-shadow: 0 0 0 4px rgba(166,213,46,.2); }
.contact-left h2 {
  margin-top: 26px; font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: -0.04em; font-weight: 800;
  text-wrap: balance;
}
.contact-testi { margin-top: 56px; }
.contact-testi-label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.contact-testi-logos { display: flex; gap: 12px; margin-top: 16px; }
.ct-logo {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-weight: 800; font-size: 18px; color: var(--ink-2);
  background: var(--bg-soft);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 26px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cf-field { display: flex; flex-direction: column; gap: 10px; }
.cf-field > span { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.cf-field input, .cf-field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid var(--line); padding: 8px 2px;
  transition: border-color .2s var(--ease);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--ink-4); }
.cf-field input:focus, .cf-field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.cf-textarea textarea { resize: vertical; min-height: 64px; line-height: 1.5; }

.cf-block { display: flex; flex-direction: column; gap: 14px; }
.cf-legend { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.cf-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cf-chip, .cf-pill-lg {
  font-family: inherit; font-weight: 550; color: var(--ink-2);
  border: 1px solid var(--line); background: #fff; border-radius: 100px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cf-chip { font-size: 14px; padding: 10px 18px; }
.cf-pill-lg { font-size: 15px; padding: 16px 30px; flex: 1; min-width: 120px; }
.cf-chip:hover, .cf-pill-lg:hover { border-color: var(--ink); transform: translateY(-1px); }
.cf-chip.is-on, .cf-pill-lg.is-on {
  background: var(--ink); color: #faf8f1; border-color: transparent;
}

.cf-submit { width: 100%; height: 60px; border-radius: 100px; font-size: 16px; margin-top: 6px; }
.cf-note { margin-top: 4px; font-size: 14.5px; color: var(--ink-2); text-align: center; }
.cf-note strong { color: var(--lime-deep); }

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-testi { margin-top: 8px; }
}
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; gap: 22px; }
  .cf-pill-lg { flex: 1 1 100%; }
}

/* ============================================================
   ORE STUDIO — creative subpage (scoped, intentionally vibrant)
   ============================================================ */
.studio-page{
  --c-poster:#e0457b;
  --c-social:#6d5cf0;
  --c-outdoor:#0ea5a4;
  --c-brand:#e8821e;
  --c-pack:#16a34a;
  --c-print:#8b5cf6;
}

/* active nav link */
.nav a.is-current{ color:var(--ink); background:var(--bg-tint); font-weight:600; }
.mobile-nav a.is-current{ color:var(--ink); }

/* ---------- Studio hero ---------- */
.studio-hero{ position:relative; padding:170px 0 80px; overflow:hidden; }
.studio-hero .blob{ filter:blur(72px); }
.studio-hero .blob.b1{ width:520px;height:520px; top:-120px; left:-100px; background:#6d5cf0; opacity:.20; }
.studio-hero .blob.b2{ width:480px;height:480px; top:-80px;  right:-120px; background:#e0457b; opacity:.18; }
.studio-hero .blob.b3{ width:440px;height:440px; top:160px;  right:14%;  background:#0ea5a4; opacity:.16; }
.studio-hero .blob.b4{ width:380px;height:380px; top:120px;  left:18%;   background:#f59e0b; opacity:.14; }
.sh-inner{ position:relative; z-index:2; max-width:880px; }
.studio-hero h1{
  margin:22px 0 0; font-family:var(--font-head);
  font-size:clamp(38px,5.4vw,68px); line-height:1.02; letter-spacing:-0.04em;
  font-weight:800; text-wrap:balance;
}
.sh-rainbow{
  background:linear-gradient(92deg,#e0457b 0%,#8b5cf6 30%,#0ea5a4 62%,#f59e0b 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sh-sub{ margin:24px 0 0; font-size:clamp(16px,1.5vw,19px); color:var(--ink-3); max-width:600px; line-height:1.6; text-wrap:pretty; }
.sh-actions{ display:flex; gap:12px; margin-top:32px; flex-wrap:wrap; }
.sh-chips{ display:flex; flex-wrap:wrap; gap:9px; margin-top:34px; }
.sh-chip{
  display:inline-flex; align-items:center; height:34px; padding:0 15px; border-radius:100px;
  font-size:13.5px; font-weight:600; color:#fff; letter-spacing:-0.01em;
  box-shadow:0 8px 20px -10px rgba(21,20,15,.5);
}
.sh-chip.c-poster{ background:var(--c-poster); }
.sh-chip.c-social{ background:var(--c-social); }
.sh-chip.c-outdoor{ background:var(--c-outdoor); }
.sh-chip.c-brand{ background:var(--c-brand); }
.sh-chip.c-pack{ background:var(--c-pack); }
.sh-chip.c-print{ background:var(--c-print); }

/* ---------- Capabilities grid ---------- */
.cap-grid{ margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.cap-card{
  position:relative; background:var(--bg-soft); border:1px solid var(--line);
  border-radius:var(--radius); padding:26px 24px 24px; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.cap-card::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--c); }
.cap-card:hover{ transform:translateY(-4px); box-shadow:var(--glass-shadow); border-color:transparent; }
.cap-ic{
  display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px;
  border-radius:13px; color:#fff; background:var(--c); margin-bottom:16px;
  box-shadow:0 10px 22px -12px var(--c);
}
.cap-ic svg{ width:24px; height:24px; }
.cap-card h3{ font-family:var(--font-head); font-size:19px; font-weight:700; letter-spacing:-0.02em; }
.cap-card p{ margin-top:8px; font-size:14.5px; color:var(--ink-3); line-height:1.55; }

/* ---------- Gallery filter ---------- */
.gal-filter{ display:flex; flex-wrap:wrap; gap:9px; margin:30px 0 26px; }
.gal-chip{
  height:40px; padding:0 18px; border-radius:100px; font-size:14px; font-weight:600;
  color:var(--ink-2); background:var(--bg-soft); border:1px solid var(--line);
  transition:color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.gal-chip:hover{ color:var(--ink); background:#fff; }
.gal-chip.is-on{ color:#faf8f1; background:var(--ink); border-color:var(--ink); }

/* ---------- Gallery masonry ---------- */
.gallery{ columns:3 280px; column-gap:20px; }
.work{ break-inside:avoid; margin:0 0 20px; }
.work-media{
  position:relative; overflow:hidden; border-radius:18px; border:1px solid var(--line);
  background:var(--bg-tint);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.work:hover .work-media{ transform:translateY(-4px); box-shadow:0 28px 54px -28px rgba(21,20,15,.45); }
.work.tall .work-media{ aspect-ratio:3/4; }
.work.sq   .work-media{ aspect-ratio:1/1; }
.work.wide .work-media{ aspect-ratio:16/10; }
.work-media image-slot{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.work-scrim{
  position:absolute; inset:0; z-index:1; pointer-events:none; border-radius:18px;
  background:linear-gradient(180deg, transparent 50%, rgba(10,9,6,.55) 100%);
}
.work-tag{
  position:absolute; top:12px; left:12px; z-index:2; pointer-events:none;
  height:27px; padding:0 12px; display:inline-flex; align-items:center; border-radius:100px;
  font-size:12px; font-weight:700; color:#fff; letter-spacing:-0.01em;
  box-shadow:0 6px 14px -6px rgba(0,0,0,.5);
}
.work-tag.c-poster{ background:var(--c-poster); }
.work-tag.c-social{ background:var(--c-social); }
.work-tag.c-outdoor{ background:var(--c-outdoor); }
.work-tag.c-brand{ background:var(--c-brand); }
.work-cap{
  position:absolute; left:14px; right:14px; bottom:13px; z-index:2; pointer-events:none;
  display:flex; flex-direction:column; gap:1px; color:#fff;
}
.work-cap b{ font-family:var(--font-head); font-size:15.5px; font-weight:700; letter-spacing:-0.01em; }
.work-cap span{ font-size:12.5px; opacity:.82; }
.gal-note{ margin-top:8px; text-align:center; font-size:13.5px; color:var(--ink-4); }

/* ---------- Studio responsive ---------- */
@media (max-width:900px){
  .cap-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery{ columns:2 200px; }
}
@media (max-width:560px){
  .cap-grid{ grid-template-columns:1fr; }
  .gallery{ columns:1; }
  .studio-hero{ padding:140px 0 60px; }
}
