/*
 * Studybroker – Static Legal Pages
 * Clean white design matching the app's light mode
 */

/* Self-hosted Google Fonts – IBM Plex Sans */
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-600.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-700.woff2") format("woff2");
}

/* Self-hosted Google Fonts – Space Grotesk */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/space-grotesk-600.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/space-grotesk-700.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: #ffffff;
  color: #020617;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =============================================
   HEADER – exact copy of WP theme header
   ============================================= */
.header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
}

.nav-desktop a {
  color: #4b5563;
  margin-left: 1.5rem;
}

.nav-desktop a:hover {
  color: #4f46e5;
}

.nav-button {
  background-color: #4f46e5;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav-button:hover {
  background-color: #4338ca;
  color: #ffffff !important;
}

#mobile-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

#mobile-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #1f2937;
}

#mobile-menu {
  display: none;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#mobile-menu.active {
  display: block;
}

#mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #4b5563;
}

#mobile-menu a:hover {
  background-color: #eef2ff;
}

#mobile-menu .nav-button {
  display: block;
  text-align: center;
  margin: 1rem;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.page-main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

.legal-card {
  max-width: 720px;
}

.legal-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.legal-card-subtitle {
  font-size: 15px;
  color: #334155;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #cbd5e1;
}

.legal-content {
  color: #334155;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #020617;
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content a {
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #c7d2fe;
}

.legal-content a:hover {
  color: #4338ca;
  text-decoration-color: #4338ca;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: #020617;
  font-weight: 600;
}

.legal-content em {
  color: #64748b;
}

.legal-content small {
  font-size: 13px;
  color: #94a3b8;
}

/* =============================================
   WIDERRUFSBUTTON (§ 356a BGB)
   ============================================= */
.widerruf-button-section {
  margin-bottom: 32px;
  padding: 28px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.widerruf-step-info {
  font-size: 15px;
  color: #334155;
  margin-bottom: 16px;
}

.widerruf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.widerruf-btn:hover {
  background: #4338ca;
}

.widerruf-confirm-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
}

.widerruf-confirm-info {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.widerruf-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widerruf-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.widerruf-btn-cancel {
  padding: 10px 20px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.widerruf-btn-cancel:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.widerruf-btn-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #dc2626;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.widerruf-btn-confirm:hover:not(:disabled) {
  background: #b91c1c;
}

.widerruf-btn-confirm:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#widerruf-step-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-card {
  max-width: 560px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.form-required {
  color: #ef4444;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  color: #020617;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 13px;
  color: #ef4444;
  min-height: 0;
  margin: 0;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  padding: 11px 28px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-top: 4px;
}

.form-submit:hover:not(:disabled) {
  background: #4338ca;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
}

.form-success h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #020617;
}

.form-success p {
  color: #64748b;
  font-size: 15px;
  max-width: 400px;
  line-height: 1.6;
}

.form-back-link {
  display: inline-block;
  margin-top: 8px;
  color: #4f46e5;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #c7d2fe;
}

.form-back-link:hover {
  color: #4338ca;
  text-decoration-color: #4338ca;
}

/* =============================================
   SHARED – Phone Mockup, Buttons, Sections
   ============================================= */

/* ---- Phone Mockup (used by homepage) ---- */
.phone-mockup {
  position: relative;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 9 / 19.2;
  background: #0f172a;
  border-radius: clamp(32px, 3.5vw, 48px);
  padding: clamp(8px, 1vw, 14px);
  box-shadow:
    0 0 0 2px #1e293b,
    0 25px 60px -12px rgba(0, 0, 0, 0.35),
    0 12px 28px -8px rgba(0, 0, 0, 0.25);
  transform: rotateY(-12deg) rotateX(4deg) rotateZ(2deg);
  transform-style: preserve-3d;
  animation: phone-float 4s ease-in-out infinite;
  will-change: transform;
}

.phone-notch {
  position: absolute;
  top: clamp(8px, 1vw, 14px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 9vw, 130px);
  height: clamp(20px, 2.2vw, 30px);
  background: #0f172a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: clamp(24px, 2.8vw, 38px);
  overflow: hidden;
  background: #1e293b;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@keyframes phone-float {
  0%, 100% {
    transform: rotateY(-12deg) rotateX(4deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-12deg) rotateX(4deg) rotateZ(2deg) translateY(-12px);
  }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #334155;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.15s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(2px);
}

/* ---- Sections ---- */
.section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Feature Icon Colors (shared) ---- */
.feature-icon-indigo { background: #eef2ff; color: #4f46e5; }
.feature-icon-teal   { background: #f0fdfa; color: #0d9488; }
.feature-icon-amber  { background: #fffbeb; color: #d97706; }
.feature-icon-rose   { background: #fff1f2; color: #e11d48; }
.feature-icon-violet { background: #f5f3ff; color: #7c3aed; }
.feature-icon-sky    { background: #f0f9ff; color: #0284c7; }

/* ---- CTA Banner ---- */
.cta-banner {
  text-align: center;
  padding: 72px 32px;
  background: #4f46e5;
  border-radius: 24px;
  margin: 0 32px;
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #4f46e5;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* =============================================
   INFO PAGE v2 – Redesigned Features & Pricing
   ============================================= */

/* ---------- INFO HERO (Dark) ---------- */
.info-hero {
  background: linear-gradient(165deg, #0b0f1a 0%, #0f172a 30%, #1a1444 70%, #0f172a 100%);
  padding: 80px 32px 32px;
  overflow: hidden;
}

.info-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-hero-text {
  flex: 1;
  min-width: 0;
}

.info-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.info-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #818cf8;
  animation: pulse-dot 2s ease-in-out infinite;
}

.info-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.info-hero-gradient {
  background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-hero p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.7;
}

.info-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.info-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: all 0.15s ease;
}

.info-hero-ghost:hover {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
}

.info-hero-ghost svg {
  animation: info-bounce-arrow 2s ease-in-out infinite;
}

@keyframes info-bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.info-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

/* ---------- INFO HERO VISUAL: Floating Dashboard ---------- */
.info-hero-visual {
  flex-shrink: 0;
  position: relative;
  perspective: 1200px;
}

.info-dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.info-dashboard {
  position: relative;
  width: 340px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.08),
    0 25px 60px -12px rgba(0, 0, 0, 0.5),
    0 12px 28px -8px rgba(0, 0, 0, 0.35);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: dashboard-float 5s ease-in-out infinite;
}

@keyframes dashboard-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-10px); }
}

.info-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(30, 41, 59, 0.6);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.info-dashboard-dots {
  display: flex;
  gap: 6px;
}

.info-dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.info-dashboard-dots .dot-red { background: #ef4444; }
.info-dashboard-dots .dot-yellow { background: #eab308; }
.info-dashboard-dots .dot-green { background: #22c55e; }

.info-dashboard-title {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.info-dashboard-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-dash-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.06);
  border-radius: 10px;
  transition: background 0.2s;
}

.info-dash-tile:hover {
  background: rgba(30, 41, 59, 0.8);
}

.info-dash-tile span {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.info-dash-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.info-dtile-indigo { background: rgba(79, 70, 229, 0.15); color: #818cf8; }
.info-dtile-teal   { background: rgba(13, 148, 136, 0.15); color: #5eead4; }
.info-dtile-amber  { background: rgba(217, 119, 6, 0.15); color: #fbbf24; }
.info-dtile-sky    { background: rgba(2, 132, 199, 0.15); color: #7dd3fc; }
.info-dtile-rose   { background: rgba(225, 29, 72, 0.15); color: #fda4af; }
.info-dtile-violet { background: rgba(124, 58, 237, 0.15); color: #c4b5fd; }

/* ---------- INFO HERO CENTERED VARIANT ---------- */
.info-hero-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.info-hero-center .info-hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.info-hero-center p {
  margin-left: auto;
  margin-right: auto;
}

.info-hero-center .info-hero-actions {
  justify-content: center;
}

.info-hero-center .info-hero-trust {
  justify-content: center;
}

/* ---------- INFO UNIFY CONSTELLATION ---------- */
.info-unify {
  background: #0f172a;
  padding: 8px 32px 72px;
  overflow: hidden;
  position: relative;
}

/* Floating particles */
.info-unify-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.info-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.5);
  animation: info-particle-float linear infinite;
}

.info-p1 { left: 8%; top: 20%; width: 2px; height: 2px; background: rgba(251, 191, 36, 0.4); animation-duration: 7s; animation-delay: 0s; }
.info-p2 { left: 92%; top: 15%; width: 3px; height: 3px; background: rgba(167, 139, 250, 0.5); animation-duration: 9s; animation-delay: -2s; }
.info-p3 { left: 25%; top: 80%; width: 2px; height: 2px; background: rgba(94, 234, 212, 0.4); animation-duration: 11s; animation-delay: -4s; }
.info-p4 { left: 75%; top: 70%; width: 3px; height: 3px; background: rgba(129, 140, 248, 0.5); animation-duration: 8s; animation-delay: -1s; }
.info-p5 { left: 15%; top: 55%; width: 2px; height: 2px; background: rgba(253, 164, 175, 0.4); animation-duration: 10s; animation-delay: -3s; }
.info-p6 { left: 85%; top: 45%; width: 2px; height: 2px; background: rgba(125, 211, 252, 0.3); animation-duration: 12s; animation-delay: -5s; }
.info-p7 { left: 45%; top: 10%; width: 2px; height: 2px; background: rgba(99, 102, 241, 0.4); animation-duration: 6s; animation-delay: -2s; }
.info-p8 { left: 60%; top: 90%; width: 3px; height: 3px; background: rgba(251, 191, 36, 0.3); animation-duration: 13s; animation-delay: -6s; }

@keyframes info-particle-float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-80px) translateX(30px) scale(0.5); opacity: 0; }
}

.info-unify-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.info-unify-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.info-unify-heading-gradient {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-unify-canvas {
  position: relative;
  width: 100%;
  height: 420px;
}

/* SVG connection lines */
.info-unify-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.info-conn-line {
  stroke-dasharray: 6 4;
  animation: info-dash-flow 2s linear infinite;
}

@keyframes info-dash-flow {
  to { stroke-dashoffset: -20; }
}

.info-travel-dot {
  filter: blur(0.5px);
}

.info-unify-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
    rgba(99, 102, 241, 0.25) 0%,
    rgba(139, 92, 246, 0.1) 30%,
    rgba(99, 102, 241, 0.03) 60%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: info-glow-pulse 4s ease-in-out infinite;
}

@keyframes info-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.info-unify-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 82%;
  border: 1px solid transparent;
  border-radius: 50%;
  pointer-events: none;
  animation: info-ring-spin 80s linear infinite;
  background: conic-gradient(from 0deg, transparent 0%, rgba(99, 102, 241, 0.12) 25%, transparent 50%, rgba(139, 92, 246, 0.08) 75%, transparent 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.info-unify-ring-2 {
  width: 58%;
  height: 62%;
  animation-duration: 60s;
  animation-direction: reverse;
  background: conic-gradient(from 180deg, transparent 0%, rgba(167, 139, 250, 0.08) 25%, transparent 50%, rgba(99, 102, 241, 0.06) 75%, transparent 100%) border-box;
}

@keyframes info-ring-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.info-unify-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 36px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 20px;
  box-shadow:
    0 0 60px rgba(99, 102, 241, 0.2),
    0 0 120px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 2;
  animation: info-hub-breathe 5s ease-in-out infinite;
}

@keyframes info-hub-breathe {
  0%, 100% { box-shadow: 0 0 60px rgba(99, 102, 241, 0.2), 0 0 120px rgba(99, 102, 241, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
  50% { box-shadow: 0 0 80px rgba(99, 102, 241, 0.3), 0 0 160px rgba(99, 102, 241, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
}

.info-hub-icon-wrap {
  position: relative;
}

.info-hub-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
  pointer-events: none;
}

.info-unify-hub img {
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.info-unify-hub span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

.info-uo {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  white-space: nowrap;
  z-index: 1;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: default;
}

/* Subtle glow behind each node */
.info-uo-glow {
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}

.info-uo:hover .info-uo-glow {
  opacity: 0.15;
}

.info-uo:hover {
  border-color: rgba(148, 163, 184, 0.3);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.info-uo svg { flex-shrink: 0; }

.info-uo span {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: -0.01em;
}

/* Orbit positions – elliptical arrangement */
.info-uo-1 { left: 12%; top: 22%; animation: info-float-1 6s ease-in-out infinite; }
.info-uo-2 { left: 50%; top: 5%;  animation: info-float-2 7s ease-in-out infinite; }
.info-uo-3 { left: 88%; top: 22%; animation: info-float-3 5.5s ease-in-out infinite; }
.info-uo-4 { left: 88%; top: 78%; animation: info-float-4 6.5s ease-in-out infinite; }
.info-uo-5 { left: 50%; top: 95%; animation: info-float-5 5s ease-in-out infinite; }
.info-uo-6 { left: 12%; top: 78%; animation: info-float-6 7.5s ease-in-out infinite; }

@keyframes info-float-1 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) translateX(0); }
  50%      { transform: translate(-50%, -50%) translateY(-6px) translateX(3px); }
}
@keyframes info-float-2 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-8px); }
}
@keyframes info-float-3 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) translateX(0); }
  50%      { transform: translate(-50%, -50%) translateY(-5px) translateX(-4px); }
}
@keyframes info-float-4 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) translateX(0); }
  50%      { transform: translate(-50%, -50%) translateY(5px) translateX(-3px); }
}
@keyframes info-float-5 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(7px); }
}
@keyframes info-float-6 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) translateX(0); }
  50%      { transform: translate(-50%, -50%) translateY(6px) translateX(4px); }
}

.info-unify-caption {
  margin-top: 36px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ---------- INFO FEATURE SHOWCASE ---------- */
.info-showcase {
  padding: 24px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-showcase-card {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
  border-radius: 24px;
  overflow: hidden;
}

.info-showcase-card-alt {
  flex-direction: row-reverse;
}

.info-showcase-text {
  flex: 1;
  min-width: 0;
}

.info-showcase-visual {
  flex-shrink: 0;
}

.info-showcase-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.info-showcase-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.info-showcase-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-showcase-text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.5;
}

.info-showcase-text li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card background colors */
.info-sc-indigo { background: #eef2ff; }
.info-sc-teal { background: #f0fdfa; }
.info-sc-amber { background: #fffbeb; }
.info-sc-rose { background: #fff1f2; }

/* ---------- INFO FLAT PHONE MOCKUP ---------- */
.info-phone-flat {
  width: clamp(180px, 20vw, 240px);
  background: #0f172a;
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(6px, 0.8vw, 10px);
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.1),
    0 25px 60px -12px rgba(0, 0, 0, 0.2),
    0 12px 28px -8px rgba(0, 0, 0, 0.15);
}

.info-phone-screen {
  border-radius: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  background: #1e293b;
}

.info-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ---------- INFO EXTRAS SECTION ---------- */
.info-extras {
  padding: 80px 32px;
  background: #f8fafc;
}

.info-extras-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-extra-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1);
}

.info-extra-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.info-extra-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.info-extra-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ---------- INFO WHY SECTION ---------- */
.info-why {
  padding: 80px 32px;
  background: #fff;
}

.info-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-why-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1);
}

.info-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.info-why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.info-why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ---------- 6 TOOLS GRID ---------- */
.info-tools {
  padding: 80px 32px;
  background: #fff;
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
}

.info-tools-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-tool-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1);
}

.info-tool-old {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 16px;
}

.info-tool-old svg {
  color: #e11d48;
  flex-shrink: 0;
}

.info-tool-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.info-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-tool-head h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  margin: 0;
}

.info-tool-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Bonus feature card */
.info-tool-bonus {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
}

.info-tool-bonus-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e11d48;
  background: #fff1f2;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.info-tool-bonus-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-tool-bonus-content strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 4px;
}

.info-tool-bonus-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ---------- WORKFLOW PIPELINE ---------- */
.info-workflow {
  padding: 80px 32px;
  background: #f8fafc;
}

.info-workflow-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.info-pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.info-pipeline-step {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.info-pipeline-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 12px;
}

.info-pipeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.info-pipeline-icon svg {
  width: 24px;
  height: 24px;
}

.info-pipeline-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
}

.info-pipeline-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.info-pipeline-arrow {
  display: flex;
  align-items: center;
  padding-top: 52px;
  color: #cbd5e1;
  flex-shrink: 0;
}

.info-pipeline-companions {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.info-pipeline-aux {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
}

.info-pipeline-aux-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-pipeline-aux-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- PRICING ---------- */
.info-pricing {
  padding: 80px 32px;
}

.info-pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- FINAL CTA ---------- */
.info-final-cta {
  padding: 96px 32px;
  background: linear-gradient(165deg, #0b1120 0%, #0f172a 40%, #1e1b4b 100%);
  text-align: center;
}

.info-final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.info-final-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.info-final-cta p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.info-btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.info-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
}

/* ---------- INFO PAGE RESPONSIVE ---------- */
@media (max-width: 768px) {
  /* Hero */
  .info-hero {
    padding: 48px 20px 40px;
  }

  .info-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .info-hero p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .info-hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .info-hero .home-btn-primary,
  .info-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .info-hero-trust {
    justify-content: center;
  }

  .info-dashboard {
    width: 280px;
    transform: rotateY(-5deg) rotateX(3deg);
  }

  /* Why section */
  .info-why {
    padding: 48px 20px;
  }

  .info-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Tools grid */
  .info-tools {
    padding: 48px 20px;
  }

  .info-tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Workflow */
  .info-workflow {
    padding: 48px 20px;
  }

  .info-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .info-pipeline-step {
    max-width: 280px;
  }

  .info-pipeline-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .info-pipeline-companions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Pricing */
  .info-pricing {
    padding: 48px 20px;
  }

  /* Unify constellation */
  .info-unify {
    padding: 0 20px 48px;
  }

  .info-unify-particles {
    display: none;
  }

  .info-unify-heading {
    margin-bottom: 24px;
  }

  .info-unify-canvas {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .info-unify-lines {
    display: none;
  }

  .info-unify-glow,
  .info-unify-ring {
    display: none;
  }

  .info-unify-hub {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 12px;
    padding: 16px 24px;
    margin-bottom: 4px;
    justify-content: center;
    animation: none;
  }

  .info-uo {
    position: static;
    transform: none;
    justify-content: center;
    animation: none !important;
  }

  .info-uo:hover {
    transform: scale(1.03);
  }

  .info-uo-glow {
    display: none;
  }

  /* Showcase cards */
  .info-showcase {
    padding: 16px 16px 48px;
  }

  .info-showcase-card {
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
    text-align: center;
  }

  .info-showcase-card-alt {
    flex-direction: column;
  }

  .info-showcase-text ul {
    text-align: left;
  }

  .info-phone-flat {
    width: 200px;
    margin: 0 auto;
  }

  /* Extras */
  .info-extras {
    padding: 48px 20px;
  }

  .info-extras-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Final CTA */
  .info-final-cta {
    padding: 64px 20px;
  }

  .info-final-cta .home-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .info-why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .info-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-dashboard {
    width: 280px;
  }

  .info-hero-inner {
    gap: 32px;
  }

  .info-showcase-card {
    gap: 32px;
    padding: 36px;
  }

  .info-phone-flat {
    width: 190px;
  }

  .info-extras-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}


/* =============================================
   FAQ PAGE
   ============================================= */
.faq-page {
  max-width: 800px;
}

.faq-hero {
  margin-bottom: 48px;
}

.faq-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.faq-hero-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cbd5e1;
}

.faq-item {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: #4f46e5;
}

.faq-question:hover {
  color: #4f46e5;
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin-bottom: 10px;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer strong {
  color: #020617;
  font-weight: 600;
}

.faq-answer a {
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #c7d2fe;
}

.faq-answer a:hover {
  color: #4338ca;
  text-decoration-color: #4338ca;
}

.faq-cta {
  text-align: center;
  padding: 48px 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  margin-top: 24px;
}

.faq-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.faq-cta p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}

.faq-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px 14px;
    font-size: 14px;
  }

  .faq-cta-actions {
    flex-direction: column;
  }

  .faq-cta-actions .btn-primary,
  .faq-cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   FOOTER – light, matching app style
   ============================================= */
.footer {
  background: #f8fafc;
  border-top: 1px solid #cbd5e1;
  color: #64748b;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #64748b;
  transition: color 0.15s ease;
}

.footer-socials a:hover {
  color: #4f46e5;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 5px;
}

.footer-col a {
  color: #64748b;
  font-size: 14px;
}

.footer-col a:hover {
  color: #4f46e5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid #cbd5e1;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* =============================================
   HOMEPAGE – Dark Hero
   ============================================= */
.home-hero {
  background: linear-gradient(165deg, #0b1120 0%, #0f172a 40%, #1e1b4b 100%);
  padding: 80px 32px 64px;
  overflow: hidden;
}

.home-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero-text {
  flex: 1;
  min-width: 0;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.home-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #818cf8;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.home-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.home-hero h1 span {
  background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.7;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 10px;
  transition: all 0.15s ease;
}

.home-btn-primary:hover {
  background: #6366f1;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px -5px rgba(79, 70, 229, 0.4);
}

.home-btn-lg {
  padding: 15px 36px;
  font-size: 17px;
}

.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: all 0.15s ease;
}

.home-btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
}

.home-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

/* Phone in hero */
.home-hero-visual {
  flex-shrink: 0;
  position: relative;
  perspective: 1200px;
}

.home-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-phone {
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  animation: phone-float 4s ease-in-out infinite;
}

/* =============================================
   HOMEPAGE – Stats Bar
   ============================================= */
.home-stats {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 32px;
}

.home-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
}

.home-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
}

.home-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef2ff;
  color: #4f46e5;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.home-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #020617;
}

.home-stat span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 1px;
}

.home-stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* =============================================
   HOMEPAGE – Showcase (3 Phones)
   ============================================= */
.home-showcase {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 50%, #f0f9ff 100%);
  padding: 80px 32px;
  overflow: hidden;
}

.home-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-showcase .section-header {
  margin-bottom: 48px;
}

.phones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  perspective: 1200px;
  padding: 0 20px;
}

.phones-row .phone-mockup {
  animation: none;
}

.phones-row .phone-center {
  width: clamp(180px, 20vw, 280px);
  transform: rotateY(0deg) rotateX(2deg);
  z-index: 2;
  box-shadow:
    0 0 0 2px #1e293b,
    0 35px 70px -15px rgba(0, 0, 0, 0.4),
    0 15px 35px -10px rgba(0, 0, 0, 0.3);
}

.phones-row .phone-side {
  width: clamp(140px, 16vw, 220px);
  opacity: 0.85;
  z-index: 1;
}

.phones-row .phone-side-left {
  transform: rotateY(15deg) rotateX(2deg) rotateZ(-2deg) translateX(10px);
}

.phones-row .phone-side-right {
  transform: rotateY(-15deg) rotateX(2deg) rotateZ(2deg) translateX(-10px);
}

.app-preview-link {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   HOMEPAGE – Steps (numbered, with arrows)
   ============================================= */
.home-steps {
  background: #fff;
  padding: 80px 32px;
}

.home-steps-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.home-steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.home-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.home-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.home-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.home-step p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.home-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: #cbd5e1;
  flex-shrink: 0;
}

/* =============================================
   HOMEPAGE – Features Strip (pills)
   ============================================= */
.home-features-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 32px;
}

.home-features-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.home-feature-pill svg {
  color: #4f46e5;
  flex-shrink: 0;
}

/* =============================================
   HOMEPAGE – CTA
   ============================================= */
.home-cta {
  background: linear-gradient(165deg, #0b1120 0%, #0f172a 40%, #1e1b4b 100%);
  padding: 96px 32px;
  text-align: center;
}

.home-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.home-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.home-cta p {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* =============================================
   PRICING SECTION (Info Page)
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-popular {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px #4f46e5, 0 10px 25px -5px rgba(79, 70, 229, 0.15);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-badge-free {
  background: #f1f5f9;
  color: #64748b;
}

.pricing-badge-plus {
  background: #f0fdf4;
  color: #16a34a;
}

.pricing-badge-popular {
  background: #eef2ff;
  color: #4f46e5;
}

.pricing-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 4px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-price-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
}

.pricing-price-period {
  font-size: 15px;
  color: #64748b;
}

.pricing-credits {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-credits-free {
  background: #f1f5f9;
  color: #64748b;
}

.pricing-credits-plus {
  background: #f0fdf4;
  color: #16a34a;
}

.pricing-credits-pro {
  background: #eef2ff;
  color: #4f46e5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features .check-green {
  color: #22c55e;
}

.pricing-features .check-indigo {
  color: #4f46e5;
}

.pricing-features .check-muted {
  color: #94a3b8;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.15s ease;
  text-align: center;
}

.pricing-cta-primary {
  background: #4f46e5;
  color: #fff;
}

.pricing-cta-primary:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.pricing-cta-secondary {
  background: #fff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.pricing-cta-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.pricing-enterprise {
  text-align: center;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.pricing-enterprise p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 8px;
}

.pricing-enterprise a {
  font-size: 15px;
  font-weight: 600;
  color: #4f46e5;
}

.pricing-enterprise a:hover {
  color: #4338ca;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* md – 768px+ (Tablets/Desktop) */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  #mobile-btn {
    display: none;
  }

  #mobile-menu {
    display: none !important;
  }
}

/* kleiner als 768px */
@media (max-width: 767px) {
  .page-main {
    padding: 24px 16px 48px;
  }

  .footer {
    padding: 32px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .legal-card-title {
    font-size: 22px;
  }

  .legal-content h2 {
    font-size: 18px;
  }
}

/* Homepage & Pricing responsive */
@media (max-width: 768px) {
  .home-hero {
    padding: 48px 20px 40px;
  }

  .home-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .home-hero p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .home-btn-primary,
  .home-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .home-hero-trust {
    justify-content: center;
  }

  .home-phone {
    transform: rotateY(-6deg) rotateX(2deg) rotateZ(1deg);
  }

  .home-stats-inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }

  .home-stat {
    padding: 0;
  }

  .home-stat-divider {
    width: 60px;
    height: 1px;
  }

  .home-showcase {
    padding: 48px 20px;
  }

  .phones-row {
    gap: 12px;
    padding: 0;
  }

  .phones-row .phone-center {
    width: clamp(140px, 32vw, 200px);
  }

  .phones-row .phone-side {
    width: clamp(100px, 24vw, 160px);
  }

  .phones-row .phone-side-left {
    transform: rotateY(12deg) rotateX(2deg) rotateZ(-1deg) translateX(5px);
  }

  .phones-row .phone-side-right {
    transform: rotateY(-12deg) rotateX(2deg) rotateZ(1deg) translateX(-5px);
  }

  .home-steps {
    padding: 48px 20px;
  }

  .home-steps-grid {
    flex-direction: column;
    gap: 32px;
  }

  .home-step-arrow {
    display: none;
  }

  .home-step-num {
    font-size: 32px;
  }

  .home-features-strip {
    padding: 24px 20px;
  }

  .home-cta {
    padding: 56px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero-inner {
    gap: 32px;
  }

  .phones-row .phone-center {
    width: clamp(180px, 22vw, 240px);
  }

  .phones-row .phone-side {
    width: clamp(140px, 18vw, 190px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
