/* ============================================================
   PHOTOBOOTH 360 — Shared Stylesheet
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --bg-base:      #06091A;
  --bg-surface:   #0B1124;
  --bg-card:      #101929;
  --bg-card-h:    #152034;

  --cyan:         #00E5FF;
  --purple:       #9B5DE5;
  --pink:         #F72585;
  --green:        #06D6A0;

  --grad-main:    linear-gradient(135deg, #00E5FF 0%, #9B5DE5 100%);
  --grad-btn:     linear-gradient(135deg, #9B5DE5 0%, #00E5FF 100%);
  --grad-text:    linear-gradient(90deg, #00E5FF, #9B5DE5);

  --text-primary:   #EEF2FF;
  --text-secondary: #8B9CC5;
  --text-muted:     #4A5578;

  --border:       rgba(255,255,255,0.07);
  --border-cyan:  rgba(0,229,255,0.25);

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --glow-sm:     0 0 20px rgba(0,229,255,0.18);
  --glow:        0 0 50px rgba(0,229,255,0.12);

  --nav-h: 72px;
  --sp: clamp(64px, 9vw, 128px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sp) 0; }
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 56px;
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,229,255,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0,229,255,0.4); }
.btn-ghost {
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  background: rgba(0,229,255,0.05);
}
.btn-ghost:hover { background: rgba(0,229,255,0.12); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,9,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(11,17,36,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow-top {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.12) 0%, transparent 70%);
}
.hero-glow-right {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(155,93,229,0.12) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #fff;
  border-radius: var(--r-md);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.store-badge svg { width: 20px; height: 20px; }
.hero-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 360° Visual */
.ring-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}
.ring-1 {
  width: 90%; height: 90%;
  border-color: rgba(0,229,255,0.35);
  box-shadow: 0 0 30px rgba(0,229,255,0.1) inset;
  animation: spin 18s linear infinite;
}
.ring-2 {
  width: 72%; height: 72%;
  border-color: rgba(155,93,229,0.4);
  animation: spin 12s linear infinite reverse;
}
.ring-3 {
  width: 54%; height: 54%;
  border-color: rgba(0,229,255,0.25);
  animation: spin 8s linear infinite;
}
.ring-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
}
.ring-1 .ring-dot { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.ring-2 .ring-dot { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.ring-3 .ring-dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
@keyframes spin { to { transform: rotate(360deg); } }

.ring-center {
  position: relative;
  z-index: 2;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1A2845, #0B1124);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ring-center-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ring-center-deg {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
}
.ring-orbit-icon {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
}
.orbit-icon-1 { top: 8%; right: 10%; }
.orbit-icon-2 { bottom: 15%; left: 5%; }
.orbit-icon-3 { bottom: 10%; right: 8%; }

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === HOW IT WORKS === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-cyan), transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 20px;
  position: relative;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  z-index: -1;
}
.step h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
/* Skeleton loader */
.plan-skeleton { pointer-events: none; }
.sk-line {
  height: 14px; border-radius: 8px;
  background: linear-gradient(90deg, var(--border) 25%, rgba(255,255,255,0.06) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
  margin-bottom: 14px;
}
.sk-name  { height: 22px; width: 55%; }
.sk-price { height: 36px; width: 40%; margin: 16px 0 20px; }
@keyframes sk-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--border-cyan);
  background: linear-gradient(145deg, #101E38, #0B1428);
  box-shadow: 0 0 60px rgba(0,229,255,0.12);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.plan-card.featured .plan-price-num {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-price-period { font-size: 0.85rem; color: var(--text-secondary); padding-bottom: 6px; }
.plan-trial { font-size: 0.8rem; color: var(--green); margin-bottom: 28px; font-weight: 500; }
.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.plan-feature.included { color: var(--text-primary); }
.plan-feature.excluded { color: var(--text-muted); }
.pf-icon { width: 18px; height: 18px; flex-shrink: 0; }
.pf-icon.ok { color: var(--green); }
.pf-icon.no { color: var(--text-muted); }
.plan-cta { width: 100%; }
.plan-cta.primary-cta {
  background: var(--grad-btn);
  color: #fff;
  border-radius: var(--r-full);
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan-cta.primary-cta:hover { box-shadow: 0 8px 28px rgba(0,229,255,0.3); transform: translateY(-2px); }
.plan-cta.ghost-cta {
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--r-full);
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: border-color 0.2s, color 0.2s;
}
.plan-cta.ghost-cta:hover { border-color: var(--border-cyan); color: var(--cyan); }

/* === USE CASES === */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.usecase-card:hover { border-color: var(--border-cyan); transform: translateY(-3px); }
.usecase-emoji {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.usecase-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.usecase-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  background: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === DOWNLOAD CTA === */
.download-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp) 0;
  position: relative;
  overflow: hidden;
}
.download-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.download-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.download-inner p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; }
.download-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cyan); }
.footer-contact p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.footer-contact a { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* === LEGAL PAGES === */
.legal-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.legal-hero p { color: var(--text-secondary); }
.legal-content { padding: 64px 0; }
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: 1.4rem;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-body p, .legal-body li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--cyan); }
.legal-body strong { color: var(--text-primary); }

/* === SUPPORT PAGE === */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.support-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.support-card > p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 28px; }
.support-contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p, .contact-item a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.contact-item a { color: var(--cyan); }
.faq-mini { display: flex; flex-direction: column; gap: 10px; }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 60px 24px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .ring-container { max-width: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .usecases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
