/* =========================================================================
   Kidlio tanıtım sitesi — global stiller
   Marka: MAVİ. Pofuduk (puffy), yuvarlatılmış, hafif glassmorphism.
   Mor YOK (kategori kimlik renkleri istisna). Tipografi: Quicksand + Nunito.
   ========================================================================= */

:root {
  /* Marka — mavi aksan */
  --blue: #2E8BF7;
  --blue-dark: #1A6FF5;
  --blue-light: #6CB4FF;
  --grad: linear-gradient(135deg, #6CB4FF 0%, #2E8BF7 100%);
  --grad-soft: linear-gradient(135deg, #EAF3FF 0%, #DCEBFF 100%);

  /* Metin */
  --ink: #243769;          /* lacivert koyu metin */
  --ink-soft: #5b6a90;     /* ikincil metin */
  --ink-faint: #8a96b4;

  /* Zemin */
  --bg: #F4F9FF;
  --bg-soft: #E9F2FF;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.95);
  --card-border: rgba(26, 111, 245, 0.10);

  /* Vurgu (yalnızca aksan) */
  --accent: #FFD166;

  /* Kategori kimlik renkleri (dekoratif) */
  --cat-oyna: #FF2D6A;
  --cat-dusun: #FF8C00;
  --cat-kesfet: #00CBA9;
  --cat-muhabbet: #7C3AED;

  /* Şekil */
  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --shadow: 0 18px 44px rgba(26, 111, 245, 0.13);
  --shadow-sm: 0 8px 20px rgba(26, 111, 245, 0.10);
  --shadow-hover: 0 26px 60px rgba(26, 111, 245, 0.20);

  --maxw: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.kd {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .nav-brand-name {
  font-family: "Quicksand", "Nunito", sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: var(--blue-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: .6rem 1rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* -------------------------------------------------------------------------
   Butonlar — pofuduk
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 1rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px rgba(46, 139, 247, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(46, 139, 247, .45); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .8); color: var(--blue-dark); border-color: var(--card-border); }
.btn-ghost:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-sm); }
.btn-lg { font-size: 1.08rem; padding: 1rem 1.9rem; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   Bölüm başlıkları
   ------------------------------------------------------------------------- */
section { position: relative; }
.section { padding: 84px 0; }
.section--soft { background: var(--grad-soft); }
.section--tint { background: var(--bg-soft); }

.eyebrow {
  display: inline-block; font-family: "Quicksand", sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-dark); background: rgba(46, 139, 247, .12);
  padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.sec-head { margin-bottom: 48px; }
.sec-head.is-center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.sec-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.sec-sub { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* Glass kart temeli */
.glass {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

/* -------------------------------------------------------------------------
   Navbar
   ------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 1rem;
}
.nav-brand { display: inline-flex; align-items: center; gap: .55rem; }
.nav-brand img { filter: drop-shadow(0 3px 6px rgba(26, 111, 245, .22)); }
.nav-brand-name { font-size: 1.4rem; color: var(--blue-dark); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav-link {
  font-family: "Quicksand", sans-serif; font-weight: 600; color: var(--ink);
  padding: .5rem .8rem; border-radius: 999px; transition: background .2s, color .2s;
}
.nav-link:hover { background: rgba(46, 139, 247, .10); color: var(--blue-dark); }
.nav-link.is-active { color: var(--blue-dark); background: rgba(46, 139, 247, .14); }
.nav-cta { margin-left: .5rem; padding: .6rem 1.2rem; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px;
  background: rgba(46, 139, 247, .10); border: none; border-radius: 14px;
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--blue-dark); border-radius: 2px; transition: .25s var(--ease); }
.nav[data-nav].is-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav[data-nav].is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav[data-nav].is-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   Store (indirme) butonları
   ------------------------------------------------------------------------- */
.store-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--ink); color: #fff; padding: .6rem 1.1rem; border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12); transition: transform .2s var(--ease), box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.store-btn:hover { transform: translateY(-2px); color: #fff; box-shadow: var(--shadow); }
.store-btn.is-soon { opacity: .85; cursor: default; }
.store-btn.is-soon:hover { transform: none; }
.store-ic {
  width: 22px; height: 22px; flex: none; border-radius: 5px;
  background: #fff;
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 3c.1 1-.3 2-1 2.8-.7.8-1.7 1.4-2.7 1.3-.1-1 .4-2 1-2.7C14.6 3.6 15.6 3 16.5 3zM19 17.3c-.5 1.1-.7 1.6-1.3 2.6-.9 1.4-2.1 3.1-3.6 3.1-1.3 0-1.7-.9-3.5-.9s-2.2.9-3.5.9c-1.5 0-2.7-1.6-3.6-2.9C1 16.4.8 11.5 2.4 9c1-1.6 2.6-2.5 4.1-2.5 1.5 0 2.5 1 3.7 1 1.2 0 1.9-1 3.7-1 1.3 0 2.7.7 3.7 2-3.2 1.8-2.7 6.4 1.4 8.8z'/%3E%3C/svg%3E");
  mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 3c.1 1-.3 2-1 2.8-.7.8-1.7 1.4-2.7 1.3-.1-1 .4-2 1-2.7C14.6 3.6 15.6 3 16.5 3zM19 17.3c-.5 1.1-.7 1.6-1.3 2.6-.9 1.4-2.1 3.1-3.6 3.1-1.3 0-1.7-.9-3.5-.9s-2.2.9-3.5.9c-1.5 0-2.7-1.6-3.6-2.9C1 16.4.8 11.5 2.4 9c1-1.6 2.6-2.5 4.1-2.5 1.5 0 2.5 1 3.7 1 1.2 0 1.9-1 3.7-1 1.3 0 2.7.7 3.7 2-3.2 1.8-2.7 6.4 1.4 8.8z'/%3E%3C/svg%3E");
}
.store-ic--play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.6 2.4 13.4 12 3.6 21.6c-.4-.2-.6-.6-.6-1.1V3.5c0-.5.2-.9.6-1.1zM15 10.4l2.7 2.7-2.7 2.7-2.2-2.2L15 10.4zM5.3 2 16 8.2l-2.6 2.6L5.3 2zm0 20 8.1-8.1 2.6 2.6L5.3 22z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.6 2.4 13.4 12 3.6 21.6c-.4-.2-.6-.6-.6-1.1V3.5c0-.5.2-.9.6-1.1zM15 10.4l2.7 2.7-2.7 2.7-2.2-2.2L15 10.4zM5.3 2 16 8.2l-2.6 2.6L5.3 2zm0 20 8.1-8.1 2.6 2.6L5.3 22z'/%3E%3C/svg%3E");
}
.store-tx { display: flex; flex-direction: column; line-height: 1.1; }
.store-tx small { font-size: .62rem; opacity: .8; }
.store-tx strong { font-family: "Quicksand", sans-serif; font-size: .98rem; }
.store-row.is-sm .store-btn { padding: .5rem .9rem; }
.store-row.is-sm .store-tx strong { font-size: .88rem; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 60% at 85% 0%, rgba(108, 180, 255, .35), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(46, 139, 247, .18), transparent 60%);
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .8); border: 1px solid var(--card-border);
  color: var(--blue-dark); font-weight: 700; font-family: "Quicksand", sans-serif;
  padding: .45rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.hero-title { font-size: clamp(2.2rem, 5.4vw, 3.6rem); margin-bottom: 1rem; }
.hero-title .hl { position: relative; color: var(--blue-dark); white-space: nowrap; }
.hero-title .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .35em; z-index: -1;
  background: var(--accent); border-radius: 999px; opacity: .55;
}
.hero-sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-note { font-size: .9rem; color: var(--ink-faint); margin: 0; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.badge-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .9); border: 1px solid var(--card-border);
  border-radius: 999px; padding: .45rem .9rem; font-weight: 700; font-size: .9rem;
  color: var(--ink); box-shadow: var(--shadow-sm);
}

/* Telefon mockup (saf CSS) */
.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; height: 590px; border-radius: 44px;
  background: #fff; padding: 14px; box-shadow: var(--shadow-hover);
  border: 1px solid var(--card-border); animation: float 6s ease-in-out infinite;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px; background: var(--ink); border-radius: 999px; z-index: 3;
}
.phone-screen {
  height: 100%; border-radius: 32px; overflow: hidden; position: relative;
  background: var(--grad-soft); padding: 40px 16px 16px; display: flex; flex-direction: column; gap: 12px;
}
.ps-greet { display: flex; align-items: center; gap: 10px; }
.ps-kido { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow-sm); }
.ps-greet b { font-family: "Quicksand", sans-serif; font-size: 1rem; }
.ps-greet small { color: var(--ink-soft); display: block; font-size: .72rem; }
.ps-card { background: #fff; border-radius: 18px; padding: 12px 14px; box-shadow: var(--shadow-sm); }
.ps-card h5 { font-family: "Quicksand", sans-serif; font-size: .82rem; margin: 0 0 8px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.ps-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-top: 1px dashed #e6eefc; }
.ps-item:first-of-type { border-top: none; }
.ps-dot { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; font-size: 1rem; background: rgba(46,139,247,.12); }
.ps-item b { font-size: .82rem; font-family: "Quicksand", sans-serif; }
.ps-item small { font-size: .68rem; color: var(--ink-faint); display: block; }
.ps-pill { margin-top: auto; text-align: center; background: var(--grad); color: #fff; font-family: "Quicksand", sans-serif; font-weight: 700; padding: 11px; border-radius: 14px; font-size: .9rem; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* -------------------------------------------------------------------------
   Trust / rozet şeridi
   ------------------------------------------------------------------------- */
.trust { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: rgba(255,255,255,.6); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.trust-item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--ink); font-family: "Quicksand", sans-serif; }
.trust-item .e { font-size: 1.25rem; }

/* -------------------------------------------------------------------------
   İstatistik sayaç
   ------------------------------------------------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 14px; }
.stat-num { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--blue-dark); line-height: 1; }
.stat-num .plus { color: var(--blue-light); }
.stat-label { color: var(--ink-soft); font-weight: 700; margin-top: .4rem; }

/* -------------------------------------------------------------------------
   Kategori grid
   ------------------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  --cat: var(--blue);
  display: block; background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s; position: relative; overflow: hidden;
}
.cat-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--cat); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cat-emoji {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center;
  font-size: 2rem; margin-bottom: 14px;
  background: color-mix(in srgb, var(--cat) 14%, white); border: 1px solid color-mix(in srgb, var(--cat) 22%, white);
}
.cat-name { font-size: 1.35rem; color: var(--ink); margin-bottom: .25rem; }
.cat-name .tag { font-size: .9rem; color: var(--cat); font-weight: 700; }
.cat-desc { color: var(--ink-soft); margin-bottom: 1rem; }
.cat-areas { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-areas span { font-size: .76rem; font-weight: 700; color: var(--ink-soft); background: var(--bg-soft); padding: .25rem .6rem; border-radius: 999px; }
.cat-more { display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem; font-weight: 700; color: var(--cat); font-family: "Quicksand", sans-serif; }

/* -------------------------------------------------------------------------
   Adımlar
   ------------------------------------------------------------------------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { text-align: center; padding: 30px 22px; position: relative; }
.step-no {
  position: absolute; top: 16px; right: 20px; font-family: "Quicksand", sans-serif;
  font-weight: 700; font-size: 2.4rem; color: rgba(46,139,247,.14);
}
.step-emoji { width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 24px; background: var(--grad-soft); display: grid; place-items: center; font-size: 2.2rem; box-shadow: var(--shadow-sm); }
.step-title { font-size: 1.25rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------------------------
   Özellik vitrini (alternating)
   ------------------------------------------------------------------------- */
.feat-rows { display: flex; flex-direction: column; gap: 30px; }
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feat-row:nth-child(even) .feat-media { order: 2; }
.feat-emoji-wrap {
  border-radius: var(--radius-lg); background: var(--grad-soft); border: 1px solid var(--card-border);
  min-height: 230px; display: grid; place-items: center; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.feat-emoji-wrap .big { font-size: 5rem; filter: drop-shadow(0 10px 18px rgba(26,111,245,.2)); }
.feat-body .eyebrow { margin-bottom: .8rem; }
.feat-body h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.feat-body > p { color: var(--ink-soft); font-size: 1.06rem; }
.feat-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem; }
.feat-list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.feat-list li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(46,139,247,.14); color: var(--blue-dark); display: grid; place-items: center; font-weight: 800; font-size: .85rem; }

/* -------------------------------------------------------------------------
   Hızlı çözüm
   ------------------------------------------------------------------------- */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quick-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.quick-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quick-card .e { font-size: 2rem; display: block; margin-bottom: .6rem; }
.quick-card h4 { font-size: 1.15rem; margin-bottom: .3rem; }
.quick-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* -------------------------------------------------------------------------
   Gelişim alanları çipleri
   ------------------------------------------------------------------------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip { display: inline-flex; align-items: center; gap: .5rem; background: var(--card); border: 1px solid var(--card-border); padding: .7rem 1.1rem; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-sm); }
.area-chip .e { font-size: 1.3rem; }

/* -------------------------------------------------------------------------
   Fiyatlandırma
   ------------------------------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.tier { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tier.is-feature { border-color: rgba(46,139,247,.4); box-shadow: var(--shadow); position: relative; }
.tier-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.tier .e { font-size: 2rem; }
.tier-badge { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--blue-dark); background: rgba(46,139,247,.14); padding: .3rem .7rem; border-radius: 999px; }
.tier h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.tier-price { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 2rem; color: var(--blue-dark); margin: .2rem 0 .6rem; }
.tier > p { color: var(--ink-soft); }
.tier ul { list-style: none; padding: 0; margin: .6rem 0 1.4rem; display: grid; gap: .5rem; }
.tier ul li { display: flex; gap: .55rem; align-items: flex-start; }
.tier ul li::before { content: "✦"; color: var(--blue); font-weight: 800; }
.tier .btn { margin-top: auto; }

.price-toggle { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-bottom: 30px; }
.price-toggle span { font-weight: 700; color: var(--ink-soft); }
.price-toggle span.is-on { color: var(--blue-dark); }
.switch { position: relative; width: 60px; height: 32px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--blue-light); border-radius: 999px; transition: background .25s; }
.switch .thumb { position: absolute; top: 3px; left: 3px; width: 26px; height: 26px; background: #fff; border-radius: 50%; transition: transform .25s var(--ease); box-shadow: var(--shadow-sm); }
.switch input:checked ~ .track { background: var(--blue-dark); }
.switch input:checked ~ .thumb { transform: translateX(28px); }
.save-badge { background: var(--accent); color: #6b4e00; font-weight: 800; font-size: .78rem; padding: .25rem .6rem; border-radius: 999px; }

.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plan { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; transition: transform .25s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.is-pop { border-color: rgba(46,139,247,.45); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -13px; right: 22px; background: var(--grad); color: #fff; font-weight: 800; font-size: .76rem; padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.plan h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.plan-price { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 2.1rem; color: var(--ink); }
.plan-price small { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.plan-sub { color: var(--ink-soft); font-weight: 600; margin: .2rem 0 .6rem; }
.plan-note { color: var(--blue-dark); font-weight: 700; }
.plan [hidden] { display: none; }

.discount-banner {
  display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; text-align: center;
  background: linear-gradient(135deg, #FFF4D6, #FFE9A8); color: #6b4e00; border: 1px solid #ffe08a;
  border-radius: var(--radius); padding: 16px 20px; font-weight: 700; margin-bottom: 30px;
}

.benefit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.benefit-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.benefit-card h4 { font-size: 1.15rem; }
.benefit-card ul { list-style: none; padding: 0; margin: .6rem 0 0; display: grid; gap: .5rem; }
.benefit-card li { display: flex; gap: .55rem; } .benefit-card li::before { content: "✦"; color: var(--blue); font-weight: 800; }

/* -------------------------------------------------------------------------
   Uyku
   ------------------------------------------------------------------------- */
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.mode-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mode-card .e { font-size: 1.9rem; display: block; margin-bottom: .5rem; }
.mode-card h4 { font-size: 1.12rem; margin-bottom: .25rem; }
.mode-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }
.sound-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: .45rem; background: var(--card); border: 1px solid var(--card-border); padding: .55rem 1rem; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-sm); }

/* -------------------------------------------------------------------------
   SSS akordeon
   ------------------------------------------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: rgba(46,139,247,.12); color: var(--blue-dark); display: grid; place-items: center; font-weight: 800; transition: transform .25s; }
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------------------------
   CTA bandı
   ------------------------------------------------------------------------- */
.cta-band { }
.cta-box {
  max-width: var(--maxw); margin: 0 auto; background: var(--grad); color: #fff;
  border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; box-shadow: var(--shadow-hover);
  position: relative; overflow: hidden;
}
.cta-box::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,.25), transparent 60%); pointer-events: none; }
.cta-box h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta-box p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 36em; margin: 0 auto 1.6rem; }
.cta-box .store-row { justify-content: center; }
.cta-box .store-btn { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }

/* -------------------------------------------------------------------------
   Sayfa başlığı (alt sayfalar)
   ------------------------------------------------------------------------- */
.page-hero { padding: 56px 0 36px; text-align: center; background: var(--grad-soft); border-bottom: 1px solid var(--card-border); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 38em; margin: 0 auto; }

/* -------------------------------------------------------------------------
   İletişim formu
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.form { display: grid; gap: 16px; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-family: "Quicksand", sans-serif; }
.field input, .field textarea { font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; border: 1.5px solid var(--card-border); border-radius: 14px; padding: .8rem 1rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,139,247,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.form-success { background: rgba(0,203,169,.12); border: 1px solid rgba(0,203,169,.4); color: #0a7a66; border-radius: 14px; padding: 1rem 1.2rem; font-weight: 700; }
.contact-aside { display: grid; gap: 16px; }
.info-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.info-card h4 { margin-bottom: .3rem; }
.info-card a { font-weight: 700; }

/* -------------------------------------------------------------------------
   Yasal / prose
   ------------------------------------------------------------------------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.45rem; margin-top: 2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose .meta { color: var(--ink-faint); font-style: italic; }
.callout { background: var(--bg-soft); border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; padding: 1rem 1.2rem; margin: 1.4rem 0; }

/* -------------------------------------------------------------------------
   Kategori detay başlığı (renk aksanlı)
   ------------------------------------------------------------------------- */
.cat-hero { --cat: var(--blue); padding: 56px 0 36px; border-bottom: 1px solid var(--card-border); background: color-mix(in srgb, var(--cat) 8%, var(--bg)); text-align: center; }
.cat-hero .cat-emoji { margin: 0 auto 16px; width: 84px; height: 84px; font-size: 2.6rem; }
.cat-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.cat-hero .lead { color: var(--ink-soft); font-size: 1.2rem; max-width: 34em; margin: 0 auto; }
.cat-hero .tagline { color: var(--cat); font-weight: 800; font-family: "Quicksand", sans-serif; margin-bottom: .4rem; }
.example-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 720px; margin: 0 auto; }
.example { --cat: var(--blue); display: flex; align-items: center; gap: .8rem; background: var(--card); border: 1px solid var(--card-border); border-left: 5px solid var(--cat); border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm); font-weight: 700; }
.example .n { width: 30px; height: 30px; flex: none; border-radius: 9px; background: color-mix(in srgb, var(--cat) 16%, white); color: var(--cat); display: grid; place-items: center; font-family: "Quicksand", sans-serif; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.foot { background: linear-gradient(180deg, #243769 0%, #1b2a51 100%); color: rgba(255, 255, 255, .74); margin-top: 64px; }
.foot-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 20px 40px;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; align-items: start;
}
.foot .nav-brand-name { color: #fff; }
.foot-brand { max-width: 340px; }
.foot-tag { color: rgba(255, 255, 255, .60); font-size: .95rem; margin: .9rem 0 1.2rem; }
.foot-col h4 { color: #fff; font-family: "Quicksand", sans-serif; font-size: 1rem; margin: 0 0 .9rem; }
.foot-col a { display: block; color: rgba(255, 255, 255, .70); padding: .32rem 0; transition: color .2s, transform .2s; }
.foot-col a:hover { color: #fff; transform: translateX(3px); }
.foot .store-btn { background: rgba(255, 255, 255, .10); border-color: rgba(255, 255, 255, .18); box-shadow: none; }
.foot .store-btn:hover { background: rgba(255, 255, 255, .18); }
.foot-base {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; align-items: center; gap: 8px 24px; flex-wrap: wrap;
}
.foot-base p { margin: 0; font-size: .86rem; color: rgba(255, 255, 255, .58); }
.foot-note { color: rgba(255, 255, 255, .80); }

/* -------------------------------------------------------------------------
   Reveal animasyonu
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .phone { width: 250px; height: 510px; }
  .cat-grid, .quick-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid, .mode-grid, .tiers { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 22px; }
  .feat-row:nth-child(even) .feat-media { order: 0; }
  .plan-grid, .benefit-cols, .contact-grid, .example-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(255, 255, 255, .98); backdrop-filter: blur(16px); margin: 0; gap: .2rem;
    padding: 16px 20px 24px; border-bottom: 1px solid var(--card-border); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
  }
  .nav[data-nav].is-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: .8rem 1rem; }
  .nav-cta { margin: .6rem 0 0; }
}

@media (max-width: 480px) {
  .cat-grid, .quick-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .cta-box { padding: 40px 22px; }
  .foot-inner { grid-template-columns: 1fr; gap: 24px; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}
