/* Nova Zeka home — Flutter CustomAppBar / Hero / sections twin */
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}
/* 500/800 → nearest loaded faces (no extra downloads) */
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/poppins-700.woff2") format("woff2");
}

:root {
  --brand: #ff7914;
  --brand-text: #ff7914;
  --brand-btn: #ff7914;
  --brand-btn-hover: #ff8c35;
  --brand-deep: #e56700;
  --cta-top: #f77f00;
  --cta-mid: #e67300;
  --cta-shadow: #cc6600;
  --canvas: #fffbf7;
  --chip: #ffe8d4;
  --border-soft: #edb896;
  --ink: #0a0a0a;
  --muted: #4a4a4a;
  --subtle: #525252;
  --line: #e6e6e6;
  --success: #1f8f4d;
  --star: #f59e0b;
  --wa: #25d366;
  --footer-body: #141c24;
  --footer-border: #243040;
  --footer-ink: #e8edf2;
  --footer-muted: #c5d0da;
  --showcase: #fafaf8;
  --max: 1320px;
  --header: 80px;
  --topbar: 36px;
  --font: Poppins, "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  /* Flutter web gibi: kaydırma var, scrollbar görünmez */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-top: calc(var(--header) + var(--topbar) + env(safe-area-inset-top, 0px));
}
html.site-scrolled {
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top, 0px));
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
/* Flutter web: metin seçimi / kopyalama yok */
html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
img,
svg,
video {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Flutter Scaffold: appBar sabit, body altında — header yüksekliği kadar boşluk */
  padding-top: calc(var(--header) + var(--topbar) + env(safe-area-inset-top, 0px));
}
html.site-scrolled body {
  padding-top: calc(var(--header) + env(safe-area-inset-top, 0px));
}
body::-webkit-scrollbar { display: none; width: 0; height: 0; }
/* NzPageWedgeBgPainter twin — SADECE arka plan; asla içeriğin üstüne binmesin */
.page-wedge {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52%, 720px);
  height: min(520px, 72vh);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 121, 20, .05) 0 1.1px, transparent 1.3px),
    linear-gradient(105deg, var(--canvas) 0%, #fffdf9 32%, #fffcf8 62%, #fff 100%);
  background-size: 28px 28px, 100% 100%;
  clip-path: polygon(14% 0, 100% 0, 91% 100%, 0 100%);
}
@media (max-width: 899px) {
  /* Mobilde wedge daha hafif / dar — Flutter page bg soft */
  .page-wedge {
    width: min(70%, 420px);
    height: min(420px, 55vh);
    opacity: .85;
  }
}
main {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
@media (min-width: 640px) { .wrap { width: min(100% - 56px, var(--max)); } }
@media (min-width: 900px) { .wrap { width: min(100% - 64px, var(--max)); } }

.eyebrow {
  margin: 0 0 .75rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--subtle);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(255, 121, 20, .35));
  flex-shrink: 0;
}
.sec-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
}
@media (min-width: 640px) { .sec-title { font-size: 32px; } }
@media (min-width: 900px) { .sec-title { font-size: 38px; } }
.sec-title .accent {
  color: var(--brand-text);
  text-shadow: 0 6px 24px rgba(255, 121, 20, .18);
}
.sec-lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  max-width: 640px;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .sec-lead { margin-top: 16px; font-size: 16.5px; }
}
.section { padding: 56px 0; }
@media (min-width: 900px) { .section { padding: 80px 0; } }
.section.tight-top { padding-top: 8px; }
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 12px 0;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 121, 20, .15);
}

/* Header — Flutter Scaffold appBar twin (viewport’ta sabit, scroll ile gelir) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  height: auto;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
  padding-top: env(safe-area-inset-top, 0px);
}

/* Üst iletişim şeridi — Flutter SiteTopContactBar twin */
.site-topbar {
  background: #0a0a0a;
  color: #f5f5f5;
  height: var(--topbar);
  overflow: hidden;
}
.site-header.is-scrolled .site-topbar {
  height: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
}
.site-topbar__inner {
  height: var(--topbar);
  width: min(100%, 1320px);
  margin-inline: auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-topbar__inner::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .site-topbar__inner { padding: 0 20px; }
}
@media (min-width: 900px) {
  .site-topbar__inner {
    padding: 0 28px;
    justify-content: space-between;
  }
}
.site-topbar__cluster {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f5f5f5;
  text-decoration: none;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .15px;
  white-space: nowrap;
  border-radius: 4px;
  padding: 4px 2px;
}
.site-topbar a:hover { opacity: .88; }
.site-topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(245, 245, 245, .55);
  margin: 0 14px;
  flex-shrink: 0;
}
.site-topbar__follow {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .15px;
  color: #f5f5f5;
  margin-right: 12px;
  white-space: nowrap;
}
.site-topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-topbar__social a {
  padding: 4px;
  gap: 0;
}
.site-topbar__social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}
.site-topbar__email-full { display: none; }
.site-topbar__email-short { display: inline; }
.site-topbar__follow { display: none; }
@media (min-width: 640px) {
  .site-topbar__follow { display: inline; }
  .site-topbar__sep { margin: 0 18px; }
}
@media (min-width: 420px) {
  .site-topbar__email-full { display: inline; }
  .site-topbar__email-short { display: none; }
  .site-topbar__sep--email { display: block; }
}
@media (max-width: 419.98px) {
  .site-topbar__email,
  .site-topbar__sep--email { display: none; }
  .site-topbar a { font-size: 11px; gap: 5px; }
  .site-topbar__sep { margin: 0 10px; }
  .site-topbar__social { gap: 10px; }
  .site-topbar__social svg { width: 14px; height: 14px; }
}
@media (min-width: 900px) {
  .site-topbar a { font-size: 12.5px; }
  .site-topbar__inner > .site-topbar__sep { display: none; }
}

/* Flutter: Center > ConstrainedBox(max 1280) > Padding(pageHorizontalPadding) */
.site-header .wrap.bar {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 0;
  width: min(100%, 1280px);
  margin-inline: auto;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 500px) {
  .site-header .wrap.bar { padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 600px) {
  .site-header .wrap.bar { padding-left: 28px; padding-right: 28px; }
}
@media (min-width: 768px) {
  .site-header .wrap.bar { padding-left: 36px; padding-right: 36px; }
}
@media (min-width: 900px) {
  .site-header .wrap.bar { padding-left: 48px; padding-right: 48px; }
}
@media (min-width: 1200px) {
  .site-header .wrap.bar { padding-left: 64px; padding-right: 64px; }
}
.logo { height: 48px; width: auto; flex-shrink: 0; position: relative; z-index: 2; }
@media (min-width: 1281px) { .logo { height: 58px; } }
.nav-desk {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  margin-right: 8px;
  flex: 1 1 0;
  min-width: 0;
  /* visible: tools dropdown .nav-desk içinde absolute/overflow ile kesiliyordu */
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* Flutter FittedBox(scaleDown) twin — inner cluster, JS scales if needed */
.nav-desk-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transform-origin: center center;
  will-change: transform;
}
.nav-desk-inner > a,
.nav-desk .tools-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.12px;
  color: var(--muted);
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-desk-inner > a:hover:not(.kamp),
.nav-desk .tools-btn:hover,
.nav-desk .tools-btn[aria-expanded="true"] {
  color: var(--ink);
  background: rgba(255, 251, 247, .85);
  border-color: rgba(230, 230, 230, .7);
}
/* Flutter _HeaderNavLink active */
.nav-desk-inner > a[aria-current="page"] {
  color: var(--brand-text);
  font-weight: 700;
  background: rgba(255, 232, 212, .55);
  border-color: rgba(237, 184, 150, .7);
}
.nav-desk-inner > a[aria-current="page"]:hover {
  color: var(--brand-text);
  background: rgba(255, 232, 212, .55);
  border-color: rgba(237, 184, 150, .7);
}
/* Flutter NovaKampNavMenuItem */
.nav-desk-inner > a.kamp {
  background: linear-gradient(135deg, #ff7a18 0%, #ff4500 55%, #dc2626 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 8px 12px;
  border: 0;
  box-shadow:
    0 0 0 2.5px rgba(255, 200, 87, .55),
    0 8px 18px rgba(220, 38, 38, .28);
  animation: kampPulse 2.4s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}
.nav-desk-inner > a.kamp:hover {
  background: linear-gradient(135deg, #ff8a30 0%, #ff5518 55%, #e11d2e 100%);
  color: #fff !important;
  border-color: transparent;
  animation-play-state: paused;
  transform: scale(1.015);
}
@keyframes kampPulse {
  0%, 100% { transform: translateZ(0) scale(1); }
  50% { transform: translateZ(0) scale(1.03); }
}
/* Flutter _UcretsizAraclarNavChip — always brand orange */
.nav-desk .tools-btn {
  color: var(--brand-text);
  font-weight: 700;
  padding: 10px 14px;
}
.nav-desk .tools-btn:hover,
.nav-desk .tools-btn[aria-expanded="true"] {
  color: var(--brand-text);
  background: rgba(255, 251, 247, .85);
  border-color: rgba(230, 230, 230, .7);
}
.nav-desk .tools-ico { flex-shrink: 0; }
.nav-desk .tools-chev {
  flex-shrink: 0;
  opacity: .85;
  transition: transform .18s ease;
}
.nav-desk .tools-btn[aria-expanded="true"] .tools-chev { transform: rotate(180deg); }
.tools-wrap { position: relative; flex-shrink: 0; z-index: 70; }
/* YKS-LGS Koçluk — Flutter _YksLgsKoclukNavChip twin */
.nav-desk .kocluk-btn {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: -.12px;
}
.nav-desk .kocluk-btn:hover {
  color: var(--brand-text);
  background: rgba(255, 251, 247, .85);
  border-color: rgba(230, 230, 230, .7);
}
.nav-desk .kocluk-btn[aria-expanded="true"],
.nav-desk .kocluk-btn.is-active {
  color: var(--brand-text);
  background: rgba(255, 232, 212, .55);
  border-color: rgba(237, 184, 150, .75);
}
.kocluk-menu { min-width: 220px; }
/* Flutter CustomAppBar PopupMenu twin */
.tools-menu {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  min-width: 268px;
  max-width: min(320px, calc(100vw - 16px));
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  padding: 6px 0 8px;
  z-index: 10050;
  visibility: visible;
  pointer-events: auto;
  box-sizing: border-box;
}
.tools-menu.open {
  display: block !important;
}
.tools-menu-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 2px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #8a8a8a;
  text-transform: uppercase;
  user-select: none;
}
.tools-menu-bar {
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: #ff7914;
  flex-shrink: 0;
}
.tools-menu-div {
  height: 1px;
  margin: 8px 12px;
  background: #e6e6e6;
}
.tools-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 8px;
  padding: 6px 8px;
  min-height: 46px;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  box-sizing: border-box;
  transition: background .15s ease;
}
.tools-menu-item:hover,
.tools-menu-item.is-active {
  background: rgba(255, 232, 212, .45);
}
.tools-menu-item:hover .tools-menu-ico,
.tools-menu-item.is-active .tools-menu-ico {
  background: rgba(255, 121, 20, .12);
  color: #ff7914;
}
.tools-menu-item:hover .tools-menu-label,
.tools-menu-item.is-active .tools-menu-label {
  color: #ff7914;
  font-weight: 700;
}
.tools-menu-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(230, 230, 230, .35);
  color: #8a8a8a;
}
.tools-menu-ico svg {
  width: 17px;
  height: 17px;
  display: block;
}
.tools-menu-label {
  flex: 1;
  min-width: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.1px;
  line-height: 1.25;
  color: #1a1a1a;
}
.header-auth {
  margin-left: 0;
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.header-call {
  display: none;
  margin-left: 0;
  flex-shrink: 0;
}
.header-auth-guest,
.header-auth-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-auth-guest[hidden],
.header-auth-user[hidden],
.drawer-foot-guest[hidden],
.drawer-foot-user[hidden] {
  display: none !important;
}
.btn-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.btn-account:hover {
  background: rgba(255, 232, 212, .4);
  border-color: var(--border-soft);
}
.btn-account-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-btn), #ff9a4a);
  flex-shrink: 0;
  position: relative;
}
.btn-account-avatar::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #fff 0 28%, transparent 29%),
    radial-gradient(ellipse at 50% 95%, #fff 0 42%, transparent 43%);
  opacity: .95;
}
/* Flutter _HeaderGhostButton */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 9.5px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  transition: background .18s ease, border-color .18s ease;
}
.btn-outline:hover {
  background: rgba(255, 232, 212, .35);
  border-color: var(--border-soft);
}
/* Flutter _HeaderPrimaryButton */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 0;
  padding: 9.5px 15px;
  border-radius: 999px;
  background: var(--brand-btn);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 2px 6px rgba(255, 121, 20, .14);
  white-space: nowrap;
  transition: background .18s ease, box-shadow .18s ease;
}
.btn-solid:hover {
  background: var(--brand-btn-hover);
  box-shadow: 0 3px 10px rgba(255, 121, 20, .22);
}
.btn-solid svg { flex-shrink: 0; }
.menu-btn {
  display: inline-flex;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
/* Flutter: hamburger ≤1280, full nav >1280 */
@media (min-width: 1281px) {
  .nav-desk { display: flex; }
  .header-auth { display: inline-flex; }
  .header-call { display: none; }
  .site-header.is-scrolled .header-auth { display: none; }
  .site-header.is-scrolled .header-call { display: inline-flex; }
  .menu-btn { display: none; }
}
/* Flutter compactNav / tightNav / airyNav (menuW thresholds) */
.nav-desk-inner.is-airy { gap: 20px; }
.nav-desk-inner.is-airy > a:not(.kamp) { padding: 10px 18px; }
.nav-desk-inner.is-airy .tools-btn { padding: 10px 16px; }
.nav-desk-inner.is-compact { gap: 8px; }
.nav-desk-inner.is-compact > a:not(.kamp) { padding: 10px 12px; }
.nav-desk-inner.is-compact .tools-btn { padding: 10px 11px; gap: 5px; }
.nav-desk-inner.is-compact > a.kamp { padding: 7.5px 9.5px; }
.nav-desk-inner.is-tight { gap: 6px; }
.nav-desk-inner.is-tight > a:not(.kamp) { padding: 8px 10px; font-size: 13px; }
.nav-desk-inner.is-tight .tools-btn { padding: 8px 10px; font-size: 13px; gap: 4px; }
.nav-desk-inner.is-tight > a.kamp { padding: 6.5px 8px; font-size: 12.5px; }
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  max-width: 100%;
  min-width: 0;
  z-index: 60;
  background: var(--canvas);
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  box-shadow: -16px 0 40px rgba(0, 0, 0, .18);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.drawer.open { display: block; }
.drawer-inner {
  padding: 0 20px calc(20px + env(safe-area-inset-bottom, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  box-sizing: border-box;
  min-height: 100%;
}
@media (max-width: 319px) {
  .drawer-inner { padding-left: 16px; padding-right: 16px; }
}
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(10, 10, 10, .45);
}
.drawer-backdrop.open { display: block; }
@media (min-width: 1281px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* Flutter MobileSiteDrawer header */
.drawer-head {
  margin: 0 -20px 16px;
  padding: 14px 20px 16px;
  background: linear-gradient(135deg, #fff 0%, #fffdf9 55%, #fff6ee 100%);
  border-bottom: 1px solid rgba(230, 230, 230, .85);
}
@media (max-width: 319px) {
  .drawer-head { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}
.drawer-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.drawer-eyebrow {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff7914;
}
.drawer-brand { display: inline-block; }
.drawer-brand img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 319px) {
  .drawer-brand img { height: 40px; }
}
.drawer-close {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.drawer-tagline {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.drawer-sec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff7914;
}
.drawer-sec-label .bar {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: #ff7914;
  flex-shrink: 0;
}
.drawer-sec-featured {
  margin: 10px 0 6px;
}
.drawer-sec-featured .bar { height: 10px; }
.drawer-sec-tools { margin-top: 20px; margin-bottom: 10px; }

/* Flutter _DrawerNavTile */
.drawer-tile {
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 8px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(230, 230, 230, .85);
  background: #fff;
  color: #0a0a0a;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}
@media (max-width: 319px) {
  .drawer-tile { margin-bottom: 6px; font-size: 14.5px; }
}
.drawer-tile-accent {
  width: 3px;
  flex-shrink: 0;
  background: transparent;
  align-self: stretch;
}
.drawer-tile-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
}
@media (max-width: 319px) {
  .drawer-tile-body { gap: 12px; padding: 11px 12px; }
}
.drawer-tile.is-active {
  background: rgba(255, 232, 212, .5);
  border-color: rgba(255, 121, 20, .35);
  color: #ff7914;
  font-weight: 700;
}
.drawer-tile.is-active .drawer-tile-accent { background: #ff7914; }
.drawer-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(230, 230, 230, .35);
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 319px) {
  .drawer-ico { width: 36px; height: 36px; }
}
.drawer-ico svg { width: 19px; height: 19px; display: block; }
@media (max-width: 319px) {
  .drawer-ico svg { width: 18px; height: 18px; }
}
.drawer-tile.is-active .drawer-ico {
  background: rgba(255, 121, 20, .14);
  color: #ff7914;
}
.drawer-tile-label {
  flex: 1;
  min-width: 0;
}
.drawer-chev,
.drawer-expand {
  flex-shrink: 0;
  color: rgba(255, 121, 20, .75);
  display: inline-flex;
  transition: transform .22s cubic-bezier(.33, 1, .68, 1);
}
.drawer-expand { color: #8a8a8a; }
.drawer-tools-btn[aria-expanded="true"] .drawer-expand {
  transform: rotate(180deg);
  color: #ff7914;
}
.drawer-tools-btn[aria-expanded="true"] {
  background: rgba(255, 232, 212, .5);
  border-color: rgba(255, 121, 20, .35);
  color: #ff7914;
  font-weight: 700;
}
.drawer-tools-btn[aria-expanded="true"] .drawer-ico {
  background: rgba(255, 121, 20, .14);
  color: #ff7914;
}
.drawer-tools-btn[aria-expanded="true"] .drawer-tile-accent { background: #ff7914; }

/* Flutter NovaKampNavMenuItem(forDrawer: true) */
.drawer-kamp {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin: 2px 0 12px;
  padding: 15px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(135deg, #ff7a18 0%, #ff4500 52%, #e11d2e 100%);
  border: 1.1px solid rgba(255, 255, 255, .28);
  box-shadow:
    0 0 0 2.8px rgba(255, 200, 87, .55),
    0 0 22px rgba(255, 122, 24, .32),
    0 12px 26px rgba(220, 38, 38, .28);
  position: relative;
}
@media (max-width: 319px) {
  .drawer-kamp { padding: 13px 14px; margin-bottom: 10px; }
}
.drawer-kamp-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.drawer-kamp-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.drawer-kamp-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.15px;
  line-height: 1;
}
@media (max-width: 319px) { .drawer-kamp-title { font-size: 16px; } }
.drawer-kamp-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .34);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .85px;
  color: #fff;
  line-height: 1;
}
@media (max-width: 319px) {
  .drawer-kamp-badge { font-size: 8.5px; padding: 3px 7px; }
}
.drawer-kamp-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  line-height: 1.3;
}
.drawer-kamp-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: #ff7914;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(127, 60, 10, .18);
}
.drawer-kamp-arrow svg { display: block; }

.drawer-tools {
  display: none;
  margin: 0 0 8px;
  padding: 0 0 4px 4px;
}
.drawer-tools.open { display: block; }
.drawer-tools[hidden] { display: none !important; }
.drawer-sub-label {
  margin: 8px 0 4px;
  padding-left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 121, 20, .85);
}
.drawer-sub {
  display: block;
  padding: 10px 12px;
  margin: 0 0 4px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(230, 230, 230, .85);
}
.drawer-sub:hover { border-color: rgba(255, 121, 20, .3); }

.drawer-foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(230, 230, 230, .9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-register {
  width: 100%;
}
.drawer-register .btn-face { width: 100%; }
.drawer-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
}
.drawer-foot-user .drawer-login {
  color: #c62828;
  border-color: rgba(198, 40, 40, .25);
}
@media (max-width: 319px) {
  .drawer-login { padding: 12px 14px; font-size: 14px; }
}
.drawer-micro {
  margin: 2px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a8a8a;
}

/* Hero — Flutter hero_section parity */
.hero {
  padding: 36px 0 28px;
  background: transparent;
}
@media (max-width: 899px) {
  /* Flutter: outer 36/28 + mobile vPad 20 */
  .hero { padding: 56px 0 48px; }
}
@media (max-width: 899px) and (max-height: 599px) {
  /* Flutter: outer + vPad 12 */
  .hero { padding: 48px 0 40px; }
}
.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (max-width: 379px) { .hero-grid { gap: 20px; } }

/* Base = mobile Flutter (<900): centered */
.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.hero-copy .chips,
.hero-copy .cta-row { justify-content: center; }

/* Desktop Flutter (≥900): LEFT aligned — must come AFTER base */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 2fr 2fr;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
  }
  .hero-copy {
    text-align: left;
    max-width: 560px;
    justify-self: start;
    align-items: flex-start;
  }
  .hero-copy .chips,
  .hero-copy .cta-row { justify-content: flex-start; }
  /* Desktop CTA: fullWidth:false — içerik kadar geniş */
  .hero-copy .cta-row .btn-primary {
    width: auto;
    min-width: 0;
  }
  .hero-copy .cta-row .btn-face {
    width: auto;
    transform: translateY(-4px);
  }
}
@media (min-width: 900px) and (max-width: 999px) {
  .hero-grid { grid-template-columns: 2fr 5fr; }
}
@media (min-width: 900px) and (max-height: 700px) {
  .hero-grid { padding: 16px 0; }
}

.hero h1 {
  margin: 0;
  width: 100%;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.3px;
}
@media (max-width: 419px) { .hero h1 { font-size: 26px; } }
@media (max-width: 379px) { .hero h1 { font-size: 24px; } }
@media (max-width: 339px) { .hero h1 { font-size: 22px; } }
@media (min-width: 900px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -.01px;
  }
}
@media (min-width: 1001px) { .hero h1 { font-size: 32px; } }
@media (min-width: 1201px) { .hero h1 { font-size: 36px; } }
.hero h1 .line-accent {
  display: block;
  color: var(--brand-text);
  font-weight: 800;
}
.hero h1 .line-main {
  display: block;
  color: #0a0a0a;
  font-weight: 800;
}
.hero-underline {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #f77f00 0%, #e67300 50%, rgba(247, 127, 0, .3) 100%);
  box-shadow: 0 0 8px rgba(247, 127, 0, .35);
}
@media (min-width: 900px) {
  .hero-underline {
    margin-left: 0;
    margin-right: auto;
  }
}
.hero-lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .15px;
  max-width: 34rem;
  width: 100%;
}
@media (max-width: 379px) { .hero-lead { margin-top: 6px; font-size: 14px; } }
@media (max-width: 339px) { .hero-lead { font-size: 13px; } }
@media (min-width: 900px) {
  .hero-lead {
    margin: 8px 0 0;
    font-size: 15px;
    letter-spacing: .2px;
  }
}
@media (min-width: 1001px) { .hero-lead { font-size: 16px; } }
@media (min-width: 1201px) { .hero-lead { font-size: 17px; } }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 379px) { .chips { margin-top: 12px; } }
@media (min-width: 900px) { .chips { margin-top: 14px; } }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e6e6e6;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -.15px;
  line-height: 1.25;
  color: #0a0a0a;
  white-space: nowrap;
}
.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f8f4d;
  flex-shrink: 0;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 379px) { .cta-row { margin-top: 14px; } }
@media (min-width: 900px) { .cta-row { margin-top: 18px; } }

/* NzMarketingCtaButton twin — screenshot face #ff8c35 / wrap #aa5718 */
.btn-primary {
  --cta-face: #ff8c35;
  --cta-face-hover: #ff9a4d;
  --cta-face-pressed: #e56700;
  --cta-wrap: #aa5718;
  --cta-shadow: rgba(127, 60, 10, .35);
  position: relative;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 0 4px;
  border-radius: 999px;
  background: var(--cta-wrap);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.2px;
  line-height: 1.2;
  border: 0;
  cursor: pointer;
  max-width: 100%;
  text-decoration: none;
  box-shadow:
    0 12px 28px var(--cta-shadow),
    0 4px 10px rgba(127, 60, 10, .25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary .btn-face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--cta-face);
  border: 1.2px solid rgba(255, 255, 255, .35);
  transform: translateY(-4px);
  transition: transform .18s ease, background .18s ease;
}
.btn-primary .btn-arrow { flex-shrink: 0; opacity: .92; width: 20px; height: 20px; }
/* Flutter mobile: disableIdleAnimation → sticky t=0.82 → face ≈ -1px, soft shadow */
@media (max-width: 899px) {
  .btn-primary {
    width: min(100%, 420px);
    min-width: min(100%, 280px);
    box-shadow: 0 4px 10px rgba(127, 60, 10, .32);
  }
  .btn-primary .btn-face {
    width: 100%;
    transform: translateY(-1px);
  }
}
@media (max-width: 399px) {
  .btn-primary { font-size: 14.5px; }
  .btn-primary .btn-face { padding: 11px 20px; }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .btn-primary { font-size: 14.5px; }
  .btn-primary .btn-face { padding: 11px 20px; }
}
@media (min-width: 900px) {
  /* Idle bounce disabled for Lighthouse SI / non-composited audits */
  .btn-primary:not(:hover):not(:active) .btn-face {
    animation: none;
  }
  .btn-primary:not(:hover):not(:active) {
    animation: none;
  }
}
@keyframes ctaIdle {
  0%, 75% { transform: translateY(-4px); }
  82% { transform: translateY(-1px); }
  90% { transform: translateY(-5px); }
  100% { transform: translateY(-4px); }
}
@keyframes ctaIdleShadow {
  0%, 75% {
    box-shadow: 0 12px 28px var(--cta-shadow), 0 4px 10px rgba(127, 60, 10, .25);
  }
  82%, 100% {
    box-shadow: 0 4px 10px rgba(127, 60, 10, .32);
  }
}
.btn-primary:hover {
  box-shadow:
    0 18px 36px rgba(127, 60, 10, .40),
    0 6px 14px rgba(127, 60, 10, .30);
}
.btn-primary:hover .btn-face {
  background: var(--cta-face-hover);
  transform: translateY(-6px);
  animation: none !important;
}
.btn-primary:active {
  transform: translateY(1.5px);
  box-shadow: 0 4px 10px rgba(127, 60, 10, .32);
}
.btn-primary:active .btn-face {
  background: var(--cta-face-pressed);
  transform: translateY(-1px);
  animation: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-primary .btn-face { animation: none !important; }
}

/* Showcase — NzHeroSuccessShowcase twin */
.showcase {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 639px) { .showcase { border-radius: 18px; } }
.showcase-frame {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
@media (max-width: 599px) {
  .showcase-frame { padding: 6px; gap: 8px; }
}
@media (max-width: 359px) {
  .showcase-frame { padding: 4px; gap: 6px; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .showcase-frame { padding: 8px; gap: 10px; }
}
.showcase-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 0 2px;
  background: transparent;
  border: 0;
}
.showcase-head .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
@media (max-width: 359px) {
  .showcase-head .live-dot { width: 7px; height: 7px; }
}
.showcase-head .label {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 359px) {
  .showcase-head .label { font-size: 9.5px; }
}
.showcase-head .count {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--brand-text);
  white-space: nowrap;
}
/* Flutter: !isXs && !isNarrowPanel → hide below 520 */
@media (max-width: 519px) {
  .showcase-head .count { display: none; }
}
@media (max-width: 599px) {
  .showcase-head .count { font-size: 10px; }
}
.showcase-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #0a0e14;
}
@media (max-width: 599px) { .showcase-card { border-radius: 20px; } }
@media (max-width: 359px) { .showcase-card { border-radius: 18px; } }
.showcase-stage {
  position: relative;
  aspect-ratio: 1232 / 814;
  background: #0a0e14;
  overflow: hidden;
  width: 100%;
}
.showcase-stage img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  transition: opacity .45s ease;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.showcase-stage img.active { opacity: 1; }

/* _ArtworkSuccessOverlay twin */
.showcase-overlay {
  position: absolute;
  z-index: 3;
  left: calc(100% * 22 / 1232);
  bottom: calc(100% * 48 / 814);
  width: calc(100% * 0.49);
  max-width: 52%;
  display: flex;
  align-items: stretch;
  padding: calc(100% * 18 / 814 * 0.66) calc(100% * 22 / 1232 * 1.05) calc(100% * 18 / 814 * 0.58) calc(100% * 22 / 1232);
  border-radius: clamp(16px, 2.2vw, 24px);
  background: rgba(5, 8, 14, .78);
  border: 1px solid rgba(255, 255, 255, .09);
  color: #fff;
  pointer-events: none;
  box-sizing: border-box;
}
.showcase-overlay.is-single { width: calc(100% * 0.44); }
.overlay-accent {
  width: 3px;
  flex-shrink: 0;
  margin: 2px 10px 2px 0;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--brand), rgba(255, 121, 20, .25));
}
.overlay-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rank-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}
.rank-row.is-dual { gap: 16px; }
.rank-stat {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.rank-row.is-dual .rank-stat:first-child { flex: 11 1 0; }
.rank-row.is-dual .rank-stat.is-sec { flex: 10 1 0; }
.rank-stat .field {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 13.5px);
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--brand-text);
  text-transform: uppercase;
}
.rank-fit {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  line-height: 1.05;
}
.rank-stat .rank {
  margin: .2em 0 0;
  font-size: clamp(26px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  max-width: none;
  transform-origin: left center;
}
.rank-stat.is-sec .rank {
  font-size: clamp(22px, 3.7vw, 46px);
}
.showcase-overlay .name {
  margin: 12px 0 0;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: -.15px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .98);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
.showcase-overlay .sub {
  margin: 6px 0 0;
  font-size: clamp(9.5px, 1vw, 13px);
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  display: block;
}
@media (max-width: 599px) {
  .showcase-overlay {
    left: calc(100% * 16 / 1232);
    bottom: calc(100% * 26 / 814);
    /* Flutter widthDualMobile */
    width: calc(100% * 0.44);
    max-width: 58%;
    padding: 7px 10px 6px 9px;
    border-radius: 13px;
  }
  .showcase-overlay.is-single { width: calc(100% * 0.38); max-width: 52%; }
  .overlay-accent { width: 2px; margin-right: 6px; }
  .rank-row { gap: 8px; }
  .rank-row.is-dual { gap: 8px; }
  .rank-stat .field { font-size: clamp(8px, 2.2vw, 10px); }
  .rank-stat .rank { font-size: clamp(20px, 5.2vw, 32px); }
  .rank-stat.is-sec .rank { font-size: clamp(18px, 4.7vw, 29px); }
  .showcase-overlay .name {
    margin-top: 6px;
    font-size: clamp(10.5px, 3.2vw, 13.5px);
    line-height: 1.15;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .showcase-overlay .sub { display: none; }
}
@media (max-width: 359px) {
  .showcase-overlay {
    left: calc(100% * 14 / 1232);
    bottom: calc(100% * 18 / 814);
    /* Flutter widthDualXs */
    width: calc(100% * 0.40);
    max-width: 56%;
    padding: 5px 8px;
    border-radius: 11px;
  }
  .showcase-overlay.is-single { width: calc(100% * 0.34); }
  .rank-row.is-dual { gap: 6px; }
  .rank-stat .rank { font-size: clamp(16px, 5vw, 26px); }
  .rank-stat.is-sec .rank { font-size: clamp(14px, 4.5vw, 23px); }
}

.showcase-dock {
  padding: 10px 12px 8.5px;
  background: var(--showcase);
  border-top: 0;
}
@media (max-width: 599px) {
  .showcase-dock { padding: 8px 8px 6.8px; }
}
.progress-segments {
  display: flex;
  gap: 5px;
  height: 3px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .progress-segments { margin-bottom: 8px; }
}
.progress-segments .seg {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(230, 230, 230, .38);
  overflow: hidden;
  position: relative;
}
.progress-segments .seg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
  transform: scaleX(var(--p, 0));
  transform-origin: left center;
  will-change: transform;
}
.progress-segments .seg.past::after {
  transform: scaleX(1);
  background: rgba(255, 121, 20, .42);
}
.progress-segments .seg.active::after {
  background: var(--brand);
}
/* compact: single cumulative bar (Flutter useCompactProgress) */
.progress-segments.compact-mode {
  gap: 0;
}
.progress-segments.compact-mode .seg {
  display: none;
}
.progress-segments.compact-mode .seg:first-child {
  display: block;
  flex: 1;
  border-radius: 999px;
}
.progress-segments.compact-mode .seg:first-child::after {
  transform: scaleX(var(--compact-p, 0));
  background: var(--brand);
}

/* _ThumbChip twin (letter avatar + field/rank) */
.thumbs {
  display: none;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px;
  -webkit-overflow-scrolling: touch;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumbs button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  width: clamp(100px, 30%, 132px);
  min-width: 100px;
  max-width: 132px;
  height: 40px;
  padding: 6px 9px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
  text-align: left;
}
@media (max-width: 599px) {
  .thumbs { gap: 6px; }
  .thumbs button {
    width: clamp(96px, 34%, 118px);
    min-width: 96px;
    height: 34px;
    padding: 5px 7px;
    gap: 5px;
  }
}
.thumbs button:hover {
  border-color: rgba(255, 121, 20, .35);
  box-shadow: 0 3px 8px rgba(255, 121, 20, .06);
}
.thumbs button.active {
  border: 2px solid var(--brand);
  background: linear-gradient(135deg, #fff, rgba(255, 232, 212, .85));
  box-shadow: 0 3px 12px rgba(255, 121, 20, .14);
}
.thumbs .thumb-av {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(230, 230, 230, .55);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}
@media (max-width: 599px) {
  .thumbs .thumb-av { width: 24px; height: 24px; font-size: 10px; }
}
.thumbs button.active .thumb-av {
  background: var(--chip);
  color: var(--brand-text);
  box-shadow: 0 0 0 1.5px rgba(255, 121, 20, .55);
}
.thumbs .thumb-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.thumbs .thumb-field {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .4px;
  color: rgba(255, 121, 20, .85);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumbs button.active .thumb-field { color: var(--brand-text); }
.thumbs .thumb-rank {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumbs button.active .thumb-rank { color: var(--ink); }
@media (max-width: 599px) {
  .thumbs .thumb-field { font-size: 8.5px; }
  .thumbs .thumb-rank { font-size: 9px; }
}

.dots {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
}
.dots::-webkit-scrollbar { display: none; }
.dots button {
  /* visual 8px; hit ≥44px for a11y (Flutter dock look via ::before) */
  width: 24px;
  height: 44px;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dots button::before {
  content: "";
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: #cfc9c0;
  display: block;
  transform: scaleX(0.44);
  transform-origin: center;
  transition: transform .2s ease, background .2s ease;
}
.dots button.active::before {
  background: var(--brand-btn);
  transform: scaleX(1);
}
.mobile-slide-name {
  margin: 6px 0 0;
  padding: 0 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 359px) {
  .mobile-slide-name {
    margin-top: 6px;
    font-size: 11px;
    padding: 0 4px;
  }
}
/* Flutter: useDotNav when xs or (compact && width < 420) */
@media (min-width: 420px) {
  .thumbs { display: flex; }
  .dots, .mobile-slide-name { display: none; }
}
@media (max-width: 419px) {
  .thumbs { display: none !important; }
  .dots { display: flex; }
  .mobile-slide-name { display: block; }
  /* Flutter mobile dock: dots only — hide progress segments */
  .progress-segments { display: none !important; }
}
@media (max-width: 359px) {
  .thumbs { display: none !important; }
  .dots { display: flex; }
  .mobile-slide-name { display: block; }
}

/* Flutter twin: heading + toggle + showcase share one centered column */
.coach-block {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  transition: max-width .2s ease;
}
/* 2 kart + dar viewport: Flutter 820; genişte JS inline 1040 (EqualHeightRow fill) */
.coach-block[data-cols="2"] {
  max-width: 820px;
}
.coach-block[data-cols="2"][data-wide="1"] {
  max-width: 1040px;
}
.coach-block .sec-lead {
  max-width: 640px;
}

/* Exam toggle — Flutter orange active, centered under title */
.exam-toggle {
  display: flex;
  width: fit-content;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 232, 212, .45);
  border: 1px solid var(--line);
  gap: 0;
  margin: 16px auto 28px;
}
.exam-toggle button {
  min-width: 72px;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}
@media (min-width: 768px) {
  .exam-toggle button { padding: 12px 28px; font-size: 15px; }
}
.exam-toggle button.active {
  background: var(--brand-btn);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 121, 20, .25);
}

/* Coaching showcase frame — full width of .coach-block, page-centered via parent */
.coach-showcase {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255, 251, 247, .45);
  border: 1px solid rgba(230, 230, 230, .65);
  margin: 0;
}
@media (max-width: 719px) {
  .coach-showcase { padding: 14px 12px; border-radius: 20px; }
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
}
/* Kart sayısına göre (JS data-cols) — LGS 2 kartta boş 3. sütun yok */
.card-grid[data-cols="1"] { grid-template-columns: 1fr; }
.card-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.card-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
/* Flutter <720 → 1 col even if JS late / data-cols stale */
@media (max-width: 719px) {
  .card-grid,
  .card-grid[data-cols],
  .card-grid[data-cols="2"],
  .card-grid[data-cols="3"] {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 720px) {
  .card-grid:not([data-cols]) { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .card-grid:not([data-cols]) { grid-template-columns: repeat(3, 1fr); }
}

/* Flutter card order: title → media → price → pay chip → cta → features → footer */
.coach-card {
  border: 1px solid rgba(230, 230, 230, .85);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 10, 10, .05);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.coach-card:hover {
  transform: translateY(-3px) scale(1.006);
  border-color: rgba(255, 121, 20, .35);
  box-shadow: 0 16px 36px rgba(10, 10, 10, .08);
}
@media (max-width: 719px) {
  .coach-card { border-radius: 20px; }
}
.coach-card .body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 399px) {
  .coach-card .body { padding: 14px; }
}
@media (max-width: 339px) {
  .coach-card .body { padding: 10px; }
}
.coach-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media (min-width: 720px) {
  .coach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    white-space: nowrap;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    text-overflow: ellipsis;
    height: calc(22px * 1.25);
  }
}
@media (max-width: 359px) {
  .coach-card h3 { font-size: 17px; }
}
.coach-card .media {
  aspect-ratio: 16 / 9;
  background: #fff7ed;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 0 18px;
  position: relative;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .06);
}
@media (max-width: 719px) {
  .coach-card .media { margin-bottom: 12px; }
}
.coach-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
  background: #f3e8de;
}
.coach-card:hover .media img { transform: scale(1.02); }
.coach-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .18));
  pointer-events: none;
}
.coach-card.is-kamp .media::after { display: none; }
.media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(255, 255, 255, .28);
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
}
.kamp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(247, 127, 0, .35);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #9a3412;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  min-height: 32px;
}
.price-left {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 399px) { .price { font-size: 22px; } }
.price-old {
  font-size: 18px;
  color: #616161;
  text-decoration: line-through;
  text-decoration-thickness: 1.4px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 2px;
  white-space: nowrap;
}
.disc-badge {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe8d4;
  border: 1px solid rgba(255, 121, 20, .22);
  color: #9a3412;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.pay-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(230, 230, 230, .9);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  /* Flutter alignGrid pay slot: 2 satır — İncele butonları aynı hizada kalsın */
  min-height: calc(14px + 12px * 1.3 * 2);
}
@media (max-width: 599px) {
  .pay-chip {
    padding: 6px 10px;
    font-size: 11px;
    gap: 6px;
    min-height: calc(12px + 11px * 1.3 * 2);
  }
}
.pay-chip .pay-ico { flex-shrink: 0; color: var(--muted); }
.pay-chip span {
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.pay-note {
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}
.coach-card .cta-slot {
  margin-top: 12px;
  margin-bottom: 14px;
}
.coach-card .cta-slot .btn-primary {
  width: 100%;
  font-size: 14.5px;
  animation: none !important;
}
.coach-card .cta-slot .btn-face {
  width: 100%;
  padding: 11px 20px;
  animation: none !important;
}
.feat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.feat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--ink);
}
@media (max-width: 359px) {
  .feat-head { font-size: 16px; margin-bottom: 6px; }
}
.feat-bar {
  width: 3px;
  height: 18px;
  border-radius: 4px;
  background: var(--brand);
  flex-shrink: 0;
}
@media (max-width: 359px) {
  .feat-bar { height: 14px; }
}
.feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  flex: 1;
}
.feat-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.25;
  align-items: flex-start;
  padding: 4px 0;
}
@media (max-width: 359px) {
  .feat-list li { font-size: 11.5px; gap: 8px; padding: 2px 0; }
}
.feat-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 0;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(31, 143, 77, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231F8F4D' d='M6.5 11.2 3.3 8l1-1 2.2 2.2 5-5 1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 359px) {
  .feat-list li::before { width: 18px; height: 18px; background-size: 12px; }
}
.feat-list li.neg {
  color: var(--subtle);
  text-decoration: line-through;
}
.feat-list li.neg::before {
  background-color: rgba(239, 68, 68, .1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='%23F87171' stroke-width='2.2' stroke-linecap='round' d='M4.5 4.5l7 7M11.5 4.5l-7 7'/%3E%3C/svg%3E");
  background-size: 12px;
}
.card-foot {
  margin-top: 12px;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.install-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brand-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1px;
  line-height: 1.2;
  background: rgba(255, 121, 20, .06);
  border: 1.4px solid rgba(255, 121, 20, .55);
  box-shadow: 0 0 10px rgba(255, 121, 20, .12);
  animation: none;
}
.install-spacer {
  height: 46px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 359px) {
  .install-chip { font-size: 12.5px; padding: 8px 12px; }
}
@keyframes install-pulse {
  from { opacity: .82; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .install-chip { animation: none; }
}
.card-foot .note,
.return-line {
  margin: 0;
  font-size: 12px;
  color: var(--subtle);
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.return-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.gift-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 13px 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border: 1.4px solid rgba(247, 127, 0, .42);
  background: linear-gradient(135deg, #fff4e8 0%, #ffe0b8 55%, #fff7ed 100%);
  box-shadow: 0 5px 14px rgba(247, 127, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gift-promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(247, 127, 0, .18);
}
.gift-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f77f00, #c45c00);
  box-shadow: 0 3px 10px rgba(247, 127, 0, .35);
}
.gift-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.gift-tag {
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(247, 127, 0, .16);
  color: #9a3412;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .55px;
}
.gift-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.gift-link {
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
}
.gift-arrow {
  color: #9a3412;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.kamp-foot-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--subtle);
}
.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--brand-btn);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border: 0;
}
.btn-card.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.seg-picker {
  display: flex;
  gap: 0;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 3px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: #edeef6;
  border: 1px solid rgba(221, 225, 238, .8);
  border-radius: 999px;
  min-height: 44px;
  height: 44px;
  box-sizing: border-box;
  align-items: stretch;
}
.seg-picker::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .seg-picker { display: none; } }
.seg-picker button {
  /* Flutter NzSlidingPillSegmentedControl: Expanded equal segments */
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0 4px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--subtle);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
@media (max-width: 359px) {
  .seg-picker button { font-size: 11.5px; padding: 0 2px; }
}
.seg-picker button.active {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}
.state-msg {
  padding: 1.25rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.state-msg button {
  margin-top: .75rem;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* Brands marquee — Flutter NzSeamlessMarquee twin (ölçülü sonsuz kuyruk) */
.brands { margin-top: 80px; }
.marquee-band {
  margin-top: 24px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(230, 230, 230, .55);
  background: linear-gradient(
    90deg,
    rgba(255, 251, 247, .35) 0%,
    rgba(255, 255, 255, .92) 12%,
    rgba(255, 255, 255, .92) 88%,
    rgba(255, 251, 247, .35) 100%
  );
  padding: 28px 0;
}
@media (max-width: 767px) {
  .marquee-band { border-radius: 20px; padding: 22px 0; }
}
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: marquee-seamless linear infinite;
  animation-duration: var(--marquee-duration, 34s);
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 48px;
  /* Gruplar arası boşluk = logo gap → dikiş yok */
  padding-right: 48px;
}
@media (max-width: 767px) {
  .marquee-group { gap: 40px; padding-right: 40px; }
}
.marquee.is-paused .marquee-track,
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
  transition: transform .38s ease, background .28s ease, box-shadow .28s ease;
  padding: 8px 12px;
  border-radius: 12px;
}
@media (max-width: 767px) { .marquee-track img { height: 60px; } }
@media (max-width: 479px) { .marquee-track img { height: 52px; } }
.marquee-track img:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 8px 20px rgba(10, 10, 10, .06);
}
@keyframes marquee-seamless {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-loop, 50%)), 0, 0); }
}

/* Reviews — Flutter GoogleReviewsSection twin */
.reviews-block { margin-top: 56px; }
@media (min-width: 768px) { .reviews-block { margin-top: 48px; } }
.reviews-summary {
  margin: 20px 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
}
@media (max-width: 767px) {
  .reviews-summary { margin: 16px 0 20px; }
}
.reviews-summary-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 251, 247, .55);
  border: 1px solid rgba(230, 230, 230, .8);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.reviews-summary-link:hover {
  border-color: rgba(255, 121, 20, .35);
  box-shadow: 0 8px 20px rgba(10, 10, 10, .04);
}
.reviews-summary-link.static { cursor: default; }
@media (max-width: 767px) {
  .reviews-summary-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
  }
}
@media (max-width: 479px) {
  .reviews-summary-link { padding: 14px; }
}
.reviews-summary .g-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  padding: 0;
  overflow: hidden;
}
.reviews-summary .g-badge img,
.reviews-summary .g-badge svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media (max-width: 479px) {
  .reviews-summary .g-badge { width: 40px; height: 40px; border-radius: 10px; }
  .reviews-summary .g-badge img,
  .reviews-summary .g-badge svg { width: 22px; height: 22px; }
}
.reviews-summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.reviews-biz {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .reviews-biz { font-size: 13.5px; white-space: normal; }
}
.reviews-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.reviews-rating {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1;
}
@media (max-width: 479px) { .reviews-rating { font-size: 16px; } }
.reviews-count {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.reviews-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.reviews-google-cta svg { color: var(--brand-text); flex-shrink: 0; }
@media (max-width: 767px) {
  .reviews-google-cta { margin-left: 0; }
}
.reviews-summary .stars,
.review-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: var(--star);
  letter-spacing: 0;
  font-size: 0;
  line-height: 1;
}
.star-ico {
  font-size: 18px;
  line-height: 1;
  color: #616161;
}
.star-ico.on { color: #b45309; }
.star-ico.sm { font-size: 15px; }
@media (max-width: 479px) {
  .star-ico { font-size: 16px; }
  .star-ico.sm { font-size: 14px; }
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .reviews-toolbar { margin-bottom: 8px; }
}
.reviews-swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}
@media (max-width: 479px) {
  .reviews-swipe-hint { font-size: 12px; }
}
.reviews-swipe-hint svg {
  color: var(--subtle);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.reviews-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.reviews-nav-btn {
  /* Flutter _CarouselNavButton: 36, white, border, brand icon */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  color: var(--brand-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
}
.reviews-nav-btn svg {
  width: 15px;
  height: 15px;
}
.reviews-nav-btn:hover:not(:disabled) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.reviews-nav-btn:disabled {
  color: var(--subtle);
  cursor: default;
  opacity: .72;
  background: rgba(255, 255, 255, .96);
  border-color: var(--line);
}

.reviews-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}
.reviews-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  box-sizing: border-box;
}
.reviews-rail::-webkit-scrollbar { display: none; width: 0; height: 0; }
@media (max-width: 479px) {
  .reviews-rail { gap: 10px; }
}
@media (min-width: 768px) { .reviews-rail { gap: 14px; } }
@media (min-width: 1024px) { .reviews-rail { gap: 16px; } }
.reviews-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
.reviews-edge.show { opacity: 1; }
/* Page canvas — white fade cream zeminde metni “kesilmiş” gibi gösteriyordu */
.reviews-edge-left {
  left: 0;
  background: linear-gradient(90deg, var(--canvas, #fffbf7) 0%, rgba(255, 251, 247, 0) 100%);
}
.reviews-edge-right {
  right: 0;
  background: linear-gradient(270deg, var(--canvas, #fffbf7) 0%, rgba(255, 251, 247, 0) 100%);
}
@media (max-width: 767px) {
  .reviews-edge { width: 36px; }
}
@media (max-width: 479px) {
  .reviews-edge { width: 28px; }
}
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 10px auto 0;
  padding: 0 8px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.reviews-dots button {
  /* Flutter visual slots 12/24 — hit area ≥44 for a11y */
  width: 24px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 24px;
}
.reviews-dots button.active {
  flex: 0 0 28px;
  width: 28px;
}
.reviews-dots button::before {
  content: "";
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  display: block;
  transform: scaleX(0.33);
  transform-origin: center;
  transition: transform .2s ease, background .2s ease;
}
.reviews-dots button.active::before {
  width: 18px;
  background: var(--brand-btn);
  transform: scaleX(1);
}
.review-card {
  flex: 0 0 auto;
  width: min(340px, 88%);
  scroll-snap-align: start;
  border: 1px solid rgba(230, 230, 230, .9);
  border-radius: 24px;
  padding: 18px 18px 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 10, 10, .04);
  height: 292px;
  min-height: 292px;
  max-height: 292px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.review-card:hover {
  border-color: rgba(255, 121, 20, .28);
  box-shadow: 0 14px 28px rgba(10, 10, 10, .07);
}
@media (max-width: 479px) {
  .review-card {
    width: 88%;
    border-radius: 20px;
    padding: 14px 14px 12px;
    height: 272px;
    min-height: 272px;
    max-height: 272px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .review-card {
    width: min(340px, 82%);
    height: 278px;
    min-height: 278px;
    max-height: 278px;
  }
}
@media (min-width: 768px) {
  .review-card { width: 300px; height: 284px; min-height: 284px; max-height: 284px; }
}
@media (min-width: 1024px) {
  .review-card { width: clamp(280px, 30%, 360px); height: 292px; min-height: 292px; max-height: 292px; }
}
.review-card .author-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  flex-shrink: 0;
}
.review-card.is-stack .author-row { flex-wrap: wrap; }
.review-card .avatar,
.review-card .avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.review-card .avatar {
  background: var(--chip);
  color: var(--brand-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.review-card .avatar-img {
  object-fit: cover;
  background: var(--chip);
}
@media (max-width: 479px) {
  .review-card .avatar,
  .review-card .avatar-img { width: 36px; height: 36px; }
  .review-card .avatar { font-size: 14px; }
}
.review-card .author-meta {
  min-width: 0;
  flex: 1;
}
.review-card .author {
  margin: 0;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .review-card .author { font-size: 13px; }
}
.review-card .time {
  margin: 2px 0 0;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--subtle);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .review-card .time { font-size: 11px; }
}
.review-card .author-row .stars {
  flex-shrink: 0;
  margin-top: 2px;
}
.review-card.is-stack .author-row .stars {
  width: 100%;
  margin: 8px 0 0;
  order: 3;
}
/* Flutter Icons.format_quote_rounded */
.review-card .quote {
  margin: 12px 0 4px;
  width: 22px;
  height: 22px;
  color: rgba(255, 121, 20, .35);
  flex-shrink: 0;
  align-self: flex-start;
  line-height: 0;
}
.review-card .quote svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 479px) {
  .review-card .quote { margin-top: 10px; width: 20px; height: 20px; }
}
.review-card .text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  box-sizing: border-box;
}
@media (max-width: 479px) {
  .review-card .text { font-size: 13px; -webkit-line-clamp: 5; }
}
.hint {
  margin: .65rem 0 0;
  font-size: .78rem;
  color: var(--subtle);
  font-weight: 600;
}

/* Platform FAQ + video — Flutter FaqVideoSection twin */
.platform-grid {
  display: grid;
  gap: 40px;
  margin-top: 36px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 901px) {
  .platform-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 40px;
  }
}
.platform-acc {
  min-width: 0;
  width: 100%;
}
.acc-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  transition: border-color .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s cubic-bezier(.22, 1, .36, 1), background .28s ease;
}
.acc-item:last-child { margin-bottom: 0; }
.acc-item[open] {
  border-color: rgba(255, 121, 20, .45);
  box-shadow:
    0 0 18px rgba(255, 121, 20, .12),
    0 3px 10px rgba(0, 0, 0, .05);
  background: linear-gradient(135deg, rgba(255, 121, 20, .09), rgba(255, 232, 212, .18) 42%, rgba(255, 255, 255, .92));
}
.acc-item[open]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), rgba(255, 121, 20, .35));
  z-index: 1;
}
.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  color: var(--ink);
  position: relative;
  z-index: 2;
  letter-spacing: -.05px;
  line-height: 1.35;
  user-select: none;
}
@media (max-width: 639px) {
  .acc-item summary { padding: 16px; font-size: 15px; }
}
.acc-item[open] summary { padding-bottom: 12px; padding-left: 28px; }
@media (max-width: 639px) {
  .acc-item[open] summary { padding-left: 20px; }
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item .acc-q { min-width: 0; flex: 1; }
.acc-item .acc-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  color: var(--ink);
  transition: color .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}
.acc-item summary:hover .acc-ico,
.acc-item[open] .acc-ico { color: var(--brand-text); }
.acc-item .acc-ico::before,
.acc-item .acc-ico::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.acc-item .acc-ico::after {
  transform: rotate(90deg);
}
.acc-item[open] .acc-ico::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}
.acc-item .ans-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  z-index: 2;
}
.acc-item[open] .ans-wrap { grid-template-rows: 1fr; }
.acc-item .ans {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .24s ease, transform .28s cubic-bezier(.22, 1, .36, 1), padding .28s ease;
}
.acc-item[open] .ans {
  padding: 0 24px 18px;
  opacity: 1;
  transform: none;
}
@media (max-width: 639px) {
  .acc-item .ans { padding-inline: 16px; font-size: 14px; }
  .acc-item[open] .ans { padding: 0 16px 16px; }
}
.acc-item[open] .ans { padding-left: 28px; }
@media (max-width: 639px) {
  .acc-item[open] .ans { padding-left: 20px; }
}

.video-stage {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 901px) {
  .video-stage { justify-content: flex-end; }
}
.video-panel {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
  position: relative;
  aspect-ratio: 550 / 350;
  width: 100%;
  max-width: 550px;
  min-width: 0;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .1),
    0 16px 36px rgba(255, 121, 20, .08);
  transition: opacity .28s cubic-bezier(.22, 1, .36, 1), transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
  will-change: opacity, transform;
}
.video-panel.is-swap-out {
  opacity: 0;
  transform: translateX(3%);
}
.video-panel.is-swap-in {
  animation: video-swap-in .34s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes video-swap-in {
  from { opacity: 0; transform: translateX(3%); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .acc-item .ans-wrap,
  .acc-item .ans,
  .acc-item .acc-ico,
  .acc-item .acc-ico::before,
  .acc-item .acc-ico::after,
  .video-panel,
  .video-panel.is-swap-in { transition: none !important; animation: none !important; }
  .video-panel.is-swap-out { opacity: 1; transform: none; }
}
.video-media,
.video-panel iframe,
.video-panel img.thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-media {
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.video-panel img.thumb {
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}
.video-panel iframe {
  z-index: 2;
  background: #000;
}
/* Kart 550/350, Vimeo 16:9 → cover ölçek (letterbox yok) */
.video-panel.is-playing .thumb {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
.video-panel.is-playing iframe {
  width: 100%;
  height: 100%;
  /* (350/550) / (9/16) ≈ 1.131 — kenarları kırp, boşluk bırakma */
  transform: scale(1.14);
  transform-origin: center center;
}
.video-panel:not(.is-playing)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 45%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.video-ui[hidden] { display: none !important; }
.video-play {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 121, 20, .15);
  background: rgba(255, 255, 255, .94);
  color: var(--brand-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 121, 20, .28);
  padding: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(255, 121, 20, .35);
  box-shadow: 0 10px 28px rgba(255, 121, 20, .4);
}
.video-panel.is-playing .video-play { display: none; }
.video-chip {
  pointer-events: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .video-chip { left: 12px; right: 12px; top: 12px; font-size: 12.5px; padding: 6px 12px; }
}
.video-status {
  pointer-events: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .6);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.video-panel.is-playing {
  box-shadow:
    0 14px 36px rgba(0, 0, 0, .18),
    0 0 0 1px rgba(255, 121, 20, .12);
}

/* Lesson packages — Flutter LessonPackageCard / LessonPackagesSection twin */
.filter-pills {
  /* Flutter mobile: 2× Expanded + padding 8 → col gap 16; row gap 12 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 12px;
  margin: 24px 0 28px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .filter-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-inline: auto;
  }
}
.filter-pills button {
  /* Flutter NzFilterPill: pad 11×18, fs 13.5 — minHeight 44 yok */
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -.1px;
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.filter-pills button:hover {
  background: rgba(255, 232, 212, .35);
  border-color: rgba(255, 121, 20, .35);
}
.filter-pills button.active {
  background: var(--brand-btn);
  border-color: var(--brand-btn);
  border-width: 1.5px;
  color: #fff;
  box-shadow: 0 5px 14px rgba(255, 121, 20, .24);
}

.pkg-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.pkg-rail {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px 2px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Flutter sectionHeight narrow=500 */
  min-height: 500px;
  height: 500px;
  max-height: 500px;
  align-items: stretch;
  box-sizing: border-box;
}
.pkg-rail::-webkit-scrollbar { display: none; width: 0; height: 0; }
@media (min-width: 600px) {
  .pkg-rail {
    min-height: 540px;
    height: 540px;
    max-height: 540px;
    padding: 4px 8px;
  }
}
@media (min-width: 900px) {
  .pkg-rail {
    min-height: 568px;
    height: 568px;
    max-height: 568px;
  }
}
.pkg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  color: var(--brand-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  padding: 0;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.pkg-nav:hover:not(:disabled) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 121, 20, .28);
}
.pkg-nav:disabled {
  opacity: .45;
  cursor: default;
}
.pkg-nav-prev { left: 4px; }
.pkg-nav-next { right: 4px; }
.pkg-carousel:not(.has-nav) .pkg-nav { display: none; }

.pkg-card {
  /* Flutter: (maxW * 0.86).clamp(260, 320) — NOT 86vw */
  box-sizing: border-box;
  flex: 0 0 auto;
  width: min(320px, 86%);
  max-width: 320px;
  min-width: 260px;
  margin-right: 12px;
  scroll-snap-align: start;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: calc(100% - 8px);
  align-self: stretch;
  /* Flutter AnimatedContainer 280ms easeOutCubic */
  transition: box-shadow .28s cubic-bezier(.33, 1, .68, 1), border-color .28s cubic-bezier(.33, 1, .68, 1);
}
@media (min-width: 600px) {
  .pkg-card {
    width: 344px;
    min-width: 344px;
    max-width: 344px;
  }
}
.pkg-card:hover {
  border-color: rgba(255, 121, 20, .55);
  box-shadow: 0 6px 16px rgba(255, 121, 20, .1);
}
/*
 * Flutter expandInCarousel + useFlex → AspectRatio 1.72 (mobil compact 1.85).
 * img absolute: global `img { height:auto }` oran kutusunu şişirmesin.
 */
.pkg-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.72;
  flex: 0 0 auto;
  background: #eeeeee;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  line-height: 0;
}
@media (max-width: 599px) {
  .pkg-media { aspect-ratio: 1.85; }
}
.pkg-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Flutter: details Expanded + footer separate padding */
.pkg-details {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 13px 0;
  overflow: hidden;
}
@media (max-width: 800px) {
  .pkg-details { padding: 12px 12px 0; }
}
@media (max-width: 599px) {
  .pkg-details { padding: 8px 12px 0; }
}
.pkg-card h3 {
  margin: 0;
  /* Flutter titleBlockH ≈ 1 satır + nefes; 3 satır rezervi kartı şişiriyordu */
  min-height: calc(17px * 1.22 * 2);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.22;
  color: #212121;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .pkg-card h3 {
    font-size: 15.5px;
    min-height: calc(15.5px * 1.22 * 2);
    -webkit-line-clamp: 2;
  }
}
.pkg-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 6px;
  min-height: 22px;
  align-items: center;
}
@media (max-width: 599px) {
  .pkg-tags { margin-top: 4px; }
}
.pkg-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-tag.success { background: #2e7d32; }
.pkg-tag.prog { background: var(--brand-btn); }
.pkg-feat-head {
  margin: 6px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #212121;
}
@media (max-width: 599px) {
  .pkg-feat-head { margin: 4px 0 2px; }
}
.pkg-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: auto;
  flex: 1;
  min-height: 0;
  scrollbar-width: none;
  align-content: flex-start;
}
.pkg-feats::-webkit-scrollbar { display: none; }
.pkg-feats li {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  font-size: 10.5px;
  line-height: 1.22;
  color: #212121;
  font-weight: 400;
  padding: 1.5px 0;
}
@media (max-width: 599px) {
  .pkg-feats li { padding: 1px 0; }
}
.pkg-feats li.spacer { visibility: hidden; }
.pkg-feats .check {
  width: 12px;
  height: 12px;
  margin-top: 1px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #43a047;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9.55 17.6 4.9 12.95l1.4-1.4 3.25 3.25 8.15-8.15 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-foot {
  flex-shrink: 0;
  padding: 6px 13px 12px;
}
@media (max-width: 800px) {
  .pkg-foot { padding: 6px 12px 12px; }
}
@media (max-width: 599px) {
  /* Flutter compact: footer pad top 6, bottom 10 */
  .pkg-foot { padding: 6px 12px 10px; }
}
.pkg-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 40px;
}
.pkg-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}
.pkg-old {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 400;
  color: #616161;
  text-decoration: line-through;
  text-decoration-color: #616161;
}
.pkg-now {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--brand-text);
  letter-spacing: -.2px;
}
.pkg-save {
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f5e9; /* green.shade50 */
  border: 1px solid #a5d6a7; /* green.shade200 */
  color: #2e7d32; /* green.shade700 */
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}
.pkg-save-slot { width: 72px; flex-shrink: 0; }
.pkg-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
  min-height: 0;
  height: auto;
}
@media (max-width: 599px) {
  .pkg-actions { margin-top: 4px; }
}
.pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Ekran ölçümü: Flutter mobil görsel ~32px (kaynak minimumSize 40 ile sapıyor) */
  min-height: 32px;
  height: 32px;
  padding: 6px 8px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    filter .15s ease;
}
@media (min-width: 600px) {
  .pkg-btn {
    min-height: 40px;
    height: 40px;
    padding: 10px 8px;
  }
}
.pkg-btn.outline {
  background: #fff;
  color: var(--brand-text);
  border: 1.2px solid var(--brand);
}
.pkg-btn.outline:hover {
  background: rgba(255, 121, 20, .08);
}
.pkg-btn.outline:active {
  background: rgba(255, 121, 20, .14);
}
.pkg-btn.solid {
  background: var(--brand-btn);
  color: #fff;
  border: 1.2px solid var(--brand-btn);
  box-shadow: none; /* Flutter compact elevation: 0 */
}
@media (min-width: 600px) {
  .pkg-btn.solid {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06); /* elevation: 1 */
  }
}
.pkg-btn.solid:hover {
  background: var(--brand-btn-hover);
  filter: none;
}
.pkg-btn.solid:active {
  background: #d66611;
  filter: none;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
/* Flutter: ConstrainedBox(maxW:320) + NzMarketingCtaButton(compact:true) */
.section-cta .btn-primary {
  max-width: 320px !important;
  width: 100% !important;
  min-width: 0 !important;
  font-size: 14.5px;
  box-sizing: border-box;
  /* hero CTA 420px kuralını ez — kompakt yükseklik */
  padding: 0 0 3px !important;
}
.section-cta .btn-primary .btn-face {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 20px !important;
  gap: 8px;
}
.section-cta .btn-primary .btn-arrow {
  width: 18px;
  height: 18px;
}
@media (max-width: 899px) {
  .section-cta .btn-primary {
    box-shadow: 0 4px 10px rgba(127, 60, 10, .32) !important;
  }
  .section-cta .btn-primary .btn-face {
    transform: translateY(-1px);
  }
}

/* Support FAQ — Flutter FaqSection / NzFaqAccordionTile twin */
.faq-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 24px 0;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.faq-cats::-webkit-scrollbar { display: none; }
.faq-cats button {
  /* Flutter NzFilterPill — minHeight 44 yok */
  flex: 0 0 auto;
  box-sizing: border-box;
  min-height: 0;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -.1px;
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.faq-cats button:hover {
  background: rgba(255, 232, 212, .35);
  border-color: var(--border-soft);
}
.faq-cats button.active {
  background: var(--brand-btn);
  border-color: var(--brand-btn);
  border-width: 1.5px;
  color: #fff;
  box-shadow: 0 5px 14px rgba(255, 121, 20, .24);
}

.faq-list {
  padding: 4px 8px;
}
.faq-list.is-switching {
  animation: faqListIn .28s cubic-bezier(.33, 1, .68, 1) both;
}
@keyframes faqListIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes faqTileIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.faq-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin: 5px 2px;
  overflow: hidden;
  /* Flutter AnimatedContainer 280ms easeOutCubic */
  transition:
    border-color .28s cubic-bezier(.33, 1, .68, 1),
    box-shadow .28s cubic-bezier(.33, 1, .68, 1);
}
.faq-list.is-switching .faq-tile {
  animation: faqTileIn .34s cubic-bezier(.33, 1, .68, 1) both;
}
.faq-list.is-switching .faq-tile:nth-child(1) { animation-delay: 0ms; }
.faq-list.is-switching .faq-tile:nth-child(2) { animation-delay: 35ms; }
.faq-list.is-switching .faq-tile:nth-child(3) { animation-delay: 70ms; }
.faq-list.is-switching .faq-tile:nth-child(4) { animation-delay: 105ms; }
.faq-list.is-switching .faq-tile:nth-child(5) { animation-delay: 140ms; }
.faq-list.is-switching .faq-tile:nth-child(6) { animation-delay: 175ms; }
.faq-list.is-switching .faq-tile:nth-child(n+7) { animation-delay: 200ms; }

.faq-tile:hover {
  border-color: #e8c9b0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.faq-tile.is-open {
  border-color: var(--border-soft);
  box-shadow:
    0 0 18px rgba(255, 121, 20, .1),
    0 3px 10px rgba(0, 0, 0, .05);
}

/* Open wash gradient — Flutter AnimatedOpacity */
.faq-wash {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 121, 20, .09) 0%,
    rgba(255, 232, 212, .18) 42%,
    rgba(255, 255, 255, .85) 100%
  );
  transition: opacity .28s cubic-bezier(.33, 1, .68, 1);
}
.faq-tile.is-open .faq-wash { opacity: 1; }

/* Left accent bar — Flutter AnimatedContainer width 0→4 */
.faq-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--brand), rgba(255, 121, 20, .35));
  transition: width .28s cubic-bezier(.33, 1, .68, 1);
}
.faq-tile.is-open .faq-accent { width: 4px; }

.faq-summary {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 18px 24px;
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 639px) {
  .faq-summary { padding: 18px 16px; }
}
.faq-tile.is-open .faq-summary {
  padding-bottom: 12px;
  padding-left: 28px; /* hPad 24 + accent 4 */
}
@media (max-width: 639px) {
  .faq-tile.is-open .faq-summary { padding-left: 20px; } /* 16 + 4 */
}

.faq-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.faq-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid rgba(237, 184, 150, .6);
  color: #9a3412;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}
.faq-q {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.05px;
  color: var(--ink);
}
@media (max-width: 639px) {
  .faq-q { font-size: 15px; }
  /* Flutter isNarrow: badge+ico row, then question */
  .faq-head {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "badge ico"
      "q q";
    column-gap: 10px;
    row-gap: 10px;
  }
  .faq-badge { grid-area: badge; width: fit-content; }
  .faq-ico { grid-area: ico; margin-left: 0; }
  .faq-q { grid-area: q; }
}

.faq-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  color: var(--ink);
  transition: color .22s ease;
}
.faq-summary:hover .faq-ico,
.faq-tile.is-open .faq-ico { color: var(--brand-text); }
/* + → − : vertical bar scales away (Icons.add_rounded / remove_rounded) */
.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .28s cubic-bezier(.33, 1, .68, 1), opacity .2s ease;
}
.faq-ico::after { transform: rotate(90deg); }
.faq-tile.is-open .faq-ico::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

/* Answer — Flutter AnimatedSize 280ms */
.faq-ans-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s cubic-bezier(.33, 1, .68, 1);
  position: relative;
  z-index: 2;
}
.faq-tile.is-open .faq-ans-wrap { grid-template-rows: 1fr; }
.faq-ans {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity .24s ease,
    transform .28s cubic-bezier(.33, 1, .68, 1),
    padding .28s cubic-bezier(.33, 1, .68, 1);
}
.faq-tile.is-open .faq-ans {
  padding: 0 24px 18px 28px;
  opacity: 1;
  transform: none;
}
@media (max-width: 639px) {
  .faq-ans { padding-inline: 16px; font-size: 14px; }
  .faq-tile.is-open .faq-ans { padding: 0 16px 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-tile,
  .faq-wash,
  .faq-accent,
  .faq-ans-wrap,
  .faq-ans,
  .faq-ico,
  .faq-ico::before,
  .faq-ico::after,
  .faq-list.is-switching,
  .faq-list.is-switching .faq-tile { animation: none !important; transition: none !important; }
}

/* Footer — Flutter CustomFooter twin (exact Stack + spaceBetween) */
.site-footer {
  margin-top: 24px;
  overflow: visible;
  position: relative;
}
.footer-stack {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Flutter pageHorizontalPadding.clamp(20, 64) — NO 1320 max-width */
.footer-pad {
  width: 100%;
  box-sizing: border-box;
  margin-inline: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 600px) {
  .footer-pad { padding-left: 28px; padding-right: 28px; }
}
@media (min-width: 768px) {
  .footer-pad { padding-left: 36px; padding-right: 36px; }
}
@media (min-width: 900px) {
  .footer-pad { padding-left: 48px; padding-right: 48px; }
}
@media (min-width: 1200px) {
  .footer-pad { padding-left: 64px; padding-right: 64px; }
}

/* Mobile: banner above body — pad only <801 (desktop uses Positioned left/right) */
.footer-banner-anchor {
  order: -1;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0 20px 12px;
}
@media (min-width: 600px) and (max-width: 800px) {
  .footer-banner-anchor { padding-left: 28px; padding-right: 28px; }
}
@media (min-width: 768px) and (max-width: 800px) {
  .footer-banner-anchor { padding-left: 36px; padding-right: 36px; }
}

.footer-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #e85a00 100%);
  color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  width: 100%;
  box-sizing: border-box;
  padding: 18px 14px;
  box-shadow: 0 10px 24px rgba(255, 121, 20, .28);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 640px) {
  .footer-banner { padding: 20px 16px; }
}
@media (max-width: 399px) {
  .footer-banner { padding: 16px 12px; gap: 16px; }
}

/* Desktop >800: Positioned(left/right: pagePad, top: 20) */
@media (min-width: 801px) {
  .footer-stack {
    display: block;
    padding-top: 96px;
  }
  .footer-banner-anchor {
    order: 0;
    position: absolute;
    left: 48px;
    right: 48px;
    top: 20px;
    z-index: 3;
    width: auto;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }
  .footer-banner {
    pointer-events: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 16px;
  }
}
@media (min-width: 801px) and (max-width: 899px) {
  .footer-banner-anchor { left: 36px; right: 36px; }
}
@media (min-width: 1200px) {
  .footer-banner-anchor { left: 64px; right: 64px; }
}

.footer-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(100%, 320px);
}
@media (min-width: 801px) {
  .footer-ctas { width: 280px; flex-shrink: 0; gap: 12px; }
}
@media (min-width: 801px) and (max-width: 1199px) {
  .footer-ctas { width: 240px; gap: 10px; }
}
.footer-ctas a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -.1px;
  text-align: center;
  line-height: 1.25;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
  text-decoration: none;
}
@media (min-width: 801px) and (max-width: 1199px) {
  .footer-ctas a { padding: 9px 14px; font-size: 12.5px; }
}
@media (max-width: 399px) {
  .footer-ctas a { padding: 9px 14px; font-size: 12.5px; }
}
.footer-ctas .dark {
  background: #0a0a0a;
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}
.footer-ctas .dark:hover {
  background: #1a1a1a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
}
.footer-ctas .light {
  background: rgba(255, 255, 255, .96);
  color: var(--brand-text);
  border-color: rgba(255, 255, 255, .9);
}
.footer-ctas .light:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.countdown { text-align: center; width: 100%; }
@media (min-width: 801px) {
  .countdown {
    text-align: right;
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.countdown h3,
.countdown-heading {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.2;
}
@media (min-width: 801px) { .countdown h3, .countdown-heading { font-size: 22px; margin-bottom: 12px; } }
@media (min-width: 801px) and (max-width: 1199px) { .countdown h3, .countdown-heading { font-size: 18px; margin-bottom: 10px; } }
@media (max-width: 399px) { .countdown h3, .countdown-heading { font-size: 14px; margin-bottom: 10px; } }

.countdown-units {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
}
@media (min-width: 801px) { .countdown-units { justify-content: flex-end; } }
@media (min-width: 801px) and (max-width: 1199px) { .countdown-units { gap: 4px; } }
@media (max-width: 399px) { .countdown-units { gap: 4px; flex-wrap: wrap; } }

.countdown-units div {
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 399px) {
  .countdown-units div { min-width: 56px; padding: 6px 8px; }
}
.countdown-units strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  color: #fff;
}
@media (max-width: 399px) { .countdown-units strong { font-size: 20px; } }
@media (min-width: 801px) and (max-width: 1199px) {
  .countdown-units div {
    min-width: 0;
    padding: 6px 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .countdown-units strong { display: inline; font-size: 22px; }
  .countdown-units span { display: inline; margin-top: 0; font-size: 9.5px; }
}
.countdown-units span {
  display: block;
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}
@media (max-width: 399px) { .countdown-units span { font-size: 9px; } }

.footer-body {
  background: var(--footer-body);
  color: var(--footer-ink);
  border-top: 1px solid var(--footer-border);
  padding: 24px 0 20px;
}
@media (min-width: 801px) {
  .footer-body {
    margin-top: 0;
    /* stacked CTA banner ~150px; keep menus clear under overlay */
    padding: 168px 0 20px;
  }
}

.footer-grid { display: grid; gap: 30px; }
.footer-brand { min-width: 0; }
.footer-menus { display: contents; }

@media (min-width: 801px) {
  /* Flutter Row + spaceBetween + Flexible(fit: loose) → logo sol, menü sağ */
  .footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
  }
  .footer-brand {
    flex: 0 1 auto;
    max-width: 42%;
  }
  .footer-menus {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    max-width: 58%;
    margin-left: auto;
  }
  .footer-menus .footer-col {
    flex: 0 1 auto;
    min-width: 0;
  }
}
@media (min-width: 801px) and (max-width: 1199px) {
  .footer-grid { gap: 28px; }
  .footer-menus { gap: 28px; }
}
@media (max-width: 800px) and (min-width: 351px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-menus { display: contents; }
}

.footer-logo { height: 70px; width: auto; display: block; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.socials a:hover {
  background: #fff;
  border-color: rgba(255, 121, 20, .35);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}
.socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(86%) saturate(2146%) hue-rotate(355deg) brightness(102%) contrast(101%);
}
/* Flutter _FooterMenuTitle / _FooterMenuLink */
.footer-col h3,
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #e8edf2;
  line-height: 1.3;
  letter-spacing: -.1px;
}
.footer-col a {
  display: block;
  padding: 10px 0;
  color: var(--footer-muted);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .16s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  background: var(--canvas);
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer-bottom .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 599px) {
  .footer-bottom .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.footer-bottom nav a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.footer-bottom nav a:hover {
  background: rgba(255, 232, 212, .45);
  border-color: rgba(237, 184, 150, .55);
  color: var(--ink);
}
.pay-logos {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}


/* Flutter SiteWhatsAppFab twin — yeşil daire + iç halka + phone_in_talk */
.wa-fab,
.contact-fab {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 211, 102, .45);
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
.contact-fab:hover { filter: brightness(1.03); }
.contact-fab:active { transform: scale(.97); }
@media (max-width: 639px) {
  .wa-fab,
  .contact-fab {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
  }
}
.contact-fab__ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-fab__icon {
  width: 26px;
  height: 26px;
  fill: #fff;
  display: block;
}

/* Flutter showModalBottomSheet twin */
.contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.contact-sheet.open { display: flex; }
.contact-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .54);
}
.contact-sheet__panel {
  position: relative;
  width: min(100%, 640px);
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 12px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  font-family: Poppins, system-ui, sans-serif;
  animation: contactSheetUp .22s cubic-bezier(.33, 1, .68, 1);
}
@keyframes contactSheetUp {
  from { transform: translateY(24px); opacity: .85; }
  to { transform: translateY(0); opacity: 1; }
}
.contact-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 99px;
  background: rgba(0, 0, 0, .12);
  margin: 0 auto 16px;
}
.contact-sheet__panel h2 {
  margin: 0;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0a0a0a;
  font-family: inherit;
}
.contact-sheet__sub {
  margin: 6px 0 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  font-family: inherit;
}
.contact-sheet__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: #f8f8f8;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.contact-sheet__opt:hover { background: #f1f1f1; }
.contact-sheet__opt:last-child { margin-bottom: 0; }
.contact-sheet__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-sheet__ico svg { display: block; }
.contact-sheet__ico--phone {
  background: rgba(255, 121, 20, .12);
  color: #ff7914;
}
.contact-sheet__ico--wa {
  background: rgba(37, 211, 102, .12);
  color: #25d366;
}
.contact-sheet__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  text-align: left;
}
.contact-sheet__copy strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  font-family: inherit;
}
.contact-sheet__copy span {
  font-size: 12.5px;
  font-weight: 400;
  color: #6b7280;
  font-family: inherit;
}
.contact-sheet__chev {
  color: #bdbdbd;
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}
.contact-sheet__chev svg { fill: currentColor; }

/* Promo dialog — home_on_gorusme_promo_dialog twin */
.promo-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 10, .8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(18px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
  overflow: auto;
  opacity: 0;
  transition: opacity .32s cubic-bezier(.33, 1, .68, 1);
}
.promo-backdrop.open {
  display: flex;
  opacity: 1;
}
.promo-backdrop.closing {
  opacity: 0;
}
.promo-card {
  width: min(520px, calc(100vw - 36px));
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  position: relative;
  transform: translateY(0);
}
@media (max-width: 359px) {
  .promo-card { width: min(520px, calc(100vw - 24px)); }
}
.promo-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, .42);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.promo-close:hover { background: rgba(0, 0, 0, .55); }
.promo-img-link { display: block; cursor: pointer; }
.promo-img {
  width: 100%;
  aspect-ratio: 880 / 606;
  object-fit: contain;
  background: rgba(255, 121, 20, .08);
  display: block;
}
.promo-body {
  padding: 18px 22px 20px;
  text-align: center;
}
@media (max-width: 399px) {
  .promo-body { padding: 14px 16px 16px; }
}
.promo-body h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.25;
  color: var(--ink);
}
@media (max-width: 399px) {
  .promo-body h2 { font-size: 20px; }
}
.promo-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 399px) {
  .promo-body p { margin-top: 8px; font-size: 12.5px; }
}
.promo-body .promo-cta {
  margin-top: 18px;
  width: 100%;
  animation: none !important;
}
.promo-body .promo-cta .btn-face {
  width: 100%;
  animation: none !important;
}
@media (max-width: 399px) {
  .promo-body .promo-cta { margin-top: 16px; font-size: 14.5px; }
  .promo-body .promo-cta .btn-face { padding: 11px 20px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .nav-desk .kamp { animation: none !important; }
  .marquee-track { transform: none !important; }
  .showcase-stage img { transition: none; }
}

/* Speed Index: freeze continuous motion until boot settles */
html.is-boot .marquee-track {
  animation: none !important;
  transform: none !important;
}
html.is-boot .showcase-stage img {
  transition: none !important;
}
html.is-boot .faq-list.is-switching,
html.is-boot .faq-list.is-switching .faq-tile,
html.is-boot .progress-segments .seg::after {
  animation: none !important;
  transition: none !important;
}
html.is-boot .marquee { content-visibility: auto; }

/* HTML → Flutter geçiş overlay */
.spa-leave {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffbf7;
  pointer-events: all;
}
.spa-leave[hidden] { display: none !important; }
.spa-leave-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px;
}
.spa-leave-inner img {
  width: 140px;
  height: auto;
  display: block;
}
.spa-leave-bar {
  width: min(220px, 56vw);
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 121, 20, 0.16);
  overflow: hidden;
}
.spa-leave-bar i {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: #ff7914;
  animation: spa-leave-slide 0.9s ease-in-out infinite;
}
.spa-leave-txt {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.01em;
}
@keyframes spa-leave-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
html.is-spa-leaving { cursor: progress; }

/* Warm iframe → tam ekran handoff (yenilemesiz SPA) */
#nz-flutter-warm.is-spa-live {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2147483000 !important;
  border: 0 !important;
  background: #fff;
}
html.nz-spa-handoff,
html.nz-spa-handoff body {
  overflow: hidden !important;
  overscroll-behavior: none;
}
html.nz-spa-handoff .site-header,
html.nz-spa-handoff .site-topbar,
html.nz-spa-handoff .page-wedge,
html.nz-spa-handoff main,
html.nz-spa-handoff footer {
  visibility: hidden !important;
  pointer-events: none !important;
}
