/* ============================================================
   Story Comics — Custom Styles
   ============================================================ */

:root {
  --cream: #FFF9F3;
  --cream-dark: #FDF3E8;
  --brown: #3D2B1F;
  --brown-dark: #2C1D14;
  --brown-light: #5C4033;
  --rose: #D4857D;
  --rose-light: #EEC4BF;
  --rose-pale: #F9EAE7;
  --peach: #FDE8D8;
  --ivory: #FFFDF7;
  --white: #FFFFFF;
  --text: #3D2B1F;
  --text-muted: #6B5A4E;
  --shadow-sm: 0 2px 12px rgba(61, 43, 31, 0.06);
  --shadow-md: 0 4px 24px rgba(61, 43, 31, 0.08);
  --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.1);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-heading: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
}

/* ---------- GLOBAL ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: 
    radial-gradient(ellipse 80% 60% at 50% 30%, #FFF9F3 0%, #FDF3EC 30%, #F8E5DE 60%, #F2D9D2 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M18 26c-1.5-1.5-3.5-2-5-1s-2.5 3-2 5 .5 3 2 4c1.2.8 2.5 1 3.5 0 1.2-1.2 1.5-3 .5-4.5-.8-1.2-2-1.5-3-1-1 .5-1.5 1.5-1.5 2.5' stroke='%23D4857D' stroke-width='.6' stroke-opacity='.12'/%3E%3Cpath d='M42 14c-1.5-1.5-3.5-2-5-1s-2.5 3-2 5 .5 3 2 4c1.2.8 2.5 1 3.5 0 1.2-1.2 1.5-3 .5-4.5-.8-1.2-2-1.5-3-1-1 .5-1.5 1.5-1.5 2.5' stroke='%23D4857D' stroke-width='.5' stroke-opacity='.08'/%3E%3Ccircle cx='10' cy='42' r='1.2' fill='%23D4857D' fill-opacity='.06'/%3E%3Ccircle cx='50' cy='38' r='.8' fill='%23D4857D' fill-opacity='.06'/%3E%3Ccircle cx='30' cy='50' r='1' fill='%23D4857D' fill-opacity='.05'/%3E%3Ccircle cx='48' cy='8' r='.7' fill='%23D4857D' fill-opacity='.05'/%3E%3Ccircle cx='14' cy='16' r='.9' fill='%23D4857D' fill-opacity='.05'/%3E%3C/g%3E%3C/svg%3E") repeat;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown);
}

/* ---------- SECTION LABELS ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--brown);
}

/* ========== NAVIGATION ========== */
#mainNav {
  background: rgba(255, 253, 247, 0.38);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  padding: 12px 0;
  transition: box-shadow 0.35s ease, background 0.35s ease;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(61, 43, 31, 0.03);
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.06);
  background: rgba(255, 253, 247, 0.55);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-left: 4px;
}

@media (min-width: 992px) {
  .navbar-brand {
    margin-left: 16px;
  }
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-brand strong {
  font-weight: 700;
}

.brand-text {
  /* keeping for compatibility */
}

.navbar-nav .nav-link {
  color: var(--brown);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 18px !important;
  transition: color 0.25s ease;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover {
  color: var(--rose);
}

.navbar-toggler {
  color: var(--brown);
  font-size: 24px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.btn-navbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(212, 133, 125, 0.30);
}

.btn-navbar:hover {
  background: #c47770;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 133, 125, 0.40);
  text-decoration: none;
}

.btn-navbar .ti {
  font-size: 17px;
}

/* ========== HERO ========== */
.hero-section {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://cdn.ypage.site/assets/2026/08/377/media/j1myc.webp') center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.20) 30%, rgba(0,0,0,0.06) 55%, rgba(0,0,0,0) 72%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.20) 30%, rgba(0,0,0,0.06) 55%, rgba(0,0,0,0) 72%);
  z-index: 0;
  pointer-events: none;
}

/* Decorative elements */
.hero-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--rose);
  opacity: 0.10;
  font-size: 120px;
}

.hero-decor--heart {
  top: 14%;
  right: 8%;
  transform: rotate(12deg);
}

.hero-decor--bubble {
  bottom: 42%;
  left: 5%;
  font-size: 140px;
  transform: rotate(-8deg);
  opacity: 0.07;
}

@media (max-width: 768px) {
  .hero-decor {
    font-size: 80px;
  }
  .hero-decor--heart {
    top: 8%;
    right: 3%;
  }
  .hero-decor--bubble {
    bottom: 50%;
    left: -2%;
    font-size: 90px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-block;
  background: var(--ivory);
  color: var(--brown);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  border: 1.5px solid rgba(61, 43, 31, 0.15);
}

.hero-title {
  font-size: clamp(36px, 6.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--brown);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- HERO FEATURES ---------- */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-features li {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  background: var(--ivory);
  border: 1.5px solid rgba(61, 43, 31, 0.12);
  border-radius: 12px;
  padding: 10px 20px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-features li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.hero-features li:last-child {
  color: var(--brown);
  font-weight: 700;
  border-color: rgba(61, 43, 31, 0.15);
  background: var(--ivory);
}

.hero-price-item {
  list-style: none;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.hero-price-badge {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  background: rgba(238, 196, 191, 0.28);
  border: 1.5px solid rgba(212, 133, 125, 0.35);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
  text-decoration: none !important;
  cursor: pointer;
}

.hero-price-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 133, 125, 0.25);
  color: var(--brown);
  border-color: rgba(212, 133, 125, 0.6);
  background: rgba(238, 196, 191, 0.45);
  text-decoration: none;
}

.price-arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.hero-price-badge:hover .price-arrow {
  transform: translateX(4px);
}

.chip-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.chip {
  display: inline-block;
  background: var(--ivory);
  border: 1.5px solid rgba(61, 43, 31, 0.12);
  color: var(--brown);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.flip-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.hint-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(61, 43, 31, 0.08);
  color: var(--brown-light);
  font-size: 16px;
  animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- FLIPBOOK ---------- */
.flipbook-placeholder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.flipbook-placeholder .fp-iframe {
  border: none;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .flipbook-placeholder {
    max-width: 100%;
    padding: 0 8px;
  }
  .flipbook-placeholder .fp-iframe {
    height: 400px;
    border-radius: 10px;
  }
}

/* ---------- CTA BUTTON ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(212, 133, 125, 0.4);
}

.btn-cta:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 43, 31, 0.25);
  text-decoration: none;
}

/* ========== VALUE SECTION ========== */
.value-section {
  padding: 80px 0;
  background: transparent;
}

.value-row {
  --bs-gutter-y: 1.5rem;
}

.value-card {
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1.5px solid rgba(61, 43, 31, 0.1);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brown);
}

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

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
  padding: 80px 0;
  background: var(--cream);
  border-radius: 60px 60px 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.portfolio-row {
  margin-bottom: 80px;
}

.portfolio-row:last-child {
  margin-bottom: 0;
}

.portfolio-col {
  padding-left: 20px;
  padding-right: 20px;
}

/* Inner images row — two side-by-side columns */
.portfolio-images-row {
  margin-left: -6px;
  margin-right: -6px;
}

.portfolio-img-col {
  padding-left: 6px;
  padding-right: 6px;
}

/* Image placeholder — base */
.portfolio-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #FDE8D8 0%, #FFFDF7 40%, #FDF3EC 70%, #F9EAE7 100%);
  border-radius: var(--radius);
  border: 2px dashed rgba(61, 43, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Vertical variant — 904:1280 ≈ 7:10 */
.portfolio-image-vertical {
  aspect-ratio: 7 / 10;
  border-radius: var(--radius-sm);
}

.portfolio-image-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 133, 125, 0.35);
}

.portfolio-image-placeholder .ti {
  font-size: 56px;
  color: rgba(61, 43, 31, 0.12);
  transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio-image-placeholder:hover .ti {
  color: rgba(212, 133, 125, 0.35);
  transform: scale(1.08);
}

/* Text block */
.portfolio-text {
  padding: 20px 0;
}

.portfolio-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.portfolio-paragraph {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.portfolio-quote {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  background: var(--ivory);
  border: 1px solid rgba(61, 43, 31, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

/* ========== PORTFOLIO RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .portfolio-row {
    margin-bottom: 60px;
  }

  .portfolio-image-placeholder:not(.portfolio-image-vertical) {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
  }

  .portfolio-image-vertical {
    aspect-ratio: 7 / 10;
    margin-bottom: 16px;
  }

  .portfolio-images-row {
    margin-bottom: 4px;
  }

  .portfolio-text {
    padding: 0;
  }

  .portfolio-col {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575.98px) {
  .portfolio-row {
    margin-bottom: 48px;
  }

  .portfolio-image-placeholder:not(.portfolio-image-vertical) {
    aspect-ratio: 1 / 1;
  }

  .portfolio-image-vertical {
    aspect-ratio: 7 / 10;
  }

  .portfolio-image-placeholder .ti {
    font-size: 40px;
  }

  .portfolio-image-vertical .ti {
    font-size: 32px;
  }

  .portfolio-img-col {
    padding-left: 4px;
    padding-right: 4px;
  }

  .portfolio-images-row {
    margin-left: -4px;
    margin-right: -4px;
  }

  .portfolio-heading {
    font-size: 22px;
  }

  .portfolio-paragraph {
    font-size: 15px;
  }
}

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: 80px 0;
}

.steps-container {
  max-width: 760px;
  margin: 0 auto;
}

.step-card {
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1.5px solid rgba(61, 43, 31, 0.1);
  padding: 28px 28px 28px 36px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-card.alt {
  background: #FDF3EC;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--brown-light);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brown);
}

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

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 80px 0;
  background: transparent;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

/* Popular card */
.pricing-card-popular {
  background: var(--ivory);
  border: 2px solid rgba(61, 43, 31, 0.15);
  box-shadow: 0 4px 28px rgba(61, 43, 31, 0.06);
}

.pricing-card-popular:hover {
  box-shadow: 0 8px 36px rgba(61, 43, 31, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 22px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(212, 133, 125, 0.45);
  font-family: var(--font-body);
}

/* Premium card */
.pricing-card-premium {
  background: var(--brown-dark);
  color: #fff;
  box-shadow: 0 4px 28px rgba(61, 43, 31, 0.15);
}

.pricing-card-premium:hover {
  box-shadow: 0 8px 36px rgba(61, 43, 31, 0.25);
}

.pricing-card-premium .pricing-card-title {
  color: #fff;
}

.pricing-card-premium .pricing-price {
  color: #fff;
}

.pricing-card-premium .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card-premium .pricing-features li .ti {
  color: #EEC4BF;
}

.pricing-card-premium .btn-pricing {
  background: var(--rose);
  color: #fff;
}

.pricing-card-premium .btn-pricing:hover {
  background: #fff;
  color: var(--brown-dark);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  text-align: center;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--brown);
  text-align: center;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.45;
}

.pricing-features li .ti {
  color: var(--brown-light);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  text-decoration: none !important;
}

.btn-pricing:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(61, 43, 31, 0.2);
  text-decoration: none;
}

.pricing-note {
  font-size: 12px;
  opacity: 0.6;
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.4;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1.5px solid rgba(61, 43, 31, 0.1);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s;
}

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

.testimonial-media-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--peach) 0%, #F9EAE7 100%);
  border-radius: var(--radius-xs);
  margin-bottom: 16px;
  position: relative;
}

.testimonial-media-placeholder::after {
  content: '📸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  opacity: 0.5;
}

.testimonial-media-placeholder.video::after {
  content: '▶';
  font-size: 24px;
}

.testimonial-media-placeholder.photo::after {
  content: '🖼';
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-light);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 0;
  background: transparent;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(61, 43, 31, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--brown-light);
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  font-size: 18px;
  color: var(--brown-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FINAL CTA ========== */
.final-cta-section {
  padding: 80px 0;
}

.final-cta-card {
  background: var(--brown-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.final-cta-card h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 38px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(212, 133, 125, 0.45);
}

.btn-final-cta:hover {
  background: #fff;
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.cta-sub {
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.7;
}

/* ========== MOBILE CTA BAR ========== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 12px 16px 16px;
  z-index: 999;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.btn-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 90%;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-decoration: none !important;
  pointer-events: auto;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(212, 133, 125, 0.40), 0 2px 8px rgba(61, 43, 31, 0.10);
}

.btn-mobile-cta:hover {
  background: var(--brown);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 133, 125, 0.55), 0 4px 12px rgba(61, 43, 31, 0.18);
}

/* ========== SCHEMA.ORG (hidden) ========== */
.schema-hidden {
  display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  #mainNav {
    padding: 8px 0;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .btn-navbar {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

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

  .hero-title {
    font-size: clamp(30px, 7vw, 46px);
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .flipbook-placeholder {
    max-width: 320px;
  }

  .comic-page {
    width: 70px;
    height: 100px;
  }

  .comic-panels .panel {
    width: 56px;
    height: 78px;
  }

  .examples-section {
    border-radius: 40px 40px 0 0;
  }

  .final-cta-card {
    padding: 40px 24px;
  }

  .value-section .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 30px;
  }

  .chip-row {
    gap: 6px;
  }

  .chip {
    font-size: 12px;
    padding: 6px 14px;
  }

  .step-card {
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px;
  }

  .step-number {
    font-size: 28px;
  }

  .pricing-price {
    font-size: 38px;
  }

  .pricing-card {
    padding: 32px 22px 24px;
  }

  .final-cta-card h2 {
    font-size: 24px;
  }

  .comic-pages {
    gap: 6px;
  }

  .comic-page {
    width: 60px;
    height: 88px;
  }

  .comic-panels .panel {
    width: 50px;
    height: 68px;
  }
}
/* ============================================================
   QUIZ SECTION
   ============================================================ */

.quiz-section {
  padding: 90px 0 100px;
  background: var(--ivory);
}

.quiz-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: -8px auto 40px;
  line-height: 1.5;
}

/* ---- Progress ---- */
.quiz-progress-wrap {
  max-width: 600px;
  margin: 0 auto 48px;
}

.quiz-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.quiz-step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EDE4DA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.35s ease;
  z-index: 2;
  flex-shrink: 0;
}

.quiz-step-dot.active {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.3);
}

.quiz-step-dot.done {
  background: var(--brown-light);
  color: #fff;
}

.quiz-step-line {
  flex: 1;
  height: 3px;
  background: #EDE4DA;
  max-width: 80px;
  transition: background 0.35s ease;
}

.quiz-step-line.done {
  background: var(--brown);
}

.quiz-step-labels {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  margin: 10px auto 0;
}

.quiz-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.35s;
  text-align: center;
  width: 44px;
}

.quiz-step-label.active {
  color: var(--brown);
  font-weight: 700;
}

.quiz-step-label.done {
  color: var(--brown);
}

/* ---- Form ---- */
.quiz-form {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.quiz-step {
  display: none;
  animation: quizFadeIn 0.4s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-step-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin-bottom: 28px;
}

.quiz-step-desc {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ---- Шаг 1: Карточки поводов ---- */
.quiz-occasions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.quiz-occasion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--ivory);
  border: 1.5px solid rgba(61, 43, 31, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  margin: 0;
}

.quiz-occasion-card:hover {
  border-color: var(--brown);
  background: #FFFCF5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.quiz-occasion-card input { display: none; }

.quiz-occasion-card:has(input:checked) {
  border-color: var(--brown);
  background: #FFF8EE;
  box-shadow: 0 0 0 4px rgba(61, 43, 31, 0.08);
}

.occasion-icon {
  font-size: 36px;
  line-height: 1;
}

.occasion-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--brown);
}

/* ---- Шаг 2: Textarea ---- */
.quiz-textarea {
  width: 100%;
  border: 2px solid rgba(61, 43, 31, 0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--ivory);
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
  line-height: 1.6;
}

.quiz-textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(61, 43, 31, 0.06);
}

.quiz-textarea::placeholder {
  color: #A89885;
}

.quiz-char-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 24px;
}

.quiz-char-count.warn { color: #C78B6A; }
.quiz-char-count.over { color: #D47070; }

/* ---- Шаг 3: Загрузки ---- */
.quiz-uploads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.quiz-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 12px;
  border: 2px dashed rgba(61, 43, 31, 0.15);
  border-radius: var(--radius);
  background: var(--ivory);
  cursor: pointer;
  transition: all 0.25s;
  min-height: 140px;
  text-align: center;
  position: relative;
}

.quiz-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.quiz-upload-zone:hover {
  border-color: var(--brown);
  background: #FFFCF5;
}

.quiz-upload-zone.filled {
  border-style: solid;
  border-color: var(--brown);
  background: #FFFCF5;
}

.quiz-upload-zone .ti {
  font-size: 32px;
  color: var(--brown);
}

.quiz-upload-zone span {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}

.quiz-upload-zone small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Checkbox ---- */
.quiz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  user-select: none;
}

.quiz-checkbox input {
  display: none;
}

.quiz-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(61, 43, 31, 0.2);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s;
}

.quiz-checkbox input:checked + .checkmark {
  background: var(--brown);
  border-color: var(--brown);
}

.quiz-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---- Шаг 4: Поле Telegram ---- */
.quiz-field-wrap {
  margin-bottom: 24px;
}

.quiz-field-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 8px;
}

.quiz-input {
  width: 100%;
  border: 2px solid rgba(61, 43, 31, 0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(61, 43, 31, 0.06);
}

/* ---- Buttons ---- */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.btn-quiz-next,
.btn-quiz-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.25s;
  border: none;
}

.btn-quiz-next {
  background: var(--rose);
  color: #fff;
  margin-left: auto;
}

.btn-quiz-next:hover:not(:disabled) {
  background: var(--brown);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.2);
}

.btn-quiz-next:disabled {
  background: #EDE4DA;
  color: #A89885;
  cursor: not-allowed;
}

.btn-quiz-prev {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid rgba(61, 43, 31, 0.15);
}

.btn-quiz-prev:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.btn-quiz-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-body);
  transition: all 0.3s;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(212, 133, 125, 0.4);
}

.btn-quiz-submit:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(61, 43, 31, 0.3);
}

/* ---- Legal ---- */
.quiz-legal {
  font-size: 12px;
  color: #A89885;
  line-height: 1.6;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Toast ---- */
.quiz-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--brown);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.quiz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quiz-toast .ti {
  font-size: 22px;
  color: #A0C8A0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .quiz-uploads {
    grid-template-columns: 1fr;
  }

  .quiz-step-title {
    font-size: 24px;
  }

  .quiz-occasions {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-steps-indicator {
    gap: 0;
  }

  .quiz-step-line {
    max-width: 40px;
  }

  .quiz-step-dot {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .quiz-step-labels {
    max-width: 340px;
  }

  .quiz-step-label {
    font-size: 11px;
    width: 36px;
  }

  .quiz-toast {
    left: 20px;
    right: 20px;
    transform: translateX(0) translateY(120px);
    white-space: normal;
    text-align: center;
    border-radius: 20px;
    font-size: 14px;
  }

  .quiz-toast.show {
    transform: translateX(0) translateY(0);
  }
}

/* ============================================================
   YANDEX FORMS MODAL
   ============================================================ */

#yandex-modal .modal-dialog {
  max-width: 620px;
}

#yandex-modal .modal-body {
  height: 80vh;
  padding: 0;
  overflow: hidden;
}

#yandex-modal .modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 16px 48px rgba(61, 43, 31, 0.2);
  background: var(--ivory);
  overflow: hidden;
}

#yandex-modal .modal-header {
  padding: 10px 16px 0;
  background: var(--ivory);
}

#yandex-modal .modal-header .close {
  font-size: 28px;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.2s;
  outline: none;
}

#yandex-modal .modal-header .close:hover {
  opacity: 1;
  color: var(--brown);
}

#yandex-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 767px) {
  #yandex-modal .modal-dialog {
    max-width: 95vw;
    margin: 10px auto;
  }

  #yandex-modal .modal-body {
    height: 80vh;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */

.footer-section {
  background: var(--brown-dark);
  color: #fff;
  padding: 48px 0 40px;
  margin-top: 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--brand {
  align-items: flex-start;
}

.footer-col--docs {
  align-items: center;
}

.footer-col--contacts {
  align-items: flex-end;
}

/* Ссылки в документах */
.footer-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: opacity 0.25s ease;
  line-height: 1.5;
}

.footer-link:hover {
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Контакты */
.footer-contact-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2px;
}

.footer-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-email:hover {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-telegram:hover {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-telegram .ti {
  font-size: 18px;
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .footer-col--docs {
    align-items: flex-start;
  }
  .footer-col--contacts {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 40px 0 36px;
  }

  .footer-col {
    align-items: center !important;
    text-align: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .footer-col:last-child {
    margin-bottom: 0;
  }

  .footer-logo {
    font-size: 20px;
    letter-spacing: 2.5px;
  }

  .footer-link,
  .footer-email,
  .footer-telegram {
    font-size: 14px;
  }
}
/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.privacy-page {
  background: 
    radial-gradient(ellipse 80% 60% at 50% 30%, #FFF9F3 0%, #FDF3EC 30%, #F8E5DE 60%, #F2D9D2 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M18 26c-1.5-1.5-3.5-2-5-1s-2.5 3-2 5 .5 3 2 4c1.2.8 2.5 1 3.5 0 1.2-1.2 1.5-3 .5-4.5-.8-1.2-2-1.5-3-1-1 .5-1.5 1.5-1.5 2.5' stroke='%23D4857D' stroke-width='.6' stroke-opacity='.12'/%3E%3Cpath d='M42 14c-1.5-1.5-3.5-2-5-1s-2.5 3-2 5 .5 3 2 4c1.2.8 2.5 1 3.5 0 1.2-1.2 1.5-3 .5-4.5-.8-1.2-2-1.5-3-1-1 .5-1.5 1.5-1.5 2.5' stroke='%23D4857D' stroke-width='.5' stroke-opacity='.08'/%3E%3Ccircle cx='10' cy='42' r='1.2' fill='%23D4857D' fill-opacity='.06'/%3E%3Ccircle cx='50' cy='38' r='.8' fill='%23D4857D' fill-opacity='.06'/%3E%3Ccircle cx='30' cy='50' r='1' fill='%23D4857D' fill-opacity='.05'/%3E%3Ccircle cx='48' cy='8' r='.7' fill='%23D4857D' fill-opacity='.05'/%3E%3Ccircle cx='14' cy='16' r='.9' fill='%23D4857D' fill-opacity='.05'/%3E%3C/g%3E%3C/svg%3E") repeat;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- PRIVACY CONTAINER ---------- */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

/* ---------- BACK LINK ---------- */
.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-light);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 8px 0;
}

.privacy-back-link .ti {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.privacy-back-link:hover {
  color: var(--rose);
  text-decoration: none;
}

.privacy-back-link:hover .ti {
  transform: translateX(-4px);
}

/* ---------- PRIVACY TITLE (H1) ---------- */
.privacy-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brown);
  text-align: center;
  margin-bottom: 12px;
}

/* ---------- DATE ---------- */
.privacy-date {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-weight: 500;
}

/* ---------- PRIVACY CONTENT ---------- */
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.privacy-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
}

.privacy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.6;
}

.privacy-content strong {
  font-weight: 700;
  color: var(--brown-dark);
}

.privacy-content a {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.privacy-content a:hover {
  color: var(--brown);
  border-bottom-color: var(--rose);
  text-decoration: none;
}

/* ---------- PRIVACY CONTACTS ---------- */
.privacy-contacts {
  margin-top: 8px !important;
}

.privacy-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0 !important;
  margin-bottom: 12px !important;
}

.privacy-contacts li::before {
  display: none !important;
}

.privacy-contacts .ti {
  font-size: 20px;
  color: var(--rose);
  flex-shrink: 0;
}

/* ---------- PRIVACY FOOTER ---------- */
.privacy-footer {
  margin-top: auto;
  padding: 28px 0;
  border-top: 1px solid rgba(61, 43, 31, 0.08);
  text-align: center;
}

.privacy-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
  .privacy-container {
    padding: 40px 16px;
  }

  .privacy-title {
    font-size: 28px;
  }

  .privacy-content h2 {
    font-size: 20px;
    margin-top: 32px;
  }

  .privacy-content p,
  .privacy-content ul li {
    font-size: 15px;
    line-height: 1.65;
  }

  .privacy-back-link {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .privacy-date {
    margin-bottom: 32px;
  }
}