/* =========================================================================
   Vardiyam · marketing site
   Tek açık tema. Tek accent (turuncu). Gradyan yok.
   ========================================================================= */

/* ---------- Cal Sans (self-hosted) --------------------------------------
   İki subset: latin + latin-ext. Türkçe ğ/Ğ/ş/Ş/İ latin-ext'te,
   ı latin'de yaşıyor; ikisi birlikte tam Türkçe kapsama veriyor.        */

@font-face {
  font-family: "Cal Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cal-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Cal Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cal-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ------------------------------------------------------ */

:root {
  /* Renk. Tek accent, tek hue ailesi. */
  --paper: #ffffff;
  --paper-warm: #fbf8f5;
  --paper-deep: #f6f0ea;
  --ink: #1c1815; /* sıcak off-black, saf siyah değil */
  --ink-soft: #6b6058; /* 6.1:1 on paper */
  --ink-faint: #7a6f66; /* 4.9:1 on paper, placeholder tabanı */
  --accent: #ff4000; /* YC turuncusu, cırt marka rengi */
  --accent-ink: #ff4000; /* Tüm sitedeki turuncular cırt canlı turuncu (#ff4000) */
  --accent-wash: #fff2ed;
  --line: #ece5df;
  --line-strong: #ddd2c9;

  /* Tipografi */
  --font-display: "Cal Sans", ui-sans-serif, system-ui, sans-serif;
  --font-text: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Easing. Yerleşik CSS easing'leri fazla yumuşak; bunlar daha kararlı. */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Ritim */
  --shell: 1180px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4.5rem, 11vw, 8.5rem);

  /* Gölge: nötr siyah değil, zemin tonuna çalan sıcak gölge */
  --shadow-sm: 0 1px 2px rgba(60, 38, 26, 0.06),
    0 4px 12px rgba(60, 38, 26, 0.05);
  --shadow-md: 0 2px 4px rgba(60, 38, 26, 0.05),
    0 12px 32px rgba(60, 38, 26, 0.08);
  --shadow-accent: 0 2px 6px rgba(255, 64, 0, 0.22),
    0 10px 24px rgba(255, 64, 0, 0.2);

  /* Köşe yarıçapı: tek ölçek. Butonlar pill, yüzeyler 16, girdiler 10. */
  --r-surface: 16px;
  --r-input: 10px;
  --r-pill: 999px;
}

/* ---------- Reset ------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  /* Cal Sans display için: büyüdükçe tracking negatife, leading sıkı */
  letter-spacing: -0.021em;
  line-height: 1.08;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--accent-wash);
  color: var(--accent-ink);
}

/* ---------- Layout ------------------------------------------------------ */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--compact {
  padding-block: clamp(1.5rem, 3.5vw, 2.5rem);
}

.section--warm {
  background: var(--paper-warm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-input) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Tipografi ölçeği -------------------------------------------- */

.h-display {
  font-size: clamp(2.3rem, 4.9vw, 3.5rem);
  letter-spacing: -0.028em;
  line-height: 1.06;
}

.h-section {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.024em;
  line-height: 1.1;
}

.h-card {
  font-size: 1.16rem;
  letter-spacing: -0.012em;
  line-height: 1.3;
}

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

.body-text {
  color: var(--ink-soft);
  max-width: 62ch;
}

.eyebrow {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}

/* ---------- Butonlar ----------------------------------------------------
   Geri bildirim basma anında (pointer-down), bırakışta değil.           */

/* Ana buton dolgusu gerçek YC turuncusu (--accent, #ff4000). Beyaz metinle
   3.5:1 oranı yalnızca "büyük metin" eşiğinde (≥18.6px + kalın) AA geçiyor,
   bu yüzden punto ve ağırlık bilinçli olarak büyük tutuluyor. */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap; /* CTA hiçbir zaman iki satıra düşmez */
  padding: 0.92rem 1.85rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 1.19rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: transform 150ms var(--ease-out), background-color 180ms ease,
    box-shadow 180ms ease;
}

.btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #e53900;
    box-shadow: 0 3px 8px rgba(255, 64, 0, 0.28),
      0 14px 30px rgba(255, 64, 0, 0.24);
  }
}

/* Küçük buton (nav) */
.btn--sm {
  --btn-bg: var(--accent);
  padding: 0.62rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

@media (hover: hover) and (pointer: fine) {
  .btn--sm:hover {
    background: #e53900;
  }
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line-strong);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background: var(--paper-warm);
    box-shadow: none;
  }
}

/* ---------- 2026 Floating Glass Navbar -------------------------------- */

/* Hero üzerindeyken (kaydırılmamışken) nav geniş ve tamamen şeffaf; metin
   fotoğrafın üstünde okunsun diye beyaz. Kaydırılınca daralıp opak
   cam-pil haline dönüyor, metin de koyu tona geçiyor. */
.nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 0.85rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  --nav-fg: #ffffff;
  --nav-fg-soft: rgba(255, 255, 255, 0.86);
  --nav-fg-hover-bg: rgba(255, 255, 255, 0.16);
  --nav-accent: rgba(255, 255, 255, 0.8);
}

.nav-floating {
  pointer-events: auto;
  max-width: min(94vw, 1320px);
  transition: max-width 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-floating__inner {
  height: 60px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.4rem 0.6rem 0.4rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: none;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper[data-scrolled="true"] {
  position: fixed;
  padding-block: 0.5rem;
  --nav-fg: var(--ink);
  --nav-fg-soft: var(--ink-soft);
  --nav-fg-hover-bg: #ffffff;
  --nav-accent: var(--accent);
}

.nav-wrapper[data-scrolled="true"] .nav-floating {
  max-width: min(92vw, 1040px);
}

.nav-wrapper[data-scrolled="true"] .nav-floating__inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  box-shadow:
    0 16px 36px -6px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(255, 64, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(236, 229, 223, 0.9);
}

/* Brand Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  color: var(--nav-fg, var(--ink));
  padding-right: 0.5rem;
  transition: color 300ms ease;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff5500 0%, #ff4000 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 64, 0, 0.32);
  transition: transform 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand__mark {
    transform: scale(1.06) rotate(-3deg);
  }
}

.brand__name {
  font-weight: 500;
  color: inherit;
}

.brand__tld {
  color: var(--nav-accent, var(--accent));
  font-weight: 500;
  transition: color 300ms ease;
}

.mobile-menu-toggle {
  display: none;
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  padding: 0;
  border-radius: 999px;
  border: none;
}

.nav__link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nav-fg-soft, var(--ink-soft));
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:hover {
    color: var(--nav-fg, var(--ink));
    background: var(--nav-fg-hover-bg, #ffffff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

/* Actions Group */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #00875a;
  background: #e6f9f0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 107, 0.2);
}

.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a86b;
  box-shadow: 0 0 0 2px rgba(0, 168, 107, 0.25);
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 168, 107, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); }
}

/* 2026 Floating CTA Button (Black CTA) */
.btn--nav-cta {
  background: #f4f4f4;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}

.btn__icon-arrow {
  transition: transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn--nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(4, 4, 4, 0.602);
    background: #f5f3f1;
  }
  .btn--nav-cta:hover .btn__icon-arrow {
    transform: translateX(3px);
  }
}

.btn--nav-cta:active {
  transform: scale(0.97);
}

@media (max-width: 860px) {
  .nav__status-pill,
  .nav__links,
  .nav__actions {
    display: none !important;
  }
  .nav-floating__inner {
    justify-content: center;
    padding-inline: 1rem;
  }
  .brand {
    font-size: 1.65rem;
    padding-right: 0;
    margin: 0 auto;
  }
  .brand__mark {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 1.45rem;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 800;
  min-height: clamp(450px, 48vw, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::after {
  display: none !important;
}

/* Yalnızca mobilde kullanılan bulanık zemin katmanı; masaüstünde görsel
   zaten kutuyu tam kaplıyor, bu katmana gerek yok. */
.hero-bg__blur {
  display: none;
}

.hero-bg__img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.png');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(5.5rem, 9vw, 8.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

/* Fotoğraf zemin canlı turuncu; kontrast gradyan/panel yerine doğrudan
   beyaz ağırlıklı tipografiyle sağlanıyor. */
.hero__content .eyebrow {
  color: #ffffff;
}

.hero__title {
  margin-bottom: 1.35rem;
  color: #ffffff;
}

/* Vurgu ikinci yarıyı ayırıyor: renk değil, ağırlık farkıyla (aynı beyaz,
   daha kalın). Turuncu zeminde turuncu vurgu görünmez olurdu. */
.hero__title em {
  font-style: normal;
  font-weight: 200;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding-left: 0.02em;
}

.hero__lede {
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__note {
  margin-top: 1.15rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.btn--hero {
  background: linear-gradient(135deg, #ff5500 0%, #ff3300 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(255, 64, 0, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  margin-top: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(255, 64, 0, 0.5);
    background: linear-gradient(135deg, #ff661a 0%, #ff4400 100%);
  }
}

/* 3 Aşamalı Akış: 1 İlan Aç - 2 Personelleri Seç - 3 Süreci Yönet */
.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.hero-flow__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 200ms ease;
}

.hero-flow__item:hover {
  transform: translateY(-2px);
}

.hero-flow__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 0.9;
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
}

.hero-flow__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-flow__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hero-flow__desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  margin: 0;
}

/* Scroll Indicator placed inline under flow */
.hero-scroll-wrap {
  margin-top: 1rem;
}

.hero-scroll-indicator {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 250ms ease;
  animation: heroScrollBounceInline 2.5s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.45);
}

@keyframes heroScrollBounceInline {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(2px);
  }
}

.hero-scroll-indicator__icon {
  transition: transform 200ms ease;
}

@keyframes heroScrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(6px);
  }
  60% {
    transform: translateX(-50%) translateY(3px);
  }
}

/* Hero sahnesi: bir ana obje, iki uydu. Her biri farklı fazda süzülür. */
.scene {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.scene__plate {
  position: absolute;
  inset: 9% 6% 7% 6%;
  border-radius: 34% 66% 58% 42% / 46% 38% 62% 54%;
  background: var(--accent-wash);
}

.scene__main,
.scene__sat {
  position: absolute;
  filter: drop-shadow(0 18px 28px rgba(60, 38, 26, 0.18));
  will-change: transform;
}

.scene__main {
  width: 62%;
  left: 19%;
  top: 17%;
  animation: float 7s var(--ease-in-out) infinite;
}

.scene__sat {
  width: 27%;
}

.scene__sat--a {
  left: 0;
  top: 46%;
  animation: float 6.2s var(--ease-in-out) infinite;
  animation-delay: -2.1s;
}

.scene__sat--b {
  right: 1%;
  top: 12%;
  width: 24%;
  animation: float 7.8s var(--ease-in-out) infinite;
  animation-delay: -4.4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -13px, 0);
  }
}

@media (max-width: 900px) {
  /* Mobil hero: figür üstte serbest kalsın diye kısa ve öz. Lede ve alt
     not masaüstünde detay veriyor ama mobilde figürün üstüne yığılıp
     okumayı zorlaştırıyordu; kaldırılıyor. İçerik fotoğrafın alt
     kısmına, kişinin daha sade duran gövde/pantolon alanına toplanıyor. */
  .hero-section {
    aspect-ratio: auto;
    min-height: 100svh;
    overflow: visible;
    align-items: flex-end;
  }

  /* Mobil için hazırlanmış portre kadraj tek başına hero'yu doldurur;
     ek bir bulanık katman veya küçültme, görselde şerit oluşturmaz. */
  .hero-bg__blur {
    display: none;
  }

  /* Portre dosyası kişinin başı için üstte doğal boşluk bırakır. */
  .hero-bg__img {
    background-image: url('../assets/hero-bg-mobile.png');
    background-position: right top;
    background-size: auto 101%;
    background-color: #f24a00;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block !important;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.46) 32%,
      rgba(0, 0, 0, 0) 66%
    );
  }

  .hero {
    padding-top: 0;
    padding-bottom: 2.25rem;
  }

  .brand {
    font-size: 1.72rem;
  }

  .hero__content {
    max-width: none;
    margin-inline: 0;
    padding: 0;
    background: transparent;
  }

  .hero__content .eyebrow {
    display: none;
  }

  .hero__title {
    margin-bottom: 0.85rem;
  }

  .hero__lede,
  .hero__note {
    display: none;
  }

  /* Üç adım mobilde de aynı satırda: numara ve başlık yan yana,
     açıklama hemen altında. */
  .hero-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .hero-flow__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    min-width: 0;
  }

  .hero-flow__num {
    font-size: 1.7rem;
    line-height: 1;
  }

  .hero-flow__info {
    min-width: 0;
    gap: 0.15rem;
  }

  .hero-flow__title {
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .hero-flow__desc {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .hero-scroll-indicator {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .nav-floating {
    position: relative;
  }

  .nav-floating__inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding-inline: 0.25rem;
  }

  .brand {
    margin: 0;
    padding-right: 0;
    grid-column: 2;
    justify-self: center;
  }

  .mobile-menu-toggle {
    grid-column: 3;
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nav-fg);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-floating[data-menu-open="true"] .mobile-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-floating[data-menu-open="true"] .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-floating[data-menu-open="true"] .mobile-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-floating[data-menu-open="true"] .nav__links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.55rem;
    border-radius: 14px;
    background: rgba(20, 12, 8, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  }

  .nav-floating[data-menu-open="true"] .nav__link {
    color: #ffffff;
    padding: 0.75rem 0.85rem;
  }
}

/* ---------- Problem -----------------------------------------------------
   Kart yok. Boşluk ve ince ayraçlarla gruplanmış tanıma listesi.        */

.problem__head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Ölçü başlığın kendi punto'suna göre hesaplansın diye kısıt h2'de duruyor;
   sarmalayıcıya ch vermek 16px gövde fontuyla hesaplanıp başlığı eziyor. */
.problem__head .h-section {
  max-width: 22ch;
}

.recognise {
  display: grid;
  gap: 0;
}

.recognise__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding-block: 1.55rem;
  border-top: 1px solid var(--line);
}

.recognise__item:last-child {
  border-bottom: 1px solid var(--line);
}

.recognise__icon {
  width: 26px;
  height: 26px;
  margin-top: 0.2rem;
  color: var(--accent);
  flex: 0 0 auto;
}

.recognise__text {
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  line-height: 1.55;
  max-width: 60ch;
}

@media (min-width: 800px) {
  .recognise {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
  }
  /* İki kolonda üst çizgiler hizalı kalsın diye alt sınır tek seferde */
  .recognise__item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- Status quo --------------------------------------------------
   Anlatı akışı. Sol sütun başlık + metinler, sağ sütun saf CSS iPhone mockup. */

.status__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

.status__content {
  display: flex;
  flex-direction: column;
}

.chaos-head {
  margin-bottom: 1.25rem;
}

.status__content .h-section {
  margin-bottom: 0;
}

.status__content .body-text + .body-text {
  margin-top: 1rem;
}

.chaos-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.chaos-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.chaos-tag::before {
  content: "✕";
  font-size: 0.7rem;
  font-weight: 700;
}

.status__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0;
}

.status__visual::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(closest-side, rgba(255, 64, 0, 0.16), rgba(255, 64, 0, 0) 72%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.status__visual .device-iphone {
  position: relative;
  z-index: 1;
}

/* Realistic iPhone Titanium Body */
.device-iphone {
  position: relative;
  width: 100%;
  max-width: 290px;
  background: linear-gradient(145deg, #2c2d33 0%, #151619 100%);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 25px 50px -12px rgba(28, 24, 21, 0.22),
    0 10px 20px -5px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.15),
    inset 0 0 0 3px rgba(0, 0, 0, 0.4);
}

/* Hardware Buttons */
.device-iphone__btn {
  position: absolute;
  background: linear-gradient(to right, #3a3b42, #1f2024);
  border-radius: 2px;
}
.device-iphone__btn--volume-up {
  left: -4px;
  top: 95px;
  width: 4px;
  height: 34px;
}
.device-iphone__btn--volume-down {
  left: -4px;
  top: 138px;
  width: 4px;
  height: 34px;
}
.device-iphone__btn--power {
  right: -4px;
  top: 110px;
  width: 4px;
  height: 52px;
}

/* Screen */
.device-iphone__screen {
  position: relative;
  background: #ffffff;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  user-select: none;
}

/* Dynamic Island */
.device-iphone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.device-iphone__camera {
  width: 10px;
  height: 10px;
  background: #0d0d1a;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

/* iOS Status Bar */
.ios-status-bar {
  height: 38px;
  padding: 10px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
  font-size: 0.72rem;
  font-weight: 600;
  color: #000000;
  z-index: 5;
}
.ios-status-bar__icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000000;
}

/* WhatsApp iOS App Header */
.wa-app-header {
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5ea;
  padding: 6px 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.wa-app-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-back-chevron {
  width: 10px;
  height: 16px;
}
.wa-avatar-group {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.wa-unread-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 999px;
  background: #ff3b30;
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  box-shadow: 0 0 0 2px #f6f6f6;
  transition: transform 0.18s ease;
}
.wa-unread-badge.is-bump {
  transform: scale(1.28);
}
.wa-chat-meta {
  display: flex;
  flex-direction: column;
}
.wa-chat-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.15;
}
.wa-chat-status {
  font-size: 0.62rem;
  color: #8e8e93;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 135px;
}
.wa-app-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Chat Canvas & Background */
.wa-chat-canvas {
  flex: 1;
  background-color: #efeae2;
  background-image:
    radial-gradient(#d1c7bd 0.75px, transparent 0.75px);
  background-size: 10px 10px;
  padding: 10px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.wa-chat-canvas::-webkit-scrollbar {
  display: none;
}

/* Chaos loop: JS her mesajı sırayla akışa ekler; henüz sırası gelmeyenler
   layout'tan tamamen çıkar (display:none) ki scroll yüksekliği yalnız
   o ana kadar gelen mesajları saysın, boşluğa kaymasın. */
.wa-chat-canvas.is-armed .js-msg {
  display: none;
}
.wa-chat-canvas.is-armed .js-msg.is-pending {
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}
.wa-chat-canvas.is-armed .js-msg.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-msg--jitter.is-visible {
  animation: wa-jitter 0.42s ease;
}
@keyframes wa-jitter {
  0% { transform: translateX(0) scale(1); }
  25% { transform: translateX(-3px) scale(1.01); }
  50% { transform: translateX(3px) scale(1.01); }
  75% { transform: translateX(-1.5px) scale(1); }
  100% { transform: translateX(0) scale(1); }
}

.wa-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 3px;
}
.wa-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9aa3a8;
  animation: wa-typing-bounce 1s infinite ease-in-out;
}
.wa-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes wa-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Date Pill */
.wa-date-pill {
  text-align: center;
  margin-block: 2px 4px;
}
.wa-date-pill span {
  background: rgba(255, 255, 255, 0.9);
  color: #54656f;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2.5px 9px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.02em;
}

/* WhatsApp Speech Bubbles */
.wa-bubble {
  max-width: 86%;
  padding: 6px 8px 4px;
  font-size: 0.73rem;
  line-height: 1.32;
  position: relative;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}
.wa-bubble--in {
  background: #ffffff;
  color: #111b21;
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
}
.wa-bubble--out {
  background: #e7ffdb;
  color: #111b21;
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}

.wa-sender-name {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #128c7e;
  margin-bottom: 2px;
}

.wa-text {
  margin: 0;
  color: #111b21;
}

.wa-time-stamp {
  display: block;
  float: right;
  font-size: 0.57rem;
  color: #667781;
  margin-left: 6px;
  margin-top: 2px;
}

.wa-double-check {
  color: #53bdeb;
  font-weight: 700;
}

/* Bottom Input Bar */
.wa-input-footer {
  background: #f6f6f6;
  border-top: 1px solid #e5e5ea;
  padding: 6px 10px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-plus-btn {
  font-size: 1.25rem;
  color: #007aff;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.wa-text-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid #d1d1d6;
  border-radius: 18px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
}

.wa-placeholder-text {
  font-size: 0.72rem;
  color: #c7c7cc;
}

.wa-camera-icon,
.wa-mic-icon {
  cursor: pointer;
  flex-shrink: 0;
}

/* iOS Bottom Indicator Bar */
.ios-home-bar {
  width: 110px;
  height: 4px;
  background: #000000;
  border-radius: 2px;
  margin: 4px auto 3px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .status__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Solution Section & Full Orange Gradient Box ----------------- */

.solution-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.solution-gradient-box {
  width: 100%;
  background: linear-gradient(145deg, #ff5500 0%, #ff4000 50%, #e63b00 100%);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(255, 64, 0, 0.28), 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-gradient-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.35), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 160, 100, 0.25), transparent 65%);
  pointer-events: none;
}

.solution-header {
  max-width: 780px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 2;
}

.solution-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.solution-subtitle {
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* Step Storytelling Inside Orange Gradient */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 6.5rem);
  position: relative;
  z-index: 2;
}

.story-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 861px) {
  .story-step--reverse .story-step__content {
    order: 2;
  }
  .story-step--reverse .story-step__visual {
    order: 1;
  }
}

.story-step__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.story-step__title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: #ffffff;
  margin-block: 0.2rem 0.85rem;
  line-height: 1.25;
}

.story-step__text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.story-step__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.story-step__bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.93rem;
  color: #ffffff;
  font-weight: 500;
}

.story-step__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.25);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
}

/* Pristine High-Contrast White Mock UI Cards */
.mock-card {
  background: #ffffff;
  color: #1c1815;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

@media (hover: hover) and (pointer: fine) {
  .mock-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32), 0 6px 16px rgba(0, 0, 0, 0.15);
  }
}

.mock-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.mock-card__badge {
  background: var(--accent-wash);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.mock-card__badge--success {
  background: #e6f9f0;
  color: #00a86b;
}

.mock-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-card__meta-row {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.mock-role-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.mock-role-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper-warm);
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.86rem;
}

.mock-role-info {
  display: flex;
  flex-direction: column;
}

.mock-role-info strong {
  color: var(--ink);
}

.mock-role-info span {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.mock-role-price {
  font-weight: 700;
  color: var(--accent);
}

.mock-card__btn {
  background: var(--accent);
  color: #ffffff;
  text-align: center;
  padding: 0.72rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 64, 0, 0.2);
}

.mock-card__btn--excel {
  background: #107c41;
  box-shadow: 0 4px 12px rgba(16, 124, 65, 0.2);
}

/* Link Box */
.mock-link-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper-warm);
  border: 1px dashed var(--accent);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.mock-link-box code {
  color: var(--ink);
  font-weight: 600;
}

.mock-link-copy {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Progress */
.mock-progress-wrap {
  margin-bottom: 1rem;
}

.mock-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.mock-progress-bar {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #ff6b3d 100%);
  border-radius: 999px;
}

.mock-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d9381e;
  background: #fff0f0;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9381e;
}

.mock-applicant-preview {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-applicant-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mock-avatar--purple {
  background: #8a2be2;
}

.mock-applicant-item div {
  display: flex;
  flex-direction: column;
}

.mock-applicant-item span {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* Selection List */
.mock-selection-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.mock-select-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--paper-warm);
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  font-size: 0.84rem;
}

.mock-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.mock-checkbox--empty {
  background: transparent;
  border: 2px solid var(--line-strong);
}

.mock-select-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mock-select-info span {
  font-size: 0.73rem;
  color: var(--ink-soft);
}

.mock-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.mock-tag--green {
  background: #e6f9f0;
  color: #00a86b;
}

.mock-tag--orange {
  background: var(--accent-wash);
  color: var(--accent);
}

.mock-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 600;
}

.mock-btn-sm {
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
}

/* Stats Grid */
.mock-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mock-stat-box {
  background: var(--paper-warm);
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mock-stat-box span {
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.mock-stat-box strong {
  font-size: 0.82rem;
  color: var(--ink);
}

.mock-timesheet-mini {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.mock-ts-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  background: var(--paper-warm);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .story-step {
    grid-template-columns: 1fr;
  }
  .mock-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Nasıl çalışır (bento) ---------------------------------------
   4 içerik → tam 4 hücre. Boş hücre yok, ritim asimetrik.               */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border-radius: var(--r-surface);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .step:hover .step__art {
    transform: scale(1.05) rotate(-3deg);
  }
}

/* Geniş hücreler grid'e ritim veriyor: 1 geniş, 2 dar, 1 geniş.
   Dört içerik dört hücreye oturuyor, boş hücre kalmıyor. */
.step--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* Dolgu ayrı bir sınıf: her geniş hücre aynı görünmesin */
.step--tint {
  background: var(--accent-wash);
  border-color: #ffe0d6;
}

.step--wide .step__body {
  flex: 1;
}

/* İkonlar artık kendi doğal renklerinde (turuncuya boyanmıyor), o yüzden
   gölge de nötr sıcak-gri: hangi rengin ikonu olursa olsun uyuyor. */
.step__art {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(60, 38, 26, 0.16));
  transition: transform 320ms var(--ease-out);
}

.step--wide .step__art {
  width: clamp(96px, 14vw, 130px);
  height: auto;
}

.step__title {
  margin-bottom: 0.3rem;
}

.step__text {
  color: var(--ink-soft);
  font-size: 0.965rem;
  max-width: 46ch;
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step--wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Karşılaştırma ----------------------------------------------- */

.compare {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  overflow: hidden;
  background: var(--paper);
}

.compare__row {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) 1fr 1fr;
  align-items: stretch;
}

.compare__row + .compare__row {
  border-top: 1px solid var(--line);
}

.compare__cell {
  padding: 1.15rem clamp(1rem, 2vw, 1.5rem);
  font-size: 0.965rem;
  line-height: 1.5;
}

.compare__label {
  font-weight: 600;
  color: var(--ink);
}

.compare__old {
  color: var(--ink-soft);
}

/* Kazanan sütun sıcak zeminle öne çıkıyor, tüm satırlar boyunca sürüyor */
.compare__new {
  background: var(--accent-wash);
  color: var(--ink);
  font-weight: 500;
}

.compare__head .compare__cell {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding-block: 0.95rem;
  background: var(--paper-deep);
  color: var(--ink);
}

/* Başlık metni bu punto/kalınlıkta büyük-metin eşiğini geçmiyor,
   o yüzden --accent değil AA-güvenli --accent-ink kullanılıyor. */
.compare__head .compare__new {
  background: var(--accent-ink);
  color: #fff;
}

@media (max-width: 780px) {
  .compare__head {
    display: none;
  }
  .compare__row {
    grid-template-columns: 1fr;
    padding-block: 0.4rem;
  }
  .compare__cell {
    padding-block: 0.5rem;
  }
  .compare__label {
    padding-top: 1.1rem;
    font-size: 1.02rem;
  }
  /* Mobilde sütun başlığı kaybolduğu için her hücre kendi etiketini taşır */
  .compare__old::before,
  .compare__new::before {
    content: attr(data-label);
    display: block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 0.15rem;
  }
  .compare__new {
    border-radius: 10px;
    margin: 0.35rem clamp(1rem, 2vw, 1.5rem) 1rem;
    padding-inline: 1rem;
  }
  .compare__new::before {
    color: var(--accent-ink);
  }
}

/* ---------- Çalışan şeridi ---------------------------------------------- */

.band {
  background: linear-gradient(135deg, #ff5500 0%, #ff4000 50%, #e63900 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: clamp(1.6rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 0 16px 40px rgba(255, 64, 0, 0.26), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.3), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}

.band__art {
  width: clamp(72px, 11vw, 100px);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
  position: relative;
  z-index: 1;
}

.band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  margin-bottom: 0.4rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.band__text {
  color: rgba(255, 255, 255, 0.94);
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .band {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- Form (Compact & Icon-Enhanced) ------------------------------ */

.signup {
  background: var(--paper-warm);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.signup__illustration {
  margin-top: 1.25rem;
  width: clamp(100px, 16vw, 140px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(255, 64, 0, 0.16));
}

.signup__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.form--compact {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 16px 40px rgba(60, 38, 26, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}

.field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.field__icon {
  position: absolute;
  left: 12px;
  color: var(--ink-soft);
  opacity: 0.55;
  pointer-events: none;
  transition: color 180ms ease, opacity 180ms ease;
  z-index: 2;
}

.field input,
.field select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  background: var(--paper);
  font-size: 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field__input-wrap input,
.field__input-wrap select {
  padding-left: 2.35rem !important;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236b6058' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
  padding-right: 2.2rem;
}

.field input::placeholder {
  color: var(--ink-faint);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 64, 0, 0.14);
}

.field__input-wrap:focus-within .field__icon {
  color: var(--accent);
  opacity: 1;
}

.field__error {
  font-size: 0.8rem;
  color: var(--accent-ink);
  font-weight: 500;
  min-height: 0;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.field[data-invalid="true"] .field__error {
  opacity: 1;
  transform: translateY(0);
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] select {
  border-color: var(--accent-ink);
}

.btn--submit-full {
  width: 100%;
  padding: 0.75rem 1.2rem;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  border: none;
}

.form__foot {
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 0.2rem;
}



.form__status {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent-wash);
  padding: 0.8rem 1rem;
  border-radius: var(--r-input);
  display: none;
}

.form__status[data-visible="true"] {
  display: block;
  animation: pop-in 320ms var(--ease-out) both;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .signup__grid,
  .status__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .field__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- SSS --------------------------------------------------------- */

.faq {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 780px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item:first-child {
  border-top: 1px solid var(--line);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  letter-spacing: -0.014em;
  line-height: 1.35;
  color: var(--ink);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq__trigger:hover {
    color: var(--accent-ink);
  }
}

.faq__sign {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--accent);
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 300ms var(--ease-out);
}

.faq__sign::after {
  transform: rotate(90deg);
}

.faq__trigger[aria-expanded="true"] .faq__sign::after {
  transform: rotate(0deg);
}

/* grid-template-rows 0fr→1fr: sabit yükseklik varsaymadan animasyon */
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms var(--ease-out);
}

.faq__item[data-open="true"] .faq__panel {
  grid-template-rows: 1fr;
}

.faq__panel > div {
  overflow: hidden;
}

.faq__answer {
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
  max-width: 68ch;
}

.faq__answer p + p {
  margin-top: 0.85rem;
}

/* ---------- Footer ------------------------------------------------------ */

.footer {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border-radius: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.5rem) 0 0;
  padding-block: clamp(3.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: 0;
}

.footer .brand__name {
  color: #ffffff;
}

.footer .brand__tld {
  color: rgba(255, 255, 255, 0.75);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  max-width: 34ch;
  margin-top: 0.85rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  transition: all 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer__links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
  }
}

.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  line-height: 1.55;
}

.footer__legal p {
  max-width: 74ch;
}

.footer__pending {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 720px) {
  .footer__pending {
    white-space: normal;
  }
}

/* ---------- Scroll reveal -----------------------------------------------
   IntersectionObserver [data-reveal]'ı açar. JS kapalıysa içerik görünür
   kalır (aşağıdaki .no-js kuralı), yani içerik JS'e bağımlı değil.      */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.js [data-reveal][data-shown="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- Erişilebilirlik --------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Hareket kalkıyor, anlam taşıyan opaklık geçişleri kısa kalıyor */
  .scene__main,
  .scene__sat {
    animation: none !important;
  }

  .js [data-reveal] {
    transform: none;
  }

  .js [data-reveal][data-shown="true"] {
    transition: opacity 200ms ease;
    transition-delay: 0ms;
  }

  .btn:active,
  .step:hover,
  .step:hover .step__art {
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 180ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #4a4139;
    --ink-faint: #574d45;
    --line: #c9bdb3;
    --line-strong: #a9998c;
  }
  .nav {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media print {
  .nav,
  .scene,
  .form {
    display: none;
  }
}
