/* =========================================================
   Great Apps — v3 using mboxtocsv section classes
   ========================================================= */

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

:root {
  --black:    #1D1D1F;
  --grey-900: #2D2D2F;
  --grey-700: #6E6E73;
  --grey-500: #86868B;
  --grey-300: #D2D2D7;
  --grey-200: #E8E8ED;
  --grey-100: #F5F5F7;
  --white:    #FBFBFD;

  --blue:       #0071E3;
  --blue-hover: #0077ED;
  --accent:     #6E5CE6;
  --accent-light: #A78BFA;

  --text:   var(--black);
  --text-2: var(--grey-700);
  --text-3: var(--grey-500);

  --r-xl: 24px;
  --r-lg: 18px;
  --r-md: 12px;

  --ease: cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
               'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === Header ============================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,253,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(145deg, #7B68EE, #4F46E5);
  color: #fff; font-weight: 700; font-size: 15px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name  { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.logo-tagline { font-size: 10px; color: var(--text-3); font-weight: 500; }

.main-nav { display: flex; gap: 28px; }
.nav-link {
  font-size: 12px; font-weight: 500; color: var(--text-2);
  transition: color .2s var(--ease); letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); }

/* --- Dark header variant --------------------------------- */
.site-header--dark {
  background: rgba(29,29,31,0.82);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header--dark .logo-name  { color: #F5F5F7; }
.site-header--dark .logo-tagline { color: rgba(245,245,247,0.5); }
.site-header--dark .nav-link { color: rgba(245,245,247,0.7); }
.site-header--dark .nav-link:hover { color: #F5F5F7; }

/* === Homepage Hero ======================================= */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-2);
  max-width: 520px; margin: 20px auto 0;
  line-height: 1.5; font-weight: 400;
  letter-spacing: -0.01em;
}

/* === Apps Section ======================================== */
.apps-section {
  padding: 48px 0 96px;
  background: linear-gradient(180deg, var(--grey-100) 0%, var(--white) 100%);
}

.section-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
  text-align: center; margin-bottom: 40px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* === App Card ============================================ */
.app-card {
  --card-accent: #6E5CE6;
  --card-accent-light: #A78BFA;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
  position: relative;
}
.app-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
}

.app-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-light));
}

.app-card-body { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.app-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }

.app-card-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}
.app-card-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.24); }

.app-card-titles { flex: 1; min-width: 0; }
.app-card-name {
  font-size: 17px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2;
}
.app-card-subtitle { font-size: 13px; color: var(--text-3); font-weight: 400; margin-top: 2px; }

.app-card-tagline {
  font-size: 14px; color: var(--text-2); line-height: 1.55; flex: 1;
  letter-spacing: -0.005em;
}

.app-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px;
  border-top: 0.5px solid rgba(0,0,0,0.05);
}

.app-card-category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 8%, transparent);
  padding: 3px 10px; border-radius: 6px;
}

.app-card-arrow {
  width: 20px; height: 20px; color: var(--grey-300);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.app-card:hover .app-card-arrow {
  color: var(--card-accent); transform: translateX(2px);
}

/* =========================================================
   APP DETAIL PAGES — uses same classes as mboxtocsv.com
   ========================================================= */

/* === Back Link =========================================== */
.back-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 400; color: var(--blue);
  margin-bottom: 20px; transition: opacity .2s var(--ease);
}
.back-link:hover { opacity: 0.7; }

/* === Hero ================================================ */
.app-hero-section {
  background: linear-gradient(170deg, color-mix(in srgb, var(--accent) 6%, var(--grey-100)) 0%, var(--white) 60%);
  padding: 64px 0 72px;
}

.app-hero {
  display: flex; align-items: flex-start; gap: 36px;
}

.app-icon {
  width: 128px; height: 128px; flex-shrink: 0;
  border-radius: 28px; overflow: hidden;
  box-shadow:
    0 12px 40px color-mix(in srgb, var(--accent) 25%, transparent),
    0 2px 8px rgba(0,0,0,0.06);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.24); }

.app-info { flex: 1; }

.app-name {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.app-subtitle {
  font-size: 19px; color: var(--text-2); font-weight: 400;
  margin-top: 6px; letter-spacing: -0.01em;
}
.app-description {
  font-size: 17px; color: var(--text-2); line-height: 1.65;
  max-width: 560px; margin-top: 16px; letter-spacing: -0.005em;
}

/* Trust Badges */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-2);
  padding: 6px 12px; border-radius: 8px;
  background: rgba(0,0,0,0.04);
}
.trust-badge svg { flex-shrink: 0; opacity: 0.7; }

.app-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.meta-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(0,0,0,0.04); color: var(--text-2);
}

/* CTA button */
.app-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: 980px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.app-store-btn:hover {
  background: var(--grey-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.app-store-btn svg { width: 18px; height: 18px; }

/* === Section shared styles =============================== */
.section-intro {
  font-size: 17px; color: var(--text-2); line-height: 1.65;
  max-width: 640px; margin-bottom: 36px; letter-spacing: -0.005em;
}

/* === Privacy / Security Section ========================== */
.privacy-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.privacy-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.privacy-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  transition: box-shadow .25s var(--ease);
}
.privacy-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.privacy-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 8%, var(--grey-100));
  border-radius: var(--r-md);
  margin-bottom: 16px;
  color: var(--accent);
}
.privacy-card h3 {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.privacy-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.55;
  letter-spacing: -0.005em;
}

/* === Features ============================================ */
.features-section {
  padding: 80px 0;
}
.features-section > .container > h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--r-lg);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.feature-card-title {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.feature-card-desc {
  font-size: 14px; color: var(--text-2); line-height: 1.55;
  letter-spacing: -0.005em;
}

/* === How It Works ======================================== */
.how-it-works-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.how-it-works-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--r-xl);
  position: relative;
}
.step-number {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: white;
  font-size: 18px; font-weight: 700;
  border-radius: 12px;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
  letter-spacing: -0.005em;
}

/* === Use Cases (reuses feature-card pattern) ============= */
.use-cases-section {
  padding: 80px 0;
}
.use-cases-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}

/* === Providers =========================================== */
.providers-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.providers-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.provider-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  transition: box-shadow .25s var(--ease);
}
.provider-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.provider-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  margin-bottom: 12px;
  color: var(--text-2);
}
.provider-card h3 {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.provider-card p {
  font-size: 13px; color: var(--text-2); line-height: 1.55;
  letter-spacing: -0.005em;
}

/* === Output Formats ====================================== */
.formats-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.formats-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.format-card {
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  text-align: center;
  transition: box-shadow .25s var(--ease);
}
.format-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.format-name {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 8px;
}
.format-card p {
  font-size: 13px; color: var(--text-2); line-height: 1.55;
  letter-spacing: -0.005em;
}

/* === Comparisons ========================================= */
.comparisons-section {
  padding: 80px 0;
}
.comparisons-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.comparison-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.comparison-card {
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  background: transparent;
  border-radius: 0;
}
.comparison-card:first-child { padding-top: 0; }
.comparison-card:last-child { border-bottom: none; }
.comparison-card h3 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.comparison-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.65;
}
.comparison-card p + .comp-label { margin-top: 16px; }
.comparison-card .comp-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); margin-bottom: 6px; margin-top: 0;
}

/* === Screenshots ========================================= */
.screenshots-section {
  padding: 80px 0;
}
.screenshots-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.screenshots-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshots-scroll img {
  height: 420px; border-radius: var(--r-lg);
  border: 0.5px solid rgba(0,0,0,0.06);
  scroll-snap-align: start; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.screenshots-scroll::-webkit-scrollbar { height: 6px; }
.screenshots-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--grey-300); border-radius: 3px; }

/* === Testimonials ======================================== */
.testimonials-section {
  padding: 80px 0;
}
.testimonials-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.testimonial-card {
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--r-lg);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.testimonial-stars {
  font-size: 16px; color: #FF9500;
  margin-bottom: 12px; letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px; color: var(--text); line-height: 1.6;
  font-style: italic; letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.testimonial-author {
  font-size: 13px; font-weight: 600; color: var(--text-3);
}

/* === FAQ ================================================= */
.faq-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.faq-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 0.5px solid rgba(0,0,0,0.08);
}
.faq-question {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px; font-weight: 300;
  color: var(--text-3);
  transition: transform .2s var(--ease);
  flex-shrink: 0; margin-left: 16px;
}
details[open] .faq-question::after {
  content: '\2212';
}
.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 15px; color: var(--text-2); line-height: 1.7;
  letter-spacing: -0.005em;
  max-width: 640px;
}

/* === CTA ================================================= */
.cta-section {
  text-align: center; padding: 64px 32px;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
  border-radius: var(--r-xl);
  margin: 80px 0;
}
.cta-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.cta-section p {
  color: var(--text-2); font-size: 17px; margin-bottom: 28px;
  letter-spacing: -0.005em;
}

/* === Homepage Content Sections ============================ */
.home-content-section,
.home-faq-section {
  padding: 88px 0;
  background: var(--white);
}

.home-content-section h2,
.home-faq-section h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

/* Homepage FAQ reuses .faq-list styles */
.home-faq-section .faq-list details {
  border: none;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 20px 0;
  background: transparent;
  margin-bottom: 0;
}
.home-faq-section .faq-list details:last-child { border-bottom: none; }
.home-faq-section .faq-list summary {
  font-weight: 600; font-size: 16px; cursor: pointer;
  list-style: none; letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
}
.home-faq-section .faq-list summary::-webkit-details-marker { display: none; }
.home-faq-section .faq-list summary::after {
  content: '+'; font-weight: 400; font-size: 20px; color: var(--text-3);
  transition: transform .2s var(--ease); flex-shrink: 0; margin-left: 16px;
}
.home-faq-section .faq-list details[open] summary::after { content: '\2212'; }
.home-faq-section .faq-list details p {
  margin-top: 12px; font-size: 15px; color: var(--text-2);
  line-height: 1.7; max-width: 680px;
}

/* === About =============================================== */
.about-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--grey-100) 0%, var(--white) 100%);
}

.about-content > .about-desc {
  font-size: 17px; color: var(--text-2); text-align: center;
  max-width: 540px; margin: 0 auto 56px; line-height: 1.65;
  letter-spacing: -0.005em;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.highlight {
  text-align: center; padding: 48px 28px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 0.5px solid rgba(0,0,0,0.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.highlight-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.highlight-icon svg { width: 40px; height: 40px; }
.highlight h3 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px;
  color: var(--black);
}
.highlight p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* === Footer ============================================== */
.site-footer {
  border-top: 0.5px solid rgba(0,0,0,0.06);
  padding: 24px 0;
  background: var(--grey-100);
}
.footer-content {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-icon { width: 24px; height: 24px; font-size: 11px; border-radius: 6px; }
.footer-name { font-weight: 600; font-size: 13px; color: var(--text); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-3); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-3); }

/* === Privacy Policy Page ================================= */
.policy-page {
  padding: 48px 0 96px;
}
.policy-page .back-link { margin-bottom: 32px; }

.policy-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 8px;
}
.policy-updated {
  font-size: 14px; color: var(--text-3); margin-bottom: 48px;
}

.policy-content h2 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  margin: 40px 0 12px;
}
.policy-content h3 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  margin: 24px 0 8px;
}
.policy-content p {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  max-width: 680px; margin-bottom: 16px; letter-spacing: -0.005em;
}
.policy-content ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  max-width: 680px;
}
.policy-content ul li {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  padding-left: 20px; position: relative; letter-spacing: -0.005em;
}
.policy-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-300);
}

.policy-company {
  margin-top: 56px; padding-top: 32px;
  border-top: 0.5px solid rgba(0,0,0,0.08);
}
.policy-company p { color: var(--text-3); font-size: 14px; }

/* === Related Apps ======================================== */
.related-section {
  padding: 80px 0;
  background: var(--grey-100);
}
.related-section h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.related-app-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.related-app-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.related-app-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.related-app-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.24); }
.related-app-name {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text);
}
.related-app-tagline {
  font-size: 13px; color: var(--text-3); margin-top: 2px;
}

/* Loading */
.apps-grid:empty::after {
  content: 'Loading...';
  grid-column: 1 / -1; text-align: center;
  padding: 48px; color: var(--text-3); font-size: 14px;
}

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

@media (max-width: 768px) {
  .hero { padding: 64px 0 32px; }
  .apps-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }

  .app-hero { flex-direction: column; align-items: center; text-align: center; }
  .app-description { margin-left: auto; margin-right: auto; }
  .trust-badges { justify-content: center; }
  .app-store-btn { margin-left: auto; margin-right: auto; }
  .section-intro { text-align: center; margin-left: auto; margin-right: auto; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-content { flex-direction: column; text-align: center; }
  .cta-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .site-header .container { height: 48px; }
  .logo-tagline { display: none; }
  .main-nav { gap: 16px; }
  .nav-link { font-size: 11px; }
  .app-icon { width: 96px; height: 96px; border-radius: 22px; }
  .app-card-body { padding: 20px; }
  .app-card-icon { width: 52px; height: 52px; border-radius: 12px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 11px; padding: 5px 10px; }
}
