/* website/public/css/style.css */

/* === RESET + BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === UTILITY === */
.gradient-text {
  background: linear-gradient(135deg, #5B7CF2, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.nav-brand svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #f5f5f7;
  border-radius: 50px;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: white;
  color: #111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.nav-lang {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, #5B7CF2, #8B5CF6);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  display: inline-block;
}

/* === WIND CANVAS === */
.wind-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  pointer-events: none;
  z-index: 0;
}

/* === HERO === */
.hero {
  text-align: center;
  padding: 80px 60px 0;
  position: relative;
  overflow: visible;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  max-width: 750px;
  margin: 0 auto 20px;
  position: relative; z-index: 2;
}

.hero .subtitle {
  font-size: 18px;
  color: #666;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative; z-index: 2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #111;
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  position: relative; z-index: 2;
}

/* App Store badge style */
.app-badge {
  gap: 14px;
  padding: 12px 36px;
  border-radius: 50px;
  border: 1px solid #333;
}
.app-badge-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.app-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.app-badge-top {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.app-badge-bottom {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* CTA banner version - white badge */
.cta-download.app-badge {
  border-color: rgba(255,255,255,0.3);
}
.cta-download.app-badge .app-badge-icon {
  fill: #111;
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  display: block;
}

/* Floating cards alongside phone */
.hero-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-left {
  right: calc(50% + 100px);
  top: 625px;
}

.hero-float-right {
  left: calc(50% + 40px);
  top: 510px;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon.eye {
  background: #EEF2FF;
  color: #5B7CF2;
}

.float-icon.ai {
  background: #F3E8FF;
  color: #8B5CF6;
}

.float-text strong {
  display: block;
  font-size: 13px;
  color: #111;
}

.float-text span {
  font-size: 11px;
  color: #888;
}

/* Phone mockup */
.hero-phone {
  margin: 50px auto 0;
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(91, 124, 242, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f0f0f5 0%, #e8e8f0 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-display {
  width: calc(100% - 24px);
  margin: 12px;
  padding: 16px;
  background: white;
  border-radius: 14px;
  border: 1.5px dashed #ccc;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-display-text {
  font-size: 16px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px;
  width: 100%;
  flex: 1;
  align-content: center;
}

.phone-key {
  background: white;
  border-radius: 10px;
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.phone-bottom {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  width: 100%;
}

.phone-btn {
  flex: 1;
  padding: 10px;
  background: #f0f0f5;
  border-radius: 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #666;
}

.phone-btn.active {
  background: linear-gradient(135deg, #5B7CF2, #8B5CF6);
  color: white;
}

.hero-gradient {
  height: 200px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(91, 124, 242, 0.0) 0%, rgba(91, 124, 242, 0.06) 50%, rgba(139, 92, 246, 0.04) 100%);
}

/* === WAITLIST FORM === */
.waitlist-form {
  margin-top: 38px;
  position: relative; z-index: 2;
}

.waitlist-input-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
}

.waitlist-input-row input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input-row input:focus {
  border-color: #5B7CF2;
}

.waitlist-input-row button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #5B7CF2, #8B5CF6);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.waitlist-input-row button:hover {
  opacity: 0.9;
}

.waitlist-input-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.waitlist-consent {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

.waitlist-consent-cta {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-message {
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}

.waitlist-message.success {
  color: #22c55e;
}

.waitlist-message.error {
  color: #ef4444;
}

.waitlist-form-cta .waitlist-input-row input {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.waitlist-form-cta .waitlist-input-row input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form-cta .waitlist-input-row button {
  background: white;
  color: #111;
}

/* === SECTIONS SHARED === */
.section-heading {
  text-align: center;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* === FEATURES === */
.features {
  padding: 80px 60px;
  background: #f8f9fc;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card.highlighted {
  background: linear-gradient(135deg, #5B7CF2, #8B5CF6);
  border: none;
  color: white;
}

.feature-card.highlighted .feature-title {
  color: white;
}

.feature-card.highlighted .feature-desc {
  color: rgba(255, 255, 255, 0.85);
}

.feature-card.highlighted .feature-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #555;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* === SHOWCASE === */
.showcase {
  padding: 100px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-phone {
  flex-shrink: 0;
  width: 260px;
  height: 520px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(91, 124, 242, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.showcase-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5B7CF2 0%, #8B5CF6 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  line-height: 1.2;
}

.showcase-point {
  margin-bottom: 8px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.showcase-point:hover,
.showcase-point.active {
  border-color: #e0e0e8;
  background: #fafafe;
}

.showcase-point h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-point h3 .icon-accent {
  color: #5B7CF2;
}

.showcase-point p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding-left: 34px;
}

/* === STORY === */
.story {
  padding: 100px 60px;
  background: #f8f9fc;
}

.story-layout {
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 36px 0 12px;
}

.story-text h3:first-of-type {
  margin-top: 0;
}

.story-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.story-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  font-style: italic;
  border-left: 3px solid #5B7CF2;
  padding-left: 20px;
  margin: 24px 0;
}

.story-aside {
  flex-shrink: 0;
  width: 320px;
  position: sticky;
  top: 100px;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.story-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-lang {
  padding: 6px 14px;
  background: #f5f5f7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.story-lang-more {
  padding: 6px 14px;
  background: #f5f5f7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  font-style: italic;
  margin-top: 20px;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 80px 0;
  overflow: hidden;
  background: #f8f9fc;
}

.testimonials-section .section-heading {
  padding-top: 0;
}

.marquee-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Fade gradient edges */
.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fc 0%, transparent 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, #f8f9fc 0%, transparent 100%);
}

.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  min-height: 220px;
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91, 124, 242, 0.1);
}

.testimonial-stars {
  margin-bottom: 14px;
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 28px;
  color: #5B7CF2;
  font-style: normal;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.avatar-blue {
  background: linear-gradient(135deg, #5B7CF2, #6B8CF8);
}

.avatar-purple {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.avatar-indigo {
  background: linear-gradient(135deg, #4F46E5, #6366F1);
}

.avatar-violet {
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

/* === CTA BANNER === */
.cta-banner {
  margin: 40px 60px;
  padding: 60px 80px;
  background: linear-gradient(135deg, #5B7CF2 0%, #8B5CF6 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.cta-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 400px;
}

.cta-text .gradient-text {
  background: none;
  -webkit-text-fill-color: white;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 360px;
}

.cta-download {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.cta-phone {
  width: 220px;
  height: 440px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.cta-phone-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

/* === FOOTER === */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px;
}

.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1000px;
}

.footer-brand {
  flex: 1.5;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-brand-name svg {
  width: 32px;
  height: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ddd;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

.footer-bottom a {
  color: #888;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === HAMBURGER MENU === */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #555;
}
.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 12px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 0;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid transparent;
    transition: all 0.2s;
    background: none;
    box-shadow: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-color: #e0e0e8;
    background: #fafafe;
    box-shadow: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero {
    padding: 50px 20px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .hero-float {
    display: none;
  }

  .hero-phone {
    width: 240px;
    height: 480px;
  }

  .features {
    padding: 60px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .showcase {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .showcase-phone {
    width: 220px;
    height: 440px;
  }

  .showcase-content h2 {
    font-size: 30px;
  }

  .story {
    padding: 60px 20px;
  }

  .story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .story-aside {
    width: 100%;
    position: static;
  }

  .testimonial-card {
    width: 300px;
    min-height: 200px;
  }

  .cta-banner {
    flex-direction: column;
    margin: 20px;
    padding: 40px 30px;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 30px;
    max-width: none;
  }

  .cta-text p {
    max-width: none;
  }

  .cta-phone {
    display: none;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .waitlist-input-row {
    flex-direction: column;
  }

  .waitlist-input-row input,
  .waitlist-input-row button {
    width: 100%;
  }
}

/* === PRIVACY PAGE === */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.privacy-page h1 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.privacy-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

.privacy-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 32px 0 12px;
}

.privacy-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 24px 0 8px;
}

.privacy-body p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-body ul {
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-body li {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}

.privacy-body strong {
  color: #333;
}

.privacy-loading {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 16px;
}