/* Privacy Policy Page Styles */

.privacy-page {
  padding: 60px 0 120px;
  min-height: calc(100vh - 200px);
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.privacy-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.update-date {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow);
}

.intro-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--line);
}

.intro-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}

.policy-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 2px;
}

.subsection {
  margin-bottom: 28px;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}

.policy-section p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 16px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-section a:hover {
  color: var(--primary-2);
}

.usage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usage-list li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
}

.usage-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.usage-list li:last-child {
  margin-bottom: 0;
}

.usage-list strong {
  font-weight: 600;
  color: var(--text);
}

/* Standard List Styles */
.standard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.standard-list li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.standard-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1.4;
}

.standard-list li:last-child {
  margin-bottom: 0;
}

/* Subscription Box Styles */
.subscription-box {
  background: var(--soft-blue);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 2px solid rgba(63, 94, 251, 0.1);
}

.subscription-box:last-child {
  margin-bottom: 0;
}

.subscription-box h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--primary);
}

.subscription-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subscription-box ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 0;
}

.subscription-box ul li:last-child {
  margin-bottom: 0;
}

.subscription-box ul li::before {
  display: none;
}

.subscription-box strong {
  font-weight: 600;
  color: var(--text);
}

/* Footer Styles */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-brand .brand-text {
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-page {
    padding: 40px 0 80px;
  }

  .privacy-header {
    margin-bottom: 40px;
    padding-top: 20px;
  }

  .privacy-content {
    padding: 28px 20px;
  }

  .policy-section {
    margin-bottom: 40px;
  }

  .policy-section h2 {
    margin-bottom: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 2rem;
  }

  .usage-list li {
    padding-left: 28px;
    font-size: 1rem;
  }

  .usage-list li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
