/* Studyo landing */

.landing-body {
  --lp-ink: #0f1c1a;
  --lp-muted: #5b6b68;
  --lp-line: rgba(15, 28, 26, .08);
  --lp-surface: #f6f8f7;
  --lp-elevated: #ffffff;
  --lp-brand: #0d9488;
  --lp-brand-deep: #0f766e;
  --lp-wash: #e7f3f1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(13, 148, 136, .12), transparent 55%),
    radial-gradient(ellipse 60% 40% at -10% 30%, rgba(15, 28, 26, .04), transparent 50%),
    var(--lp-surface);
  color: var(--lp-ink);
}
.landing-body > main {
  flex: 1 0 auto;
}
.landing-body > .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
.landing-body h1,
.landing-body h2,
.landing-body h3,
.lp-brand,
.price-amount {
  font-family: 'Syne', 'DM Sans', sans-serif;
  letter-spacing: -.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 247, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-line);
}
.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.landing-body .site-header .brand {
  flex-shrink: 0;
  justify-self: start;
  grid-column: 1;
}
.landing-body .site-header .brand-logo {
  width: 120px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 64px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}
@media (min-width: 768px) {
  .landing-body .site-header .brand-logo {
    width: 148px !important;
    max-height: 72px;
  }
}
.landing-body .brand-footer.brand-logo-only .brand-logo,
.landing-body .brand-footer .brand-logo {
  width: 72px;
  height: 72px;
  max-width: none;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
  object-fit: contain;
}
@media (min-width: 768px) {
  .landing-body .brand-footer.brand-logo-only .brand-logo,
  .landing-body .brand-footer .brand-logo {
    width: 88px;
    height: 88px;
  }
}
.site-nav {
  display: none;
  gap: 1.1rem;
  font-weight: 600;
  font-size: .92rem;
  color: #334155;
}
.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  justify-self: end;
  grid-column: 3;
}
.nav-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  padding: .4rem;
  cursor: pointer;
}
@media (min-width: 920px) {
  .site-nav {
    display: flex;
    justify-self: center;
    grid-column: 2;
    margin: 0;
  }
  .nav-toggle { display: none; }
}
@media (max-width: 919px) {
  .site-header-inner {
    display: flex;
  }
  .landing-body .site-header .brand {
    margin-right: auto;
  }
  .site-actions {
    margin-left: 0;
  }
}
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: #fff;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--lp-line);
  z-index: 40;
}

/* —— Hero: brand + one line + CTA + full-bleed image —— */
.lp-hero {
  position: relative;
  min-height: min(92dvh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
}
.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  animation: lp-hero- ken 18s ease-in-out infinite alternate;
}
@keyframes lp-hero-ken {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(1.5%, -1%, 0); }
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 16, .25) 0%, rgba(8, 18, 16, .55) 45%, rgba(8, 18, 16, .82) 100%),
    linear-gradient(90deg, rgba(8, 18, 16, .55) 0%, transparent 55%);
  pointer-events: none;
}
.lp-hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.25rem;
  max-width: 40rem;
}
.lp-brand {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: .95;
  margin: 0 0 .65rem;
  animation: lp-fade-up .7s cubic-bezier(.22, 1, .36, 1) both;
}
.lp-headline {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .75rem;
  max-width: 18ch;
  animation: lp-fade-up .7s .08s cubic-bezier(.22, 1, .36, 1) both;
}
.lp-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 1.5rem;
  max-width: 32rem;
  animation: lp-fade-up .7s .14s cubic-bezier(.22, 1, .36, 1) both;
}
.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  animation: lp-fade-up .7s .2s cubic-bezier(.22, 1, .36, 1) both;
}
.lp-hero .btn-secondary {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.lp-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.lp-section { padding: clamp(3.25rem, 6vw, 5rem) 0; }
.lp-section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}
.lp-section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 .45rem;
}
.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Story strip */
.lp-story-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-story-grid { grid-template-columns: 1fr 1.15fr; gap: 2.5rem; }
}
.lp-story-text h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin: 0 0 .75rem;
}
.lp-story-text p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.lp-story-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lp-story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature rows — not card grids */
.lp-features { background: #fff; }
.lp-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid var(--lp-line);
}
.lp-feature:last-child { padding-bottom: 0; }
@media (min-width: 900px) {
  .lp-feature {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.75rem;
  }
  .lp-feature-reverse .lp-feature-copy { order: 2; }
  .lp-feature-reverse .lp-feature-media { order: 1; }
}
.lp-feature-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  margin: 0 0 .55rem;
}
.lp-feature-copy > p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  line-height: 1.6;
  font-size: 1.02rem;
}
.lp-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.lp-bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--lp-ink);
  font-size: .95rem;
  font-weight: 500;
}
.lp-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-brand);
}
.lp-feature-media {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--lp-wash);
}
.lp-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.lp-feature:hover .lp-feature-media img { transform: scale(1.03); }
.lp-feature-media-soft img { object-position: center 40%; }

/* Steps */
.lp-flow { background: var(--lp-wash); }
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .lp-steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.lp-steps li {
  padding: 0;
  border-top: 2px solid var(--lp-brand);
  padding-top: 1rem;
}
.lp-step-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--lp-brand-deep);
  margin-bottom: .45rem;
}
.lp-steps strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.lp-steps p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .92rem;
  line-height: 1.5;
}

/* Audience */
.lp-audience-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .lp-audience-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.lp-audience-grid article {
  padding-top: 1rem;
  border-top: 1px solid var(--lp-line);
}
.lp-audience-grid h3 {
  font-size: 1.15rem;
  margin: 0 0 .4rem;
}

/* —— Özellikler sayfası —— */
.lp-feat-page { padding-bottom: 3.5rem; }
.lp-feat-hero {
  position: relative;
  padding: 2.75rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(231, 243, 241, .95), transparent 72%),
    var(--lp-surface);
  border-bottom: 1px solid var(--lp-line);
  overflow: hidden;
}
.lp-feat-hero::after {
  content: '';
  position: absolute;
  inset: auto -15% -45% 35%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, .16), transparent 65%);
  pointer-events: none;
}
.lp-feat-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.lp-feat-hero h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.lp-feat-lead {
  margin: 0 0 1.25rem;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 36rem;
}
.lp-feat-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.lp-feat-body {
  display: grid;
  gap: 3rem;
  padding-top: 2.5rem;
}
.lp-feat-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lp-brand-deep);
  margin-bottom: .65rem;
}
.lp-feat-kicker-wa { color: #128c7e; }
.lp-feat-spotlight {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-feat-spotlight {
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
  }
  .lp-feat-spotlight-rev .lp-feat-spotlight-copy { order: 2; }
  .lp-feat-spotlight-rev .lp-feat-spotlight-card { order: 1; }
}
.lp-feat-spotlight-copy h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.lp-feat-spotlight-copy > p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  line-height: 1.6;
  max-width: 34rem;
}
.lp-feat-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.lp-feat-checks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--lp-ink);
  line-height: 1.4;
}
.lp-feat-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--lp-wash);
  box-shadow: inset 0 0 0 2px var(--lp-brand);
}
.lp-feat-spotlight-card {
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid var(--lp-line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 28, 26, .06);
}
.lp-feat-card-wa {
  background: linear-gradient(160deg, #e8f8f5, #fff 55%);
  border-color: rgba(18, 140, 126, .18);
}
.lp-feat-mock-chat {
  display: grid;
  gap: .55rem;
}
.lp-feat-bubble {
  max-width: 92%;
  padding: .7rem .85rem;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  border: 1px solid rgba(15, 28, 26, .08);
  font-size: .86rem;
  line-height: 1.45;
  color: var(--lp-ink);
  box-shadow: 0 4px 12px rgba(15, 28, 26, .04);
}
.lp-feat-bubble-out {
  justify-self: end;
  border-radius: 14px 14px 4px 14px;
  background: #dcf8c6;
  border-color: transparent;
}
.lp-feat-card-days {
  background: linear-gradient(160deg, #f6f8f7, #fff);
}
.lp-feat-day-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.lp-feat-day-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--lp-line);
  font-size: .9rem;
}
.lp-feat-day-list strong { font-weight: 700; }
.lp-feat-day-list span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--lp-brand-deep);
  background: var(--lp-wash);
  padding: .2rem .5rem;
  border-radius: 999px;
}
.lp-feat-mobile {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f1c1a 0%, #134e4a 55%, #0d9488 120%);
  color: #fff;
  overflow: hidden;
}
@media (min-width: 900px) {
  .lp-feat-mobile {
    grid-template-columns: 1.15fr .95fr;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    align-items: center;
  }
}
.lp-feat-mobile .lp-feat-kicker { color: #99f6e4; }
.lp-feat-mobile-copy h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #fff;
  letter-spacing: -.02em;
}
.lp-feat-mobile-copy > p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
  max-width: 32rem;
}
.lp-feat-mobile .lp-feat-checks li { color: #fff; }
.lp-feat-mobile .lp-feat-checks li::before {
  background: rgba(255, 255, 255, .15);
  box-shadow: inset 0 0 0 2px #99f6e4;
}
.lp-feat-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.lp-feat-store {
  display: inline-flex;
  flex-direction: column;
  gap: .05rem;
  padding: .55rem .9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  min-width: 7.5rem;
}
.lp-feat-store-os {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}
.lp-feat-store-name {
  font-size: .95rem;
  font-weight: 700;
}
.lp-feat-mobile-aside {
  display: grid;
  gap: .65rem;
  align-content: center;
}
.lp-feat-glass-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}
.lp-feat-glass-card:nth-child(2) {
  transform: translateX(10px);
}
.lp-feat-glass-card:nth-child(3) {
  transform: translateX(4px);
}
@media (max-width: 899px) {
  .lp-feat-glass-card:nth-child(2),
  .lp-feat-glass-card:nth-child(3) {
    transform: none;
  }
}
.lp-feat-glass-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(153, 246, 228, .18);
  color: #99f6e4;
  flex-shrink: 0;
}
.lp-feat-glass-card strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.lp-feat-glass-card em {
  display: block;
  font-style: normal;
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  margin-top: .1rem;
}
.lp-feat-glass-time {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #99f6e4;
  white-space: nowrap;
}
.lp-feat-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .35rem;
}
.lp-feat-platform-row span {
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
}
.lp-feat-grid-head { margin: 0; }
.lp-feat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .lp-feat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
}
.lp-feat-tile {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.25rem;
  display: grid;
  gap: .45rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.lp-feat-tile:hover {
  border-color: rgba(13, 148, 136, .28);
  box-shadow: 0 12px 28px rgba(15, 28, 26, .05);
  transform: translateY(-2px);
}
.lp-feat-tile-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--lp-wash);
  color: var(--lp-brand-deep);
  margin-bottom: .2rem;
}
.lp-feat-tile h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
.lp-feat-tile p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .9rem;
  line-height: 1.55;
}
.lp-feat-visual {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lp-line);
}
@media (min-width: 900px) {
  .lp-feat-visual { grid-template-columns: 1.2fr .8fr; }
}
.lp-feat-visual figure {
  margin: 0;
  min-height: 220px;
}
.lp-feat-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.lp-feat-visual-copy {
  padding: 1.5rem 1.5rem 1.75rem;
  display: grid;
  gap: .65rem;
  align-content: center;
}
.lp-feat-visual-copy h2 {
  margin: 0;
  font-size: 1.35rem;
}
.lp-feat-visual-copy p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.55;
}
.lp-feat-visual-copy .btn { justify-self: start; margin-top: .35rem; }
.lp-feat-cta {
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #0f766e, #0d9488);
  color: #fff;
  display: grid;
  gap: .55rem;
  text-align: center;
  justify-items: center;
}
.lp-feat-cta h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: #fff;
}
.lp-feat-cta p {
  margin: 0;
  opacity: .92;
  max-width: 28rem;
  line-height: 1.5;
}
.lp-feat-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: .45rem;
}
.lp-feat-cta .btn-primary {
  background: #fff;
  color: #0f766e;
}
.lp-feat-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.lp-audience-grid p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.55;
  font-size: .95rem;
}

/* Pricing */
.lp-pricing.section-alt { background: #eef3f2; }
.pricing-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: .25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
.price-card {
  position: relative;
  background: var(--lp-elevated);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 1.4rem 1.3rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.price-card:hover {
  border-color: rgba(13, 148, 136, .35);
  box-shadow: 0 14px 36px rgba(15, 28, 26, .07);
  transform: translateY(-2px);
}
.price-card.is-featured {
  border-color: var(--lp-brand);
  box-shadow: 0 16px 40px rgba(13, 148, 136, .14);
  background:
    linear-gradient(180deg, rgba(13, 148, 136, .06) 0%, #fff 38%);
}
@media (min-width: 900px) {
  .price-card.is-featured {
    transform: scale(1.03);
    z-index: 1;
  }
  .price-card.is-featured:hover {
    transform: scale(1.03) translateY(-2px);
  }
}
.price-badge {
  position: absolute;
  top: .95rem;
  right: .95rem;
  background: #ccfbf1;
  color: #0f766e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 6px;
}
.price-card-head {
  display: grid;
  gap: .35rem;
  padding-right: 0;
}
.price-card.is-featured .price-card-head {
  padding-right: 5rem;
}
.price-card-head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.price-amount {
  margin: .15rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--lp-ink);
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}
.price-amount span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--lp-muted);
  margin-left: .2rem;
  white-space: nowrap;
}
.price-yearly {
  margin: 0;
  font-size: .82rem;
}
.price-desc {
  margin: .25rem 0 0;
  color: var(--lp-muted);
  font-size: .92rem;
  line-height: 1.45;
}
.price-features {
  list-style: none;
  margin: 0;
  padding: .85rem 0 0;
  border-top: 1px solid var(--lp-line);
  display: grid;
  gap: .55rem;
  flex: 1 1 auto;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  line-height: 1.4;
  color: var(--lp-ink);
}
.price-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .05rem;
  border-radius: 50%;
  background: rgba(13, 148, 136, .12);
  color: var(--lp-brand-deep);
}
.price-check svg {
  width: 12px;
  height: 12px;
}
.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}
.price-card.is-featured .price-cta {
  box-shadow: 0 8px 20px rgba(13, 148, 136, .22);
}
.lp-pricing-note {
  margin: 1.5rem 0 0;
  font-size: .92rem;
}
.lp-pricing-note a {
  color: var(--lp-brand-deep);
  font-weight: 600;
}

/* Close CTA */
.lp-close {
  background:
    linear-gradient(135deg, #0f2a27 0%, #134e4a 55%, #0d9488 140%);
  color: #fff;
}
.lp-close-inner {
  max-width: 36rem;
  text-align: left;
}
.lp-brand-dark { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.lp-close h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: .35rem 0 .65rem;
  color: #fff;
}
.lp-close p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.55;
}
.lp-close .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.lp-close .btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* Reveal on scroll */
[data-lp-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}
[data-lp-reveal].is-in {
  opacity: 1;
  transform: none;
}

.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 2.5rem 0 1.25rem;
  margin-top: 0;
}
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; margin-bottom: .55rem; }
.footer-grid a { display: block; margin-top: .3rem; color: #94a3b8; }
.brand-footer .brand-text { color: #fff; }
.brand-footer .brand-logo {
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
}
.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  color: #64748b;
}

/* Legacy pages still using .section / .hero */
.section { padding: 3.5rem 0; }
.section-alt { background: #eef3f2; }
.section h2 { margin-bottom: .4rem; }
.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-item {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 4px;
  padding: 1.2rem 1.15rem;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature-item p { color: var(--lp-muted); font-size: .94rem; }
.page-narrow { max-width: 720px; }
.text-list { margin-top: 1rem; display: grid; gap: .55rem; }
.text-list li { padding-left: 1rem; position: relative; }
.text-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-brand);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 4px;
  padding: .9rem 1rem;
  margin-top: .65rem;
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin-top: .5rem; color: var(--lp-muted); }

/* —— SSS —— */
.lp-faq-page { padding-bottom: 3.5rem; }
.lp-faq-hero {
  position: relative;
  padding: 2.75rem 0 2.25rem;
  background:
    linear-gradient(180deg, rgba(231, 243, 241, .9), transparent 70%),
    var(--lp-surface);
  border-bottom: 1px solid var(--lp-line);
  overflow: hidden;
}
.lp-faq-hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, .14), transparent 65%);
  pointer-events: none;
}
.lp-faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
.lp-faq-hero h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.lp-faq-lead {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}
.lp-faq-body {
  display: grid;
  gap: 1.75rem;
  padding-top: 2rem;
  max-width: 760px;
}
.lp-faq-list {
  display: grid;
  gap: .65rem;
}
.lp-faq-item {
  background: var(--lp-elevated);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-faq-item[open] {
  border-color: rgba(13, 148, 136, .28);
  box-shadow: 0 10px 28px rgba(15, 28, 26, .05);
}
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-q { flex: 1; min-width: 0; }
.lp-faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lp-wash);
  position: relative;
}
.lp-faq-toggle::before,
.lp-faq-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--lp-brand-deep);
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.lp-faq-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.lp-faq-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.lp-faq-item[open] .lp-faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.lp-faq-a {
  padding: 0 1.15rem 1.15rem;
}
.lp-faq-a p {
  margin: 0;
  padding-top: .15rem;
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.65;
  border-top: 1px solid var(--lp-line);
  padding-top: .85rem;
}
.lp-faq-a a {
  color: var(--lp-brand-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-faq-cta {
  margin-top: .5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f766e, #0d9488);
  color: #fff;
  display: grid;
  gap: .65rem;
}
.lp-faq-cta h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
}
.lp-faq-cta p {
  margin: 0;
  opacity: .92;
  font-size: .95rem;
  line-height: 1.5;
  max-width: 28rem;
}
.lp-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .35rem;
}
.lp-faq-cta .btn-primary {
  background: #fff;
  color: #0f766e;
}
.lp-faq-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.lp-faq-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
}

/* Legal / contact / 404 */
.lp-legal-wrap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .lp-legal-wrap {
    grid-template-columns: 1.4fr .85fr;
    align-items: start;
    gap: 2.5rem;
  }
  .lp-legal-wrap > .lp-section-head {
    grid-column: 1 / -1;
  }
}
.lp-legal-prose {
  display: grid;
  gap: 1rem;
  line-height: 1.65;
  color: var(--lp-ink);
}
.lp-legal-prose h2 {
  font-size: 1.15rem;
  margin: .75rem 0 0;
}
.lp-legal-prose p { margin: 0; color: var(--lp-muted); }
.lp-legal-prose a { color: var(--lp-brand-deep); font-weight: 600; }
.lp-contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .lp-contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
}
.lp-contact-card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}
.lp-contact-card h2 {
  margin: 0;
  font-size: 1.15rem;
}
.lp-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.lp-contact-list li {
  display: grid;
  gap: .15rem;
}
.lp-contact-list strong {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  font-weight: 700;
}
.lp-contact-list span,
.lp-contact-list a {
  color: var(--lp-ink);
  font-weight: 500;
  line-height: 1.45;
}
.lp-contact-form {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
}

/* —— İletişim sayfası —— */
.lp-contact-page {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.lp-contact-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  background:
    linear-gradient(135deg, #0f2a27 0%, #134e4a 48%, #0f766e 100%);
  color: #fff;
  overflow: hidden;
}
.lp-contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(255, 255, 255, .12), transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(0, 0, 0, .18), transparent 50%);
  pointer-events: none;
}
.lp-contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.lp-contact-hero h1 {
  margin: 0 0 .7rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.02em;
}
.lp-contact-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  max-width: 32rem;
}
.lp-contact-body {
  margin-top: clamp(-1.75rem, -3vw, -1.25rem);
  position: relative;
  z-index: 2;
}
.lp-contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .lp-contact-layout {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
    gap: 1.5rem;
  }
}
.lp-contact-aside {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 28, 26, .06);
}
.lp-contact-aside-top h2 {
  margin: 0 0 .4rem;
  font-size: 1.25rem;
}
.lp-contact-aside-top p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.55;
  font-size: .95rem;
}
.lp-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.lp-channel {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem .9rem;
  border-radius: 10px;
  border: 1px solid var(--lp-line);
  background: var(--lp-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
a.lp-channel:hover {
  border-color: rgba(13, 148, 136, .4);
  background: rgba(13, 148, 136, .06);
  transform: translateY(-1px);
}
.lp-channel-static {
  cursor: default;
}
.lp-channel-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(13, 148, 136, .12);
  color: var(--lp-brand-deep);
}
.lp-channel-text {
  display: grid;
  gap: .15rem;
  min-width: 0;
  padding-top: .15rem;
}
.lp-channel-text strong {
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--lp-muted);
  font-weight: 700;
}
.lp-channel-text span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--lp-ink);
  line-height: 1.4;
  word-break: break-word;
}
.lp-contact-legal {
  margin: auto 0 0;
  padding-top: .75rem;
  border-top: 1px solid var(--lp-line);
}
.lp-social-block {
  display: grid;
  gap: .55rem;
  padding-top: .15rem;
}
.lp-social-label {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lp-social-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--lp-line);
  background: var(--lp-surface);
  color: var(--lp-ink);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.lp-social-btn:hover {
  background: rgba(13, 148, 136, .1);
  border-color: rgba(13, 148, 136, .4);
  color: var(--lp-brand-deep);
  transform: translateY(-1px);
}
.lp-contact-form-panel {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 28, 26, .06);
}
.lp-contact-form-head h2 {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
}
.lp-contact-form-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.5;
}
.lp-contact-fields {
  display: grid;
  gap: 1rem;
}
.lp-contact-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .lp-contact-row { grid-template-columns: 1fr 1fr; }
}
.lp-contact-form-panel label {
  display: grid;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-contact-form-panel label span {
  color: var(--lp-muted);
  font-size: .78rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 700;
}
.lp-contact-form-panel input,
.lp-contact-form-panel textarea {
  width: 100%;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: .75rem .9rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--lp-ink);
  background: var(--lp-surface);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-contact-form-panel input:hover,
.lp-contact-form-panel textarea:hover {
  border-color: rgba(13, 148, 136, .35);
}
.lp-contact-form-panel input:focus,
.lp-contact-form-panel textarea:focus {
  outline: none;
  border-color: var(--lp-brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, .15);
}
.lp-contact-form-panel textarea {
  resize: vertical;
  min-height: 9rem;
  line-height: 1.5;
}
.lp-contact-form-foot {
  display: grid;
  gap: .65rem;
  padding-top: .25rem;
}
.lp-contact-form-foot .btn {
  width: 100%;
  justify-content: center;
}
.lp-contact-form-foot a {
  color: var(--lp-brand-deep);
  font-weight: 600;
}
@media (min-width: 640px) {
  .lp-contact-form-foot .btn {
    width: auto;
    min-width: 12rem;
  }
}
.lp-404-inner { text-align: left; padding-top: 1rem; }
.lp-404-code {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 .5rem;
  color: var(--lp-brand);
  opacity: .85;
}
.lp-404 h1 { margin: 0 0 .5rem; }
.lp-404 .lead { margin: 0 0 1.35rem; color: var(--lp-muted); }

.hero {
  position: relative;
  min-height: min(70dvh, 640px);
  display: grid;
  align-items: end;
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--lp-wash);
}
.hero-inner { position: relative; z-index: 1; }
