/* SwipeHelperAI website – shared styles */
:root {
  --bg: #0a0a0c;
  --bg-card: rgba(255,255,255,0.06);
  --text: #f5f5f7;
  --text-muted: #a1a1a6;
  --accent: #00c2ff;
  --accent-dim: rgba(0, 194, 255, 0.15);
  --border: rgba(255,255,255,0.12);
  --radius: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--accent); }

/* Mobile: stack logo above nav so all links fit without horizontal scroll */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .logo {
    text-align: center;
    font-size: 1.1rem;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }
  .nav a { font-size: 0.9rem; }
}

.hero {
  padding: 64px 0 80px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-copy {
  text-align: left;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero-outcome {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  max-width: 560px;
  margin: 0 0 12px;
  line-height: 1.45;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 24px;
  line-height: 1.65;
}
.cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-trust {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 100%;
}
.btn-secondary--hero {
  flex-shrink: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.hero-media {
  display: flex;
  justify-content: center;
}

/* App strip under hero */
.hero-apps {
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.hero-apps .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}
.hero-apps-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hero-apps-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.app-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.app-logo:hover {
  opacity: 1;
}

.phone-frame {
  border-radius: 36px;
  padding: 10px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.phone-screen {
  width: 260px;
  height: 520px;
  border-radius: 28px;
  background: linear-gradient(180deg, #111217, #050507);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-placeholder-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.phone-photo-row {
  display: flex;
  gap: 8px;
}
.phone-photo-row--real .phone-photo-card {
  height: 120px;
}
.phone-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-photo-card {
  flex: 1;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: #1d1f2a;
  border: 1px solid rgba(255,255,255,0.16);
}
.phone-photo-card.before {
  background: #14141a;
}
.phone-photo-card.after {
  background: #101824;
  border-color: rgba(0,194,255,0.35);
}
.phone-photo-card .tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
}
.phone-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0, 194, 255, 0.45);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.features { padding: 48px 0 64px; }
.features h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Generic section layout */
.section {
  padding: 56px 0;
}
.section--alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  margin: 0 0 20px;
}
.section-tagline {
  margin: 0 0 28px;
  color: var(--text-muted);
  max-width: 640px;
}

/* Proof hero: one big before/after */
.proof-hero {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-hero-optimization {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.proof-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.proof-hero-half {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-hero-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.proof-hero-half:last-child .proof-hero-label {
  color: var(--accent);
}
.proof-hero-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--bg-card);
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
}
.proof-hero-half:last-child .proof-hero-img-wrap {
  border-color: rgba(0, 194, 255, 0.35);
}
.proof-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.proof-hero-img-wrap:hover .proof-hero-img,
.proof-hero-img-wrap:focus .proof-hero-img {
  opacity: 0.92;
}
.proof-hero-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Tinder screenshots: before (no likes) vs after */
.tinder-screenshots {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
}
.tinder-screenshots .section-tagline {
  margin-bottom: 24px;
}
.tinder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.tinder-half {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tinder-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.tinder-half:last-child .tinder-label {
  color: var(--accent);
}
.screenshot-img-wrap {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--bg-card);
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
  transition: opacity 0.2s, border-color 0.2s;
}
.screenshot-img-wrap.tinder-main {
  aspect-ratio: 9 / 19;
}
.screenshot-img-wrap:hover,
.screenshot-img-wrap:focus {
  opacity: 0.95;
  border-color: rgba(0, 194, 255, 0.4);
}
.tinder-half:last-child .screenshot-img-wrap {
  border-color: rgba(0, 194, 255, 0.35);
}
.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tinder-more-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 12px;
  text-align: center;
}
.tinder-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tinder-gallery .screenshot-img-wrap {
  aspect-ratio: 9 / 19;
}

@media (max-width: 700px) {
  .tinder-split {
    grid-template-columns: 1fr;
  }
  .tinder-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,194,255,0.15);
  border-color: rgba(0,194,255,0.25);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}
.card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* Examples */
.examples {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.example-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
}
.example-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.example-box {
  position: relative;
  border-radius: 10px;
  height: 120px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px dashed rgba(255,255,255,0.25);
}
.example-box.after {
  border-style: solid;
  border-color: rgba(0,194,255,0.5);
}
.example-box .label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}
.example-img-wrap {
  display: block;
  aspect-ratio: 3 / 4;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--bg-card);
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.example-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  pointer-events: none;
}
.example-img-wrap:last-child .example-img {
  border-color: rgba(0,194,255,0.5);
}
.example-img-wrap:hover .example-img,
.example-img-wrap:focus .example-img {
  border-color: var(--accent);
  opacity: 0.95;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}
.example-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.step {
  background: linear-gradient(160deg, rgba(0,194,255,0.08) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 26px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 24px rgba(0,194,255,0.12);
  border-color: rgba(0,194,255,0.3);
}
.step-icon {
  font-size: 1.85rem;
  margin-bottom: 10px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0,194,255,0.35) 0%, rgba(0,194,255,0.2) 100%);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,194,255,0.25);
}
.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Profile photo tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.tip-item {
  padding: 22px 20px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,194,255,0.06) 0%, rgba(255,255,255,0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.tip-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,194,255,0.2);
  border-left-color: #5dd4ff;
}
.tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(0,194,255,0.3) 0%, rgba(0,194,255,0.15) 100%);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,194,255,0.2);
}
.tip-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.tip-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Guarantee strip */
.guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(0, 194, 255, 0.06);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: var(--radius);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.guarantee-strip p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.satisfaction-guarantee {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}
.satisfaction-guarantee a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.satisfaction-guarantee a:hover {
  text-decoration: underline;
}

/* Rizz Help */
.rizz-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.bullet-list li {
  margin-bottom: 6px;
}
.rizz-media {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

/* Rizz visual: chat on top, then label, then Reply 1, 2, 3 with down arrows */
.rizz-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 0;
}
.rizz-chat-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.rizz-chat-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.rizz-pick-label {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 24px;
}
.rizz-arrows-replies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  width: 100%;
  max-width: 900px;
}
.rizz-arrow-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.rizz-arrow-from-label {
  width: 32px;
  height: 36px;
  color: var(--accent);
  opacity: 0.95;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.rizz-suggestion-card {
  background: rgba(0, 194, 255, 0.06);
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 0;
  width: 100%;
}
.rizz-suggestion-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rizz-arrow-down {
  width: 28px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.95;
  margin-top: 4px;
}
.rizz-arrow {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.95;
  margin-top: 8px;
}
.rizz-reply-block {
  flex: 1;
  min-width: 200px;
}
.rizz-reply-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 6px;
}
.rizz-reply-text {
  display: block;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 194, 255, 0.45);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.rizz-reply-why {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.rizz-reply-placeholder {
  flex: 1;
  min-width: 0;
}
.rizz-reply-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .rizz-arrows-replies {
    grid-template-columns: 1fr;
  }
  .rizz-arrow-column {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .rizz-arrow-from-label {
    margin-bottom: 0;
    margin-top: 8px;
    transform: rotate(-90deg);
  }
  .rizz-reply-block {
    min-width: 0;
  }
}

@media (min-width: 700px) {
  .rizz-suggestion-card {
    padding: 16px 18px;
  }
  .rizz-arrow-from-label {
    width: 36px;
    height: 40px;
  }
}

.chat-bubble {
  font-size: 0.8rem;
  padding: 8px 10px;
  border-radius: 14px;
  margin-top: 4px;
}
.chat-bubble.you {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
}
.chat-bubble.coach {
  align-self: flex-end;
  background: rgba(0,194,255,0.18);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.pricing-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,194,255,0.2);
  border-color: rgba(0,194,255,0.25);
}
.pricing-card--highlight {
  background: linear-gradient(160deg, rgba(0,194,255,0.12) 0%, rgba(0,194,255,0.06) 50%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(0,194,255,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,194,255,0.35);
}
.pricing-card--highlight:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 28px rgba(0,194,255,0.2), 0 0 0 1px rgba(0,194,255,0.45);
  border-color: rgba(0,194,255,0.55);
}
.pricing-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}
.pricing-tagline {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.pricing-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pricing-card li {
  margin-bottom: 6px;
}
.credits-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.center-cta {
  margin-top: 24px;
  text-align: center;
}

/* Trust */
.trust-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-note a {
  color: var(--accent);
  text-decoration: none;
}
.trust-note a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}
.faq-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-cta {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-cta p { margin: 0 0 16px; color: var(--text-muted); }

.footer {
  margin-top: auto;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-inner p { margin: 8px 0; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Contact page */
.contact-page {
  padding: 48px 0 80px;
}
.contact-inner {
  max-width: 520px;
}
.contact-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.contact-intro {
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.contact-success {
  padding: 24px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.contact-success p {
  margin: 0;
  color: var(--text);
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 194, 255, 0.2);
}
.contact-form button[type="submit"] {
  margin-top: 8px;
}

/* Guides */
.guides-page {
  padding: 56px 0 80px;
  min-height: 60vh;
}
.guides-container {
  max-width: 800px;
}
.guides-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.guides-page h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.guides-tagline {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.guides-page .guides-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.guide-card {
  display: flex;
  position: relative;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.guide-card:hover {
  border-color: rgba(0, 194, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 194, 255, 0.15);
  transform: translateY(-3px);
}
.guide-card-thumb {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(0, 194, 255, 0.12) 0%, rgba(0, 194, 255, 0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.guide-card-thumb--placeholder {
  background: linear-gradient(145deg, rgba(0, 194, 255, 0.15) 0%, rgba(0, 120, 180, 0.06) 50%, rgba(0, 194, 255, 0.08) 100%);
}
.guide-card-thumb--placeholder::after {
  content: "📖";
  font-size: 2.5rem;
  opacity: 0.7;
}
.guide-card-thumb--img {
  padding: 0;
  background: #0d0e12;
}
.guide-card-thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.guide-card-inner {
  padding: 24px 28px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guide-card h2 {
  font-size: 1.22rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.35;
}
.guide-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.guide-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, color 0.2s;
}
.guide-card:hover .guide-card-cta {
  transform: translateX(4px);
  color: #5dd4ff;
}
@media (max-width: 560px) {
  .guide-card {
    flex-direction: column;
  }
  .guide-card-thumb {
    width: 100%;
    height: 160px;
  }
  .guide-card-thumb--placeholder::after {
    font-size: 2rem;
  }
}
.guide-single .container {
  max-width: 720px;
}
.guide-back {
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.guide-back a {
  color: var(--accent);
  text-decoration: none;
}
.guide-back a:hover {
  text-decoration: underline;
}
.guide-figure {
  margin: 24px 0;
}
.guide-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.guide-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.guide-photos .guide-figure { margin: 0; }
.guide-photos .guide-img { max-width: none; }
@media (max-width: 560px) {
  .guide-photos { grid-template-columns: 1fr; }
}
.guide-steps {
  margin: 16px 0;
  padding-left: 1.5rem;
}
.guide-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal {
  padding: 48px 0 80px;
}
.legal .container { max-width: 720px; }
.legal h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal p { margin: 0 0 16px; color: var(--text-muted); }
.legal ul { margin: 0 0 16px; padding-left: 1.5rem; color: var(--text-muted); }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .proof-hero-split {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
  .hero-copy {
    flex: 1.2;
  }
  .hero-media {
    flex: 1;
  }
}
