/* palette: cobalt-coral */
:root {
  --primary-color: #0B1F6B;
  --secondary-color: #1B2F88;
  --accent-color: #C0415A;
  --background-color: #F0F5FF;
  --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: 6px; 
  --radius-md: 12px; 
  --radius-lg: 20px; 
  --radius-xl: 32px;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Lato', sans-serif;
}

/* MINIMAL-LIGHT PRESET STYLES (Copied Literally) */
section{padding:96px 16px} @media(min-width:1024px){section{padding:120px 24px}} body{font-weight:300;line-height:1.9} .card{border:none;box-shadow:0 4px 24px rgba(0,0,0,0.07);border-radius:16px} .btn{border-radius:999px;padding:14px 36px} section+section{border:none}

/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: var(--primary-color);
  line-height: 1.25;
}
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}
p {
  font-size: clamp(14px, 1.6vw, 17px);
}

/* 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%;
}

/* Card Hover Animation */
.card {
  transition: transform .25s, box-shadow .25s;
  background-color: #ffffff;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background-color .15s;
  font-size: 15px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #a8324a;
  box-shadow: 0 4px 12px rgba(192, 65, 90, 0.3);
}
.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Header & Mobile Navigation */
.site-header {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
  padding: 16px 0;
}
.logo img {
  max-height: 40px;
  width: auto;
}
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}
.burger-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 24px 16px;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.site-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: block;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--accent-color);
}

/* Menu Trigger Logic */
#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;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* HERO: 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-sec {
  min-height: 87vh;
  background-color: #ffffff;
  position: relative;
}
.hero-sec .blob {
  position: absolute;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  opacity: 0.12;
  animation: blob-morph 8s ease-in-out infinite;
  z-index: 0;
}
.hero-title {
  margin-bottom: 24px;
}
.hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
}

/* SECTION 1: Expert Quote (uses bg.jpg with overlay) */
.expert-quote-sec {
  min-height: 320px;
  background-image: linear-gradient(rgba(11, 31, 107, 0.9), rgba(11, 31, 107, 0.9)), url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #F5F5F5;
}
.expert-quote-sec h2 {
  color: #ffffff;
}
.quote-icon {
  font-size: 6rem;
  color: var(--accent-color);
  opacity: 0.4;
  line-height: 0.8;
  font-family: var(--main-font);
}
.expert-blockquote {
  position: relative;
}
.quote-text {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-family: var(--main-font);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
}
.quote-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.quote-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  font-style: normal;
}
.quote-author-title {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* SECTION 2: Numbered Facts */
.numbered-facts-sec {
  min-height: 440px;
  background-color: var(--background-color);
}
.section-title {
  color: var(--primary-color);
}
.section-subtitle {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 32px;
}
.fact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.fact-number {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.fact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.fact-text {
  color: var(--text-color);
  line-height: 1.7;
}

/* SECTION 3: Myth vs Fact */
.myth-fact-sec {
  min-height: 440px;
  background-color: #ffffff;
}
.myth-box, .fact-box {
  border-radius: var(--radius-md);
  border-left: 4px solid;
}
.myth-box {
  background: rgba(239, 68, 68, 0.05);
  border-color: #ef4444;
}
.fact-box {
  background: rgba(34, 197, 94, 0.05);
  border-color: #22c55e;
}
.myth-header {
  color: #ef4444;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.fact-header {
  color: #22c55e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.myth-text, .fact-text {
  font-size: 1rem;
  line-height: 1.7;
}

/* SECTION 4: Feature Spotlight (uses bg-1.jpg as image) */
.spotlight-sec {
  min-height: 600px;
  background-color: var(--background-color);
}
.spotlight-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.spotlight-title {
  margin-bottom: 16px;
}
.spotlight-desc {
  margin-bottom: 24px;
}
.spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spotlight-list li {
  position: relative;
  padding-left: 24px;
}
.spotlight-list li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}
.spotlight-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.spotlight-visual-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-lg);
  color: #ffffff;
  min-height: 300px;
  box-shadow: var(--shadow-md);
}
.visual-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}
.visual-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* SECTION 5: Checklist */
.checklist-sec {
  min-height: 360px;
  background-color: #ffffff;
}
.check-icon {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 4px;
}
.check-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.check-text {
  color: var(--text-color);
  opacity: 0.9;
}

/* SECTION 6: Contact & FAQ */
.contact-faq-sec {
  background-color: var(--background-color);
}
.contact-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-list {
  margin-top: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.info-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  font-weight: 700;
}
.info-value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--dark-color);
  font-family: var(--alt-font);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 31, 107, 0.1);
}
.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-color);
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* FOOTER */
.site-footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 48px 16px;
}
.footer-logo img {
  max-height: 36px;
  filter: brightness(0) invert(1);
}
.footer-nav a {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover {
  opacity: 1;
  color: var(--accent-color);
}
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}