/* Aidatla.com ? Mobile-first design system */
/* fonts loaded via <link> in layout */
:root {
  --bg: #f7f7f8;
  --bg-elevated: #ffffff;
  --bg-soft: #f0f1f3;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --ink-muted: #4b5563;
  --line: rgba(31, 41, 55, 0.08);
  --line-strong: rgba(31, 41, 55, 0.14);
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-soft: #fff0e6;
  --accent: #1f2937;
  --accent-soft: #eef0f3;
  --success: #059669;
  --success-soft: #d1fae5;
  --warning: #d97706;
  --warning-soft: #fef3c7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --info: #0284c7;
  --info-soft: #e0f2fe;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 8px 30px rgba(31, 41, 55, 0.06);
  --shadow-lg: 0 20px 50px rgba(31, 41, 55, 0.1);
  --nav-h: 48px;
  --bottom-nav-h: 64px;
  --font: 'Sora', system-ui, sans-serif;
  --display: 'Outfit', 'Sora', sans-serif;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[hidden] { display: none !important; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 10% -10%, rgba(249,115,22,.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(31,41,55,.06), transparent 45%),
    var(--bg);
  min-height: 100dvh;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

.container { width: min(100% - 1.5rem, var(--container)); margin-inline: auto; }

.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }
.lead { color: var(--ink-soft); font-size: 0.98rem; max-width: 36rem; }
.muted { color: var(--ink-muted); font-size: 0.9rem; }
.tiny { font-size: 0.78rem; color: var(--ink-muted); }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem 1.15rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(249,115,22,.28); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-dark { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-soft { background: var(--brand-soft); color: var(--brand-dark); }
.btn-sm { padding: .4rem .85rem; font-size: .8rem; }
.btn-block { width: 100%; }
.btn-google {
  background: #fff; border-color: var(--line-strong); gap: .55rem;
}
.btn-google img { width: 18px; height: 18px; }
.btn-apple {
  background: #000; color: #fff; border-color: #000; gap: .55rem;
}
.btn-apple:hover { background: #111; color: #fff; border-color: #111; }
.auth-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  min-width: 0;
  padding: .7rem .55rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.form-group { margin-bottom: 1rem; min-width: 0; max-width: 100%; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink-soft); }
.form-control, .form-select, textarea.form-control {
  width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
  padding: .7rem .9rem; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus, textarea.form-control:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
/* Native date/time inputs: large intrinsic min-width overflows cards/modals on mobile */
input.form-control[type="date"],
input.form-control[type="datetime-local"],
input.form-control[type="month"],
input.form-control[type="week"],
input.form-control[type="time"],
input[type="date"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control,
input[type="time"].form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}
input[type="date"]::-webkit-datetime-edit,
input[type="datetime-local"]::-webkit-datetime-edit,
input[type="month"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit {
  min-width: 0;
  padding: 0;
}
input[type="date"]::-webkit-date-and-time-value,
input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
  min-width: 0;
}
.form-row { display: grid; gap: .85rem; }
.form-row > * { min-width: 0; max-width: 100%; }
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
  .form-row-2 > .form-span-2 { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .form-row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .form-row-4 { grid-template-columns: 1fr 1fr; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,247,248,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); height: var(--nav-h);
}
html[data-aidatla-app="1"] .site-header {
  top: max(env(safe-area-inset-top, 0px), var(--app-safe-top, 0px));
  height: var(--nav-h);
  padding-top: 0;
}
.site-nav {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
html[data-aidatla-app="1"] .site-nav {
  padding-left: max(.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(.75rem, env(safe-area-inset-right, 0px));
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-logo { height: 36px; width: auto; display: block; }
.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text, #1f2937);
  letter-spacing: .01em;
}
.site-header .brand-logo { height: 36px; }
.site-footer .brand-logo { height: 64px; }
.auth-card .brand-logo { height: 88px; margin-inline: auto; }
.brand-icon { width: 48px; height: 48px; border-radius: 12px; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }

/* Logodaki orijinal yaz? tipi (wordmark g?rseli) */
.brand-mark {
  display: inline-block;
  width: auto;
  height: 1.15em;
  max-width: 100%;
  vertical-align: -0.18em;
  object-fit: contain;
  object-position: left center;
}
.brand-mark-nav { height: 1.55rem; vertical-align: middle; }
.brand-mark-footer { height: 2.1rem; display: block; vertical-align: top; }
.brand-mark-hero {
  display: block;
  height: clamp(2.4rem, 6.5vw, 3.5rem);
  width: auto;
  max-width: min(100%, 22rem);
  vertical-align: top;
}
.brand-mark-inline { height: 1.05em; vertical-align: -0.16em; }
.brand-mark-heading { height: 1.05em; }
.brand-mark-tiny { height: .95em; vertical-align: -0.14em; }
.brand-mark-auth {
  display: block;
  height: clamp(2.75rem, 10vw, 3.5rem);
  width: auto;
  max-width: min(100%, 18rem);
  margin-inline: auto;
  vertical-align: top;
}
.auth-brand {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 .85rem;
  padding: 0;
  line-height: 0;
  min-width: 0;
  min-height: 0;
}
.auth-title {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 .25rem;
}
.auth-lead {
  text-align: center;
  margin: 0 0 .85rem;
}
html[data-aidatla-app="1"] .brand-mark-auth {
  display: block;
  width: 88%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto;
  min-width: 0;
  object-fit: contain;
  object-position: center top;
}
html[data-aidatla-app="1"] .auth-brand,
html[data-aidatla-app="1"] .auth-brand-app {
  margin: 0 !important;
  padding: 0 !important;
  gap: 0;
}
html[data-aidatla-app="1"] .auth-back-app {
  margin-bottom: .35rem;
}
html[data-aidatla-app="1"] .auth-title {
  margin: .2rem 0 .15rem !important;
}
html[data-aidatla-app="1"] .auth-lead {
  margin: 0 0 .55rem !important;
}
html[data-aidatla-app="1"] .auth-tabs {
  margin: .55rem 0 .85rem;
}
html[data-aidatla-app="1"] .auth-card {
  padding-top: 1.1rem;
}
.lp-page .footer-links a .brand-mark { height: .95em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }

/* Landing hero ? tipografik Aidatla + a??klay?c? metin (s?f?rdan) */
.lp-hero {
  --hero-ink: #2a2e35;
  --hero-muted: #3d424a;
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--hero-ink);
  background: #eceae6;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: translate3d(0, 0, 0) scale(1.04);
}
.lp-hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(236, 234, 230, .97) 0%, rgba(236, 234, 230, .9) 38%, rgba(236, 234, 230, .55) 58%, rgba(236, 234, 230, .12) 78%, transparent 100%),
    linear-gradient(180deg, rgba(236, 234, 230, .2) 0%, transparent 35%, rgba(236, 234, 230, .55) 100%);
}
.lp-hero-frame {
  position: relative;
  z-index: 2;
  /* width verme ? .container hizas?n? ezmesin (header logo ile ayn?) */
  padding: calc(var(--nav-h) + 2.5rem) 0 3.5rem;
}
/* Header .brand ile birebir ayn? sol hiza (.container sol kenar?) */
.lp-hero-stack {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
}
.lp-hero-brand,
.lp-hero-text {
  max-width: 36rem;
}
.lp-hero-brand {
  margin: 0 0 1.35rem;
  line-height: 1;
}
.lp-hero-text {
  margin: 0 0 .85rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hero-ink);
  max-width: 34rem;
}
.lp-hero-text strong {
  color: var(--hero-ink);
}
.lp-hero-text-soft {
  color: var(--hero-muted);
  margin-bottom: 1.15rem;
}
.lp-hero-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.lp-hero-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--hero-ink);
  line-height: 1.4;
}
.lp-hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--brand);
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
}
.lp-hero-foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: .25rem;
}
@media (min-width: 900px) {
  .lp-hero-foot {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .lp-hero-actions {
    flex: 0 1 auto;
  }
  .lp-store-row-hero {
    flex: 0 0 auto;
    margin-top: 0;
    margin-left: auto;
    justify-content: flex-end;
    width: auto;
  }
}
.lp-hero-btn-main,
.lp-hero-btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.lp-hero-btn-main {
  background: var(--brand);
  color: #fff;
}
.lp-hero-btn-main:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
.lp-hero-btn-sub {
  background: #fff;
  color: var(--hero-ink);
  border: 1px solid rgba(42, 46, 53, .16);
}
.lp-hero-btn-sub:hover {
  border-color: rgba(42, 46, 53, .35);
  color: var(--hero-ink);
}
.lp-store-row-hero {
  margin-top: 0;
}
.lp-store-row-hero .lp-store-btn {
  background: #2a2e35;
  border-color: transparent;
}
.lp-store-icon-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}
.lp-store-row-hero .lp-store-icon-card {
  background: #fff;
}
.lp-store-icon-card .lp-store-app-icon {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}
.lp-a0,
.lp-a1,
.lp-a2,
.lp-a3,
.lp-a4,
.lp-a5,
.lp-a6 {
  opacity: 0;
  transform: translateY(16px);
  animation: lpRise .7s var(--ease) forwards;
}
.lp-a1 { animation-delay: .08s; }
.lp-a2 { animation-delay: .16s; }
.lp-a3 { animation-delay: .24s; }
.lp-a4 { animation-delay: .32s; }
.lp-a5 { animation-delay: .4s; }
.lp-a6 { animation-delay: .48s; }

@keyframes lpHeroShift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.02) translate3d(-1.5%, 0, 0); }
}
@keyframes lpRise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .lp-hero {
    min-height: auto;
  }
  .lp-hero-frame {
    padding: calc(var(--nav-h) + 1.75rem) 0 2.75rem;
  }
  .lp-hero-media img {
    object-position: center 25%;
  }
  .lp-hero-wash {
    background:
      linear-gradient(180deg, rgba(236, 234, 230, .55) 0%, rgba(236, 234, 230, .88) 48%, #eceae6 100%),
      linear-gradient(90deg, rgba(236, 234, 230, .95) 0%, rgba(236, 234, 230, .75) 100%);
  }
  .lp-hero-foot {
    gap: .85rem;
  }
  .lp-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    width: 100%;
  }
  .lp-hero-btn-main,
  .lp-hero-btn-sub {
    width: 100%;
    justify-content: center;
  }
  .lp-store-row-hero {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .lp-store-row-hero .lp-store-btn {
    width: 100%;
    min-width: 0;
  }
}

body:has(.lp-hero) .site-header {
  background: rgba(236, 234, 230, .82);
  border-bottom-color: rgba(42, 46, 53, .06);
}

.section { padding: 3.5rem 0; }
.section-head { margin-bottom: 1.75rem; max-width: 36rem; }
.lp-about-body {
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.65;
}
.lp-about-body p { margin: 0 0 1rem; }
.lp-about-body p:last-child { margin-bottom: 0; }
.lp-about-body h3 {
  margin: 1.25rem 0 .5rem;
  font-size: 1.1rem;
}
.lp-about-body a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-feature-list {
  display: grid;
  gap: 1.35rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .lp-feature-list { grid-template-columns: 1fr 1fr; }
}
.lp-feature h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.lp-feature p {
  color: var(--ink-muted);
  font-size: .92rem;
  max-width: 34rem;
}
.lp-feature {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  animation: fadeUp .7s var(--ease) both;
  animation-delay: var(--d, 0s);
}

.lp-feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .lp-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .lp-feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.lp-feature-card {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  animation-delay: var(--d, 0s);
}
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(249, 115, 22, .12);
  border-color: rgba(249, 115, 22, .35);
}
.lp-feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--brand-dark);
  background: linear-gradient(145deg, var(--brand-soft), #fff);
  border: 1px solid rgba(249, 115, 22, .2);
}
.lp-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.lp-feature-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.08rem;
}
.lp-feature-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .92rem;
  line-height: 1.55;
}

/* Otomasyon & entegrasyon */
.lp-automate {
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(249, 115, 22, .1), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 20%, rgba(31, 41, 55, .05), transparent 50%),
    linear-gradient(180deg, #fff 0%, #f8fafc 55%, #fff7ed 100%);
  border-block: 1px solid rgba(249, 115, 22, .1);
}
.lp-automate-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 900px) {
  .lp-automate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }
}
.lp-automate-pillar {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(31, 41, 55, .08);
  box-shadow: 0 14px 36px rgba(17, 24, 39, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  animation-delay: var(--d, 0s);
}
.lp-automate-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, .32);
  box-shadow: 0 20px 44px rgba(249, 115, 22, .12);
}
.lp-automate-top {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.lp-automate-ico {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: linear-gradient(145deg, #fff0e6, #fff);
  border: 1px solid rgba(249, 115, 22, .22);
}
.lp-automate-ico svg {
  width: 1.3rem;
  height: 1.3rem;
}
.lp-automate-eyebrow {
  margin: 0 0 .2rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}
.lp-automate-pillar h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.lp-automate-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.55;
}
.lp-automate-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
}
.lp-automate-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.lp-automate-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .16);
}
.lp-automate-mock {
  margin-top: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .1);
  background:
    linear-gradient(180deg, #fffefb 0%, #fff7ed 100%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}
.lp-automate-mock-bar {
  padding: .45rem .7rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(249, 115, 22, .06);
  border-bottom: 1px solid rgba(31, 41, 55, .07);
}
.lp-automate-mock-bubble {
  margin: .7rem;
  padding: .75rem .85rem;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(5, 150, 105, .2);
  font-size: .8rem;
  line-height: 1.45;
  color: #065f46;
}
.lp-automate-mock-bubble b {
  display: block;
  margin-bottom: .25rem;
  font-size: .84rem;
  color: #047857;
}
.lp-automate-mock-bubble em {
  display: inline-block;
  margin-top: .35rem;
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.lp-automate-rows {
  display: grid;
  gap: 0;
  padding: .35rem 0;
}
.lp-automate-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto auto;
  gap: .45rem;
  align-items: center;
  padding: .45rem .7rem;
  font-size: .78rem;
  border-bottom: 1px solid rgba(31, 41, 55, .06);
}
.lp-automate-row:last-child { border-bottom: 0; }
.lp-automate-row span { color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.lp-automate-row b { font-weight: 650; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-automate-row em { font-style: normal; font-weight: 700; color: var(--brand-dark); }
.lp-automate-row i {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ink-muted);
}
.lp-automate-row i.ok { color: #059669; }
.lp-automate-row.is-dim { opacity: .58; }

.lp-site {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 42%, #fff7ed 100%);
  border-block: 1px solid rgba(148, 163, 184, .18);
}
.lp-kurs {
  background:
    linear-gradient(180deg, #fff7ed 0%, #fff 48%, #fff 100%);
  border-block: 1px solid rgba(249, 115, 22, .12);
}
.lp-area-cta,
.lp-site-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.lp-showcase-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.lp-showcase-list li {
  position: relative;
  padding: .65rem .85rem .65rem 2.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .95rem;
  animation-delay: var(--d, 0s);
}
.lp-showcase-list li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

/* Store buttons */
.lp-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
}
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 11.5rem;
  padding: .55rem .9rem;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.lp-store-btn:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,.72);
  color: #fff;
}
.lp-store-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}
.lp-store-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.lp-store-btn span {
  display: grid;
  line-height: 1.15;
}
.lp-store-btn small {
  font-size: .65rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-store-btn strong {
  font-size: 1rem;
  font-weight: 700;
}
.lp-store-row-light .lp-store-btn {
  background: #111827;
  border-color: transparent;
}
.lp-apps {
  background: linear-gradient(180deg, #fff7ed, #fff);
}
.lp-apps-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.lp-apps-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-apps-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(249,115,22,.25);
}
.lp-apps-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
}
.lp-apps-copy .lp-store-row {
  justify-content: center;
}

/* Flow demo */
.lp-flow { background: #fff; }
.lp-flow-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-flow-stage { grid-template-columns: 1.15fr .85fr; gap: 2.5rem; }
}
.lp-flow-screen {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 20px 50px rgba(17,24,39,.08);
  overflow: hidden;
}
.lp-flow-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #f3f4f6;
}
.lp-flow-bar span {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #d1d5db;
}
.lp-flow-bar span:nth-child(1) { background: #f87171; }
.lp-flow-bar span:nth-child(2) { background: #fbbf24; }
.lp-flow-bar span:nth-child(3) { background: #34d399; }
.lp-flow-bar em {
  margin-left: .5rem;
  font-style: normal;
  font-size: .82rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.lp-flow-body {
  position: relative;
  min-height: 220px;
  padding: 1.15rem;
}
.lp-flow-step {
  position: absolute;
  inset: 1.15rem;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.lp-flow-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lp-flow-chip {
  display: inline-flex;
  margin-bottom: .85rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 700;
}
.lp-flow-rows { display: grid; gap: .55rem; }
.lp-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.lp-flow-row b { font-size: .92rem; }
.lp-flow-row i { font-style: normal; color: var(--ink-muted); font-size: .82rem; }
.lp-flow-pulse {
  position: relative;
  border-color: rgba(249,115,22,.45);
}
.lp-flow-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(249,115,22,.35);
  opacity: .55;
  pointer-events: none;
  animation: lpPulse 1.6s ease-in-out infinite;
}
@keyframes lpPulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.03); opacity: .15; }
}
.lp-pill {
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 999px;
}
.lp-pill.ok { background: var(--success-soft); color: var(--success); }
.lp-pill.miss { background: var(--danger-soft); color: var(--danger); }
.lp-flow-bubble {
  margin-bottom: .75rem;
  padding: .85rem 1rem;
  border-radius: 14px 14px 14px 4px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: .9rem;
  line-height: 1.45;
}
.lp-flow-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  padding: 0 1rem 1rem;
}
.lp-flow-dots button {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
}
.lp-flow-dots button.is-on {
  width: 1.35rem;
  background: var(--brand);
}
.lp-flow-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
}
.lp-flow-legend li {
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
}
.lp-flow-legend strong {
  display: block;
  margin-bottom: .25rem;
}
.lp-flow-legend span {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.lp-showcase { background: #fff; }
.lp-showcase-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-showcase-grid { grid-template-columns: .85fr 1.15fr; gap: 2.5rem; }
}
.lp-showcase-visual {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1rem;
  align-items: end;
}
@media (max-width: 640px) {
  .lp-showcase-visual {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.lp-shot-panel-wrap,
.lp-shot-phone-wrap {
  margin: 0;
}
.lp-shot-panel {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lp-shot-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: .35rem 0;
}
.lp-shot-phone {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31, 41, 55, .16);
}
@media (min-width: 641px) {
  .lp-shot-phone { max-width: 240px; }
}
@media (max-width: 640px) {
  .lp-shot-phone {
    max-width: 200px;
    margin-inline: auto;
  }
}

.lp-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: lpstep;
  list-style: none;
}
@media (min-width: 768px) {
  .lp-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.lp-steps li {
  counter-increment: lpstep;
  display: grid;
  gap: .4rem;
  padding-top: .35rem;
  border-top: 2px solid var(--brand);
}
.lp-steps li::before {
  content: counter(lpstep, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand);
  font-size: .9rem;
  letter-spacing: .04em;
}
.lp-steps strong {
  font-family: var(--display);
  font-size: 1.05rem;
}
.lp-steps span {
  color: var(--ink-muted);
  font-size: .9rem;
}

.lp-sectors {
  background:
    radial-gradient(ellipse at top right, rgba(249,115,22,.10), transparent 45%),
    linear-gradient(180deg, #fff, #fff7ed 55%, #fff);
}
.lp-sector-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .lp-sector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .lp-sector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
.lp-sector-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17,24,39,.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  animation-delay: var(--d, 0s);
}
.lp-sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.35);
}
.lp-sector-card h3 {
  margin: 0;
  font-size: .95rem;
  line-height: 1.3;
}
.lp-sector-ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lp-sector-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}
.lp-sector-card.tone-orange .lp-sector-ico { background: #fff0e6; color: #ea580c; }
.lp-sector-card.tone-blue .lp-sector-ico { background: #eff6ff; color: #2563eb; }
.lp-sector-card.tone-violet .lp-sector-ico { background: #f5f3ff; color: #7c3aed; }
.lp-sector-card.tone-mint .lp-sector-ico { background: #ecfdf5; color: #059669; }
.lp-sector-card.tone-slate .lp-sector-ico { background: #f1f5f9; color: #475569; }
.lp-sector-card.tone-gold .lp-sector-ico { background: #fffbeb; color: #d97706; }
.lp-sector-card.tone-soft .lp-sector-ico { background: var(--brand-soft); color: var(--brand-dark); }
.lp-sector-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
}
.lp-sector-row span {
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-soft);
  padding-bottom: .15rem;
  border-bottom: 1px solid rgba(249,115,22,.35);
}

/* —— Referanslarımız (kayan şerit) —— */
.lp-refs {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(249,115,22,.08), transparent 42%),
    linear-gradient(180deg, #fff 0%, #fff7ed 48%, #fff 100%);
  border-block: 1px solid rgba(249, 115, 22, .1);
}
.lp-refs .container {
  margin-bottom: 1.1rem;
}
.lp-refs-viewport {
  position: relative;
  overflow: hidden;
  padding: .35rem .55rem 1.15rem;
}
.lp-refs-viewport.is-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.lp-refs-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.lp-refs-viewport.is-marquee .lp-refs-track {
  /* Kaydırma landing.js / app.js ile (rAF) — CSS keyframe değişkeni güvenilir değil */
  animation: none;
}
.lp-refs-group {
  display: flex;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
  /* Kart aralığı grubun parçası → -50% / px kaydırma tam oturur */
  padding-right: 1.1rem;
  box-sizing: content-box;
  flex: 0 0 auto;
}
.lp-ref-card {
  flex: 0 0 auto;
  width: clamp(290px, 31vw, 360px);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(17, 24, 39, .07);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.lp-ref-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, .35);
  box-shadow: 0 20px 40px rgba(249, 115, 22, .16);
}
.lp-ref-media {
  position: relative;
  height: 148px;
  background:
    linear-gradient(135deg, #1f2937 0%, #374151 48%, #f97316 140%);
}
.lp-ref-media.is-empty {
  background:
    linear-gradient(145deg, #111827 0%, #334155 42%, #ea580c 120%);
}
.lp-ref-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-ref-media-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,24,39,.05) 0%, rgba(17,24,39,.55) 100%);
  pointer-events: none;
}
.lp-ref-logo-wrap {
  position: absolute;
  left: 1rem;
  bottom: -28px;
  z-index: 2;
}
.lp-ref-card::after {
  content: "";
  position: absolute;
  inset: auto -45% -65% -45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.22), transparent 70%);
  opacity: .28;
  pointer-events: none;
}
.lp-ref-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, .22);
  display: block;
}
.lp-ref-logo-letter {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brand-dark);
  background: linear-gradient(145deg, var(--brand-soft), #fff);
}
.lp-ref-body {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 2.15rem 1.15rem 1.15rem;
  flex: 1;
  min-height: 180px;
}
.lp-ref-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--accent);
}
.lp-ref-owner {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-muted);
}
.lp-ref-package {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  max-width: 100%;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .22);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.25;
}
.lp-ref-tags {
  margin: 0 0 .35rem;
  font-size: .78rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.lp-ref-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: .55rem 1rem;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 650;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(249, 115, 22, .25);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lp-ref-btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-media img,
  .lp-a0, .lp-a1, .lp-a2, .lp-a3, .lp-a4, .lp-a5, .lp-a6,
  .reveal, [data-animate].reveal,
  .lp-flow-pulse::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
  /* Referans marquee JS ile — reduced-motion’da yavaşlatılır */
}
@media (max-width: 780px) {
  .lp-ref-card {
    width: min(320px, 86vw);
  }
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}
.lp-pricing-mode {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .28rem;
  margin: 0 auto 1.35rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, .08);
  border: 1px solid rgba(249, 115, 22, .18);
  max-width: 100%;
}
#paketler .section-head + .lp-pricing-mode,
.lp-pricing-mode {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.lp-pricing-mode-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-weight: 650;
  font-size: .92rem;
  line-height: 1.2;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.lp-pricing-mode-btn:hover {
  color: var(--accent);
}
.lp-pricing-mode-btn.is-active {
  background: #fff;
  color: #9a3412;
  box-shadow: 0 6px 16px rgba(249, 115, 22, .18);
}
.lp-pricing-mode-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .lp-pricing-mode {
    width: 100%;
  }
  .lp-pricing-mode-btn {
    flex: 1 1 0;
    text-align: center;
    padding: .7rem .75rem;
    font-size: .86rem;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(var(--pricing-cols, 3), minmax(0, 1fr));
  }
}
.price-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem;
  display: flex; flex-direction: column; gap: .7rem;
  height: 100%;
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}
.price-card .price-highlights { flex: 1 1 auto; }
.price-card .price-feats { flex: 1 1 auto; }
.price-card .btn { margin-top: auto; }
.price-card .sub-plan-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.price-card .sub-plan-foot .btn { margin-top: 0; }
.price-card.popular {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft), #fff 40%);
}
.price-desc {
  margin: 0;
  font-size: .88rem;
  line-height: 1.4;
}
.price-highlights {
  list-style: none;
  margin: .1rem 0 .15rem;
  padding: 0;
  display: grid;
  gap: .32rem;
  font-size: .86rem;
  color: var(--ink-soft);
}
.price-highlights li {
  position: relative;
  padding: .15rem 0 .15rem 1.25rem;
  line-height: 1.35;
}
.price-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px #dcfce7;
}
.price-highlights li.is-off {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.price-highlights li.is-off::before {
  background: #cbd5e1;
  box-shadow: 0 0 0 3px #f1f5f9;
}

/* Firma abonelik ? landing ile ayn? tek sat?r grid */
#sub-plan-grid.pricing-grid {
  display: grid;
  gap: 1rem;
  justify-content: stretch;
}
#sub-plan-grid .price-card {
  width: auto;
  max-width: none;
  align-items: stretch;
}
#sub-plan-grid .price-card-badge {
  min-height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sub-plan-grid .price-card h3 {
  text-align: center;
  width: 100%;
  min-height: 2.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sub-plan-grid .price-card .price-amount,
#sub-plan-grid .price-feat-group-title {
  text-align: center;
  width: 100%;
}
#sub-plan-grid .price-desc {
  text-align: center;
  width: 100%;
  min-height: 2.6em;
  margin: 0;
  line-height: 1.35;
}
#sub-plan-grid .price-feat-blocks {
  width: 100%;
  text-align: left;
  flex: 1 1 auto;
}
#sub-plan-grid .price-feats {
  width: 100%;
}
#sub-plan-grid .price-feats li {
  justify-content: flex-start;
  text-align: left;
  align-items: center;
}
#sub-plan-grid .price-feat-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
#sub-plan-grid .price-feat-state {
  margin-left: auto;
  flex: 0 0 2.4rem;
  text-align: right;
}
#sub-plan-grid .sub-plan-foot {
  width: 100%;
  align-items: stretch;
  margin-top: auto;
}
#sub-plan-grid .sub-total {
  justify-content: space-between;
  width: 100%;
}
.sub-purchase-status {
  margin-top: 1.5rem;
}
.sub-purchase-empty {
  padding: 1rem 1.1rem;
}
.price-amount { font-family: var(--display); font-size: 2rem; font-weight: 800; }
.price-amount span { font-size: .9rem; font-weight: 500; color: var(--ink-muted); }
.price-trial {
  display: inline-block;
  margin: 0 0 .65rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 700;
}
.price-after {
  margin: 0 0 .35rem;
  font-size: .88rem;
  color: var(--ink-muted);
}

.lp-cta-inner {
  padding: 2.75rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249,115,22,.16), transparent 60%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.lp-cta-inner h2 { margin-bottom: .4rem; }
.lp-cta-inner > p { color: var(--ink-muted); margin-bottom: .25rem; }
.lp-cta-inner .hero-cta { justify-content: center; }

.site-footer {
  padding: 2.5rem 0 2rem; border-top: 1px solid var(--line); margin-top: 2rem;
}
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-links { display: grid; gap: .4rem; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.footer-legal-inline { display: flex; flex-wrap: wrap; gap: .85rem; }
.footer-legal-inline a:hover { color: var(--brand); }
.platform-copy { margin: 0; color: var(--ink-muted); }
.platform-copy-group {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  cursor: pointer;
}
.platform-copy-group:hover {
  color: var(--ink-soft);
  text-decoration: none;
}

.legal-page { padding: 2.5rem 0 3.5rem; }
.legal-wrap { max-width: 760px; }
.legal-head { margin-bottom: 1.75rem; }
.legal-head h1 { margin-bottom: .4rem; }
.legal-body { display: grid; gap: 1rem; color: var(--ink-soft); font-size: .95rem; }
.legal-body h2 {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  color: var(--ink);
}
.legal-body ul {
  display: grid;
  gap: .4rem;
  padding-left: 1.1rem;
  list-style: disc;
}
.legal-body a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-note {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--ink-muted);
}

.badge {
  display: inline-flex; align-items: center; padding: .2rem .55rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-warn { background: var(--warning-soft); color: var(--warning); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-info { background: var(--info-soft); color: var(--info); }

/* ??renci / veli listesi: pasif sat?r */
table.data tbody tr.is-student-passive td,
table.data tbody tr.is-parent-passive td {
  background: rgba(220, 38, 38, 0.07);
}
table.data tbody tr.is-student-passive:hover td,
table.data tbody tr.is-student-passive:focus-within td,
table.data tbody tr.is-parent-passive:hover td,
table.data tbody tr.is-parent-passive:focus-within td {
  background: rgba(220, 38, 38, 0.12);
}
table.data tbody tr.is-student-passive,
table.data tbody tr.is-parent-passive {
  box-shadow: inset 3px 0 0 var(--danger);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.reveal { animation: fadeUp .7s var(--ease) both; }
.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }
[data-animate].reveal {
  animation-name: fadeScale;
  animation-delay: var(--d, 0s);
}


/* Toasts */
.toast-stack,
.flash-stack {
  position: fixed;
  top: calc(.85rem + env(safe-area-inset-top, 0px));
  right: max(.85rem, env(safe-area-inset-right, 0px));
  z-index: 220;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  width: min(22rem, calc(100vw - 1.5rem));
  pointer-events: none;
}
.toast,
.flash {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .85rem .9rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
  animation: toastIn .28s var(--ease);
}
.toast-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 10px;
}
.toast-body { flex: 1; min-width: 0; }
.toast-title {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 .15rem;
}
.toast-msg,
.flash {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.toast-close {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: .15rem;
  border-radius: 8px;
  line-height: 0;
}
.toast-close:hover { color: var(--ink); background: var(--bg-soft); }
.toast-success { border-color: rgba(5, 150, 105, .22); }
.toast-success .toast-ico { background: var(--success-soft); color: var(--success); }
.toast-success .toast-title { color: var(--success); }
.toast-error { border-color: rgba(220, 38, 38, .22); }
.toast-error .toast-ico { background: var(--danger-soft); color: var(--danger); }
.toast-error .toast-title { color: var(--danger); }
.toast-info { border-color: rgba(2, 132, 199, .22); }
.toast-info .toast-ico { background: var(--info-soft); color: var(--info); }
.toast-info .toast-title { color: var(--info); }
.toast-warn { border-color: rgba(217, 119, 6, .25); }
.toast-warn .toast-ico { background: var(--warning-soft); color: var(--warning); }
.toast-warn .toast-title { color: var(--warning); }
/* eski flash s?n?flar? (auth bak?m band? hari?) */
.flash-stack .flash-success { border-color: rgba(5, 150, 105, .22); background: #fff; color: var(--ink); }
.flash-stack .flash-error { border-color: rgba(220, 38, 38, .22); background: #fff; color: var(--ink); }
.flash-stack .flash-info { border-color: rgba(2, 132, 199, .22); background: #fff; color: var(--ink); }
.toast.is-leaving {
  animation: toastOut .22s var(--ease) forwards;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@keyframes toastOut {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateY(-8px) scale(.96); }
}
