/* famTime Website - Modern Light Design System */
/* Inspired by the colorful card-based dashboard design */

:root {
  /* Base Colors */
  --background: #FFFFFF;
  --foreground: #030213;
  --muted: #717182;
  --muted-foreground: #717182;

  /* Card Backgrounds - Soft Pastels */
  --card-blue: #E8F4FD;
  --card-yellow: #FEF9E7;
  --card-pink: #FDF2F8;
  --card-mint: #ECFDF5;
  --card-orange: #FFF7ED;
  --card-purple: #F5F3FF;
  --card-white: #FFFFFF;

  /* Button Colors - Vibrant */
  --btn-blue: #3B82F6;
  --btn-blue-hover: #2563EB;
  --btn-orange: #F97316;
  --btn-orange-hover: #EA580C;
  --btn-green: #22C55E;
  --btn-green-hover: #16A34A;
  --btn-teal: #14B8A6;
  --btn-teal-hover: #0D9488;
  --btn-purple: #8B5CF6;
  --btn-purple-hover: #7C3AED;

  /* Accent Colors */
  --accent: #E9EBEF;
  --destructive: #D4183D;
  --border: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing & Radius */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ================== HEADER ================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--btn-blue), var(--btn-teal));
  border-radius: 8px;
}

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

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--foreground);
}

/* ================== HERO SECTION ================== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--btn-blue), var(--btn-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-blue {
  background: var(--btn-blue);
  color: white;
}
.btn-blue:hover {
  background: var(--btn-blue-hover);
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--btn-orange);
  color: white;
}
.btn-orange:hover {
  background: var(--btn-orange-hover);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--btn-green);
  color: white;
}
.btn-green:hover {
  background: var(--btn-green-hover);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--btn-teal);
  color: white;
}
.btn-teal:hover {
  background: var(--btn-teal-hover);
  transform: translateY(-1px);
}

.btn-purple {
  background: var(--btn-purple);
  color: white;
}
.btn-purple:hover {
  background: var(--btn-purple-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--accent);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ================== FEATURES SECTION ================== */
.features {
  padding: 80px 0;
  background: #FAFBFC;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

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

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

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== FEATURE CARDS ================== */
.feature-card {
  background: var(--card-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

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

/* Card color variants */
.feature-card.card-blue { background: var(--card-blue); }
.feature-card.card-yellow { background: var(--card-yellow); }
.feature-card.card-pink { background: var(--card-pink); }
.feature-card.card-mint { background: var(--card-mint); }
.feature-card.card-orange { background: var(--card-orange); }
.feature-card.card-purple { background: var(--card-purple); }

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--foreground);
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--foreground);
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card .btn {
  margin-top: auto;
}

/* Status Badge */
.status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.status-badge.active {
  color: var(--btn-green);
}

/* ================== HOW IT WORKS ================== */
.how-it-works {
  padding: 80px 0;
  background: var(--background);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--btn-blue), var(--btn-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ================== CTA SECTION ================== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-blue) 0%, var(--card-mint) 100%);
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ================== FOOTER ================== */
footer {
  background: #F8FAFC;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-section h4 {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--btn-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* ================== PAGE CONTENT ================== */
.page-header {
  padding: 120px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--muted);
  font-size: 18px;
}

.page-content {
  padding: 60px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--foreground);
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--foreground);
}

.page-content p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--muted);
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-content a {
  color: var(--btn-blue);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* ================== FAQ SECTION ================== */
.faq-item {
  background: var(--card-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--foreground);
  font-size: 17px;
}

.faq-item p {
  margin-bottom: 0;
}

/* ================== CONTACT INFO ================== */
.contact-info {
  background: var(--card-blue);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

/* ================== LEGAL SECTION ================== */
.legal-section {
  margin-bottom: 32px;
}

.legal-section h3 {
  color: var(--btn-blue);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

  .section-header h2 {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 28px;
  }
}

/* ================== STORE BADGES ================== */
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.store-badge {
  height: 48px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* ================== PRIVACY HIGHLIGHTS ================== */
.privacy-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .privacy-highlights {
    grid-template-columns: 1fr;
  }
}

.privacy-item {
  text-align: center;
  padding: 24px;
  background: var(--card-mint);
  border-radius: var(--radius-lg);
}

.privacy-item svg {
  width: 48px;
  height: 48px;
  stroke: var(--btn-green);
  margin-bottom: 16px;
}

.privacy-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.privacy-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ================== HERO SPLIT LAYOUT ================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-split .hero-text h1 {
  font-size: 48px;
  line-height: 1.1;
}

.hero-split .hero-buttons {
  justify-content: flex-start;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-split .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    order: -1;
  }
}

/* ================== SCREENSHOT PLACEHOLDERS ================== */
.screenshot-placeholder {
  background: linear-gradient(135deg, var(--card-blue) 0%, var(--card-mint) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
  max-height: 500px;
}

.screenshot-placeholder.hero-screenshot {
  aspect-ratio: 9/19;
  max-width: 280px;
  margin: 0 auto;
}

.screenshot-placeholder.illustration {
  aspect-ratio: 4/3;
  max-height: 300px;
}

.screenshot-placeholder.app-screen {
  aspect-ratio: 9/16;
  max-height: 280px;
}

.screenshot-placeholder.step-screen {
  aspect-ratio: 1/1;
  max-height: 120px;
  max-width: 120px;
  margin: 0 auto;
}

.screenshot-placeholder.schema-image {
  aspect-ratio: 16/9;
  max-height: 350px;
  max-width: 600px;
  margin: 0 auto;
}

.placeholder-content {
  text-align: center;
  color: var(--muted);
  padding: 20px;
}

.placeholder-content svg {
  stroke: var(--btn-blue);
  opacity: 0.6;
  margin-bottom: 12px;
}

.placeholder-content span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.placeholder-content small {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.7;
}

/* ================== PROBLEM SECTION ================== */
.problem-section {
  padding: 80px 0;
  background: var(--background);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--btn-orange);
  margin-bottom: 12px;
}

.problem-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--foreground);
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-list .emoji {
  font-size: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-image {
    order: -1;
  }
}

/* ================== SOLUTION SECTION ================== */
.solution-section {
  padding: 80px 0;
  background: #FAFBFC;
}

.solution-section .section-label {
  color: var(--btn-green);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon.card-blue { background: var(--card-blue); }
.benefit-icon.card-yellow { background: var(--card-yellow); }
.benefit-icon.card-pink { background: var(--card-pink); }
.benefit-icon.card-mint { background: var(--card-mint); }

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--foreground);
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== APP PREVIEW SECTION ================== */
.app-preview {
  padding: 80px 0;
  background: var(--background);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.preview-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
}

.preview-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

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

@media (max-width: 500px) {
  .preview-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ================== STEPS VISUAL ================== */
.steps-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step-card .step-number {
  width: 48px;
  height: 48px;
  font-size: 20px;
  margin: 0 auto 16px;
}

.step-illustration {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--muted);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .steps-visual {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 0;
    margin: -10px 0;
  }
}

/* ================== USE CASES SECTION ================== */
.use-cases {
  padding: 80px 0;
  background: #FAFBFC;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.case-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: transform 0.2s;
}

.case-card:hover {
  transform: translateY(-4px);
}

.case-card.card-blue { background: var(--card-blue); }
.case-card.card-yellow { background: var(--card-yellow); }
.case-card.card-pink { background: var(--card-pink); }
.case-card.card-mint { background: var(--card-mint); }

.case-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.case-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 500px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== SCHEMA SECTION ================== */
.schema-section {
  padding: 80px 0;
  background: var(--background);
}

.schema-container {
  margin: 40px 0;
}

.schema-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.schema-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--foreground);
}

.check-icon {
  color: var(--btn-green);
  font-weight: bold;
  font-size: 18px;
}

/* ================== FAQ PREVIEW SECTION ================== */
.faq-preview {
  padding: 80px 0;
  background: #FAFBFC;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.faq-item-preview {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-item-preview h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.faq-item-preview p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.faq-more {
  text-align: center;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== CTA ENHANCEMENTS ================== */
.cta-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

/* ================== PRIVACY PAGE ENHANCEMENTS ================== */
.privacy-summary {
  margin-bottom: 48px;
}

.privacy-summary h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.summary-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.summary-card.card-mint { background: var(--card-mint); }
.summary-card.card-blue { background: var(--card-blue); }
.summary-card.card-yellow { background: var(--card-yellow); }
.summary-card.card-pink { background: var(--card-pink); }

.summary-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.summary-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--foreground);
}

.summary-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .summary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .summary-cards {
    grid-template-columns: 1fr;
  }
}

/* Data Tables */
.data-table,
.rights-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.data-table th,
.data-table td,
.rights-table th,
.rights-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th,
.rights-table th {
  background: var(--card-blue);
  font-weight: 600;
  color: var(--foreground);
}

.data-table tr:hover,
.rights-table tr:hover {
  background: #f9fafb;
}

/* No Data List */
.no-data-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.no-data-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: var(--radius);
  font-size: 14px;
}

.no-icon {
  font-size: 14px;
}

@media (max-width: 600px) {
  .no-data-list {
    grid-template-columns: 1fr;
  }
}

/* Permission Cards */
.permission-card {
  background: var(--card-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 16px 0;
}

.permission-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--foreground);
}

.permission-card p {
  margin-bottom: 12px;
}

.permission-card p:last-child {
  margin-bottom: 0;
}

/* Legal Note Box */
.legal-note {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 4px solid var(--btn-blue);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 48px;
}

.legal-note h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
}

.legal-note ul {
  margin-bottom: 0;
}

.legal-note li {
  font-size: 14px;
}
