/* Palette: Rose-Navy (NEO-BRUTAL Style Preset) */
:root {
  --primary-color: #C2185B;
  --secondary-color: #D81B60;
  --accent-color: #0D2B5E;
  --background-color: #FDE8F0;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

/* MANDATORY NEO-BRUTAL CSS RULES */
section {
  padding: 40px 16px;
  margin: 0;
}
@media (min-width: 1024px) {
  section {
    padding: 48px 24px;
  }
}
.card, .btn {
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
  border-radius: 0;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--primary-color);
}
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
  font-family: var(--main-font);
}
section + section {
  border-top: 4px solid var(--primary-color);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--alt-font);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Typography scale */
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: var(--accent-color);
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 12px;
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

/* Header & Nav (CSS-Only Burger) */
.site-header {
  background: #ffffff;
  border-bottom: 4px solid var(--primary-color);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 44px;
  width: auto;
}
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
  border: 2px solid var(--primary-color);
  background: #ffffff;
}
.burger-btn .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile Nav Styles */
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 4px solid var(--primary-color);
  z-index: 999;
  padding: 20px 16px;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-nav a {
  font-family: var(--main-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  font-size: 16px;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--main-font);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 44px;
  text-align: center;
}
.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}
.btn-outline {
  background-color: #ffffff;
  color: var(--primary-color);
}
.btn-full {
  width: 100%;
}

/* Hero Section (morphing-blob) */
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 70%; }
  50% { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
  75% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%; }
}

.hero-section {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  overflow: hidden;
  text-align: center;
}
.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, 88vw);
  height: min(580px, 88vw);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  opacity: 0.18;
  animation: blob-morph 8s ease-in-out infinite;
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  padding: 6px 14px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 2px solid var(--primary-color);
}
.hero-title {
  margin-bottom: 20px;
}
.hero-subtitle {
  margin: 0 auto 32px auto;
  max-width: 650px;
  color: var(--dark-color);
  font-size: clamp(15px, 2vw, 19px);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

/* Quote Section (Preset H - Block 1) */
.quote-section {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 94, 0.88);
}
.quote-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 24px;
}
.quote-mark {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 12px;
}
.quote-text {
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-style: italic;
  font-family: var(--main-font);
  margin-bottom: 20px;
}
.quote-author strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.quote-author span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Numbered Facts (Preset H - Block 2) */
.grid-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fact-card {
  background: #ffffff;
  padding: 28px;
  position: relative;
}
.fact-number {
  font-family: var(--main-font);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

/* Myth vs Fact (Preset H - Block 3) */
.myth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .myth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.myth-box {
  background: #ffffff;
  padding: 28px;
}
.myth-false {
  border-left: 8px solid #E53935 !important;
}
.myth-true {
  border-left: 8px solid #43A047 !important;
}
.box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.badge-icon {
  font-size: 1.4rem;
  font-weight: 900;
}
.myth-false .badge-icon { color: #E53935; }
.myth-true .badge-icon { color: #43A047; }

/* Feature Spotlight (Preset H - Block 4) */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .spotlight-row {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-row.reverse .spotlight-media {
    order: 2;
  }
}
.spotlight-media img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
}
.accent-box-spotlight {
  background: var(--accent-color);
  color: #ffffff;
  padding: 40px;
  text-align: center;
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
}
.large-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
}
.accent-box-title {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.spotlight-list {
  margin-top: 16px;
  padding-left: 20px;
}
.spotlight-list li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Checklist (Preset H - Block 5) */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .checklist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.check-item {
  background: #ffffff;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-mark {
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 900;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Contact + FAQ Section */
.contact-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-faq-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info-block .info-list {
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 0.9rem;
}
.contact-form {
  background: #ffffff;
  padding: 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-family: var(--main-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-color);
  font-family: var(--alt-font);
  font-size: 15px;
  background: #ffffff;
}
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-checkbox input {
  margin-top: 4px;
}
.form-checkbox label {
  font-size: 0.8rem;
  text-transform: none;
  font-weight: 400;
}

/* Open FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.faq-card {
  background: #ffffff;
  padding: 24px;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: #ffffff;
  padding: 48px 24px;
  border-top: 4px solid var(--primary-color);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--main-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Scroll Reveal Animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}