@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  --primary: #c41e3a;
  --primary-dark: #9b1830;
  --secondary: #1a365d;
  --accent: #d4af37;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #38a169;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    'DM Sans',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e85f5f, #ec7071);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  overflow: hidden;
  img {
    height: 40px;
  }
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}
.logo-text span {
  color: var(--primary);
}
.advertorial-badge {
  background: var(--text-light);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}
.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 25px 0;
  border-radius: 2px;
}
.quiz-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}
.quiz-header {
  text-align: center;
  margin-bottom: 25px;
}
.quiz-header h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.quiz-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--secondary);
}
.quiz-question {
  display: none;
}
.quiz-question.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.question-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary);
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.option-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.option-btn:hover {
  border-color: var(--primary);
  background: #fff5f7;
  transform: translateY(-2px);
}
.option-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 500px) {
  .age-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.progress-bar {
  background: var(--border);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 25px;
  overflow: hidden;
}
.progress-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.content-section {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
}
.lowdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary), #2c5282);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.content-section p {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.content-section p:last-child {
  margin-bottom: 0;
}
.timestamp {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.maple-leaf {
  color: var(--primary);
}
.cta-section {
  background: linear-gradient(135deg, #fff5f7, #fef2f2);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}
.cta-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.cta-section h4 {
  color: var(--text);
  margin-bottom: 15px;
}
.age-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.age-cta-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.age-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.steps-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.step {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--bg);
  border-radius: 10px;
}
.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.step p {
  margin: 0;
}
.trust-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 25px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.trust-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}
.security-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 15px;
}
.disclaimer {
  background: #f7fafc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
}
.footer {
  background: var(--secondary);
  color: white;
  padding: 25px 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-header {
  background: linear-gradient(135deg, var(--secondary), #2c5282);
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}
.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal-body {
  padding: 25px;
  overflow-y: auto;
  max-height: calc(85vh - 80px);
}
.modal-body h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 20px 0 10px;
}
.modal-body h3:first-child {
  margin-top: 0;
}
.modal-body p,
.modal-body li {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.modal-body ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.modal-body li {
  margin-bottom: 8px;
}
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.loading-overlay.active {
  display: flex;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-text {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 500;
}
.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-message.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  color: white;
}
.success-message h2 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.success-message p {
  color: var(--text);
  font-size: 1.1rem;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
}
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form .submit-btn {
  margin-top: 10px;
}
.hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 25px;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.image-placeholder {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 25px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8edf3, #d1dae6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}
