/* ============================
   ZUQER FRONTPAGE
   ============================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple: #7a00df;
  --purple-light: #9d4edd;
  --purple-dark: #5a00a5;
  --purple-darker: #3d007a;
  --dark: #212326;
  --text: #212326;
  --text-light: #6b6f76;
  --surface: #f7f7f8;
  --border: #e0e0e0;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================
   TYPOGRAPHY
   ============================ */
.fp-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
}
.fp-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.fp-h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.fp-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============================
   BUTTONS
   ============================ */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 9999px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.fp-btn:hover { text-decoration: none; }
.fp-btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,0,223,0.3);
}
.fp-btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122,0,223,0.4);
}
.fp-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.fp-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.fp-btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.fp-btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}
.fp-btn-sm {
  padding: 12px 28px;
  font-size: 15px;
}

/* ============================
   SECTIONS
   ============================ */
.fp-section {
  padding: 120px 24px;
}
.fp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.fp-section--gray { background: var(--surface); }
.fp-section--dark { background: var(--dark); color: var(--white); }
.fp-section--purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
}
.fp-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.fp-section-header .fp-lead {
  max-width: 600px;
  margin: 16px auto 0;
}

/* ============================
   FADE-IN ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================
   STICKY NAV
   ============================ */
.fp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(33,35,38,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
.fp-nav.scrolled {
  padding: 12px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.fp-nav-logo {
  display: flex;
  align-items: center;
}
.fp-nav-logo img {
  height: 30px;
  position: relative;
  top: 5px;
  filter: invert(1);
  transition: height 0.3s ease;
}
.fp-nav.scrolled .fp-nav-logo img { height: 24px; }
.fp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.fp-nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.fp-nav-links a:hover { color: #fff; text-decoration: none; }
.fp-nav-cta {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

/* Mobile hamburger */
.fp-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* ============================
   HERO
   ============================ */
.fp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--purple-darker);
  padding: 140px 24px 100px;
}
.fp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33,35,38,0.45);
  z-index: 1;
}
.fp-hero-content {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.fp-hero-logo {
  height: 180px;
  width: auto;
  filter: invert(1);
  margin-bottom: 32px;
}
.fp-hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.fp-hero .fp-lead {
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  max-width: 650px;
  margin: 0 auto 40px;
}
.fp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating cards in hero */
.fp-hero-visuals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.fp-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  animation: floatCard 8s ease-in-out infinite;
}
.fp-floating-card:nth-child(1) {
  width: 220px;
  top: 18%;
  left: 5%;
  animation-delay: 0s;
}
.fp-floating-card:nth-child(2) {
  width: 200px;
  top: 60%;
  right: 8%;
  animation-delay: -3s;
}
.fp-floating-card:nth-child(3) {
  width: 180px;
  bottom: 15%;
  left: 10%;
  animation-delay: -5s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  75% { transform: translateY(10px) rotate(-1deg); }
}
.fp-floating-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}
.fp-floating-line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  margin-top: 8px;
}
.fp-floating-line-short { width: 60%; }
.fp-floating-line-long { width: 85%; }

/* ============================
   WHAT IS ZUQER (4-col grid)
   ============================ */
.fp-what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fp-what-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fp-what-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.fp-what-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122,0,223,0.1), rgba(122,0,223,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple);
}
.fp-what-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.fp-what-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================
   FEATURE HIGHLIGHTS
   ============================ */
.fp-feature {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}
.fp-feature:last-child { margin-bottom: 0; }
.fp-feature.reverse { flex-direction: row-reverse; }
.fp-feature-text { flex: 1; }
.fp-feature-text h3 {
  margin-bottom: 16px;
}
.fp-feature-text p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}
.fp-feature-visual {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
/* CSS mockup for feature visuals */
.fp-mock {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-mock-bar {
  height: 10px;
  border-radius: 5px;
  background: var(--border);
}
.fp-mock-bar.purple { background: var(--purple); width: 40%; }
.fp-mock-bar.blue { background: #268de3; width: 60%; }
.fp-mock-bar.green { background: #2eaa4f; width: 35%; }
.fp-mock-bar.orange { background: #f27549; width: 50%; }
.fp-mock-row {
  display: flex;
  gap: 8px;
}
.fp-mock-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  min-height: 60px;
}
.fp-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.fp-mock-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-top: 6px;
}

/* ============================
   SOCIAL PROOF
   ============================ */
.fp-social-proof {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.fp-stat {
  text-align: center;
}
.fp-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -2px;
}
.fp-stat-label {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 8px;
}

/* ============================
   BACKSTORY – Warum Zuqer?
   ============================ */

/* Story Grid: 3 cards */
.fp-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.fp-story-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fp-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.fp-story-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fp-story-icon--problem { background: rgba(242,117,73,0.2); color: #f27549; }
.fp-story-icon--insight { background: rgba(255,255,255,0.15); color: #fff; }
.fp-story-icon--solution { background: rgba(228,252,154,0.2); color: #e4fc9a; }

.fp-story-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fp-story-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* Chaos cloud – scattered tool names */
.fp-story-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.fp-story-chaos span {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(242,117,73,0.12);
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  letter-spacing: 0.3px;
}

/* Center card – glow effect */
.fp-story-card--center {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* Equation – typographic centerpiece */
.fp-equation {
  text-align: center;
  padding: 0 20px;
}

.fp-equation-word,
.fp-equation-result {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
}

.fp-eq-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 72px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

/* The C – struck through, fading */
.fp-eq-c {
  background: rgba(242,117,73,0.15);
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
  border-color: rgba(242,117,73,0.3);
  animation: fp-pulse-c 3s ease-in-out infinite;
}
@keyframes fp-pulse-c {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.fp-equation-label {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.6;
}
.fp-equation-label strong {
  color: #fff;
}

.fp-equation-result {
  margin-top: 24px;
  margin-bottom: 0;
}

/* The Q – glowing accent */
.fp-eq-q {
  background: rgba(228,252,154,0.15);
  color: #e4fc9a;
  border-color: rgba(228,252,154,0.3);
  box-shadow: 0 0 24px rgba(228,252,154,0.15);
  animation: fp-glow-q 3s ease-in-out infinite;
}
@keyframes fp-glow-q {
  0%, 100% { box-shadow: 0 0 24px rgba(228,252,154,0.1); }
  50% { box-shadow: 0 0 40px rgba(228,252,154,0.25); }
}

/* ============================
   PRICING
   ============================ */
.fp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.fp-pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.fp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fp-pricing-card.featured {
  border-color: var(--purple);
}
.fp-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fp-pricing-price {
  font-size: 48px;
  font-weight: 800;
  margin: 16px 0 4px;
  letter-spacing: -1px;
}
.fp-pricing-period {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
}
.fp-pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.fp-pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(122,0,223,0.1);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none' stroke='%237a00df' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.5 3.5 6.5-8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.fp-pricing-card .fp-btn { width: 100%; justify-content: center; }
.fp-pricing-card .fp-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================
   CTA SECTION (Wall Forms)
   ============================ */
.fp-cta-forms {
  display: flex;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.fp-cta-panel {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.fp-cta-panel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.fp-cta-panel h3 span { color: var(--purple); }
.fp-cta-panel .desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.fp-cta-panel label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.fp-cta-panel input[type="text"],
.fp-cta-panel input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
.fp-cta-panel input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(122,0,223,0.1);
}
.fp-cta-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 9999px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.fp-cta-submit:hover { background: var(--purple-dark); }

.fp-cta-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.fp-error {
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 10px 14px;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 13px;
  text-align: center;
}

/* ============================
   FOOTER
   ============================ */
.fp-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 24px;
  text-align: center;
  font-size: 14px;
}
.fp-footer-logo {
  height: 28px;
  filter: invert(1);
  margin-bottom: 12px;
}
.fp-footer-tagline {
  margin-bottom: 20px;
  font-size: 14px;
}
.fp-footer-links {
  margin-bottom: 20px;
}
.fp-footer-links a {
  color: rgba(255,255,255,0.6);
  margin: 0 12px;
  font-size: 14px;
}
.fp-footer-links a:hover { color: #fff; text-decoration: none; }
.fp-footer-copy { font-size: 13px; }

/* ============================
   COOKIE BANNER
   ============================ */
.fp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.fp-cookie-banner.visible {
  transform: translateY(0);
}
.fp-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fp-cookie-text {
  font-size: 14px;
  line-height: 1.5;
}
.fp-cookie-text a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.fp-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.fp-cookie-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.fp-cookie-accept {
  background: var(--purple);
  color: #fff;
}
.fp-cookie-accept:hover { background: var(--purple-dark); }
.fp-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.fp-cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ============================
   SCROLL TO TOP
   ============================ */
.fp-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(122,0,223,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
.fp-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fp-scroll-top:hover {
  background: var(--purple-dark);
}

/* Nav toggle animation */
.fp-nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fp-nav-toggle.open .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.fp-nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.fp-nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================
   LEGAL PAGES
   ============================ */
.fp-legal-header {
  background: var(--dark);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-legal-header img {
  height: 28px;
  filter: invert(1);
}
.fp-legal-header a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.fp-legal-header a:hover { color: #fff; }
.fp-legal-content {
  max-width: 800px;
  margin: 60px auto 80px;
  padding: 0 24px;
  line-height: 1.8;
}
.fp-legal-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.fp-legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}
.fp-legal-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
}
.fp-legal-content p { margin-bottom: 12px; }
.fp-legal-content ul { margin: 12px 0; padding-left: 24px; }
.fp-legal-content li { margin-bottom: 6px; }
.fp-legal-back {
  display: inline-block;
  margin-top: 48px;
  color: var(--purple);
  font-weight: 600;
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .fp-h1 { font-size: 56px; letter-spacing: -2px; }
  .fp-h2 { font-size: 40px; }
  .fp-feature { gap: 40px; }
}

@media (max-width: 900px) {
  .fp-what-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fp-h1 { font-size: 42px; letter-spacing: -1.5px; }
  .fp-h2 { font-size: 32px; letter-spacing: -1px; }
  .fp-h3 { font-size: 22px; }
  .fp-lead { font-size: 17px; }
  .fp-section { padding: 80px 20px; }
  .fp-section-header { margin-bottom: 40px; }

  /* Nav */
  .fp-nav { padding: 14px 20px; }
  .fp-nav-links { display: none; }
  .fp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .fp-nav-toggle { display: block; }

  /* Hero */
  .fp-hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }
  .fp-hero-video { /* visible on mobile — autoplay with poster fallback */ }
  .fp-hero-logo { height: 120px; margin-bottom: 24px; }
  .fp-hero .fp-lead { font-size: 18px; }
  .fp-hero-ctas { flex-direction: column; align-items: center; }
  .fp-floating-card { display: none; }

  /* Grid */
  .fp-what-grid { grid-template-columns: 1fr; gap: 20px; }
  .fp-feature { flex-direction: column !important; gap: 24px; }
  .fp-feature-visual { aspect-ratio: 16/10; }
  .fp-pricing-grid { grid-template-columns: 1fr; }

  /* Story / Backstory */
  .fp-story-grid { grid-template-columns: 1fr; gap: 20px; }
  .fp-eq-letter { width: 44px; height: 52px; font-size: 24px; border-radius: 8px; }
  .fp-equation-label { font-size: 15px; }

  /* Social Proof */
  .fp-social-proof { gap: 40px; }
  .fp-stat-number { font-size: 40px; }

  /* CTA Forms */
  .fp-cta-forms { flex-direction: column; gap: 20px; }
  .fp-cta-divider { width: 100%; height: 1px; }

  /* Scroll top */
  .fp-scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  /* Cookie */
  .fp-cookie-inner { flex-direction: column; text-align: center; }
  .fp-cookie-actions { justify-content: center; }

  /* Legal */
  .fp-legal-content h1 { font-size: 32px; }
  .fp-legal-header { padding: 16px 20px; }
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}
