/* ============================================================
   AWUCAT — Ultra-Premium Apple Keynote Landing
   TopNotch-inspired, Steve Jobs presentation aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg:             #000000;
  --bg-elevated:    #0a0a0a;
  --bg-card:        #111111;
  --bg-card-hover:  #1a1a1a;

  --gold:           #c9a227;
  --gold-light:     #f0d060;
  --gold-dim:       rgba(201,162,39,0.15);
  --blue:           #2997ff;
  --blue-dim:       rgba(41,151,255,0.12);
  --green:          #30d158;
  --green-dim:      rgba(48,209,88,0.12);
  --red:            #ff453a;
  --red-dim:        rgba(255,69,58,0.12);
  --purple:         #bf5af2;

  --text-primary:   #f5f5f7;
  --text-secondary: #86868b;
  --text-tertiary:  #6e6e73;
  --text-dim:       #48484a;

  --border:         rgba(255,255,255,0.08);
  --border-gold:    rgba(201,162,39,0.2);

  --font-display:   'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --container:      1120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ---------- Particle Canvas ---------- */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Noise Overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ---------- All Content Above Canvas ---------- */
main, .nav, .footer, .toast, .legal-modal-overlay { position: relative; z-index: 2; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

/* Hidden by default — shows on scroll */
.nav-brand-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.nav-brand-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}

.nav-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.3s;
}

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

.nav-cta {
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: #0077ed;
  transform: scale(1.02);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 110;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================================
   HERO — Steve Jobs Keynote Style
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Dramatic spotlight */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(41,151,255,0.06) 0%,
    rgba(201,162,39,0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: spotlightBreathe 10s ease-in-out infinite;
}

@keyframes spotlightBreathe {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

/* Coming Soon */
.hero-soon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s 0.2s forwards;
}

/* Logo */
.hero-logo {
  width: clamp(160px, 22vw, 240px);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 80px rgba(41,151,255,0.2));
  animation: logoFloat 7s ease-in-out infinite, fadeInUp 1s 0.4s forwards;
  opacity: 0;
}

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

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s 0.5s forwards;
}

/* Platform subtitle */
.hero-platform {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s 0.7s forwards;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}

.hero-tagline strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 1s 1.1s forwards;
}

.btn-primary {
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-primary:hover {
  background: #0077ed;
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(41,151,255,0.3);
}

.btn-secondary {
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 980px;
  cursor: pointer;
  background: transparent;
  color: var(--blue);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(41,151,255,0.08);
  border-color: rgba(41,151,255,0.2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-dim);
  fill: none;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 0.6; }
}

/* ============================================================
   SECTION — Common
   ============================================================ */
.section-spacer {
  padding: 120px 24px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================================
   STORE BADGES — Coming Soon
   ============================================================ */
.store-badges {
  margin-top: 36px;
  text-align: center;
}

.store-badges-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.store-badges-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.store-badge svg {
  opacity: 0.6;
}

.store-badge:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ============================================================
   PRODUCT INTRO — "Tinder for Lawyers" concept strip
   ============================================================ */
.product-intro {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-intro .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.intro-text {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
}

.intro-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 20px;
}

.intro-headline .highlight {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   PHONE FRAME — Wraps the Swipe Demo
   ============================================================ */
.phone-frame {
  position: relative;
  width: 320px;
  height: 640px;
  background: #1a1a1a;
  border-radius: 44px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 100px rgba(0,0,0,0.6),
    0 0 120px rgba(41,151,255,0.08);
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
}

/* Dynamic Island */
.phone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-dynamic-island::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a3d2a;
  border: 1px solid #1a5a3a;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  border-radius: 41px;
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

/* App Status Bar */
.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
}

.asb-dynamic-island-spacer {
  width: 90px;
  flex-shrink: 0;
}

.asb-right {
  display: flex;
  gap: 5px;
  align-items: center;
}

.asb-right svg {
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

/* App Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 10px;
  border-bottom: 1px solid var(--border);
}

.app-header span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.app-header-icon {
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Phone Bottom Bar */
.phone-bottom-bar {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.pbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.55rem;
  color: var(--text-dim);
}

.pbb-item svg {
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pbb-item.pbb-active {
  color: var(--blue);
}

.pbb-item.pbb-active svg {
  stroke: var(--blue);
}

/* ============================================================
   SWIPE DEMO — Interactive Tinder-style card stack
   ============================================================ */
.swipe-demo {
  position: relative;
  flex: 1;
  margin: 8px 12px;
  perspective: 1000px;
}

.swipe-card {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  cursor: grab;
  transition: transform 0.5s var(--ease-bounce), opacity 0.5s var(--ease), box-shadow 0.3s var(--ease);
  user-select: none;
  overflow: hidden;
  will-change: transform;
}

.swipe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41,151,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.swipe-card:active { cursor: grabbing; }

.swipe-card.card-1 { z-index: 3; }
.swipe-card.card-2 { z-index: 2; transform: scale(0.95) translateY(10px); opacity: 0.7; }
.swipe-card.card-3 { z-index: 1; transform: scale(0.9) translateY(20px); opacity: 0.4; }

.swipe-card.swiped-right {
  transform: translateX(400px) rotate(15deg) !important;
  opacity: 0 !important;
  transition: all 0.5s var(--ease) !important;
}

.swipe-card.swiped-left {
  transform: translateX(-400px) rotate(-15deg) !important;
  opacity: 0 !important;
  transition: all 0.5s var(--ease) !important;
}

/* Card content */
.sc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.sc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.sc-avatar.av-blue   { background: var(--blue-dim); color: var(--blue); }
.sc-avatar.av-gold   { background: var(--gold-dim); color: var(--gold); }
.sc-avatar.av-green  { background: var(--green-dim); color: var(--green); }

.sc-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sc-bar {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.sc-badge svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-badge.badge-tevkil {
  background: var(--blue-dim);
  color: var(--blue);
}

.sc-badge.badge-urgent {
  background: var(--red-dim);
  color: var(--red);
}

.sc-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.sc-case-type {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sc-location, .sc-date, .sc-court {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.sc-location svg, .sc-date svg, .sc-court svg {
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.sc-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.sc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sc-fee {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.sc-fee-label {
  font-size: 0.62rem;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.sc-distance {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  text-align: right;
}

/* Swipe action buttons — inside phone */
.swipe-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 8px 0;
  flex-shrink: 0;
}

.swipe-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.swipe-btn:hover {
  transform: scale(1.1);
}

.swipe-btn.btn-pass {
  border-color: rgba(255,69,58,0.3);
}

.swipe-btn.btn-pass:hover {
  background: var(--red-dim);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255,69,58,0.2);
}

.swipe-btn.btn-accept {
  border-color: rgba(48,209,88,0.3);
}

.swipe-btn.btn-accept:hover {
  background: var(--green-dim);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(48,209,88,0.2);
}

.swipe-btn.btn-save {
  border-color: rgba(41,151,255,0.3);
}

.swipe-btn.btn-save:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(41,151,255,0.2);
}

.swipe-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swipe-btn.btn-pass svg   { stroke: var(--red); }
.swipe-btn.btn-accept svg { stroke: var(--green); }
.swipe-btn.btn-save svg   { stroke: var(--blue); }

/* Bookmark active state */
.swipe-btn.btn-save.bookmarked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(41,151,255,0.3);
}
.swipe-btn.btn-save.bookmarked svg {
  stroke: #fff;
  fill: #fff;
}

/* Phone bottom bar active state */
.pbb-active {
  color: var(--blue) !important;
}
.pbb-active svg {
  stroke: var(--blue) !important;
}

/* ============================================================
   Phone Tab Screens (Keşfet, Mesajlar, Profil)
   ============================================================ */
.phone-tab-screen {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
  font-size: 0.78rem;
  color: var(--text-secondary);
  animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Keşfet screen */
.pts-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 0.72rem;
}
.pts-search svg { stroke: var(--text-dim); fill: none; stroke-width: 2; }

.pts-category-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pts-cat {
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.68rem;
  color: var(--text-secondary);
}

.pts-card-mini {
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pts-card-mini small { color: var(--text-dim); }
.pts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Mesajlar screen */
.pts-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.pts-msg-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pts-msg-text { color: var(--text-dim); }
.pts-msg-time {
  font-size: 0.6rem;
  color: var(--text-dim);
  float: right;
  margin-top: -14px;
}
.pts-msg strong { font-size: 0.72rem; color: var(--text-primary); }

/* Profil screen */
.pts-profile {
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 16px;
}
.pts-avatar-big {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pts-profile strong { font-size: 0.85rem; color: var(--text-primary); }
.pts-stat-row {
  display: flex;
  gap: 16px;
  margin: 10px 0;
}
.pts-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pts-stat strong { font-size: 0.9rem; color: var(--text-primary); }
.pts-stat small { font-size: 0.6rem; color: var(--text-dim); }
.pts-menu-item {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: left;
}

.swipe-label {
  text-align: center;
  width: 100%;
  flex-basis: 100%;
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Drag overlay */
.drag-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.2s;
}

.drag-overlay.overlay-right {
  background: rgba(48,209,88,0.15);
  color: var(--green);
  border: 3px solid var(--green);
}

.drag-overlay.overlay-left {
  background: rgba(255,69,58,0.15);
  color: var(--red);
  border: 3px solid var(--red);
}

/* ============================================================
   HOW IT WORKS — 3-step process
   ============================================================ */
.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: 72px;
  align-items: center;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8px;
}

.step-connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 1px;
  opacity: 0.4;
}

.step-connector-arrow {
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
  animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 0.7; transform: translateX(3px); }
}

@keyframes jumpLoop {
  0%, 33%, 100% {
    transform: translateY(0);
  }
  16.6% {
    transform: translateY(-10px);
  }
}

@keyframes neonLoop {
  0%, 33%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  16.6% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.step-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  animation: jumpLoop 6s infinite;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(41, 151, 255, 0.8), inset 0 0 20px rgba(191, 90, 242, 0.4);
  border: 2px solid rgba(41, 151, 255, 0.9);
  opacity: 0;
  animation: neonLoop 6s infinite;
  pointer-events: none;
  z-index: 10;
}

#step-1, #step-1::before { animation-delay: 0s; }
#step-2, #step-2::before { animation-delay: 2s; }
#step-3, #step-3::before { animation-delay: 4s; }

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41,151,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.step-card:hover::after {
  transform: scaleX(1);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--blue-dim);
  color: var(--blue);
  margin-bottom: 24px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FEATURES — Grid
   ============================================================ */
.features-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feat-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: -1;
}

#feat-ai::before { background: radial-gradient(ellipse at 50% 80%, rgba(41,151,255,0.2), transparent 70%); }
#feat-social::before { background: radial-gradient(ellipse at 50% 80%, rgba(191,90,242,0.2), transparent 70%); }
#feat-security::before { background: radial-gradient(ellipse at 50% 80%, rgba(48,209,88,0.2), transparent 70%); }
#feat-payment::before { background: radial-gradient(ellipse at 50% 80%, rgba(201,162,39,0.2), transparent 70%); }
#feat-calendar::before { background: radial-gradient(ellipse at 50% 80%, rgba(41,151,255,0.2), transparent 70%); }
#feat-rating::before { background: radial-gradient(ellipse at 50% 80%, rgba(201,162,39,0.2), transparent 70%); }

.feat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.12);
}

.feat-card:hover::before {
  opacity: 1;
}

#feat-ai:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(41,151,255,0.12); }
#feat-social:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(191,90,242,0.12); }
#feat-security:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(48,209,88,0.12); }
#feat-payment:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(201,162,39,0.12); }
#feat-calendar:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(41,151,255,0.12); }
#feat-rating:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(201,162,39,0.12); }

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feat-icon.fi-blue   { background: var(--blue-dim); }
.feat-icon.fi-gold   { background: var(--gold-dim); }
.feat-icon.fi-green  { background: var(--green-dim); }
.feat-icon.fi-purple { background: rgba(191,90,242,0.12); }

.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feat-icon.fi-blue svg   { stroke: var(--blue); }
.feat-icon.fi-gold svg   { stroke: var(--gold); }
.feat-icon.fi-green svg  { stroke: var(--green); }
.feat-icon.fi-purple svg { stroke: var(--purple); }

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   ONE MORE THING — Phone reveal
   ============================================================ */
.one-more-thing {
  background: var(--bg);
  overflow: hidden;
}

.omt-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.omt-left {
  flex: 1;
}

.omt-left .section-eyebrow,
.omt-left .section-headline,
.omt-left .section-sub {
  text-align: left;
}

.omt-features-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.omt-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.omt-check {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.omt-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
}

.omt-right {
  flex: 0 0 400px;
  position: relative;
}

.omt-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
  animation: phoneFloat 8s ease-in-out infinite;
}

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

/* ============================================================
   FAQ / SSS — Accordion
   ============================================================ */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
}

.faq-item.open {
  border-color: rgba(201,162,39,0.2);
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  color: var(--text-dim);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CTA — Early Access Signup
   ============================================================ */
.cta-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-card {
  max-width: 560px;
  margin: 56px auto 0;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-icon {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card-sub {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cta-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.cta-btn-icon svg {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.cta-btn-whatsapp {
  background: #25D366;
  border: none;
}

.cta-btn-whatsapp svg {
  stroke: #fff;
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.cta-btn-email {
  background: transparent;
  border: 1px solid var(--border);
}

.cta-btn-email svg {
  stroke: var(--text-secondary);
}

.cta-btn-email:hover {
  border-color: rgba(41,151,255,0.4);
  background: rgba(41,151,255,0.08);
  transform: translateY(-3px) scale(1.08);
}

.cta-btn-email:hover svg {
  stroke: var(--blue);
}

.cta-privacy {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cta-privacy-icon {
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-legal-link {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dotted var(--text-dim);
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.footer-legal-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-store-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-store-item {
  opacity: 0.5;
}

.footer-store-divider {
  opacity: 0.3;
}

/* ============================================================
   LEGAL MODAL
   ============================================================ */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 20px;
}

.legal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal {
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  background: #1c1c1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-bounce);
}

.legal-modal-overlay.active .legal-modal {
  transform: translateY(0) scale(1);
}

.lm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}

.lm-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lm-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lm-close svg {
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lm-close:hover {
  background: rgba(255,255,255,0.15);
}

.lm-body {
  padding: 24px 32px 32px;
}

.lm-copyright {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.lm-text {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.lm-address {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.lm-address strong {
  color: var(--text-primary);
}

.lm-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.lm-owner-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.lm-owner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.lm-owner-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.lm-owner-info {
  display: flex;
  flex-direction: column;
}

.lm-owner-info strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.lm-owner-info span {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.lm-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lm-link-coursepod {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,180,150,0.15), rgba(50,210,100,0.1));
  border: 1px solid rgba(30,180,150,0.25);
  color: #3dd68c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.cp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1db89a, #3dd68c);
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(29,184,154,0.3);
}

.cp-icon svg {
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.cp-text {
  background: linear-gradient(135deg, #1db89a, #3dd68c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.95rem;
}

.lm-link-coursepod:hover {
  background: linear-gradient(135deg, rgba(30,180,150,0.25), rgba(50,210,100,0.18));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,180,150,0.15);
}

.lm-social-icons {
  display: flex;
  gap: 10px;
}

.lm-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lm-social svg {
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lm-social:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  transition: all 0.5s var(--ease-bounce);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

/* ============================================================
   SOCIAL PROOF / TRUST
   ============================================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================================
   RESPONSIVE — Ultra Responsive Design
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .steps-grid { gap: 0; }
  .features-grid { gap: 16px; }
  .omt-container { gap: 48px; }
  .omt-right { flex: 0 0 320px; }
  .stats-bar { gap: 40px; }
}

/* Medium tablet / landscape phones */
@media (max-width: 900px) {
  .intro-row { flex-direction: column; }
  .intro-text { text-align: center; margin-bottom: 40px; }
  .phone-frame { margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .step-connector { padding: 12px 0; flex-direction: column; gap: 4px; }
  .step-connector-line { width: 2px; height: 24px; background: linear-gradient(180deg, var(--blue), var(--purple)); }
  .step-connector-arrow {
    transform: rotate(90deg);
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .omt-container { flex-direction: column-reverse; gap: 48px; text-align: center; }
  .omt-left .section-eyebrow,
  .omt-left .section-headline,
  .omt-left .section-sub { text-align: center; }
  .omt-right { flex: 0 0 auto; max-width: 300px; }
  .omt-features-list { align-items: flex-start; max-width: 300px; margin: 32px auto 0; text-align: left; }
  .stats-bar {
    gap: 0;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
    column-gap: 16px;
  }
  .trust-badges { gap: 24px; }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .section-spacer { padding: 80px 20px; }
  .phone-frame { width: 280px; height: 560px; border-radius: 38px; }
  .phone-dynamic-island { width: 80px; height: 22px; top: 10px; }
  .sc-avatar { width: 36px; height: 36px; font-size: 0.75rem; }
  .sc-name { font-size: 0.82rem; }
  .sc-case-type { font-size: 0.78rem; }
  .sc-fee { font-size: 1rem; }
  .step-card { padding: 36px 24px; }
  .feat-card { padding: 28px 24px; }
  .cta-card { padding: 36px 28px; }
  .lm-header { padding: 24px 24px 18px; }
  .lm-body { padding: 20px 24px 28px; }
}

/* Phone */
@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.nav-links-open {
    max-height: 320px;
    padding: 16px 0;
  }

  .nav-links li { display: block !important; text-align: center; }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .nav-links li:last-child {
    padding: 8px 24px 4px;
  }

  .nav-cta {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .mobile-menu-btn { display: flex; }

  /* Hide nav CTA from inline nav on mobile — it's in the dropdown */
  .nav-inner { padding-right: 52px; }

  .mobile-menu-btn.menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.menu-open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .intro-row { flex-direction: column; }
  .intro-text { text-align: center; margin-bottom: 32px; }
  .phone-frame { margin: 0 auto; }

  .hero { padding: 80px 16px 40px; min-height: 100dvh; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 260px; text-align: center; }

  .intro-text { margin-bottom: 40px; }
  .intro-headline { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .phone-frame { width: 260px; height: 520px; border-radius: 34px; }
  .phone-dynamic-island { width: 72px; height: 20px; top: 8px; }
  .swipe-btn { width: 38px; height: 38px; }
  .swipe-btn svg { width: 15px; height: 15px; }
  .swipe-actions { gap: 10px; padding: 6px 0; }

  .section-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .cta-buttons { flex-direction: row; }

  .stats-bar {
    row-gap: 24px;
    column-gap: 12px;
    padding-top: 28px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-left: 0;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .trust-badge svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .faq-question { padding: 18px 20px; font-size: 0.95rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }

  .lm-links { flex-direction: column; gap: 16px; align-items: flex-start; }
  .legal-modal { border-radius: 20px; }
  .lm-header h3 { font-size: 1.05rem; }

  .store-badges-row { gap: 12px; }
  .store-badge { padding: 8px 14px; font-size: 0.75rem; }
  .store-badge svg { width: 16px; height: 16px; }

  /* Mobile performance */
  .reveal { will-change: transform, opacity; }
  .phone-frame { will-change: transform; }
  .swipe-card { will-change: transform; }
  .nav { will-change: background; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-logo { width: 100px; }
  .hero-soon { font-size: 0.7rem; }
  .phone-frame { width: 240px; height: 480px; border-radius: 30px; }
  .sc-avatar { width: 32px; height: 32px; font-size: 0.65rem; }
  .sc-name { font-size: 0.75rem; }
  .sc-bar { font-size: 0.65rem; }
  .sc-badge { font-size: 0.6rem; }
  .sc-location, .sc-date, .sc-court { font-size: 0.68rem; }
  .sc-fee { font-size: 0.9rem; }
  .swipe-card { padding: 12px; border-radius: 14px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ============================================================
   Developer Signature
   ============================================================ */
.dev-signature {
  text-align: center;
  padding: 12px 24px 0;
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.dev-signature:hover {
  opacity: 0.8;
}

.dev-signature a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
  transition: color 0.3s;
}

.dev-signature a:hover {
  color: var(--gold);
}

/* Phone nav active state */
.pbb-item {
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.pbb-item:hover svg {
  stroke: var(--text-secondary);
}

.pbb-item:hover {
  color: var(--text-secondary);
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  #particle-canvas { display: none; }
}
