/* 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: .65rem;
  margin: 0 0 .15rem;
}
.auth-social-row.is-single { grid-template-columns: 1fr; }
.auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  padding: .65rem .7rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}
.auth-social-btn svg { flex-shrink: 0; }
html[data-aidatla-app="1"] .auth-social-row {
  margin-bottom: .25rem;
}

.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; }

.lp-page { --nav-h: 64px; --container: 1180px; }
body.lp-page {
  background: #fff;
}
.lp-page .site-header {
  background: rgba(255, 255, 255, .58);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  height: var(--nav-h);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.lp-page .site-nav {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.lp-nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}
.lp-nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.lp-nav-links a:hover { color: var(--brand); }
.lp-nav-login {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: .35rem .45rem;
}
.lp-nav-login:hover { color: var(--brand); }
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.lp-nav-cta:hover { background: var(--brand-dark); }
@media (min-width: 900px) {
  .lp-nav-links { display: flex; }
}

/* 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-kicker {
  margin: 0 0 .4rem;
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.auth-title {
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #1f2937;
  margin: 0 0 .3rem;
}
.auth-lead {
  text-align: center;
  margin: 0 0 1.1rem;
  color: #4b5563;
}
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 — tam yükseklik görsel + buzlu cam yazı paneli */
.lp-hero {
  --hero-ink: #1f2937;
  --hero-muted: #374151;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--hero-ink);
  background: #1f2937;
  margin-top: calc(var(--nav-h) * -1);
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lp-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .12) 42%, transparent 64%),
    linear-gradient(180deg, rgba(17, 24, 39, .18) 0%, transparent 22%, transparent 78%, rgba(17, 24, 39, .16) 100%);
  pointer-events: none;
}
.lp-hero-building {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  max-width: none;
  transform: scale(1.04);
  animation: lpHeroZoom 18s ease-out both;
}
@keyframes lpHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
.lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: calc(var(--nav-h) + 1.15rem) 0 1.6rem;
  min-height: min(88svh, 760px);
}
@media (min-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 1.6rem) 0 2.75rem;
  }
}
.lp-hero-copy {
  min-width: 0;
  padding: 1.45rem 1.3rem 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 22px 56px rgba(17, 24, 39, .16),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lp-hero-copy { background: rgba(255, 255, 255, .94); }
}
@media (min-width: 720px) {
  .lp-hero-copy { padding: 2rem 1.85rem 1.75rem; }
}
.lp-hero-kicker {
  margin: 0 0 .85rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.lp-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--hero-ink);
  font-weight: 800;
}
.lp-hero-title em {
  display: block;
  font-style: normal;
  color: var(--brand);
}
.lp-hero-lead {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--hero-muted);
  max-width: 36rem;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: .55rem;
  margin: 0 0 1.5rem;
}
.lp-hero-btn-main,
.lp-hero-btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 3rem;
  padding: 0 .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
  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 svg { width: 18px; height: 18px; }
.lp-hero-btn-main:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
.lp-hero-btn-sub {
  background: rgba(255, 255, 255, .78);
  color: var(--hero-ink);
  border: 1px solid rgba(255, 255, 255, .8);
}
.lp-hero-btn-sub:hover {
  border-color: rgba(31, 41, 55, .32);
  color: var(--hero-ink);
}
.lp-hero-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.lp-hero-play svg { width: 12px; height: 12px; margin-left: 1px; }
.lp-hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.1rem;
}
@media (min-width: 640px) and (max-width: 959px) {
  .lp-hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.lp-hero-stats li {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--hero-ink);
}
.lp-hero-stats li > span:last-child { min-width: 0; }
.lp-hero-stat-ico {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  display: grid;
  place-items: center;
  color: var(--brand);
}
.lp-hero-stat-ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  overflow: visible;
}
.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 lpRise {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 959px) {
  .lp-hero-actions { width: 100%; gap: .4rem; }
  .lp-hero-btn-main,
  .lp-hero-btn-sub {
    min-height: 2.7rem;
    padding: 0 .55rem;
    font-size: .8rem;
    gap: .28rem;
  }
  .lp-hero-btn-main svg { width: 15px; height: 15px; }
  .lp-hero-play { width: 22px; height: 22px; flex-shrink: 0; }
  .lp-hero-play svg { width: 10px; height: 10px; }
}
body:has(.lp-hero) .site-header {
  background: rgba(255, 255, 255, .52);
  border-bottom-color: rgba(255, 255, 255, .38);
}

.section { padding: 3.75rem 0; }
.section-head { margin-bottom: 1.85rem; max-width: 38rem; }
.lp-page .section-head h2 {
  margin: 0 0 .5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #1f2937;
}
.lp-page .section-head .lead {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}
.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.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, .18);
}
.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;
}
.lp-feature-icon svg,
.lp-sector-ico svg,
.lp-automate-ico svg,
.lp-hero-stat-ico svg,
.lp-contact-ico svg,
.lp-contact-go svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  overflow: visible;
}

.lp-automate { background: #fafafa; border-block: 1px solid var(--line); }
.lp-automate-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .lp-automate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.lp-automate-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
  min-width: 0;
  animation-delay: var(--d, 0s);
}
.lp-automate-top {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}
.lp-automate-ico {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, .18);
}
.lp-automate-eyebrow {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.lp-automate-top h3 {
  margin: .12rem 0 0;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #1f2937;
}
.lp-automate-lead {
  margin: 0 0 .85rem;
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.lp-automate-points {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: .38rem;
}
.lp-automate-points li {
  position: relative;
  padding-left: 1rem;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.lp-automate-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--brand);
}
.lp-automate-mock {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  overflow: hidden;
}
.lp-automate-mock-bar {
  padding: .42rem .7rem;
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink-muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.lp-automate-mock-bubble {
  margin: .65rem;
  padding: .65rem .75rem;
  border-radius: 12px 12px 12px 4px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.lp-automate-mock-bubble b { display: block; margin-bottom: .15rem; color: var(--ink); }
.lp-automate-mock-bubble em { color: var(--brand); font-style: normal; font-weight: 700; }
.lp-automate-rows { padding: .5rem .6rem .65rem; display: grid; gap: .38rem; }
.lp-automate-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: .4rem;
  align-items: center;
  font-size: .76rem;
  padding: .38rem .48rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.lp-automate-row.is-dim { opacity: .55; }
.lp-automate-row span { color: var(--ink-muted); font-weight: 600; }
.lp-automate-row b { font-size: .78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-automate-row em { font-style: normal; font-weight: 700; white-space: nowrap; }
.lp-automate-row i { font-style: normal; font-size: .68rem; font-weight: 700; color: var(--ink-muted); white-space: nowrap; }
.lp-automate-row i.ok { color: #059669; }

.lp-site {
  background: #fafafa;
  border-block: 1px solid var(--line);
}
.lp-kurs {
  background: #fff;
  border-block: none;
}
.lp-area-cta,
.lp-site-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.lp-page .lp-area-cta .btn,
.lp-page .lp-cta-inner .btn {
  border-radius: 999px;
  min-height: 2.85rem;
  padding: .55rem 1.2rem;
}
.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 — equal-size slots (App Store / Play ratios differ) */
.lp-store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: .5rem;
  margin-top: 1.15rem;
  width: 100%;
  max-width: 21rem;
}
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  min-width: 0;
  height: 48px;
  box-sizing: border-box;
  padding: .35rem .5rem;
  border-radius: 10px;
  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: 22px;
  height: 22px;
  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: .95rem;
  font-weight: 700;
}
.lp-store-row-light .lp-store-btn {
  background: #111827;
  border-color: transparent;
}
.lp-store-badge {
  display: block;
  width: 100%;
  height: 48px;
  min-width: 0;
  line-height: 0;
  overflow: hidden;
  transition: transform .2s var(--ease), opacity .2s;
}
.lp-store-badge:hover {
  transform: translateY(-2px);
  opacity: .92;
}
.lp-store-badge img {
  display: block;
  width: 100%;
  height: 48px;
  max-width: none;
  max-height: none;
  object-fit: fill;
  object-position: center;
}
.lp-store-row > :only-child {
  grid-column: 1 / -1;
  max-width: 10.25rem;
  justify-self: center;
}
.lp-hero-stores {
  margin: 0 0 1.15rem;
}
@media (max-width: 640px) {
  .lp-store-row {
    gap: .4rem;
    max-width: none;
  }
  .lp-store-badge,
  .lp-store-btn {
    height: 44px;
  }
  .lp-store-badge img {
    height: 44px;
  }
  .lp-store-btn {
    padding: .3rem .4rem;
    gap: .3rem;
  }
  .lp-store-btn strong { font-size: .78rem; }
  .lp-store-btn small { font-size: .55rem; }
  .lp-store-logo { width: 18px; height: 18px; }
}
.lp-apps {
  background: #fafafa;
  border-block: 1px solid var(--line);
}
.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: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
}
.lp-apps-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
}
.lp-apps-copy .lp-store-row {
  margin-left: auto;
  margin-right: auto;
}

/* 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: 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
  justify-items: center;
}
@media (max-width: 640px) {
  .lp-showcase-visual {
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }
}
.lp-shot-panel-wrap,
.lp-shot-phone-wrap {
  margin: 0;
  width: 100%;
  max-width: 280px;
}
.lp-shot-panel,
.lp-shot-phone {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f3f4f6;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.lp-shot-phone {
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31, 41, 55, .16);
}

.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: #fafafa;
  border-block: 1px solid var(--line);
}
.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.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, .18);
}
.lp-sector-ico svg {
  width: 1.1rem;
  height: 1.1rem;
}
.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: #fff;
  border-block: none;
}
.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-a0, .lp-a1, .lp-a2, .lp-a3, .lp-a4, .lp-a5, .lp-a6,
  .reveal, [data-animate].reveal,
  .lp-flow-pulse::after,
  .lp-hero-building {
    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: var(--brand-dark);
  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: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
}
.lp-cta-inner h2 {
  margin-bottom: .4rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -.02em;
  color: #1f2937;
}
.lp-cta-inner > p { color: var(--ink-muted); margin-bottom: .25rem; }
.lp-cta-inner .hero-cta { justify-content: center; margin-top: 1.25rem; }

.lp-contact {
  background: #fafafa;
  border-block: 1px solid var(--line);
}
.lp-contact-shell {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(17, 24, 39, .05);
}
@media (min-width: 880px) {
  .lp-contact-shell.has-reach {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }
}
.lp-contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: 1.85rem 1.4rem 1.6rem;
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(249, 115, 22, .1), transparent 58%),
    #fff;
}
@media (min-width: 880px) {
  .lp-contact-aside {
    padding: 2.4rem 2.15rem;
    border-right: 1px solid var(--line);
  }
}
.lp-contact-intro {
  text-align: left;
  max-width: 28rem;
  margin: 0;
}
.lp-contact-intro .lp-hero-kicker { margin-bottom: .55rem; }
.lp-contact-intro h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  letter-spacing: -.025em;
  font-weight: 800;
  color: #1f2937;
}
.lp-contact-intro p:not(.lp-hero-kicker) {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}
.lp-contact-reach {
  display: grid;
  gap: .7rem;
  align-content: center;
  padding: 1.25rem 1.25rem 1.45rem;
  background: #fafafa;
}
@media (min-width: 880px) {
  .lp-contact-reach { padding: 2rem 1.75rem; }
}
.lp-contact-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  animation: fadeUp .7s var(--ease) both;
  animation-delay: var(--d, 0s);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.lp-contact-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .1);
  border-color: rgba(249, 115, 22, .35);
  color: inherit;
}
.lp-contact-tile[data-kind="mail"]:hover {
  box-shadow: 0 14px 28px rgba(17, 24, 39, .08);
  border-color: rgba(31, 41, 55, .22);
}
.lp-contact-tile[data-kind="whatsapp"]:hover {
  box-shadow: 0 14px 28px rgba(18, 140, 126, .12);
  border-color: rgba(18, 140, 126, .35);
}
.lp-contact-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.lp-contact-go {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  flex-shrink: 0;
}
.lp-contact-go svg {
  width: 1rem;
  height: 1rem;
  display: block;
}
.lp-contact-tile[data-kind="mail"] .lp-contact-go {
  color: #1f2937;
  background: #eef0f3;
}
.lp-contact-tile[data-kind="whatsapp"] .lp-contact-go {
  color: #128c7e;
  background: #e8f7f4;
}
.lp-contact-ico {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, .18);
}
.lp-contact-tile[data-kind="mail"] .lp-contact-ico {
  color: #1f2937;
  background: #eef0f3;
  border-color: rgba(31, 41, 55, .1);
}
.lp-contact-tile[data-kind="whatsapp"] .lp-contact-ico {
  color: #128c7e;
  background: #e8f7f4;
  border-color: rgba(18, 140, 126, .18);
}
.lp-contact-ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.lp-contact-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.lp-contact-tile[data-kind="mail"] .lp-contact-label { color: #4b5563; }
.lp-contact-tile[data-kind="whatsapp"] .lp-contact-label { color: #0f766e; }
.lp-contact-text {
  font-size: .98rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.lp-contact-note {
  font-size: .78rem;
  color: #6b7280;
  font-weight: 500;
}
.lp-contact-meta {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  list-style: none;
}
.lp-contact-meta-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
}
.lp-contact-meta-item .lp-contact-ico {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: #fff;
}
.lp-contact-meta-item .lp-contact-ico svg {
  width: 1rem;
  height: 1rem;
}
.lp-contact-meta-item .lp-contact-text {
  font-weight: 600;
  font-size: .9rem;
  color: #374151;
  white-space: pre-line;
}

.lp-page .site-footer {
  background: #fff;
  margin-top: 0;
  border-top: 1px solid var(--line);
}
.lp-page .footer-links a {
  color: #4b5563;
  text-decoration: none;
}

.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); }
}
