:root {
  /* Kinly Brand Colors */
  --blush-600: #e86e5a;
  --blush-500: #f07f6c;
  --blush-300: #f5a18f;
  --blush-100: #ffe3db;

  --iris-600: #6c63ff;
  --iris-500: #8a85ff;
  --iris-300: #c1bfff;
  --iris-100: #e7e6ff;

  --seafoam-600: #2fb598;
  --seafoam-400: #63d2be;
  --seafoam-200: #aee9de;
  --seafoam-100: #cff3ea;

  --ink: #1e2226;
  --charcoal: #2b2f34;
  --mushroom: #3b3f45;
  --pebble: #6c6f75;
  --fog: #c8c1bd;
  --porcelain: #ece7e4;
  --parchment: #f7f3f0;
  --linen: #faf7f4;
  --paper: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(180deg, #f09386 0%, #e86e5a 100%);
  --gradient-secondary: linear-gradient(180deg, #8a85ff 0%, #6c63ff 100%);
  --gradient-positive: linear-gradient(180deg, #63d2be 0%, #2fb598 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--linen);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

/* Page Content */
main {
  padding-top: 80px;
  min-height: 100vh;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 193, 189, 0.2);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 12px 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--blush-600);
  text-decoration: none;
  letter-spacing: -0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 28px;
    width: 28px;
  }
  .logo {
    font-size: 20px;
    gap: 8px;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--blush-600);
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(232, 110, 90, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 110, 90, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 100px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--linen);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(232, 110, 90, 0.02) 0%,
    transparent 70%
  );
  animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--seafoam-100);
  color: var(--seafoam-600);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--ink);
}

.hero-subtitle {
  font-size: clamp(19px, 2.5vw, 24px);
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-cta-group > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232, 110, 90, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 110, 90, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid rgba(30, 34, 38, 0.2);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--parchment);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.trial-badge {
  margin-top: 16px;
  font-size: 14px;
  color: var(--mushroom);
}

.trial-badge strong {
  color: var(--seafoam-600);
  font-weight: 600;
}

/* Hero Screenshots - Overlapping Mockups */
.hero-screenshots {
  padding: 0 0 80px;
  background: var(--gradient-primary);
  margin-top: -40px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

.hero-mockups {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  height: 500px;
}

.mockup-wrapper {
  position: absolute;
  transition: transform 0.3s;
}

.mockup-wrapper.left {
  left: 10%;
  transform: translateX(-20px) rotate(-5deg);
  z-index: 1;
}

.mockup-wrapper.center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mockup-wrapper.right {
  right: 10%;
  transform: translateX(20px) rotate(5deg);
  z-index: 2;
}

.device-frame {
  width: 240px;
  height: 480px;
  background: #1e2226;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #1e2226;
  border-radius: 0 0 12px 12px;
  z-index: 1;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: var(--parchment);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-screen .screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pebble);
  font-size: 48px;
  text-align: center;
}

/* QR Code Section */
.qr-section {
  padding: 100px 0;
  background: var(--paper);
}

.qr-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 800px;
  margin: 60px auto 0;
}

.qr-card {
  background: var(--parchment);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid rgba(200, 193, 189, 0.2);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.qr-card.ios {
  border-color: var(--blush-600);
}

.qr-card.android {
  border-color: var(--seafoam-600);
}

.qr-code-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  padding: 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.qr-platform-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.qr-platform-name.ios {
  color: var(--blush-600);
}

.qr-platform-name.android {
  color: var(--seafoam-600);
}

.qr-description {
  color: var(--mushroom);
  font-size: 15px;
  margin-bottom: 20px;
}

.qr-download-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.qr-download-btn.ios {
  background: var(--blush-600);
  color: white;
}

.qr-download-btn.android {
  background: var(--seafoam-600);
  color: white;
}

.qr-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* App Mockup */
.app-mockup {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mockup-placeholder {
  width: 100%;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  flex-direction: column;
}

/* Screenshot Cards */
.screenshot-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(200, 193, 189, 0.2);
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pebble);
  font-size: 48px;
  padding: 20px;
  text-align: center;
}

.screenshot-placeholder small {
  font-size: 12px;
  margin-top: 8px;
  color: var(--mushroom);
}

/* Why It Works Cards */
.why-card {
  background: var(--paper);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(200, 193, 189, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.why-description {
  font-size: 15px;
  color: var(--mushroom);
  line-height: 1.6;
}

/* Section Dividers */
.section-divider {
  height: 1px;
  background: rgba(200, 193, 189, 0.2);
  margin: 0;
  border: none;
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  background: var(--paper);
  text-align: center;
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--mushroom);
  font-size: 16px;
}

.reviews {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.review-card {
  background: var(--parchment);
  padding: 24px;
  border-radius: 16px;
  max-width: 320px;
  text-align: left;
  border: 1px solid rgba(200, 193, 189, 0.2);
}

.review-stars {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: var(--linen);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.section-subtitle {
  font-size: 20px;
  color: var(--mushroom);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(200, 193, 189, 0.2);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.benefit-icon.primary {
  background: var(--blush-100);
  color: var(--blush-600);
}

.benefit-icon.secondary {
  background: var(--iris-100);
  color: var(--iris-600);
}

.benefit-icon.tertiary {
  background: var(--seafoam-100);
  color: var(--seafoam-600);
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.benefit-description {
  color: var(--mushroom);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--blush-600),
    var(--iris-600)
  );
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step::after {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: var(--blush-600);
  opacity: 0.5;
  z-index: 1;
}

.step:not(:last-child)::before {
  content: "→";
  position: absolute;
  top: 30px;
  right: -20px;
  font-size: 24px;
  color: var(--blush-600);
  opacity: 0.4;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(232, 110, 90, 0.3);
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.step-description {
  color: var(--mushroom);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--linen);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 60px auto 0;
  align-items: stretch;
}

.pricing-card {
  background: var(--paper);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(200, 193, 189, 0.2);
  text-align: center;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card.featured {
  border-color: var(--blush-600);
  box-shadow: 0 8px 32px rgba(232, 110, 90, 0.2);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  margin: 24px 0;
  color: var(--ink);
  min-height: 60px; /* Prevent layout shift when toggling */
  line-height: 1.2;
}

.pricing-period {
  font-size: 16px;
  color: var(--pebble);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 32px 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--mushroom);
  display: flex;
  align-items: start;
  gap: 12px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--seafoam-600);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  margin-top: 40px;
}

/* Pricing Toggle */
.pricing-toggle {
  display: inline-flex;
  background: var(--porcelain);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.toggle-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--mushroom);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--paper);
  color: var(--blush-600);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn:hover:not(.active) {
  color: var(--ink);
}

.yearly-card {
  display: none;
}

.pricing-grid.show-yearly .yearly-card {
  display: block;
}

/* Hide/show pricing based on toggle */
.pricing-card.featured .yearly-price {
  display: none;
}

.pricing-grid.show-yearly .pricing-card.featured .monthly-price {
  display: none;
}

.pricing-grid.show-yearly .pricing-card.featured .yearly-price {
  display: block;
}

/* Savings badge */
.savings-badge {
  margin-top: -16px;
  margin-bottom: 24px;
  display: none;
}

.pricing-grid.show-yearly .savings-badge {
  display: block;
}

/* App Store Badges */
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.store-badge {
  height: 60px;
  transition: transform 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge img {
  height: 100%;
  width: auto;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.sticky-mobile-cta a {
  display: block;
  background: white;
  color: var(--blush-600);
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Founder Story */
.founder-story {
  padding: 100px 0;
  background: var(--paper);
}

.founder-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232, 110, 90, 0.3);
}

.founder-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--mushroom);
  margin-bottom: 24px;
}

.founder-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: white;
  color: var(--blush-600);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: var(--linen);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--porcelain);
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-section a {
  color: var(--porcelain);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-section a:hover {
  color: var(--blush-300);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fog);
  font-size: 14px;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--ink);
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--mushroom);
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  margin-bottom: 8px;
  color: var(--mushroom);
  line-height: 1.8;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--blush-600);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--blush-500);
}

/* FAQ Page */
.faq-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(200, 193, 189, 0.2);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--parchment);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--mushroom);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-toggle {
  font-size: 20px;
  color: var(--blush-600);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Careers Page */
.careers-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.careers-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.careers-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}

.careers-page p {
  font-size: 18px;
  color: var(--mushroom);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(200, 193, 189, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-mockups {
    height: 400px;
  }

  .device-frame {
    width: 180px;
    height: 360px;
  }

  .mockup-wrapper.left {
    left: 5%;
    transform: translateX(-10px) rotate(-3deg);
  }

  .mockup-wrapper.right {
    right: 5%;
    transform: translateX(10px) rotate(3deg);
  }

  .mockup-wrapper.left,
  .mockup-wrapper.right {
    display: none;
  }

  .mockup-wrapper.center {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .benefits-grid,
  .steps,
  .pricing-grid,
  .qr-container {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .step::after,
  .step::before {
    display: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .social-proof-stats {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .qr-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .qr-card {
    transform: scale(1) !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-question {
    padding: 20px !important;
    min-height: 60px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
    </style>
