/* ============================================================
   RESOFTWAY — ANA STİL DOSYASI
   Renk / tipografi değişkenleri için :root bloğunu düzenleyin.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* --- Renkler (beyaz / mavi tonları) --- */
  --white: #ffffff;
  --bg-soft: #f4f8ff;
  --bg-soft-2: #e8f1ff;
  --blue-primary: #0b5fff;
  --blue-primary-dark: #0a4fd6;
  --blue-deep: #0a2a57;
  --blue-accent: #59b4ff;
  --text-dark: #131c33;
  --text-muted: #5b6b87;
  --border-soft: #dbe7fb;
  --success: #1fae6b;
  --wait: #e79a1a;

  --radius-card: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 16px 40px rgba(10, 42, 87, 0.08);
  --shadow-hover: 0 20px 48px rgba(11, 95, 255, 0.16);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-primary);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color .18s ease;
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 95, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 95, 255, 0.34);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--blue-deep);
}

.btn-ghost:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

/* ============================================================
   HEADER
   ============================================================ */
.rw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.rw-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rw-logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-deep);
}

.rw-logo__dot {
  color: var(--blue-primary);
}

.rw-nav ul {
  display: flex;
  gap: 6px;
}

.rw-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 100px;
  transition: color .15s ease, background .15s ease;
}

.rw-nav a:hover {
  color: var(--blue-deep);
  background: var(--bg-soft);
}

.rw-nav a.is-active {
  color: var(--blue-primary);
  background: var(--bg-soft-2);
}

.rw-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  cursor: pointer;
}

.rw-menu-btn span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--blue-deep);
  transition: transform .2s ease, opacity .2s ease;
}

.rw-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rw-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.rw-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rw-nav-mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}

.rw-nav-mobile.is-open {
  max-height: 320px;
}

.rw-nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 8px 28px 16px;
}

.rw-nav-mobile a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-soft-2);
}

.rw-nav-mobile a.is-active {
  color: var(--blue-primary);
}

@media (max-width: 860px) {
  .rw-nav {
    display: none;
  }

  .rw-menu-btn {
    display: flex;
  }

  .rw-nav-mobile {
    display: block;
  }
}

/* ============================================================
   HIZLI ERİŞİM BARI (quick-nav) — Hakkımızda / Ürünlerimiz vb. için
   ============================================================ */
.quick-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.quick-nav__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  flex-wrap: wrap;
}

.quick-nav__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 4px;
  text-transform: uppercase;
}

.quick-nav__pill {
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  color: var(--blue-deep);
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}

.quick-nav__pill:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-1px);
}

/* ============================================================
   ÜRÜN TANITIM KARTI (home page teaser)
   ============================================================ */
.product-teaser {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.product-teaser__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-soft-2);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-teaser__text {
  flex: 1;
  min-width: 240px;
}

.product-teaser__text h2 {
  font-size: 24px;
  color: var(--blue-deep);
  margin: 10px 0 8px;
}

.product-teaser__text p {
  color: var(--text-muted);
  font-size: 15px;
}

.product-teaser__btn {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .product-teaser {
    padding: 28px;
  }
}

/* ============================================================
   HERO GÖRSELİ — Genel uygulama kabuğu (app-shell) mockup'ı
   Tek bir ürüne değil, genel bir yazılım platformuna işaret eder
   ============================================================ */
.app-shell {
  width: 100%;
  max-width: 420px;
}

.app-shell__body {
  display: flex;
  min-height: 260px;
}

.app-shell__nav {
  width: 132px;
  flex-shrink: 0;
  background: var(--bg-soft);
  border-right: 1px solid var(--border-soft);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-shell__nav-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 10px;
  border-radius: 8px;
}

.app-shell__nav-item.is-active {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: 0 2px 6px rgba(11, 95, 255, 0.10);
}

.app-shell__content {
  flex: 1;
  padding: 20px;
}

.skeleton-line {
  height: 9px;
  border-radius: 100px;
  background: var(--bg-soft-2);
  margin-bottom: 12px;
}

.skeleton-line.w-60 {
  width: 60%;
}

.skeleton-line.w-40 {
  width: 40%;
}

.skeleton-line.w-80 {
  width: 80%;
}

.skeleton-line.w-50 {
  width: 50%;
}

.app-shell__cards {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.app-shell__card {
  flex: 1;
  height: 54px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
}

.app-shell__card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-wait {
  background: var(--wait);
}

.dot-progress {
  background: var(--blue-primary);
}

.dot-done {
  background: var(--success);
}

/* ============================================================
   SIGNATURE COMPONENT — İş emri "bilet / ticket" kartı
   ============================================================ */
.ticket {
  position: relative;
  display: flex;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ticket__stub {
  position: relative;
  width: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
}

.ticket__stub span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.ticket__perf {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  border-right: 2px dashed rgba(255, 255, 255, 0.35);
}

.ticket__perf::before,
.ticket__perf::after {
  content: "";
  position: absolute;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-soft);
}

.ticket__perf::before {
  top: -9px;
}

.ticket__perf::after {
  bottom: -9px;
}

.ticket__body {
  padding: 22px 26px;
  flex: 1;
}

/* Hero durum bileti */
.hero-ticket {
  max-width: 380px;
}

.hero-ticket .ticket__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-ticket__id {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
}

.hero-ticket__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--blue-deep);
}

.hero-ticket__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
  width: fit-content;
  transition: background .3s ease, color .3s ease;
}

.hero-ticket__status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transition: background .3s ease;
}

.hero-ticket__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-soft);
  padding-top: 12px;
}

.status-wait {
  background: #fff4e2;
  color: #a5680a;
}

.status-wait .dot {
  background: var(--wait);
}

.status-progress {
  background: #e8f1ff;
  color: var(--blue-primary-dark);
}

.status-progress .dot {
  background: var(--blue-primary);
}

.status-done {
  background: #e7f8ef;
  color: #16875a;
}

.status-done .dot {
  background: var(--success);
}

@media (prefers-reduced-motion: reduce) {

  .hero-ticket__status,
  .hero-ticket__status .dot {
    transition: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 84px 0 96px;
  background:
    radial-gradient(900px 460px at 82% -10%, var(--bg-soft-2) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-primary);
}

.hero p.lead {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -30px -10px;
  background: radial-gradient(closest-side, rgba(11, 95, 255, 0.10), transparent 75%);
  z-index: 0;
}

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

  .hero h1 {
    font-size 34px;
    font-size: 34px;
  }

  .hero {
    padding: 56px 0 64px;
  }
}

/* ============================================================
   GENEL BÖLÜM DÜZENİ
   ============================================================ */
.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section__head {
  max-width: 620px;
  margin-bottom: 48px;
}

.section__head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-top: 14px;
}

.section__head p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .section {
    padding: 60px 0;
  }

  .section__head h2 {
    font-size: 26px;
  }
}

/* Kart grid (genel) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.value-card {
  text-align: center;
  padding: 32px 22px;
}

.value-card .ico {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.value-card h3 {
  font-size: 15.5px;
}

.value-card p {
  font-size: 13px;
}

/* ============================================================
   ÜRÜN KARTLARI (bilet temalı)
   ============================================================ */
.product-card.ticket {
  flex-direction: column;
}

.product-card .ticket__stub {
  width: 100%;
  height: 54px;
  flex-direction: row;
}

.product-card .ticket__stub span {
  writing-mode: horizontal-tb;
  transform: none;
}

.product-card .ticket__perf {
  right: 0;
  left: 0;
  bottom: 0;
  top: auto;
  height: 1px;
  border-right: none;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
}

.product-card .ticket__perf::before,
.product-card .ticket__perf::after {
  top: auto;
  right: auto;
}

.product-card .ticket__perf::before {
  left: -9px;
  bottom: -9px;
}

.product-card .ticket__perf::after {
  right: -9px;
  bottom: -9px;
  top: auto;
}

.product-card .ticket__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card h3 {
  font-size: 20px;
  color: var(--blue-deep);
}

.product-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.product-card .tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg-soft-2);
  color: var(--blue-primary-dark);
}

.product-card.is-soon {
  opacity: 0.62;
}

.product-card.is-soon .ticket__stub {
  background: #8b98ac;
}

.product-card__link {
  margin-top: 4px;
  font-weight: 700;
  color: var(--blue-primary);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue-primary-dark));
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: 27px;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background: var(--bg-soft-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.rw-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 40px;
}

.rw-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.rw-logo__text--footer {
  color: var(--white);
}

.rw-footer__brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 300px;
}

.rw-footer__col h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.rw-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rw-footer__col a:hover {
  color: var(--white);
}

.rw-footer__col li {
  font-size: 14.5px;
}

.rw-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 700px) {
  .rw-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   İÇ SAYFA ÜST BAŞLIK (page header) — Hakkımızda, İletişim vb.
   ============================================================ */
.page-hero {
  padding: 64px 0 56px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  font-size: 36px;
  color: var(--blue-deep);
  margin-top: 14px;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   İLETİŞİM formu
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.contact-info-card .row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border-soft);
}

.contact-info-card .row:last-child {
  border-bottom: none;
}

.contact-info-card .row .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-soft-2);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .row h4 {
  font-size: 14px;
  color: var(--blue-deep);
  margin-bottom: 2px;
}

.contact-info-card .row p,
.contact-info-card .row a {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   İŞ EMRİ ÜRÜN SAYFASI ÖZEL BİLEŞENLER
   ============================================================ */
.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.pipeline__step {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.pipeline__step .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pipeline__arrow {
  color: var(--border-soft);
  font-size: 20px;
  margin: 0 14px;
}

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

  .pipeline__arrow {
    transform: rotate(90deg);
    margin: 6px 0 6px 18px;
  }
}

.mockup-window {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.mockup-window__bar {
  background: var(--bg-soft-2);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border-soft);
}

.mockup-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d7f0;
}

.mockup-window__body {
  padding: 22px;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  margin-bottom: 10px;
  font-size: 13px;
}

.mockup-row strong {
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.mockup-row .pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-row .stat b {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--blue-primary);
  display: block;
}

.stat-row .stat span {
  color: var(--text-muted);
  font-size: 13.5px;
}

.timeline {
  position: relative;
  padding-left: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border-soft);
}

.timeline__item {
  position: relative;
  padding-bottom: 30px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-primary);
  box-shadow: 0 0 0 4px var(--bg-soft-2);
}

.timeline__item h4 {
  color: var(--blue-deep);
  font-size: 15.5px;
  margin-bottom: 6px;
}

.timeline__item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}


@media (max-width: 620px) {
  section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 44px 24px;
  }
}

.product-gallery {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.product-gallery__frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-soft);
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}

.product-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}

.product-gallery__img.is-active {
  opacity: 1;
}

.product-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  color: var(--blue-deep);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background .15s ease, color .15s ease;
}

.product-gallery__btn:hover {
  background: var(--blue-primary);
  color: #fff;
}

.product-gallery__btn--prev {
  left: 14px;
}

.product-gallery__btn--next {
  right: 14px;
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.product-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .15s ease;
}

.product-gallery__dot.is-active {
  background: var(--blue-primary);
}


/* ============================================================
   LIGHTBOX — resme tıklayınca tam boyut gösterim
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .15s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* ============================================================
   SSS (FAQ) AKORDEON
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  transition: transform .2s ease;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}