/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===== Modern CSS Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4,
p,
figure,
blockquote,
dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* ===== Design Tokens ===== */
:root {
  /* Colors */
  --primary-dark: #1D4E4D;
  --primary-light: #6B9E97;
  --accent-gold: #C9A84C;
  --accent-gold-hover: #B8952F;
  --accent-gold-light: #D4BC76;
  --white: #FFFFFF;
  --bg-cream: #F5F0EB;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #5A5A5A;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(29, 78, 77, 0.08);
  --shadow-md: 0 4px 20px rgba(29, 78, 77, 0.12);
  --shadow-lg: 0 8px 30px rgba(29, 78, 77, 0.16);
  --transition: 0.3s ease;
}

/* ===== Base ===== */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 { font-size: 1.75rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

a {
  color: var(--primary-dark);
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-gold);
}

/* ===== Utility Classes ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-padding {
  padding-block: var(--space-3xl);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Button variants for dark backgrounds */
.hero .btn-primary,
.page-hero .btn-primary {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.hero .btn-primary:hover,
.page-hero .btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--white);
}

.hero .btn-secondary,
.page-hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-secondary:hover,
.page-hero .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* ===== Shared Section Titles ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: var(--space-lg);
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ===== Header & Navigation ===== */
.site-header {
  background: var(--primary-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--space-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1.2;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: block;
  line-height: 1.2;
}

.logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.logo:hover {
  color: var(--accent-gold);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .nav-container {
  padding: var(--space-sm) 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

.btn-nav {
  background: var(--accent-gold) !important;
  color: var(--text-dark) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: all var(--transition);
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  background: var(--accent-gold-hover) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Visually Hidden (a11y) ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Hero Video ===== */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0e2f2e 50%, #163b3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-video__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}

.hero-video__pretitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.hero-video h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
}

.hero-video__subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.hero-video__baseline {
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto var(--space-xl);
  opacity: 0.85;
  line-height: 1.7;
}

.hero-video__cta {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}

.hero-video__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(29, 78, 77, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: var(--space-lg) 0;
}

.hero-video__stats-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero-video__stat {
  text-align: center;
}

.hero-video__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.hero-video__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-top: var(--space-xs);
  display: block;
}

/* ===== PSIO Section ===== */
.psio {
  background: var(--bg-cream);
  padding: var(--space-4xl) 0;
}

.psio h2 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.psio__tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: var(--space-xl);
}

.psio__description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  color: var(--text-muted);
  line-height: 1.8;
}

.psio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.psio__item {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.psio__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.psio__item h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.psio__item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Targets (4 audience cards) ===== */
.targets {
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.targets h2 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: var(--space-2xl);
}

.targets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: var(--text-dark);
}

.target-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
  color: var(--text-dark);
}

.target-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.target-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.target-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.target-card__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-gold);
  transition: color var(--transition);
}

.target-card:hover .target-card__link {
  color: var(--accent-gold-hover);
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--primary-dark);
  padding: var(--space-4xl) 0;
  color: var(--white);
}

.testimonials h2 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-2xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  padding-top: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial__quote {
  position: absolute;
  top: 0.5rem;
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.6;
}

.testimonial p {
  font-style: italic;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.testimonial footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
}

.testimonial footer strong {
  display: block;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.testimonial footer span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== Event Banner ===== */
.event-banner {
  background: var(--accent-gold);
  padding: var(--space-2xl) 0;
}

.event-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.event-banner__date {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.8;
}

.event-banner h2 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.event-banner__desc {
  color: var(--primary-dark);
  font-size: 1rem;
  opacity: 0.85;
}

.event-banner__btn {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.event-banner__btn:hover {
  background: #163b3a;
  border-color: #163b3a;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Contact — Enhanced ===== */
.contact {
  background: var(--bg-cream);
  padding: var(--space-4xl) 0;
}

.contact h2 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.contact__phone {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-2xl);
  transition: color var(--transition);
}

.contact__phone:hover {
  color: var(--accent-gold-hover);
}

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #163b3a 100%);
  color: var(--text-light);
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero .hero-subtitle {
  margin-bottom: 0;
}

/* ===== Services ===== */
.services {
  padding: var(--space-4xl) 0;
}

.services h2,
.about h2,
.contact h2,
.page-content h2 {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--primary-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text-dark);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.service-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== About ===== */
.about {
  background: var(--primary-light);
  padding: var(--space-4xl) 0;
  color: var(--white);
}

.about h2 {
  color: var(--white);
}

.about-content {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.about-text p {
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

/* ===== Contact ===== */
.contact {
  padding: var(--space-4xl) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(107, 158, 151, 0.2);
}

.contact-form .btn-primary {
  width: 100%;
}

.contact-info {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.contact-info strong {
  color: var(--accent-gold-light);
}

/* ===== Page Content (sub-pages) ===== */
.page-content {
  padding: var(--space-3xl) 0;
}

.content-block {
  margin-bottom: var(--space-2xl);
}

.content-block h2 {
  text-align: left;
}

.content-block ul {
  list-style: disc;
  padding-left: var(--space-lg);
}

.content-block li {
  margin-bottom: var(--space-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.feature {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA Block ===== */
.cta-block {
  text-align: center;
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-block p {
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.85);
}

.cta-block .btn-primary {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.cta-block .btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--white);
}

/* ===== Blog Page — Sticky Footer ===== */
.blog-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.blog-page main {
  flex: 1;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-grid--centered {
  justify-items: center;
}

.blog-grid--centered .blog-card {
  max-width: 400px;
  width: 100%;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: left;
  margin: var(--space-sm) 0;
  color: var(--primary-dark);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
}

.blog-card-img--placeholder {
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.blog-read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

/* ===== Blog CTA Section ===== */
.blog-cta {
  background: var(--primary-dark);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.blog-cta__inner h2 {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
}

.blog-cta__inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-cta .btn-primary {
  background: var(--accent-gold);
  color: var(--white);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition);
}

.blog-cta .btn-primary:hover {
  background: var(--accent-gold-hover);
}

/* Blog article page */
.blog-article {
  padding: var(--space-xl) 0;
}

.blog-article .container {
  max-width: 800px;
}

.blog-back {
  display: inline-block;
  margin-bottom: var(--space-lg);
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
}

.blog-back:hover {
  color: var(--primary-dark);
}

.blog-article h1 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin: var(--space-sm) 0 var(--space-lg);
  text-align: left;
}

.blog-article .blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.blog-article-body {
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-article-body h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: var(--space-xl) 0 var(--space-md);
  text-align: left;
}

.blog-article-body h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: var(--space-lg) 0 var(--space-sm);
  text-align: left;
}

.blog-article-body p {
  margin-bottom: var(--space-md);
}

.blog-article-body hr {
  border: none;
  border-top: 2px solid var(--accent-gold);
  margin: var(--space-xl) 0;
}

.blog-article-body a {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
}

.blog-article-body a:hover {
  color: var(--primary-dark);
}

/* ===== Footer — Enhanced ===== */
.site-footer {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 3px solid var(--accent-gold);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer__logo span {
  color: var(--accent-gold);
}

.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__nav h4,
.footer__legal h4 {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__nav ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__bottom p {
  margin-bottom: var(--space-xs);
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer__bottom strong {
  color: var(--accent-gold-light);
}

/* ===== Page Hero — Pretitle ===== */
.page-hero__pretitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

/* ===== Section Alt (alternating bg) ===== */
.section-alt {
  background: var(--primary-light);
  color: var(--white);
  padding: var(--space-4xl) 0;
}

.section-alt h2 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
  opacity: 0.9;
}

/* ===== Benefits Grid ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.benefit-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-card__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.benefit-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Benefits on dark bg (section-alt) */
.section-alt .benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-alt .benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.section-alt .benefit-card h3 {
  color: var(--white);
}

.section-alt .benefit-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Offer Cards ===== */
.offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.offer-card--featured {
  border-color: var(--accent-gold);
  position: relative;
}

.offer-card__header {
  padding: var(--space-lg) var(--space-xl);
  padding-bottom: 0;
  position: relative;
}

.offer-card__header h3 {
  color: var(--white);
}

.offer-card__badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-sm);
}

.offer-card__body {
  padding: var(--space-md) var(--space-xl);
  flex-grow: 1;
}

.offer-card__body p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.offer-card__body ul {
  list-style: none;
  padding: 0;
}

.offer-card__body li {
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.85;
  font-size: 0.9rem;
}

.offer-card__body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.offer-card__footer {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
}

/* ===== Pricing Cards ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition);
}

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

.pricing-card--featured {
  border-color: var(--accent-gold);
}

.pricing-card__header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.pricing-card__header h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.pricing-card__price span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.8;
  color: var(--white);
}

.pricing-card__body {
  padding: 0 var(--space-xl) var(--space-xl);
}

.pricing-card__body p {
  opacity: 0.85;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Highlight Box ===== */
.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.highlight-box h2 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  text-align: left;
}

.highlight-box p {
  color: var(--text-muted);
  line-height: 1.8;
}

.highlight-section {
  background: var(--bg-cream);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--primary-dark);
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* ===== Ambassador Section ===== */
.ambassador__text p {
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  line-height: 1.8;
}

.ambassador__text ul {
  list-style: none;
  padding: 0;
}

.ambassador__text li {
  padding: var(--space-sm) 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
}

.ambassador__text li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Profession Tags ===== */
.professions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.profession-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all var(--transition);
}

.profession-tag:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

/* ===== Format Cards (entreprises) ===== */
.formats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.format-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition);
}

.format-card:hover {
  transform: translateY(-3px);
}

.format-card__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.format-card h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.format-card p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
  line-height: 1.7;
  font-size: 0.95rem;
}

.format-card ul {
  list-style: none;
  padding: 0;
}

.format-card li {
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.85;
  font-size: 0.9rem;
}

.format-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* ============================================
   Responsive — Mobile-First Breakpoints
   ============================================ */

/* ===== 768px — Tablet ===== */
@media (min-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }
  .section-title { font-size: 2rem; }

  .section-padding {
    padding-block: var(--space-4xl);
  }

  /* Hero video */
  .hero-video h1 {
    font-size: 2.8rem;
  }

  .hero-video__subtitle {
    font-size: 1.25rem;
  }

  .hero-video__stat-number {
    font-size: 2.2rem;
  }

  .hero-video__stats-grid {
    gap: var(--space-3xl);
  }

  /* PSIO */
  .psio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Targets */
  .targets__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Event */
  .event-banner__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Contact */
  .contact__phone {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form .btn-primary {
    width: auto;
  }

  /* Services & Features (sub-pages) */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .page-hero h1 {
    font-size: 2rem;
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Offers */
  .offers__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Formats */
  .formats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
  }
}

/* ===== 1024px — Desktop ===== */
@media (min-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .section-title { font-size: 2.2rem; }

  /* Hero video */
  .hero-video h1 {
    font-size: 3.2rem;
  }

  .hero-video__subtitle {
    font-size: 1.35rem;
  }

  .hero-video__baseline {
    font-size: 1.1rem;
  }

  /* PSIO */
  .psio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Targets */
  .targets__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services & Features (sub-pages) */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  /* Nav gap tighter for more items */
  .nav-links {
    gap: var(--space-md);
  }
}

/* ===== 1280px — Large Desktop ===== */
@media (min-width: 1280px) {
  .hero-video h1 {
    font-size: 3.8rem;
  }

  .hero-video__subtitle {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: var(--space-lg);
  }
}

/* ===== Mobile-only (max-width for nav toggle) ===== */
@media (max-width: 767px) {
  .logo-img {
    height: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: var(--space-md) 5%;
    box-shadow: var(--shadow-md);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: var(--space-md);
  }

  .hero-video__stats-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ===== SECTION PRESSE ===== */
.press-section {
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.press__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.press-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--bg-cream);
  border-radius: 20px;
  padding: var(--space-2xl);
  box-shadow: 0 2px 16px rgba(29, 78, 77, 0.06);
  transition: box-shadow var(--transition);
}

.press-card:hover {
  box-shadow: 0 6px 24px rgba(29, 78, 77, 0.12);
}

.press-card__logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  padding: var(--space-md);
}

.press-card__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-card__content {
  flex: 1;
}

.press-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.press-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.press-card__btn {
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
}

@media (max-width: 600px) {
  .press-card {
    flex-direction: column;
    text-align: center;
  }

  .press-card__logo {
    width: 100px;
    height: 100px;
  }
}
