/*
=====================================================
PRIVACY POLICY - DD.NYC INSPIRED DESIGN
Big, confident spacing. Oversized typography.
Buttery smooth scrolling.
=====================================================
*/

/* ==================== LAYOUT CONTAINERS ==================== */
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .container-narrow {
    padding: 0 40px;
  }
}

/* ==================== 100VH HERO ==================== */
.privacy-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
}

.privacy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 1;
}

body.dark-mode .privacy-hero-gradient {
  opacity: 0.95;
}

.privacy-hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(45, 74, 124, 0.1) 0%, transparent 60%);
  animation: gradient-shift 20s ease infinite;
}

.privacy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  animation: fadeInUp 1.2s ease-out;
}

.privacy-hero-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.privacy-hero-title {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.privacy-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== PRIVACY SECTIONS ==================== */
.privacy-section {
  padding: 160px 0;
  position: relative;
}

.privacy-section.bg-light {
  background: var(--color-neutral-50);
}

body.dark-mode .privacy-section.bg-light {
  background: var(--color-neutral-800);
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 0;
  }
}

/* ==================== SECTION INTRO ==================== */
.section-intro {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

body.dark-mode .section-title {
  color: var(--color-white);
}

.section-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  max-width: 700px;
  margin: 0 auto;
}

body.dark-mode .section-lead {
  color: var(--color-neutral-300);
}

/* ==================== PRIVACY CARDS (3-UP GRID) ==================== */
.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.privacy-card {
  background: var(--color-white);
  border: 8px solid var(--color-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

body.dark-mode .privacy-card {
  background: var(--color-neutral-900);
  border-color: var(--color-neutral-800);
}

.privacy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.card-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.privacy-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

body.dark-mode .privacy-card h3 {
  color: var(--color-white);
}

.privacy-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  margin: 0;
}

body.dark-mode .privacy-card p {
  color: var(--color-neutral-300);
}

/* ==================== CONTENT BLOCKS ==================== */
.privacy-content {
  max-width: 800px;
}

.content-title {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

body.dark-mode .content-title {
  color: var(--color-white);
}

.content-block {
  margin-bottom: 4rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

body.dark-mode .content-block h3 {
  color: var(--color-white);
}

.content-block p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  margin-bottom: 1.5rem;
}

body.dark-mode .content-block p {
  color: var(--color-neutral-300);
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.content-block li {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

body.dark-mode .content-block li {
  color: var(--color-neutral-300);
}

.content-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.content-block li strong {
  color: var(--color-primary);
  font-weight: 600;
}

body.dark-mode .content-block li strong {
  color: var(--color-accent);
}

.text-note {
  font-size: 16px !important;
  font-style: italic;
  color: var(--color-neutral-600) !important;
  background: var(--color-neutral-100);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  margin-top: 1.5rem !important;
}

body.dark-mode .text-note {
  background: var(--color-neutral-800) !important;
  color: var(--color-neutral-400) !important;
}

.text-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 100%;
}

/* ==================== CONTACT CARD ==================== */
.privacy-contact {
  padding: 160px 0;
  background: var(--gradient-hero);
}

.contact-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-2xl);
}

body.dark-mode .contact-card {
  background: var(--color-neutral-900);
}

.contact-card h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

body.dark-mode .contact-card h2 {
  color: var(--color-white);
}

.contact-card > p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  margin-bottom: 3rem;
}

body.dark-mode .contact-card > p {
  color: var(--color-neutral-300);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 20px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  justify-content: center;
}

body.dark-mode .contact-link {
  color: var(--color-white);
}

.contact-link svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.contact-link:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

/* ==================== STICKY MOBILE CTA ==================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-glow-hover);
  z-index: 100;
  transition: all 0.3s ease;
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

.mobile-sticky-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.7);
}

.mobile-sticky-cta:active {
  transform: scale(0.98);
}

/* ==================== FADE IN ANIMATION ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE TYPOGRAPHY ==================== */
@media (max-width: 768px) {
  .privacy-hero-title {
    font-size: 48px;
  }

  .section-title,
  .content-title {
    font-size: 36px;
  }

  .privacy-hero-subtitle,
  .section-lead {
    font-size: 18px;
  }

  .content-block p {
    font-size: 18px;
  }

  .content-block li {
    font-size: 16px;
  }

  .privacy-card {
    padding: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }
}

/* Minimum text size for mobile */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
}
