/* ================================================
   DESIGN TOKENS
================================================ */
:root {
  --primary-color: #ddf751;
  --secondary-color: #0f0d2c;
  --secondary-text-color: #2f2c2c;
  --max-width: 82%;
  --font-family: "Montserrat", sans-serif;
  --section-spacing: 100px;
  --nav-height: 72px;
}

/* ================================================
   RESET & BASE
================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
}

section {
  padding: var(--section-spacing) 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 58px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
}
h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}
h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin: 0;
}
h5 {
  margin: 0;
}

p {
  color: var(--secondary-text-color);
  margin: 0;
  line-height: 1.7;
}

.flex {
  display: flex;
}

/* ================================================
   NAVBAR
================================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
  width: 100%;
  transition: background 0.3s ease;
}

nav.scroll {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  padding: 16px 0%;
}

.nav-logo img {
  width: 200px;
}

.nav-items {
  display: inline-flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-items a {
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-items a:hover {
  color: var(--primary-color);
}
.nav-items a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 2px;
}

/* Mobile nav toggle */
.nav-button {
  display: none;
  cursor: pointer;
  z-index: 100;
  position: relative;
}
.nav-logo {
  z-index: 100;
}

.nav-button_close {
  display: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 100%;
  background-color: var(--secondary-color);
  z-index: 50;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 2rem;
  transition: 0.2s ease-in-out;
}

.mobile-menu.open {
  top: 0;
  bottom: 35%;
  padding-top: 20px;
}

.mobile-menu a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* ================================================
   HERO / HEADER
================================================ */
header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-section {
  padding: 60px 0 0 0;
  color: white;
  justify-content: space-between;
  align-items: flex-end;
  /* min-height: calc(100vh - var(--nav-height)); */
  gap: 40px;
}

.hero-section.scroll {
  padding-top: 7rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 60px;
  gap: 20px;
}

.hero-left h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.cta-section {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  height: 48px;
  min-width: 148px;
  padding: 0 24px;
  border-radius: 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: #c8e000;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.btn-primary a,
.btn-outline a {
  color: inherit;
  font-weight: 700;
  font-size: 14px;
}

.hero-image {
  align-self: flex-end;
  height: 600px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ================================================
   INNER PAGE HERO (non-home pages)
================================================ */
.page-hero {
  background-color: var(--secondary-color);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(221, 247, 81, 0.04);
  pointer-events: none;
}

.page-hero .eyebrow {
  display: block;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 1;
}

.page-hero h1 {
  color: white;
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 560px;
}

/* ================================================
   REGRET / RISK SECTION
================================================ */
.regret-section {
  padding: var(--section-spacing) 0;
  background-color: #fcfcfc;
}

.regret-header {
  margin-bottom: 60px;
  max-width: 680px;
}
.regret-header h2 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}
.regret-header h4 {
  color: var(--secondary-text-color);
}

.risk-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.risk-card {
  background-color: white;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.risk-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(15, 13, 44, 0.07);
  transform: translateY(-4px);
}

.risk-indicator {
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

.risk-card h3 {
  color: var(--secondary-color);
  font-size: 20px;
}
.risk-card p {
  font-size: 15px;
}

/* ================================================
   TRUST SECTION
================================================ */
.trust-section {
  padding: var(--section-spacing) 0;
  background-color: var(--secondary-color);
  color: white;
}

.trust-section p {
  color: rgba(255, 255, 255, 0.85);
}

.trust-wrapper {
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.trust-left,
.trust-right {
  flex: 1;
}

.trust-left h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 34px;
}
.trust-left > p {
  margin-bottom: 10px;
}

.risk-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.risk-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.risk-list li::before {
  content: "✕";
  color: #ff4d4d;
  margin-right: 14px;
  font-size: 16px;
}

.standard-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 50px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.standard-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.standard-card > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.action-steps {
  margin: 28px 0;
}

.step {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.step span {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 14px;
}

.manifesto-footer {
  font-style: italic;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* ================================================
   WHY WORK WITH US
================================================ */
.service-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.service-header {
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.header-left {
  flex: 1;
}
.header-left h2 {
  color: var(--secondary-color);
}

.header-right {
  flex: 1.5;
  border-left: 3px solid var(--primary-color);
  padding-left: 28px;
}

.header-right p {
  font-size: 17px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 32px 28px;
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background-color: var(--secondary-color);
}
.benefit-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}
.benefit-card:hover h3 {
  color: var(--primary-color);
}

.benefit-num {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 13px;
  display: block;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
}

.personal-commitment {
  margin-top: 56px;
  text-align: center;
  padding: 36px 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.personal-commitment p {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  font-style: italic;
}

/* ================================================
   SERVICES GRID
================================================ */
.services-grid-section {
  padding: var(--section-spacing) 0;
  background-color: #fcfcfc;
}

.services-intro {
  margin-bottom: 56px;
}
.services-intro h2 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.services-intro h4 {
  color: var(--secondary-text-color);
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-color);
}

.target-audience {
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.target-label {
  font-weight: 800;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 2px 8px;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.target-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-text-color);
  line-height: 1.4;
}

.service-content h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 14px;
}
.service-content p {
  font-size: 14px;
  line-height: 1.65;
}

.highlight-card {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.highlight-card .target-label {
  background: #fff;
}
.highlight-card .target-text,
.highlight-card .service-content h3 {
  color: var(--primary-color);
}
.highlight-card .service-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================
   CTA BANNER
================================================ */
.cta-banner {
  background-color: var(--secondary-color);
  padding: 60px 0;
}

.cta-wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-text h2 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 30px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

/* ================================================
   VIDEO SECTION
================================================ */
.video-insights {
  padding: var(--section-spacing) 0;
  background-color: #fff;
}

.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.section-title h4 {
  color: var(--secondary-text-color);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  margin-top: 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================
   BUEA SECTION
================================================ */
.buea-split-section {
  padding: var(--section-spacing) 0;
  background-color: #fff;
}

.flex-split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.buea-content,
.buea-visual {
  flex: 1;
}

.eyebrow {
  display: block;
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  opacity: 0.6;
}

.buea-content h2 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}
.buea-content > p {
  color: var(--secondary-text-color);
  font-size: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.check-list li {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--secondary-text-color);
}

.check-list li::before {
  content: "*";
  color: var(--primary-color);
  font-weight: 900;
  margin-right: 14px;
  font-size: 20px;
  flex-shrink: 0;
}

.buea-verdict {
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--primary-color);
  display: inline-block;
  border-radius: 4px;
}

.buea-verdict p {
  font-weight: 700;
  color: var(--secondary-color);
}

.image-wrapper {
  position: relative;
}

.buea-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--secondary-color);
  display: block;
}

.image-tag {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================
   TESTIMONIAL SECTION
================================================ */
.testimonial-section {
  padding: var(--section-spacing) 0;
  background-color: #f8f8f8;
  overflow: hidden;
}

.testimonial-header {
  margin-bottom: 50px;
}

.testimonial-header .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.testimonial-header p {
  font-size: 16px;
}

.testimonial-layout {
  gap: 50px;
  align-items: center;
}
.carousel-side {
  flex: 1.2;
  min-width: 0;
}
.stats-side {
  flex: 1;
  min-width: 260px;
}

.carousel-track {
  position: relative;
  overflow: hidden;
}
.carousel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
}

.testimonial-card {
  background: var(--secondary-color);
  border-radius: 6px;
  overflow: hidden;
}

.card-top {
  padding: 28px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
}
.client-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.card-body {
  padding: 24px 30px 30px;
}
.card-body p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.quote-mark {
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.8;
  line-height: 0.8;
  display: block;
  margin-bottom: 10px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-btn.active {
  background: var(--secondary-color);
  width: 24px;
  border-radius: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.stat-cell {
  background: #fff;
  padding: 32px 24px;
}
.stat-cell .big-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  display: block;
}

.stat-cell .big-num em {
  color: var(--primary-color);
  font-style: normal;
}
.stat-cell .stat-desc {
  font-size: 12px;
  font-weight: 600;
  color: #777;
  margin-top: 8px;
  display: block;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ================================================
   FOOTER
================================================ */
.site-footer {
  background-color: var(--secondary-color);
  padding: 60px 0 24px;
  color: white;
}

.footer-statement {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
  margin-bottom: 36px;
  text-align: center;
}

.footer-statement p {
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
}

.footer-main-grid {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  align-items: center;
  gap: 24px;
}
.f-logo {
  max-width: 150px;
}

.footer-socials {
  gap: 14px;
}
.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.footer-socials a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--primary-color);
}

.contact-compact {
  list-style: none;
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
  padding: 0;
  margin: 0;
}

.contact-compact li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.contact-compact strong {
  color: var(--primary-color);
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 4px;
}

.footer-bottom-bar {
  margin-top: 44px;
  text-align: center;
}
.footer-bottom-bar p {
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ================================================
   ABOUT PAGE SPECIFIC
================================================ */
.about-intro {
  padding: var(--section-spacing) 0;
  background: white;
}

.about-split {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-text,
.about-image-block {
  flex: 1;
}

.about-text .eyebrow {
  opacity: 0.6;
}
.about-text h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 36px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-block img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--secondary-color);
  display: block;
}

.values-section {
  padding: var(--section-spacing) 0;
  background: #fcfcfc;
}

.values-section h2 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.values-section > .container > p {
  font-size: 17px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  padding: 36px 32px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.value-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 14px;
}

.value-card h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 19px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.65;
}

.mission-section {
  padding: var(--section-spacing) 0;
  background: var(--secondary-color);
  color: white;
}

.mission-section p {
  color: rgba(255, 255, 255, 0.8);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 36px;
}
.mission-text p {
  font-size: 16px;
  line-height: 1.8;
}
.mission-text p + p {
  margin-top: 16px;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.mstat {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 28px;
}

.mstat .num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  display: block;
}

.mstat .label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* ================================================
   CONTACT PAGE
================================================ */
.contact-section {
  padding: var(--section-spacing) 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 34px;
}
.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.contact-details li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: var(--secondary-text-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-details strong {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  min-width: 44px;
  padding-top: 2px;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s;
}
.social-row a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--secondary-color);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit .btn-primary {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  font-size: 15px;
}

.contact-notice {
  margin-top: 36px;
  padding: 20px 24px;
  background: #fcfcfc;
  border-left: 3px solid var(--primary-color);
  border-radius: 0 4px 4px 0;
}
.contact-notice p {
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

/* ================================================
   TRAINING PAGE
================================================ */
.training-overview {
  padding: var(--section-spacing) 0;
  background: white;
}

.training-split {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.training-text {
  flex: 1;
}
.training-text h2 {
  color: var(--secondary-color);
  margin-bottom: 18px;
  font-size: 34px;
}
.training-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.training-image {
  flex: 1;
}
.training-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 16px 16px 0 var(--secondary-color);
  display: block;
}

.programs-section {
  padding: var(--section-spacing) 0;
  background: #fcfcfc;
}

.programs-section h2 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.programs-section > .container > h4 {
  margin-bottom: 50px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.program-card {
  background: white;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s;
}

.program-card:hover::before {
  background: var(--primary-color);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 13, 44, 0.07);
}

.program-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.program-card h3 {
  color: var(--secondary-color);
  margin-bottom: 14px;
  font-size: 21px;
}
.program-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.meta-item span {
  color: var(--secondary-text-color);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.coaching-banner {
  background: var(--secondary-color);
  padding: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.coaching-banner h3 {
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 12px;
}
.coaching-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 480px;
}

.what-you-learn {
  padding: var(--section-spacing) 0;
  background: white;
}

.what-you-learn h2 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.what-you-learn > .container > p {
  margin-bottom: 50px;
  font-size: 17px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-item {
  padding: 28px 24px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fcfcfc;
}

.learn-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.learn-item h4 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.learn-item p {
  font-size: 13px;
  line-height: 1.6;
}

/* ================================================
   BLOG PAGE
================================================ */
.blog-grid-section {
  padding: var(--section-spacing) 0;
  background: white;
}

.blog-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid #ddd;
  background: white;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 24px;
  transition: all 0.2s;
  color: var(--secondary-color);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

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

.blog-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 13, 44, 0.08);
  border-color: #ddd;
}

.blog-card-image {
  width: 100%;
  max-height: 250px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--secondary-color);
}
.blog-card a {
  text-decoration: none;
  color: var(--secondary-color);
}

.blog-card-image-placeholder {
  width: 100%;
  max-height: 200px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1745 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image-placeholder span {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-card-body {
  padding: 28px 24px 24px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 3px 8px;
}

.blog-date {
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* ================================================
   BLOG DETAIL PAGE
================================================ */
.blog-detail {
  padding: var(--section-spacing) 0;
  background: white;
}

.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 70px;
  align-items: start;
}

.blog-article {
}

.article-header {
  margin-bottom: 36px;
}

.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 4px 10px;
}

.article-date {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}
.article-read {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

.article-header h1 {
  font-size: 40px;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 16px;
}
.article-header p.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.article-cover {
  width: 100%;
  /* height: 600px; */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
  background: var(--secondary-color);
}

.article-cover-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--secondary-color), #1a1745);
  border-radius: 4px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-cover-placeholder span {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.article-body h2 {
  font-size: 26px;
  color: var(--secondary-color);
  margin: 36px 0 14px;
}
.article-body h3 {
  font-size: 21px;
  color: var(--secondary-color);
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.article-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}
.article-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #444;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.article-body ul li::before {
  content: "*";
  color: var(--primary-color);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.article-callout {
  background: var(--secondary-color);
  padding: 28px 32px;
  border-radius: 4px;
  margin: 32px 0;
}
.article-callout p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}

.article-share {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-share span {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.share-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/* Sidebar */
.blog-sidebar {
}
.sidebar-widget {
  margin-bottom: 40px;
}
.sidebar-widget h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.sidebar-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-posts li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.sidebar-posts a {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.2s;
  line-height: 1.4;
  display: block;
}
.sidebar-posts a:hover {
  color: #666;
}
.sidebar-posts .s-date {
  font-size: 11px;
  color: #999;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.sidebar-cta {
  background: var(--secondary-color);
  padding: 32px 28px;
  border-radius: 4px;
}
.sidebar-cta h4 {
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}
.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.sidebar-cta .btn-primary {
  width: 100%;
  border-radius: 4px;
  height: 46px;
}

/* ================================================
   BREADCRUMB
================================================ */
.breadcrumb {
  background: #f8f8f8;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
}

.breadcrumb-inner a {
  color: var(--secondary-color);
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: #666;
}
.breadcrumb-inner .sep {
  color: #ccc;
}
.breadcrumb-inner .current {
  color: var(--secondary-text-color);
}

/* ================================================
   RESPONSIVE — TABLET (max 1024px)
================================================ */
@media (max-width: 1024px) {
  :root {
    --max-width: 90%;
  }

  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 34px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .flex-split {
    gap: 50px;
  }
  .about-split {
    gap: 50px;
  }
  .training-split {
    flex-direction: column;
  }

  .footer-main-grid {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .contact-compact {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coaching-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================
   RESPONSIVE — MOBILE (max 768px)
================================================ */
@media (max-width: 768px) {
  :root {
    --max-width: 92%;
    --section-spacing: 64px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 16px;
  }

  /* Nav */
  .nav-items {
    display: none;
  }
  .nav-button {
    display: block;
  }

  nav.scroll {
    padding: 12px 4px;
  }

  .hero-section {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    /* min-height: 80vh; */
    padding-bottom: 40px;
    gap: 20px;
  }

  .hero-left {
    max-width: 100%;
    padding-bottom: 0;
  }
  .hero-right {
    max-width: 100%;
  }
  .hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-hero {
    padding: 120px 0 60px;
  }
  .page-hero h1 {
    font-size: 36px;
  }

  /* Grids */
  .risk-cards-grid {
    grid-template-columns: 1fr;
  }
  .trust-wrapper {
    flex-direction: column;
  }
  .service-header {
    flex-direction: column;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .services-wrapper {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .flex-split {
    flex-direction: column;
    gap: 40px;
  }
  .about-split {
    flex-direction: column;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: block;
  }

  .contact-info {
    order: 2;
  }
  .contact-form-wrap {
    order: 1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mission-inner {
    grid-template-columns: 1fr;
  }
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-stats {
    grid-template-columns: 1fr 1fr;
  }

  .buea-visual img {
    box-shadow: 10px 10px 0 var(--secondary-color);
  }
  .about-image-block img {
    box-shadow: 10px 10px 0 var(--secondary-color);
  }

  .standard-card {
    padding: 32px 24px;
  }
  .coaching-banner {
    padding: 36px 28px;
  }
  .carousel-side {
    width: 90%;
  }
  .testimonial-layout {
    flex-direction: column;
  }
  .stats-side {
    width: 100%;
  }
  .testimonial-header h2 {
    font-size: 26px;
  }

  .footer-main-grid {
    flex-direction: column;
    text-align: center;
  }

  .image-tag {
    right: 0;
  }

  .blog-filter {
    gap: 8px;
  }
  .article-header h1 {
    font-size: 28px;
  }
  .article-body h2 {
    font-size: 22px;
  }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
================================================ */
@media (max-width: 480px) {
  :root {
    --max-width: 94%;
  }

  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
  .mission-stats {
    grid-template-columns: 1fr;
  }
  .stat-cell .big-num {
    font-size: 36px;
  }
  .mstat .num {
    font-size: 40px;
  }

  .cta-section {
    flex-direction: column;
    width: 100%;
  }
  .cta-section .btn-primary,
  .cta-section .btn-outline {
    width: 100%;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }
  .contact-compact {
    flex-direction: column;
  }
}
