/* ═══════════════════════════════════════════════════════
   AnadoluByte — Marka tasarım sistemi
   ═══════════════════════════════════════════════════════ */

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

:root,
[data-theme="light"] {
  --coral:        #f58220;
  --coral-hover:  #e67310;
  --coral-soft:   rgba(245, 130, 32, 0.12);
  --coral-end:    #ef4b4b;
  --violet:       #7c6cf0;
  --violet-soft:  rgba(124, 108, 240, 0.12);
  --mint:         #2ec4a0;
  --mint-soft:    rgba(46, 196, 160, 0.12);
  --amber:        #f5a623;
  --ink:          #2d3440;
  --ink-soft:     #4a5568;
  --muted:        #6b6b80;
  --bg:           #faf8f5;
  --bg-tinted:    #f3f0eb;
  --surface:      #ffffff;
  --border:       rgba(18, 18, 26, 0.08);
  --border-strong:rgba(18, 18, 26, 0.14);

  --accent:       var(--coral);
  --accent-hover: var(--coral-hover);
  --accent-soft:  var(--coral-soft);
  --accent-2:     var(--coral-end);
  --brand-gradient: linear-gradient(135deg, var(--coral) 0%, var(--coral-end) 100%);
  --navy:         #2d3440;
  --green:        var(--mint);
  --danger:       #e03535;
  --success:      var(--mint);

  --shadow-sm:    0 2px 8px rgba(18, 18, 26, 0.06);
  --shadow:       0 8px 32px rgba(18, 18, 26, 0.08);
  --shadow-lg:    0 20px 60px rgba(18, 18, 26, 0.12);
  --shadow-glow:  0 0 0 1px rgba(245, 130, 32, 0.18), 0 12px 40px rgba(245, 130, 32, 0.2);

  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display:      'Fraunces', Georgia, serif;
  --header-h:     72px;
  --wrap:         min(1140px, 92vw);
  --wrap-narrow:  min(680px, 92vw);
  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  /* Eski bileşenlerle uyumluluk */
  --text:         var(--ink);
  --bg-muted:     var(--bg-tinted);
  --text-muted:   var(--muted);
}

[data-theme="dark"] {
  --ink:          #f5f3ef;
  --ink-soft:     #c8c4bc;
  --muted:        #9a9690;
  --bg:           #0f0e12;
  --bg-tinted:    #16151c;
  --surface:      #1c1b24;
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.14);
  --coral-soft:   rgba(255, 92, 51, 0.18);
  --violet-soft:  rgba(124, 108, 240, 0.18);
  --mint-soft:    rgba(46, 196, 160, 0.15);
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow:       0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow:  0 0 0 1px rgba(255, 92, 51, 0.25), 0 12px 40px rgba(255, 92, 51, 0.15);
  --navy:         #0a0910;
  --text:         var(--ink);
  --bg-muted:     var(--bg-tinted);
  --text-muted:   var(--muted);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-narrow { width: var(--wrap-narrow); margin-inline: auto; }

.muted { color: var(--muted); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }

/* ── Pills & kickers ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--coral);
  background: var(--coral-soft);
  border: 1px solid rgba(255, 92, 51, 0.2);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.pill-muted {
  color: var(--violet);
  background: var(--violet-soft);
  border-color: rgba(124, 108, 240, 0.2);
}

.kicker {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}
.logo-full-img {
  width: auto;
  height: 72px;
  object-fit: contain;
}
.logo--full {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  display: flex;
  align-items: baseline;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.logo-name-dark { color: var(--ink); }
.logo-name-accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-tag { font-size: 0.6875rem; font-weight: 500; color: var(--muted); margin-top: 0.1rem; }
.logo--light { color: #fff; }
.logo--light .logo-name-dark { color: #fff; }
.logo--light .logo-tag { color: rgba(255,255,255,0.55); }
.logo--light .logo-mark-img {
  background: rgba(255, 255, 255, 0.95);
  padding: 3px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1.5rem;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.header-nav { display: flex; gap: 0.25rem; flex: 1; justify-content: center; }
.header-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.header-nav a:hover { color: var(--ink); background: var(--border); }
.header-nav a.active { color: var(--coral); background: var(--coral-soft); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.icon-btn {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.icon-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-sm); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn .icon-sun { display: none; }
.icon-btn .icon-moon { display: block; }
[data-theme="dark"] .icon-btn .icon-sun { display: block; }
[data-theme="dark"] .icon-btn .icon-moon { display: none; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-block, .btn-full { width: 100%; }

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-hover) 0%, #d94444 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 130, 32, 0.4);
  color: #fff;
}

.btn-secondary, .btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover, .btn-ghost:hover {
  background: var(--bg-tinted);
  transform: translateY(-1px);
}

.btn-soft {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-soft:hover { background: var(--surface); box-shadow: var(--shadow-sm); }

/* ── Page shell ── */
.page { padding-top: 0; flex: 1; }

/* ══════════════════════════════════════
   WELCOME / HERO
   ══════════════════════════════════════ */
.welcome {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: hidden;
}

.welcome-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.blob-1 {
  width: 55vw; height: 55vw;
  max-width: 600px; max-height: 600px;
  background: rgba(245, 130, 32, 0.22);
  top: -10%; right: -5%;
}
.blob-2 {
  width: 45vw; height: 45vw;
  max-width: 480px; max-height: 480px;
  background: rgba(124, 108, 240, 0.2);
  bottom: 10%; left: -10%;
  animation-delay: -6s;
}
.blob-3 {
  width: 30vw; height: 30vw;
  max-width: 320px; max-height: 320px;
  background: rgba(46, 196, 160, 0.18);
  top: 40%; left: 35%;
  animation-delay: -12s;
}

@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

.welcome-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border-strong) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  opacity: 0.5;
}

.welcome-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.welcome-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.welcome-copy .highlight {
  font-style: italic;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline;
}
.welcome-copy .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--coral-soft);
  border-radius: 4px;
  z-index: -1;
}

.welcome-lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.welcome-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-strong);
}
.welcome-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}
.welcome-stats span {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

/* Preview mockup */
.welcome-visual { position: relative; }

.preview-stack { position: relative; }

.preview-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.preview-card-main { animation: float-card 6s ease-in-out infinite; }

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

.preview-top {
  display: flex;
  gap: 6px;
  padding: 0.875rem 1rem;
  background: var(--bg-tinted);
  border-bottom: 1px solid var(--border);
}
.preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.preview-dot:first-child { background: #ff6b6b; }
.preview-dot:nth-child(2) { background: #ffd93d; }
.preview-dot:nth-child(3) { background: #6bcb77; }

.preview-body { padding: 1.25rem; }
.preview-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
}
.preview-avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.preview-avatar-2 { background: linear-gradient(135deg, var(--mint), #3b82f6); }
.preview-name { font-size: 0.8125rem; font-weight: 600; line-height: 1.3; }
.preview-meta { font-size: 0.6875rem; color: var(--muted); }
.preview-badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 92, 51, 0.12);
  color: var(--coral);
  flex-shrink: 0;
}
.preview-badge-new {
  background: rgba(46, 196, 160, 0.15);
  color: var(--mint);
}
.preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--bg-tinted);
  border-radius: var(--radius);
}
.preview-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--coral), var(--coral-end));
  opacity: 0.75;
}

.preview-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
}
.preview-float > span:first-child {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--coral-soft);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.preview-float strong { display: block; font-size: 1rem; line-height: 1.2; }
.preview-float small { color: var(--muted); font-size: 0.6875rem; }
.preview-float-1 { top: -20px; right: -20px; animation: float-card 5s ease-in-out infinite reverse; }
.preview-float-2 { bottom: 40px; left: -30px; animation: float-card 7s ease-in-out infinite; animation-delay: -2s; }

/* Trust marquee */
.trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-chip {
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section { padding: 5.5rem 0; }
.section-tinted { background: var(--bg-tinted); }

.section-head { margin-bottom: 3rem; max-width: 620px; }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .section-lead { margin-inline: auto; }

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 52ch;
}

.trial-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mint);
  background: var(--mint-soft);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(46, 196, 160, 0.25);
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}
.bento-item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bento-item-1 { grid-column: span 2; background: linear-gradient(135deg, var(--coral-soft), var(--surface)); }
.bento-item-2 { grid-column: span 2; background: linear-gradient(135deg, var(--violet-soft), var(--surface)); }
.bento-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  margin-bottom: 1rem;
  color: var(--coral);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-item-2 .bento-icon { color: var(--violet); }
.bento-item-3 .bento-icon { color: var(--mint); }
.bento-item-4 .bento-icon { color: #25d366; }
.bento-item h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.35rem; }
.bento-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
}
.tag-list li::before { content: '✦ '; color: var(--coral); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-num {
  display: block;
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}
.feature-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }

.feature-card--coral .feature-num { color: var(--coral); opacity: 1; }
.feature-card--violet .feature-num { color: var(--violet); opacity: 1; }
.feature-card--mint .feature-num { color: var(--mint); opacity: 1; }
.feature-card--amber .feature-num { color: var(--amber); opacity: 1; }
.feature-card--sky .feature-num { color: #3b82f6; opacity: 1; }
.feature-card--rose .feature-num { color: #f43f5e; opacity: 1; }
.feature-card--lime .feature-num { color: #84cc16; opacity: 1; }
.feature-card--indigo .feature-num { color: #6366f1; opacity: 1; }

/* Legacy card grids */
.card-grid { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.35rem; }
.card p { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.checklist li {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.price-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--brand-gradient);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}
.price-discount {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(46, 196, 160, 0.25);
}
.price-card h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.price-amount {
  margin: 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.price-amount s { font-size: 0.875rem; color: var(--muted); width: 100%; }
.price-amount strong {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.price-amount span { font-size: 0.875rem; color: var(--muted); }
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.price-features li {
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.price-features li:last-child { border-bottom: none; }

.center-cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.center-cta .btn { margin-top: 1.5rem; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--coral); }
.faq-item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tinted) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.contact-email {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}
.contact-email:hover { text-decoration: underline; }

.contact-form-wrap,
.form-panel {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form label, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.form-row, .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form input, .form select, .form textarea,
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}
.form-note { font-size: 0.875rem; color: var(--muted); text-align: center; }

/* ══════════════════════════════════════
   PAGE HERO (subpages)
   ══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}
.page-hero-lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); }

/* Legacy hero (compat) */
.hero {
  background: var(--bg-tinted);
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
}
.hero--compact { padding: calc(var(--header-h) + 2rem) 0 2.5rem; }
.hero h1, .hero--compact h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
  max-width: 640px;
}
.hero h1 em, .hero--compact h1 em { font-style: italic; color: var(--coral); }
.hero .lead, .hero--compact .lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero .kicker { color: var(--coral); }
.hero-badge {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint);
  background: var(--mint-soft);
  border-radius: var(--radius-pill);
}
.hero .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-strong);
}
.stats dt { font-family: var(--display); font-size: 1.625rem; font-weight: 700; }
.stats dd { font-size: 0.8125rem; color: var(--muted); margin-top: 0.2rem; }

.section-muted { background: var(--bg-tinted); border-block: none; }

/* ══════════════════════════════════════
   AUTH
   ══════════════════════════════════════ */
.auth-shell {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.auth-shell::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  max-width: 500px; max-height: 500px;
  background: rgba(255, 92, 51, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.auth-bar {
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.auth-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.auth-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  position: relative;
  z-index: 1;
}
.auth-layout--below-header {
  padding-top: 2rem;
  min-height: calc(100vh - var(--header-h));
}

.auth-box {
  width: min(440px, 100%);
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.auth-box h1 {
  font-family: var(--display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.auth-box > .muted { font-size: 0.9375rem; margin-bottom: 1.5rem; color: var(--muted); }
.auth-switch {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.auth-switch a { color: var(--coral); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

.notice {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 0.75rem 0;
  border: 1px solid transparent;
}
.notice.error { background: rgba(224, 53, 53, 0.08); color: var(--danger); border-color: rgba(224, 53, 53, 0.2); }
.notice.success { background: var(--mint-soft); color: var(--mint); border-color: rgba(46, 196, 160, 0.25); }

.meta-list { margin: 1.25rem 0; }
.meta-list div {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.meta-list dt { color: var(--muted); }
.auth-box .btn { margin-top: 0.5rem; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-social a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--coral);
  text-decoration: none;
}
.footer-social a:hover { text-decoration: underline; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-links strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}
.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}
.footer-tagline { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .welcome-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome-copy h1 { max-width: none; }
  .welcome-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item-1, .bento-item-2 { grid-column: span 1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .card-grid-4, .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .checklist { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .menu-btn { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 1rem; right: 1rem;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 0.75rem 1rem; }
  .header-actions .btn-ghost { display: none; }

  .welcome-copy h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .welcome-stats { gap: 1.25rem 2rem; }
  .preview-float-1 { right: 0; top: -10px; }
  .preview-float-2 { left: 0; bottom: 20px; }

  .bento { grid-template-columns: 1fr; }
  .bento-item-1, .bento-item-2 { grid-column: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .card-grid-4, .card-grid-3 { grid-template-columns: 1fr; }
  .form-row, .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; }
  .section { padding: 4rem 0; }
}
