/* DietaTrack Landing — brand tokens from app */
:root {
  --green: #539b21;
  --green-dark: #3d7a15;
  --green-light: #6dbd33;
  --red: #ff3e50;
  --red-dark: #e02d3e;
  --bg: #f5f7fa;
  --bg-soft: #f0f9f0;
  --card: #ffffff;
  --text: #1e2a41;
  --text-muted: #6b7280;
  --border: #e9edf4;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 40, 20, 0.03);
  --shadow-md: 0 20px 50px -12px rgba(83, 155, 33, 0.18);
  --shadow-lg: 0 32px 64px -16px rgba(30, 42, 65, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1160px;
  --header-h: 72px;
  --gradient-green: linear-gradient(135deg, #539b21 0%, #6dbd33 100%);
  --gradient-hero: linear-gradient(145deg, #f0f9f0 0%, #f5f7fa 45%, #fff 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-wordmark__emblem {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.brand-wordmark__text {
  font-family: "Croogla 4F", sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark__dieta {
  color: var(--green);
}

.brand-wordmark__track {
  color: var(--red);
}

.brand-wordmark--footer .brand-wordmark__emblem {
  height: 36px;
}

.brand-wordmark--footer .brand-wordmark__text {
  font-size: 1.2rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav-desktop a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(83, 155, 33, 0.08);
  color: var(--green-dark);
}

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(83, 155, 33, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(83, 155, 33, 0.36);
}

/* Header CTA — .btn'dan sonra, mobil önce küçük */
.header-actions .btn-header-cta {
  color: #fff;
  padding: 0.48rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(83, 155, 33, 0.22);
  white-space: nowrap;
}

.header-actions .btn-header-cta:hover {
  box-shadow: 0 6px 16px rgba(83, 155, 33, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: 14px;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: var(--bg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 42, 65, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.25rem 1.5rem;
  background: #ffffff;
  border-right: 1px solid var(--border);
  box-shadow: 8px 0 40px rgba(30, 42, 65, 0.15);
  z-index: 201;
  transform: translateX(-105%);
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}

.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.nav-close:hover {
  background: var(--bg);
  color: var(--text);
}

.nav-mobile a:not(.btn) {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-mobile a:not(.btn):hover {
  background: var(--bg-soft);
  color: var(--text);
}

.nav-mobile .btn-primary {
  color: #fff;
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 155, 33, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(83, 155, 33, 0.1);
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

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

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.mockup-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.85rem 1rem;
  background: #fafbfc;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.mockup-dot:nth-child(2) {
  background: #febc2e;
}
.mockup-dot:nth-child(3) {
  background: #28c840;
}

.mockup-body {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-pill {
  padding: 0.85rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.stat-pill strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.stat-pill span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mockup-chart {
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(83, 155, 33, 0.08) 0%, transparent 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mockup-chart svg {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 80px;
}

.mockup-list {
  display: grid;
  gap: 0.5rem;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: #fafbfc;
  font-size: 0.8125rem;
}

.mockup-row .avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 0.6rem;
}

.mockup-row .left {
  display: flex;
  align-items: center;
}

.mockup-row .tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(83, 155, 33, 0.12);
  color: var(--green-dark);
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.floating-badge.top-right {
  top: -12px;
  right: -8px;
}

.floating-badge.bottom-left {
  bottom: 24px;
  left: -16px;
}

.floating-badge .icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 62, 80, 0.1);
  color: var(--red);
}

.floating-badge.green .icon {
  background: rgba(83, 155, 33, 0.12);
  color: var(--green);
}

/* ─── Bento features ─── */
.bento-section {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(83, 155, 33, 0.06) 0%, transparent 40%),
    var(--bg);
  position: relative;
}

.bento-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
  pointer-events: none;
}

.bento-section .container {
  position: relative;
}

.bento-intro {
  max-width: 32rem;
  margin-bottom: 2.75rem;
}

.bento-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.bento-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.bento-headline em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.bento-cell {
  padding: 1.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.bento-cell h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.bento-cell p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  background: rgba(83, 155, 33, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.bento-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: #c8f0a8;
}

.bento-num {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(83, 155, 33, 0.22);
  margin-bottom: 0.65rem;
}

.bento-num.light {
  color: rgba(255, 255, 255, 0.18);
}

.bento-cell--hero {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.bento-mini-ui {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: var(--bg);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.mini-av {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--gradient-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mini-av.alt {
  background: linear-gradient(135deg, #ff3e50, #ff6b7a);
}

.mini-chip {
  margin-left: auto;
  font-size: 0.68rem;
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  background: rgba(83, 155, 33, 0.1);
  color: var(--green-dark);
  font-weight: 600;
}

.mini-chip.warn {
  background: rgba(255, 62, 80, 0.1);
  color: var(--red-dark);
}

.bento-cell--accent {
  background: rgba(83, 155, 33, 0.08);
  border: 1.5px dashed rgba(83, 155, 33, 0.35);
}

.bento-cell--outline {
  background: transparent;
  border: 1.5px solid var(--border);
}

.bento-cell--dark {
  background: #1a2438;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.bento-cell--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.bento-search {
  margin-top: auto;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bento-cell--wide {
  background: var(--card);
  border: 1px solid var(--border);
}

.bento-wide-inner {
  display: grid;
  gap: 1.25rem;
}

.bento-macro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.85rem;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.bento-macro-strip div {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bento-macro-strip strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.bento-macro-strip span {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.macro-total {
  border-left: 1px solid var(--border);
  padding-left: 0.5rem;
}

.macro-total span {
  color: var(--green-dark);
}

.bento-cell--tall {
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.bento-revenue {
  margin-top: auto;
  padding-top: 1.25rem;
}

.rev-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rev-amount {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.15rem 0;
}

.rev-delta {
  font-size: 0.8125rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ─── Pull quote ─── */
.pull-quote {
  background: var(--green);
  color: #fff;
  padding: 3rem 0;
  border: none;
  margin: 0;
}

.pull-quote-inner {
  max-width: 40rem;
}

.pull-quote p {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1rem;
}

.pull-quote footer {
  font-size: 0.8125rem;
  opacity: 0.75;
  font-style: normal;
  font-family: "Inter", sans-serif;
}

/* ─── Timeline ─── */
.timeline-section {
  padding: 5rem 0;
  background: var(--card);
}

.timeline-layout {
  display: grid;
  gap: 3rem;
}

.timeline-sticky {
  max-width: 22rem;
}

.timeline-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.timeline-sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.timeline-steps {
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
}

.timeline-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-marker {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
  padding-top: 0.15rem;
}

.timeline-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 28rem;
}

/* ─── Split pricing ─── */
.pricing-split {
  padding: 5rem 0;
  background: var(--bg);
}

.pricing-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
}

.pricing-copy .btn {
  align-self: flex-start;
}

.pricing-tiers {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pricing-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-headline em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.pricing-lead {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
  max-width: 26rem;
}

.pricing-note {
  padding: 1.25rem;
  border-left: 3px solid var(--red);
  background: var(--card);
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.pricing-note strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tiers-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.tier-card {
  padding: 1.15rem 1.25rem;
  min-height: 8.75rem;
  height: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.15s, transform 0.15s;
}

.tier-card:not(.tier-card--popular)::before {
  content: "";
  display: block;
  height: 1.35rem;
  margin-bottom: 0.45rem;
  flex-shrink: 0;
}

.tier-card:hover {
  border-color: rgba(83, 155, 33, 0.4);
  transform: translateY(-2px);
}

.tier-card--popular {
  border-color: var(--green);
  background: rgba(83, 155, 33, 0.06);
}

.tier-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--green);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.tier-duration {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tier-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-includes {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  margin: 0;
}

.pricing-includes li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.pricing-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── CTA split ─── */
.cta-split {
  padding: 4rem 0 5rem;
  background: var(--bg-soft);
  overflow: hidden;
}

.cta-split-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-split-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(83, 155, 33, 0.2);
  pointer-events: none;
}

.cta-text-block {
  position: relative;
  z-index: 1;
}

.cta-text-block h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.cta-serif {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.cta-text-block > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 26rem;
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.5rem;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.cta-mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.55rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.cta-mail-link svg {
  color: var(--green);
  flex-shrink: 0;
}

.cta-mail-link:hover {
  border-color: rgba(83, 155, 33, 0.45);
  color: var(--green-dark);
  background: var(--bg-soft);
}

.cta-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
}

.cta-logo {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  height: 160px;
  width: auto;
}

.cta-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 155, 33, 0.15) 0%, transparent 70%);
}

/* ─── Footer minimal ─── */
.site-footer {
  padding: 2.5rem 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
}

.footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.footer-copy a:hover {
  color: #fff;
}

/* ─── Responsive (post-hero) ─── */
@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-cell--hero {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-cell--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-wide-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .bento-cell--dark,
  .bento-cell--tall {
    grid-row: auto;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-ghost.hide-mobile {
    display: inline-flex;
  }

  .logo .brand-wordmark__emblem {
    height: 46px;
  }

  .logo .brand-wordmark__text {
    font-size: 1.5rem;
  }

  .header-actions {
    gap: 0.85rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .header-actions .btn-header-cta {
    padding: 0.85rem 1.65rem;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(83, 155, 33, 0.28);
  }

  .header-actions .btn-header-cta:hover {
    box-shadow: 0 12px 28px rgba(83, 155, 33, 0.36);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .timeline-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }

  .timeline-sticky {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }

  .pricing-layout {
    grid-template-columns: 1fr minmax(380px, 520px);
    gap: 3.5rem;
    align-items: center;
  }

  .pricing-tiers {
    padding: 1.75rem 2rem;
    width: 100%;
  }

  .pricing-includes {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
  }

  .cta-split-inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 3rem 3.5rem;
  }

  .footer-minimal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-copy {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .pricing-layout {
    grid-template-columns: 1fr minmax(440px, 560px);
  }

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(148px, auto));
    gap: 1rem;
  }

  /* Sol: danışan (2×2) | Üst orta-sağ: anamnez + randevu | Sağ: gelir (2 satır) */
  .bento-cell--hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .bento-cell--accent {
    grid-column: 3;
    grid-row: 1;
  }

  .bento-cell--outline {
    grid-column: 4;
    grid-row: 1;
  }

  .bento-cell--dark {
    grid-column: 3;
    grid-row: 2 / 4;
  }

  .bento-cell--tall {
    grid-column: 4;
    grid-row: 2 / 4;
  }

  .bento-cell--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

@media (max-width: 767px) {
  .btn-ghost.hide-mobile {
    display: none;
  }

  .hero-visual {
    overflow: hidden;
  }

  .mockup-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .stat-pill {
    padding: 0.65rem 0.45rem;
    min-width: 0;
    text-align: center;
  }

  .stat-pill strong {
    font-size: 0.95rem;
  }

  .stat-pill span {
    font-size: 0.625rem;
    line-height: 1.25;
  }

  .floating-badge {
    max-width: calc(100% - 1rem);
    font-size: 0.75rem;
  }

  .floating-badge.bottom-left {
    left: 0;
    bottom: 12px;
  }

  .floating-badge.top-right {
    right: 0;
  }

  .bento-macro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .macro-total {
    grid-column: span 2;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 0.5rem;
  }
}
