/* =============================================
   ARDVARNA HOUSE LTD – Privacy Policy Styles
   Pure CSS – No framework
   ============================================= */

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

:root {
  --pink:       #e8306a;
  --pink-light: #fce8f0;
  --pink-mid:   #f472a0;
  --dark:       #131118;
  --dark-mid:   #1f1c2a;
  --text:       #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --bg:         #f8f8fc;
  --card-bg:    #ffffff;
  --border:     #ebebf5;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 48px rgba(232,48,106,0.10);
  --radius:     16px;
  --radius-sm:  10px;
  --max-w:      860px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-shield {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(232,48,106,0.25);
  border: 2px solid var(--pink-light);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232,48,106,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244,114,160,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.effective-badge {
  display: inline-block;
  background: rgba(232,48,106,0.15);
  color: var(--pink-mid);
  border: 1px solid rgba(232,48,106,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

/* ---- MAIN CONTENT ---- */
.main-content {
  padding: 56px 0 80px;
}

/* ---- POLICY CARD ---- */
.policy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 20px;
  display: flex;
  gap: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-mid) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.policy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.policy-card:hover::before {
  opacity: 1;
}

.section-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-light);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.section-body {
  flex: 1;
  min-width: 0;
}

.section-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-body p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

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

.section-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
}

.section-body ul li {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
  margin-bottom: 4px;
}

.section-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---- CONTACT CARD ---- */
.contact-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-color: rgba(232,48,106,0.3);
  box-shadow: var(--shadow-lg);
}

.contact-card .section-number {
  background: rgba(232,48,106,0.2);
  color: var(--pink-mid);
}

.contact-card .section-body h2 {
  color: #ffffff;
}

.contact-card .section-body p {
  color: rgba(255,255,255,0.55);
}

.contact-block {
  margin-top: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.contact-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 70px;
  flex-shrink: 0;
}

.contact-value {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.contact-link {
  font-size: 15px;
  color: var(--pink-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--pink);
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 440px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* ---- SCROLL REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .policy-card {
    flex-direction: column;
    padding: 28px 24px;
    gap: 16px;
  }

  .section-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

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

  .brand-name {
    font-size: 13px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }

  .contact-label {
    width: auto;
  }
}

@media (max-width: 400px) {
  .brand-name {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}
