:root {
  interpolate-size: allow-keywords;
  --bg: #1C1C1E;
  --surface: #2A2A2E;
  --surface-2: #353539;
  --ink: #F0EDE6;
  --ink-soft: #B8B4AC;
  --accent: #E85D2A;
  --accent-2: #6B9080;
  --line: rgba(240,237,230,0.12);
  --line-strong: rgba(240,237,230,0.24);
  --header-h: 72px;
  --container: 1180px;
  --pad: clamp(1.5rem,5vw,4rem);
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.22);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  color: var(--bg);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1),
              border-color 240ms;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #c94e22;
  color: var(--bg);
  border-color: #c94e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,42,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(28, 28, 30, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  padding: 0 clamp(16px, 4vw, 32px);
}

.site-header.is-scrolled {
  background: rgba(28,28,30,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}

.header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }

.logo__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  position: relative;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 8px 12px;
  transition: color 240ms;
  text-decoration: none;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-desktop .nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: #c94e22;
  color: var(--bg);
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-radius: 8px;
  transition: background 200ms cubic-bezier(.2,.7,.2,1);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(240,237,230,0.08);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms, box-shadow 200ms;
  transform-origin: center;
  box-shadow: 0 0 4px rgba(240,237,230,0.15);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   DRAWER
   ============================================================ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 14px 8px;
  margin: 0 -8px;
  border-bottom: 1px solid var(--line);
  border-radius: 4px;
  transition: color 240ms, padding-left 240ms, background 240ms;
  text-decoration: none;
}
.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 14px;
}
.drawer .nav-cta-mobile {
  margin-top: 16px;
  text-align: center;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  border-bottom: none;
}
.drawer .nav-cta-mobile:hover {
  background: #c94e22;
  color: var(--bg);
  padding-left: 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  --catch: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(
    calc(var(--catch) * 8%)
    calc(var(--catch) * 15%)
    calc(var(--catch) * 8%)
    calc(var(--catch) * 15%)
    round calc(var(--catch) * 32px)
  );
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(28,28,30,0.5) 0%,
    rgba(28,28,30,0.3) 40%,
    rgba(28,28,30,0.7) 80%,
    rgba(28,28,30,0.92) 100%
  );
}

.hero__catch {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero__catch .glove {
  position: absolute;
  top: 50%;
  width: clamp(80px, 12vw, 160px);
  height: clamp(100px, 16vw, 200px);
  color: var(--accent);
  opacity: calc(0.12 + var(--catch) * 0.6);
  transition: none;
}
.hero__catch .glove--l {
  left: 2%;
  transform: translateY(-50%) translateX(calc(-40% + var(--catch) * 140%));
}
.hero__catch .glove--r {
  right: 2%;
  transform: translateY(-50%) translateX(calc(40% - var(--catch) * 140%)) scaleX(-1);
}

.hero__content {
  position: relative;
  z-index: 4;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  max-width: 780px;
}
.hero__content .eyebrow {
  margin-bottom: 16px;
}
.hero__content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__badges span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(240,237,230,0.08);
  border: 1px solid var(--line-strong);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ============================================================
   MAIN
   ============================================================ */

main { padding-top: var(--header-h); }

/* ============================================================
   COUNTER BAND
   ============================================================ */

.counter-band {
  background: var(--surface);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.counter-band__item .counter-val {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
}
.counter-band__item .counter-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

.sec {
  padding: clamp(60px, 10vh, 100px) 0;
  position: relative;
}

.sec__header {
  margin-bottom: 48px;
}

.sec__title {
  position: relative;
}

.sec--alt { background: var(--surface); }
.sec--dark { background: var(--bg); }

.sec__line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  border-radius: 2px;
}

/* ============================================================
   STORY SECTION (#hikaye)
   ============================================================ */

.sec--story {
  position: relative;
}
.sec--story::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0.5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.story-text p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.story-text p:first-of-type::first-letter {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  margin: 4px 12px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--surface-2);
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.story-img:hover img {
  transform: scale(1.04);
}

.stitch-divider {
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='28' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l14-8 14 8M0 8l14 8 14-8' stroke='%23E85D2A' stroke-width='.5' fill='none' opacity='.15'/%3E%3C/svg%3E") repeat-x center;
  margin: 24px 0;
}

/* ============================================================
   TIMELINE (#metodoloji)
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-strong);
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.timeline__dot span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
}

.timeline__phase {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline__desc {
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   GALLERY (#galeri)
   ============================================================ */

.sec--gallery {
  overflow: visible;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: clamp(16px, 4vw, 32px);
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(16px, 4vw, 32px) 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.gallery-item {
  flex: 0 0 clamp(280px, 40vw, 420px);
  scroll-snap-align: start;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(28,28,30,0.85));
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 360ms, transform 360ms;
}
.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .gallery-item__caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   TABLE SCROLL
   ============================================================ */

.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 580px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
thead { background: var(--surface-2); }
th {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
tbody tr:hover { background: rgba(232,93,42,0.04); }

/* ============================================================
   PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(232,93,42,0.12);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(232,93,42,0.06) 0%, var(--surface) 40%);
}
.pricing-card--featured::before {
  content: 'Önerilen';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
}

.pricing-card__name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.pricing-card__sessions {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card__price small {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-soft);
}

.pricing-card__list {
  list-style: none;
  margin: 20px 0;
}
.pricing-card__list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pricing-card__list--in li::before { background: var(--accent-2); }
.pricing-card__list--out li::before { background: var(--ink-soft); opacity: 0.3; }
.pricing-card__list--out li { text-decoration: line-through; opacity: 0.6; }

.pricing-card__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 18px 0 6px;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.7;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-grid > :nth-child(2) { margin-top: 40px; }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
}
.testimonial-card__author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  counter-increment: step;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(232,93,42,0.1);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.process-step__time {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.process-step__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-answer {
  height: auto;
  padding-block-end: 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

/* ============================================================
   FORM
   ============================================================ */

.form-section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .form__field--full { grid-column: 1 / -1; }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.form__field input[type="text"],
.form__field input[type="email"],
.form__field input[type="tel"],
.form__field textarea,
.form__field select {
  width: 100%;
  background: var(--bg);
  border: none;
  border-bottom: 2px solid var(--line-strong);
  padding: 14px 16px;
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  border-radius: 4px 4px 0 0;
  transition: border-color 240ms, background 240ms;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(42,42,46,0.6);
}

.form__field textarea {
  min-height: 120px;
  resize: vertical;
}

.form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8B4AC' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.field input[type="checkbox"],
.field-kvkk input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form__submit {
  margin-top: 24px;
  text-align: center;
}
.form__submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ============================================================
   NEWS BLOCK
   ============================================================ */

.news-list {
  max-width: 680px;
}

.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.news-item:last-child { border-bottom: none; }

.news-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.news-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vh, 80px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}
.footer-col li { margin-bottom: 4px; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
@media (hover: none) {
  .footer-col a { min-height: 44px; }
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}
.footer-contact-item a {
  color: var(--ink-soft);
  word-break: break-all;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--ink);
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-height: 44px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 5px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 10px 16px;
  white-space: nowrap;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cookie-banner__actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__actions .cookie-accept:hover {
  background: #c94e22;
  color: var(--bg);
}
.cookie-banner__actions .cookie-reject {
  background: rgba(240,237,230,0.06);
  color: var(--ink);
  border-color: var(--ink-soft);
}
.cookie-banner__actions .cookie-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink);
}
.cookie-banner__actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-banner__actions .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
}

@media (max-width: 768px) { }

/* ============================================================
   CONTACT PAGE — CARDS
   ============================================================ */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,93,42,0.1);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,93,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 240ms;
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.08);
}
.contact-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-card__label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact-card__value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card__value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 240ms;
}
.contact-card__value a:hover { color: var(--accent); }
.contact-card__sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.hours-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.hours-mini .day {
  font-weight: 600;
  color: var(--ink);
}
.hours-mini .time { color: var(--ink-soft); }

/* ============================================================
   ABOUT PAGE — TEAM
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(232,93,42,0.1);
}

.team-card__photo {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }

.team-card__info {
  padding: 20px 24px;
}
.team-card__name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   INNER PAGES
   ============================================================ */

.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 12px;
}
.page-hero__sub {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 560px;
}

.policy-content {
  padding: clamp(40px, 6vh, 64px) 0;
  line-height: 1.7;
}
.policy-content > .container {
  max-width: 760px;
}
.policy-content a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}
.policy-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}
.policy-content p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 780px;
}
.policy-content ul, .policy-content ol {
  margin: 12px 0 20px 20px;
  color: var(--ink-soft);
}
.policy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 48px) var(--pad) 48px;
}
.thank-you-page h1 { margin-bottom: 16px; }
.thank-you-page p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 48px) var(--pad) 48px;
}
.error-page__code {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.error-page h1 { margin-bottom: 12px; font-size: 1.8rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 28px; }

.sitemap-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
}
.sitemap-list li { margin-bottom: 10px; break-inside: avoid; }
.sitemap-list a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 240ms, padding-left 200ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 6px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

html.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NICHE ANIMATIONS
   ============================================================ */

@keyframes goalPostGlow {
  0%, 100% { box-shadow: inset 0 -3px 0 var(--accent), 0 0 0 transparent; }
  50% { box-shadow: inset 0 -3px 0 var(--accent), 0 4px 16px rgba(232,93,42,0.15); }
}

.sec__title::before {
  content: '';
  position: absolute;
  left: -16px;
  top: -4px;
  bottom: -4px;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}
[style*="text-align:center"] .sec__title::before,
[style*="text-align: center"] .sec__title::before {
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  bottom: -8px;
  width: 40px;
  height: 4px;
  display: none;
}

@keyframes reflexPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,93,42,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(232,93,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,93,42,0); }
}

.btn-primary:active {
  animation: reflexPulse 400ms ease-out;
}

@keyframes ballSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ball-decor {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.06;
  animation: ballSpin 12s linear infinite;
  pointer-events: none;
}

@keyframes diveTrajectory {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

.dive-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.is-in .dive-path {
  animation: diveTrajectory 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes breathe {
  0%, 100% { opacity: 0.04; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.02); }
}

.stitch-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='28' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l14-8 14 8M0 8l14 8 14-8' stroke='%23E85D2A' stroke-width='.5' fill='none' opacity='.15'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite;
}

/* ============================================================
   FOCUS & A11Y
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }

  .story-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 56px;
    align-items: start;
  }
}

@media (max-width: 1023px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid > :nth-child(2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }

  .hero { min-height: 90vh; }
  .hero__content h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__badges { flex-direction: column; gap: 8px; }
  .hero__badges span { text-align: center; }

  .counter-band__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .process-steps { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sitemap-list { columns: 1; }
}

@media (max-width: 640px) {
  .sec { padding: clamp(40px, 8vh, 60px) 0; }
  .hero { min-height: 85vh; align-items: flex-end; }
  .hero__content { padding-top: calc(var(--header-h) + 24px); padding-bottom: 40px; }
  .hero__sub { font-size: 0.95rem; }

  .gallery-item { flex: 0 0 85vw; }

  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero { min-height: 80vh; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }

  .pricing-card { padding: 20px 18px; }
  .process-step { padding: 22px 18px 18px; }
  .testimonial-card { padding: 20px 18px; }
  .form-section { padding: 24px 18px; }
}

@media (max-width: 360px) {
  .drawer { padding-left: 20px; padding-right: 20px; }
  .cookie-banner { left: 8px; right: 8px; padding: 16px; }
  .cookie-banner__actions button {
    padding: 8px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   ENHANCED GOALKEEPER MICRO-ANIMATIONS
   ============================================================ */

@keyframes netShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.pricing-card--featured {
  background-image: linear-gradient(
    110deg,
    transparent 30%,
    rgba(232,93,42,0.04) 45%,
    rgba(232,93,42,0.08) 50%,
    rgba(232,93,42,0.04) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: netShimmer 6s ease-in-out infinite;
}

@keyframes gloveGrip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero__badges span {
  transition: background 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.hero__badges span:hover {
  background: rgba(232,93,42,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,93,42,0.15);
}

.testimonial-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(232,93,42,0.1);
  border-color: var(--accent);
}

.contact-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.contact-card:hover {
  border-color: rgba(232,93,42,0.3);
}

.timeline__item:hover .timeline__dot {
  background: var(--accent);
  transition: background 300ms;
}
.timeline__item:hover .timeline__dot span {
  color: var(--bg);
  transition: color 300ms;
}

.news-item {
  transition: background 240ms;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 6px;
}
.news-item:hover {
  background: rgba(232,93,42,0.04);
}

.faq-item summary {
  transition: color 240ms, padding-left 240ms;
}
.faq-item summary:hover {
  padding-left: 6px;
}

.process-step:hover::before {
  opacity: 0.4;
  transition: opacity 300ms;
}
.process-step:hover {
  border-color: rgba(232,93,42,0.2);
}

.counter-band__item {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.counter-band__item:hover {
  transform: scale(1.05);
}

.team-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.team-card:hover {
  border-color: rgba(232,93,42,0.25);
}

.sec--story::before {
  transition: opacity 600ms;
}

/* --- Goalkeeper glove warm glow on primary buttons --- */
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 6px 20px rgba(232,93,42,0.35),
              0 0 24px rgba(232,93,42,0.2),
              0 0 48px rgba(232,93,42,0.08);
}

/* --- Net pattern hover on cards --- */
.pricing-card:hover::after,
.testimonial-card:hover::after,
.contact-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='15,0 30,8 30,22 15,26 0,22 0,8' fill='none' stroke='%23E85D2A' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 30px 26px;
  opacity: 0.04;
  transition: opacity 300ms cubic-bezier(.2,.7,.2,1);
}

/* --- Dive save entrance for timeline items --- */
@keyframes diveSaveFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes diveSaveFromRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.timeline__item.reveal.is-in:nth-child(odd) {
  animation: diveSaveFromLeft 600ms cubic-bezier(.2,.7,.2,1) both;
}
.timeline__item.reveal.is-in:nth-child(even) {
  animation: diveSaveFromRight 600ms cubic-bezier(.2,.7,.2,1) both;
}

/* --- Counter number glow on hover --- */
.counter-band__item:hover .counter-val {
  text-shadow: 0 0 12px rgba(232,93,42,0.5), 0 0 24px rgba(232,93,42,0.25);
  transition: text-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.counter-val {
  transition: text-shadow 300ms cubic-bezier(.2,.7,.2,1);
}

/* --- Process step "whistle" hover left-border accent --- */
.process-step {
  border-left: 3px solid transparent;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms cubic-bezier(.2,.7,.2,1), border-left-color 300ms cubic-bezier(.2,.7,.2,1);
}
.process-step:hover {
  border-left-color: var(--accent);
}

/* --- FAQ expand ripple left-border accent --- */
.faq-item {
  border-left: 3px solid transparent;
  transition: border-left-color 360ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] {
  border-left-color: var(--accent);
}

@keyframes saveReach {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.sec__line {
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in .sec__line {
  animation: saveReach 600ms cubic-bezier(.2,.7,.2,1) forwards;
}
[style*="text-align:center"] .sec__line,
[style*="text-align: center"] .sec__line {
  transform-origin: center;
}

.drawer a:not(.nav-cta-mobile):hover,
.drawer a:not(.nav-cta-mobile).is-active {
  background: rgba(232,93,42,0.06);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured { animation: none; background-image: none; }
  .sec__line { animation: none; }
  .hero__badges span { transition: none; }
  .counter-band__item { transition: none; }
  .testimonial-card,
  .contact-card,
  .team-card,
  .process-step,
  .news-item,
  .drawer a { transition: none; }
  .hero__media img { animation: none; }
  /* New animation reduced-motion overrides */
  .btn-primary:hover,
  .btn-primary:focus-visible {
    box-shadow: 0 6px 20px rgba(232,93,42,0.35);
  }
  .pricing-card:hover::after,
  .testimonial-card:hover::after,
  .contact-card:hover::after {
    display: none;
  }
  .timeline__item.reveal.is-in:nth-child(odd),
  .timeline__item.reveal.is-in:nth-child(even) {
    animation: none;
  }
  .counter-band__item:hover .counter-val,
  .counter-val {
    transition: none;
  }
  .process-step {
    transition: none;
  }
  .faq-item {
    transition: none;
  }
  .nav-toggle {
    transition: none;
  }
  .nav-toggle span {
    transition: none;
    box-shadow: none;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .site-header, .drawer, .drawer-backdrop, .nav-toggle,
  .cookie-banner, .skip-link, .hero__catch, .ball-decor,
  .stitch-bg { display: none !important; }
  body { background: #fff; color: #111; font-size: 11pt; }
  main { padding-top: 0; }
  .sec { padding: 24pt 0; }
  a { color: #111; text-decoration: underline; }
  .hero { min-height: auto; }
  .hero__media, .hero__overlay { display: none; }
  .hero__content { position: static; padding: 24pt 0; }
  .hero__content h1 { color: #111; text-shadow: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* hero overflow guard */
.hero, .hero__inner, .hero__bg, .hero-bg { overflow: hidden; }
html, body { overflow-x: hidden; }

/* footer-contrast-guard */
.site-footer, footer, .footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.site-footer::before, footer::before, .footer::before {
  content:"";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 2px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 2px;
}

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* honeypot-hide */
.form-honeypot, input[name="web_site"], input[name="honeypot"], input[name="hp_url"], input[name="trap"], input[aria-hidden="true"][tabindex="-1"] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

