:root {
  --primary: #6f45c4;
  --primary-dark: #5631a7;
  --primary-soft: #f3eafb;
  --amber: #f6ad3c;
  --peach: #f9e6dd;
  --peach-soft: #fff6f2;
  --lilac: #dccbf0;
  --cream: #fffbfa;
  --ink: #0b1420;
  --soft: #4c5560;
  --muted: #8a8492;
  --line: rgba(37, 24, 67, 0.08);
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 60px rgba(86, 49, 167, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
.nav-left span,
.ft-brand-row span {
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255, 246, 242, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 10px;
}

.nav-left img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(111, 69, 196, 0.18);
}

.nav-left span {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-right {
  gap: 6px;
}

.nav-right a {
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-right a:hover {
  color: var(--ink);
  background: rgba(111, 69, 196, 0.07);
}

.nav-right .nav-dl {
  color: #fff;
  background: var(--primary);
  padding: 10px 22px;
  box-shadow: 0 10px 24px rgba(111, 69, 196, 0.24);
}

.nav-right .nav-dl:hover {
  color: #fff;
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 118px 24px 52px;
  background:
    radial-gradient(circle at 18% 20%, rgba(220, 203, 240, 0.4), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(249, 230, 221, 0.55), transparent 26%),
    linear-gradient(180deg, #fff 0%, var(--peach-soft) 38%, var(--primary-soft) 100%);
}

.sparkle-rain {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sparkle-p {
  position: absolute;
  opacity: 0;
  animation: floatUp 5.6s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(24px) rotate(-8deg) scale(0.82);
  }
  20%,
  78% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateY(-110px) rotate(8deg) scale(1.12);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(45, 23, 72, 0.05);
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.live-pill strong {
  color: var(--primary);
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.28;
  animation: pulse 1.9s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.28;
  }
  50% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(48px, 8.6vw, 88px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 6px;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

.hero h1 span {
  color: var(--primary);
  font-size: clamp(32px, 5.6vw, 58px);
  font-style: italic;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--soft);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.55;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.16s both;
}

.trust-row,
.dl-buttons,
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-bottom: 22px;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.22s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 14px;
}

.trust-badge b {
  color: var(--primary);
  font-weight: 800;
}

.tb-icon {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #8658de);
}

.dl-buttons {
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.dl-btn,
.cta-btn,
.cm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, border-color 0.22s;
}

.dl-btn {
  min-height: 55px;
  padding: 16px 28px;
  font-size: 16px;
}

.dl-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.dl-ios {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 34px rgba(111, 69, 196, 0.28);
}

.dl-soon {
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(111, 69, 196, 0.14);
  cursor: default;
}

.dl-soon span small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.dl-btn:hover,
.cta-btn:hover,
.cm-cta:hover {
  transform: translateY(-2px);
}

.dl-soon:hover {
  transform: none;
}

.dl-ios:hover {
  box-shadow: 0 18px 42px rgba(111, 69, 196, 0.36);
}

.phone-stage {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 34px auto 0;
}

.phone-shell {
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, #241735, #120b1c);
  box-shadow: 0 24px 80px rgba(30, 16, 52, 0.26);
  transform: rotate(-1.4deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.red { background: #ff5f57; }
.yellow { background: #febc2e; }
.green { background: #28c840; }

.phone-title {
  margin-left: auto;
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 420px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(220, 203, 240, 0.5), transparent 34%),
    linear-gradient(180deg, #fff, var(--peach-soft));
}

.bubble {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(30, 16, 52, 0.08);
}

.theirs {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
}

.mine {
  align-self: flex-end;
  color: #fff;
  background: var(--primary);
}

.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin-top: 6px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.score-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.score-card strong {
  font-size: 28px;
}

.score-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 87%, #e9def4 87% 100%);
  box-shadow: inset 0 0 0 9px #fff;
}

.ai-panel {
  padding: 16px;
  text-align: left;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #8658de);
  box-shadow: 0 16px 36px rgba(111, 69, 196, 0.2);
}

.ai-chip {
  display: inline-flex;
  padding: 5px 9px;
  margin-bottom: 8px;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.ai-panel p {
  margin: 0;
  line-height: 1.45;
}

.tone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.tone-row span {
  min-width: 0;
  padding: 8px 4px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.marquee-section {
  padding: 38px 0 0;
  overflow: hidden;
  background: var(--primary-soft);
}

.marquee-label {
  margin-bottom: 18px;
  text-align: center;
  color: var(--ink);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 800;
}

.marquee-clip {
  overflow: hidden;
  padding-bottom: 34px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mq-card {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  margin: 0 8px;
  padding: 14px 18px;
  color: var(--ink);
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(30, 16, 52, 0.04);
  cursor: pointer;
  transition: transform 0.2s;
}

.mq-card:hover {
  transform: translateY(-2px);
}

.mq-emoji {
  font-size: 27px;
}

.mq-name {
  font-size: 14px;
  font-weight: 800;
}

.mq-count {
  padding: 4px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.features-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 24px 58px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  font-weight: 600;
}

.section-head p {
  margin: 12px auto 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
}

.ac-scroll-wrap {
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 210px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(30, 16, 52, 0.05);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 69, 196, 0.2);
  box-shadow: var(--shadow);
}

.ac-emoji {
  margin-bottom: 18px;
  font-size: 36px;
}

.ac-name {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.ac-loc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.ac-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
}

.mini-avatars {
  display: inline-flex;
  align-items: center;
}

.mini-avatars i {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  margin-left: -8px;
  padding: 0 7px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #8658de);
}

.mini-avatars i:first-child {
  margin-left: 0;
}

.ac-going {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.scroll-hint {
  display: none;
}

.flow-section {
  padding: 76px 24px;
  background: linear-gradient(180deg, #fff, var(--peach-soft));
}

.flow-inner {
  max-width: 820px;
  margin: 0 auto;
}

.day-list {
  display: grid;
  gap: 0;
}

.day-item {
  display: grid;
  grid-template-columns: 70px 1fr;
}

.day-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.day-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(30, 16, 52, 0.08);
  font-size: 23px;
}

.day-line {
  position: absolute;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), rgba(111, 69, 196, 0.08));
}

.day-right {
  padding: 0 0 34px;
}

.day-time {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-text {
  color: var(--soft);
  font-size: clamp(18px, 3vw, 23px);
  line-height: 1.35;
}

.day-text b {
  color: var(--ink);
}

.story-section {
  padding: 76px 24px;
  background: #fff;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-photo {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(111, 69, 196, 0.18);
}

.story-label {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.story-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
}

.story-text {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.story-sig {
  margin-top: 22px;
  color: var(--ink);
  font-weight: 800;
}

.story-sig span {
  color: var(--primary);
}

.cta-section {
  padding: 74px 24px;
  background: #fff;
}

.cta-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, var(--primary), #4a2b8f 70%, #221338);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(40, 22, 78, 0.24);
}

.cta-box h2 {
  max-width: 620px;
  margin: 0 auto 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.04;
  font-weight: 600;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.cta-btn {
  min-height: 52px;
  padding: 14px 28px;
}

.cta-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.cta-btn-w {
  color: var(--primary);
  background: #fff;
}

.cta-btn-o {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.38);
  cursor: default;
}

.cta-btn-o:hover {
  transform: none;
}

.card-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 14, 40, 0.48);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.2s;
}

.card-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.card-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(18, 10, 34, 0.28);
  transform: scale(0.94) translateY(18px);
  transition: transform 0.22s;
}

.card-modal-overlay.open .card-modal {
  transform: scale(1) translateY(0);
}

.cm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--soft);
  background: var(--primary-soft);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.cm-emoji {
  font-size: 54px;
}

.cm-name {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 800;
}

.cm-loc {
  margin: 8px auto 18px;
  color: var(--soft);
  line-height: 1.5;
}

.cm-preview {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--primary-soft);
  border-radius: 20px;
}

.mini-bubble {
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  background: #fff;
}

.mini-bubble.ai {
  color: #fff;
  background: var(--primary);
}

.cm-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.cm-cta {
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
}

.cm-open-app {
  color: #fff;
  background: var(--primary);
}

footer {
  padding: 48px 24px 24px;
  background: #180f26;
  color: #fff;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.ft-brand {
  max-width: 360px;
}

.ft-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.ft-brand-row span {
  letter-spacing: 2px;
}

.ft-brand-row img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.ft-brand p,
.ft-col a,
.ft-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.ft-links {
  display: flex;
  gap: 48px;
}

.ft-col {
  display: grid;
  gap: 10px;
}

.ft-col h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
}

.ft-col a {
  font-size: 14px;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bottom {
  max-width: 1120px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero'daki gerçek ekran görüntüsü */
.phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.hero-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-swatches span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.sw {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(30, 16, 52, 0.18);
}

.sw-gold { background: linear-gradient(135deg, #f0d084, #c9962e); }
.sw-honey { background: linear-gradient(135deg, #ecd3a4, #cba05c); }
.sw-caramel { background: linear-gradient(135deg, #c98a4e, #8f5a26); }
.sw-copper { background: linear-gradient(135deg, #d97e50, #a94f26); }
.sw-cocoa { background: linear-gradient(135deg, #8a6a55, #55392a); }
.sw-night { background: linear-gradient(135deg, #4a4157, #201a2c); }

/* Ekran görüntülü tanıtım blokları */
.hl-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 30px;
}

.hl-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 44px;
  padding: 34px 0;
}

.hl-row.flip .hl-shot {
  order: 2;
}

.hl-shot {
  justify-self: center;
  width: min(310px, 84vw);
  padding: 11px;
  border-radius: 34px;
  background: linear-gradient(160deg, #241735, #120b1c);
  box-shadow: 0 22px 70px rgba(30, 16, 52, 0.24);
}

.hl-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.hl-eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hl-copy h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--ink);
}

.hl-copy p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.6;
}

.hl-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.5;
}

.hl-check {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8658de);
}

/* Yorum kartları */
.reviews-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--primary-soft), #fff);
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.rating-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(30, 16, 52, 0.06);
}

.rating-big {
  text-align: center;
}

.rating-num {
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.rating-stars-big,
.review-stars {
  color: var(--amber);
}

.rating-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rating-bars {
  display: grid;
  gap: 10px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 10px;
}

.rating-bar-label {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.rating-bar-track {
  height: 9px;
  overflow: hidden;
  background: #e9def4;
  border-radius: 999px;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #8658de);
  border-radius: inherit;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 210px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(30, 16, 52, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-emoji {
  font-size: 26px;
}

.review-title {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.review-text {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.review-author {
  margin-top: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

/* Premium planlar */
.pricing-section {
  padding: 78px 24px;
  background: linear-gradient(180deg, #fff, var(--primary-soft));
}

.pricing-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(30, 16, 52, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 69, 196, 0.24);
  box-shadow: var(--shadow);
}

.plan-card.best {
  border: 2px solid var(--primary);
  box-shadow: 0 14px 40px rgba(111, 69, 196, 0.16);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary), #8658de);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(111, 69, 196, 0.3);
}

.plan-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.plan-price {
  margin-top: 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.plan-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 30px;
}

.pricing-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
}

.pricing-cta {
  margin-top: 30px;
  text-align: center;
}

.pricing-note {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

/* SSS */
.faq-section {
  padding: 74px 24px;
  background: #fff;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.faq-list details {
  padding: 17px 18px;
  background: var(--peach-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Hukuk sayfaları (gizlilik, koşullar) */
.legal-page {
  padding: 132px 24px 80px;
  background:
    linear-gradient(180deg, rgba(255, 246, 242, 0.94), #fff 46%),
    linear-gradient(120deg, rgba(111, 69, 196, 0.08), rgba(249, 230, 221, 0.4));
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.legal-hero h1 {
  margin: 20px auto 10px;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.02;
  font-weight: 600;
}

.legal-hero .legal-date {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.legal-hero p {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
}

.legal-block {
  margin-top: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(30, 16, 52, 0.05);
}

.legal-block h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.12;
  font-weight: 600;
}

.legal-block p,
.legal-block li {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.72;
}

.legal-block ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

.legal-block li {
  margin-bottom: 8px;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-note {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

/* 404 */
.nf-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #fff, var(--primary-soft));
}

.nf-page h1 {
  margin: 0 0 10px;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 600;
}

.nf-page p {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 18px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rating-summary {
    grid-template-columns: 1fr;
  }

  .hl-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 0;
    text-align: center;
  }

  .hl-row.flip .hl-shot {
    order: 0;
  }

  .hl-list {
    max-width: 420px;
    margin: 0 auto;
  }

  .hl-list li {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 12px 16px;
  }

  .nav-right a:not(.nav-dl) {
    display: none;
  }

  .hero {
    padding: 118px 16px 44px;
  }

  .legal-page {
    padding: 116px 16px 56px;
  }

  .legal-block {
    padding: 22px;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 11px;
  }

  .phone-shell {
    transform: none;
  }

  .features-section,
  .flow-section,
  .story-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 0 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .feature-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

  .scroll-hint {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 54px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 251, 250, 0), var(--cream));
  }

  .scroll-hint span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
  }

  .day-item {
    grid-template-columns: 54px 1fr;
  }

  .day-dot {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .day-line {
    top: 40px;
  }

  .ft-top,
  .ft-links,
  .cm-buttons {
    flex-direction: column;
  }

  .reviews-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.best {
    order: -1;
  }

  .reviews-section,
  .pricing-section,
  .faq-section,
  .hl-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero h1 span {
    font-size: 34px;
  }

  .dl-btn,
  .cta-btn {
    width: 100%;
  }

  .tone-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
