/* =============================================
   PfotenLog Marketing Website - Stylesheet
   ============================================= */

:root {
  --c-primary: #1BD5E0;
  --c-secondary: #0DB8A6;
  --c-bg: #0F1A1A;
  --c-bg2: #0a1414;
  --c-bg3: #152020;
  --c-card: rgba(255, 255, 255, 0.04);
  --c-card-hover: rgba(255, 255, 255, 0.07);
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-strong: rgba(255, 255, 255, 0.14);
  --c-text: #ffffff;
  --c-text-2: rgba(255, 255, 255, 0.65);
  --c-text-3: rgba(255, 255, 255, 0.4);
  --gradient: linear-gradient(135deg, #1BD5E0 0%, #0DB8A6 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(27,213,224,0.12), rgba(13,184,166,0.08));
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 8px 40px rgba(27, 213, 224, 0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { color: var(--c-text-2); }

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(27, 213, 224, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(27, 213, 224, 0.08);
  border: 1px solid rgba(27, 213, 224, 0.2);
  border-radius: 50px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.15rem; max-width: 560px; margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(15, 26, 26, 0.8);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--c-border);
  transition: var(--transition);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(27, 213, 224, 0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--c-text-2);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--c-text); background: rgba(255, 255, 255, 0.06); }
.nav-cta { padding: 9px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: var(--c-primary);
  opacity: 0.07;
  top: -200px; right: -200px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: var(--c-secondary);
  opacity: 0.06;
  bottom: -100px; left: -150px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(27, 213, 224, 0.1);
  border: 1px solid rgba(27, 213, 224, 0.25);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 24px;
}
.hero-title { margin-bottom: 22px; }
.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--c-text-2);
  max-width: 500px;
  margin-bottom: 30px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.tag {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border-strong);
  font-size: 0.82rem;
  color: var(--c-text-2);
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== PHONE MOCKUP ===== */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup-wrap::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 213, 224, 0.2), transparent 70%);
  pointer-events: none;
}
.phone-float {
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.phone-frame {
  width: 260px;
  height: 540px;
  background: #111;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 2px rgba(0, 0, 0, 0.6),
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 0 8px rgba(30, 30, 30, 1);
  position: relative;
}
.phone-frame::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(175deg, #1BD5E0 0%, #0aafa0 35%, #0a1f1f 75%);
  position: relative;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 6px;
  font-size: 0.68rem;
  font-weight: 700;
}
.phone-inner {
  padding: 0 14px 0;
  display: flex;
  flex-direction: column;
  height: calc(100% - 36px);
}
.phone-app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.phone-app-row img { width: 30px; height: 30px; border-radius: 8px; }
.phone-app-row span { font-size: 1rem; font-weight: 700; }
.pcard {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pcard-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pcard-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 1px; }
.pcard-detail { font-size: 0.72rem; opacity: 0.72; }
.plabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 10px 0 6px;
}
.pappt {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pappt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.pappt-text { font-size: 0.75rem; flex: 1; }
.pappt-date { font-size: 0.65rem; opacity: 0.55; }

/* ===== FEATURES ===== */
.features-section { padding: 130px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(27, 213, 224, 0.25);
  background: var(--c-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(27, 213, 224, 0.08);
}
.feature-card.large {
  grid-column: span 2;
}
.feature-card.accent {
  background: var(--gradient-subtle);
  border-color: rgba(27, 213, 224, 0.2);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(27, 213, 224, 0.1);
  border: 1px solid rgba(27, 213, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card.accent .feature-icon {
  background: rgba(27, 213, 224, 0.15);
  border-color: rgba(27, 213, 224, 0.3);
}
.feature-title { margin-bottom: 8px; font-size: 1.1rem; }
.feature-desc { font-size: 0.93rem; line-height: 1.65; }
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== PRIVACY SECTION ===== */
.privacy-section {
  padding: 130px 0;
  background: var(--c-bg2);
  position: relative;
  overflow: hidden;
}
.privacy-section::before,
.privacy-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,213,224,0.4), transparent);
}
.privacy-section::before { top: 0; }
.privacy-section::after { bottom: 0; }
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.privacy-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.privacy-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.privacy-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.privacy-points { display: flex; flex-direction: column; gap: 18px; }
.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.privacy-point-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(27, 213, 224, 0.1);
  border: 1px solid rgba(27, 213, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-point-title { font-weight: 700; color: var(--c-text); margin-bottom: 2px; }
.privacy-point-desc { font-size: 0.9rem; line-height: 1.55; }

.privacy-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-badge-big {
  background: var(--gradient-subtle);
  border: 1px solid rgba(27, 213, 224, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.privacy-badge-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(27,213,224,0.1), transparent 70%);
}
.privacy-big-icon { font-size: 4rem; margin-bottom: 16px; position: relative; }
.privacy-big-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; position: relative; }
.privacy-big-sub { font-size: 0.95rem; position: relative; }
.privacy-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.privacy-stat {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.privacy-stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.privacy-stat-label { font-size: 0.82rem; font-weight: 700; color: var(--c-text); margin-bottom: 2px; }
.privacy-stat-sub { font-size: 0.78rem; color: var(--c-text-3); }

/* ===== PREMIUM SECTION ===== */
.premium-section { padding: 130px 0; }

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.premium-feat {
  background: var(--gradient-subtle);
  border: 1px solid rgba(27, 213, 224, 0.18);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.premium-feat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.premium-feat-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.premium-feat-desc { font-size: 0.88rem; line-height: 1.55; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.plan-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
}
.plan-card.featured {
  background: var(--gradient-subtle);
  border-color: rgba(27, 213, 224, 0.3);
  box-shadow: 0 0 40px rgba(27, 213, 224, 0.1);
}
.plan-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}
.plan-name { font-size: 0.9rem; font-weight: 600; color: var(--c-text-2); margin-bottom: 12px; }
.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.plan-price-sub { font-size: 0.85rem; color: var(--c-text-3); margin-bottom: 24px; }
.plan-divider {
  height: 1px;
  background: var(--c-border);
  margin: 20px 0;
}
.plan-features { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 28px; }
.plan-feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.plan-feat-icon { color: var(--c-primary); font-weight: 800; flex-shrink: 0; }
.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: default;
  box-shadow: var(--shadow-glow);
}
.plan-btn.outline {
  background: transparent;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text);
  box-shadow: none;
}
.plan-note { font-size: 0.8rem; color: var(--c-text-3); margin-top: 12px; }

/* ===== DOWNLOAD CTA ===== */
.download-section {
  padding: 130px 0;
  background: var(--c-bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before,
.download-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,213,224,0.3), transparent);
}
.download-section::before { top: 0; }
.download-section::after { bottom: 0; }
.download-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.06;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.download-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto 32px;
  box-shadow: 0 20px 60px rgba(27, 213, 224, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.download-icon img { width: 100%; height: 100%; }
.download-title { margin-bottom: 16px; position: relative; }
.download-sub { font-size: 1.15rem; max-width: 480px; margin: 0 auto 40px; position: relative; }
.download-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 16px;
  background: var(--c-text);
  color: var(--c-bg);
  transition: var(--transition);
  font-weight: 600;
}
.appstore-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}
.appstore-btn-icon { font-size: 1.8rem; }
.appstore-btn-text { text-align: left; }
.appstore-btn-sub { font-size: 0.7rem; opacity: 0.6; display: block; }
.appstore-btn-main { font-size: 1rem; font-weight: 800; display: block; line-height: 1.2; }
.download-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.download-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--c-text-3);
}
.download-badge::before {
  content: '✓';
  color: var(--c-primary);
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--c-text-2);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--c-primary); }
.footer-copy { font-size: 0.82rem; color: var(--c-text-3); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-mockup-wrap { display: none; }
  .hero-subtitle { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.large { grid-column: span 1; }
  .privacy-grid { grid-template-columns: 1fr; gap: 60px; }
  .premium-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 80px; }
  .hero-actions { flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .privacy-stat-row { grid-template-columns: 1fr 1fr; }
  .premium-features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  section { padding: 80px 0 !important; }
}

/* Mobile Nav Open */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: rgba(10, 20, 20, 0.97);
  backdrop-filter: blur(24px);
  padding: 12px;
  border-bottom: 1px solid var(--c-border);
  gap: 2px;
}
.nav.open .nav-links a { padding: 12px 16px; }
.nav.open .nav-cta {
  display: block;
  position: absolute;
  top: 68px + 60px;
  left: 12px; right: 12px;
  text-align: center;
}

/* ===== DATENSCHUTZ PAGE ===== */
.legal-page { padding: 120px 0 80px; }
.legal-container { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.legal-title { margin-bottom: 12px; }
.legal-date { font-size: 0.9rem; color: var(--c-text-3); margin-bottom: 60px; }
.legal-section { margin-bottom: 44px; }
.legal-section h2 { font-size: 1.4rem; margin-bottom: 14px; color: var(--c-text); }
.legal-section h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--c-text); margin-top: 20px; }
.legal-section p { font-size: 0.97rem; line-height: 1.75; margin-bottom: 12px; }
.legal-section ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.legal-section ul li {
  font-size: 0.97rem;
  color: var(--c-text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.legal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-primary);
}
.legal-highlight {
  background: rgba(27, 213, 224, 0.07);
  border: 1px solid rgba(27, 213, 224, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-highlight p { color: var(--c-text); font-weight: 500; }

/* ===== PHONE TAB BAR ===== */
.phone-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: auto;
  background: rgba(0, 0, 0, 0.15);
}
.phone-tab {
  font-size: 1rem;
  opacity: 0.4;
  padding: 2px 6px;
  line-height: 1;
}
.phone-tab.active {
  opacity: 1;
}

/* ===== SCREENSHOT GALLERY ===== */
.screenshots-section {
  padding: 100px 0 80px;
  overflow: hidden;
}
.screenshots-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 48px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.screenshots-scroll-wrap::-webkit-scrollbar { display: none; }
.screenshots-scroll-wrap:active { cursor: grabbing; }
.screenshots-scroll {
  display: flex;
  gap: 32px;
  padding: 0 max(28px, calc((100vw - 1160px) / 2 + 28px));
  width: max-content;
  scroll-snap-type: x mandatory;
}
.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  scroll-snap-align: center;
  flex-shrink: 0;
}
.screenshot-frame {
  width: 240px;
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  background: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.screenshot-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 48px 100px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(27, 213, 224, 0.12),
    0 0 0 1px rgba(27, 213, 224, 0.15);
}
.screenshot-frame img {
  width: 100%;
  display: block;
}
.screenshot-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-3);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== PLAN PREVIEW IMAGE ===== */
.plan-preview-img {
  width: calc(100% + 72px);
  margin: -36px -36px 28px -36px;
  height: 190px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
