/* Mentor Life Coach – Single Page
   Colour suite: black background, grey accents, white text */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.digital-products-page {
  display: flex;
  flex-direction: column;
}

.digital-products-page main {
  flex: 1;
}

/* ----- Top bar (above header) ----- */
.top-bar {
  background: #1a1a1a;
  font-size: 0.8rem;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e0e0e0;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar-item:hover {
  color: #fff;
}

.top-bar-icon {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-item .top-bar-icon {
  color: #fff;
}

.top-bar-sep {
  width: 1px;
  height: 14px;
  background: #444;
  flex-shrink: 0;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-social-link {
  color: #fff;
  display: inline-flex;
  padding: 0.15rem;
}

.top-bar-social-link:hover {
  color: #e0e0e0;
}

.top-bar-social-link:last-child {
  margin-left: -0.4rem;
}

/* Top bar: hide on very small screens to save space; show compact on tablets */
@media (max-width: 768px) {
  .top-bar-inner {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .top-bar-left {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .top-bar-right {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  /* Slightly smaller text on mobile */
  .top-bar {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid #262626;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e5e5;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #6b6b6b;
  transition: width 0.2s ease-out;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

/* Dropdown menu for Elevate */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item-dropdown > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover > a::before {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98);
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  margin-top: 0.5rem;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ----- Mobile: hamburger menu & nav ----- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #e5e5e5;
  z-index: 101;
  position: relative;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle--active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid #262626;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .nav-mobile.nav-mobile--open {
    transform: translateX(0);
  }

  .nav-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-mobile-backdrop.nav-mobile-backdrop--visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-mobile a {
    display: block;
    padding: 1rem 0;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
  }

  .nav-mobile a:hover,
  .nav-mobile a:focus-visible {
    color: #fff;
  }

  .nav-mobile a:first-child {
    padding-top: 0;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}

/* ----- Banner Section ----- */
@keyframes bannerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.banner {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  animation: bannerFadeIn 1s ease-out 0.3s both;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  animation: bannerFadeIn 1.2s ease-out both;
}

.banner-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 2rem 27rem 2rem 1.5rem;
  pointer-events: none;
}

.banner-copy {
  text-align: left;
  color: #f5f5f5;
  max-width: 380px;
  min-width: 380px;
  margin: 0;
  margin-top: -6rem;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(40px);
}

@keyframes bannerCopySlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-copy.in-view {
  animation: bannerCopySlideInRight 0.8s ease-out both;
}

.banner-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d0d0d0;
  margin-bottom: 0;
}

.banner-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.banner-title-accent {
  background: linear-gradient(90deg, #e53935 0%, #ff6b6b 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.banner-cta {
  display: inline-block;
  pointer-events: auto;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background-color: #f5f5f5;
  color: #111111;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.banner-cta:hover,
.banner-cta:focus-visible {
  background-color: #e2e2e2;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

.banner-divider {
  display: none;
}

@media (max-width: 900px) {
  .banner-copy {
    max-width: 90%;
  }

  .banner-overlay {
    padding: 2rem 1.5rem 2rem 1.5rem;
    justify-content: center;
    align-items: flex-end;
  }

  .banner-copy {
    min-width: 0;
    margin-top: -2rem;
    text-align: center;
  }
}

.banner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.banner .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #b0b0b0;
  font-weight: 400;
}

/* ----- About Section ----- */
.about {
  padding: 8rem 1.5rem 4rem;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
}

.about-content {
  flex: 0 1 52%;
  min-width: 0;
}

.about h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #404040;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.75;
  text-align: justify;
}

@keyframes aboutImageSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image-wrap {
  flex: 0 0 38%;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #404040;
  background: #1a1a1a;
  opacity: 0;
  transform: translateX(80px);
}

.about-image-wrap.in-view {
  animation: aboutImageSlideIn 0.8s ease-out both;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 320px;
}

/* ----- Book Section ----- */
.book-section {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.book-heading {
  font-size: clamp(1.4rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.book-underline {
  height: 2px;
  background: #404040;
  margin-bottom: 2rem;
}

.book-group {
  border: 1px solid #404040;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 38%,
    rgba(24, 24, 24, 0.5) 55%,
    #181818 72%,
    #181818 100%
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  padding-bottom: 1.5rem;
}

.book-box {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

@keyframes bookCoverFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.book-cover-wrap {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
}

.book-cover-wrap.in-view {
  animation: bookCoverFadeIn 0.8s ease-out both;
}

.book-cover {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.book-copy {
  flex: 1;
  min-width: 0;
}

.book-copy-inner {
  padding: 1.75rem;
}

.book-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  background: linear-gradient(90deg, #e53935 0%, #e53935 40%, #ffffff 85%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.book-copy-inner p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.book-copy-inner p:last-of-type {
  margin-bottom: 1.25rem;
}

/* ----- Book CTA strip below book ----- */
@keyframes bookCtaSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.book-cta-section {
  background-color: transparent;
  color: #f5f5f5;
  padding: 0 2rem 0;
  margin-top: -2.25rem;
}

.book-cta-btn-wrap {
  opacity: 0;
  transform: translateX(60px);
  display: inline-block;
}

.book-cta-btn-wrap.in-view {
  animation: bookCtaSlideIn 0.7s ease-out both;
}

.book-cta-inner {
  max-width: 820px;
  margin-left: calc((100% - 760px) / 2);
  margin-right: auto;
  transform: translateX(-1.5rem);
}

.book-cta-inner p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  color: #e0e0e0;
  text-align: justify;
}

.book-cta-light {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  background-color: #e8e8e8;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  top: -4px;
  transition: background-color 0.2s ease, top 0.15s ease;
}

@keyframes elevatePageBookCtaSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.elevate-page-book .book-cta-light {
  opacity: 0;
  transform: translateX(80px);
}

.elevate-page-book .book-cta-light.in-view {
  animation: elevatePageBookCtaSlideIn 0.8s ease-out both;
}

.book-cta-light:hover,
.book-cta-light:focus-visible {
  background-color: #d8d8d8;
  top: -5px;
}

@media (max-width: 768px) {
  .book-box {
    flex-direction: column;
    align-items: stretch;
  }

  .book-cover-wrap {
    flex: none;
    max-width: 260px;
    align-self: center;
  }

  .book-copy {
    width: 100%;
    min-width: 0;
  }

  .book-copy-inner {
    padding: 1.25rem;
  }

  /* Match paragraph alignment: book-box (2rem) + book-copy-inner (1.25rem) = 3.25rem inset */
  .book-cta-section {
    padding: 0 3.25rem 0;
  }

  .book-cta-inner {
    margin-left: 0;
    margin-right: 0;
    transform: none;
    max-width: 100%;
  }
}

.elevate-page-book .book-cover-wrap {
  opacity: 1;
}

/* ----- Elevate Philosophy Section ----- */
.philosophy-section {
  padding: 4.15rem 1.5rem 4rem;
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4rem;
}

/* Home page only: match "About SUPARNA SENGUPTA" header style */
.home-page .philosophy-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #404040;
  padding-bottom: 0.5rem;
  display: inline-block;
}

@keyframes philosophyContentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#philosophyContentHome {
  opacity: 0;
}

#philosophyContentHome.in-view {
  animation: philosophyContentFadeIn 1.4s ease-out both;
}

.philosophy-box {
  padding: 0;
  margin-top: 2.5rem;
}

.philosophy-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: #e3e3e3;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.philosophy-box p:last-child {
  margin-bottom: 0;
}

.philosophy-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 4rem 0 1.25rem;
  line-height: 1.4;
}

.philosophy-box h3:first-child {
  margin-top: 0;
}

.philosophy-box ul {
  margin: 0.8rem 0 1.2rem 0;
  padding: 0;
  list-style: none;
}

.philosophy-box li {
  font-size: 1rem;
  line-height: 1.75;
  color: #e3e3e3;
  margin-bottom: 0.5rem;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.philosophy-points li {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-bottom: 0;
}

@keyframes philosophyPointSlideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.philosophy-points li {
  opacity: 0;
  transform: translateX(60px);
}

.philosophy-points li.in-view {
  animation: philosophyPointSlideInRight 0.7s ease-out both;
}

/* ----- Beliefs header section ----- */
.beliefs-header-section {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #2a1e1e 0%, #1f0f0f 50%, #120a0a 100%);
  padding: 3rem 1.5rem 4rem;
  margin-top: 3rem;
}

.beliefs-header-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.beliefs-tagline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.beliefs-tagline-dash {
  width: 40px;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.5);
}

.beliefs-tagline {
  background: #6b6b6b;
  color: #f5f5f5;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .beliefs-tagline {
    white-space: normal;
    text-align: center;
  }
}

.beliefs-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.beliefs-header-line {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.beliefs-header-accent {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

@keyframes beliefsSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes beliefsSlideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.beliefs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.beliefs-card {
  background: linear-gradient(135deg, rgba(60, 20, 20, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.beliefs-card:nth-child(odd) {
  opacity: 0;
  transform: translateX(-50px);
}

.beliefs-card:nth-child(even) {
  opacity: 0;
  transform: translateX(50px);
}

.beliefs-cards.in-view-top .beliefs-card:nth-child(1) {
  animation: beliefsSlideFromLeft 0.7s ease-out both;
}

.beliefs-cards.in-view-top .beliefs-card:nth-child(2) {
  animation: beliefsSlideFromRight 0.7s ease-out both;
}

.beliefs-cards.in-view-bottom .beliefs-card:nth-child(3) {
  animation: beliefsSlideFromLeft 0.7s ease-out both;
}

.beliefs-cards.in-view-bottom .beliefs-card:nth-child(4) {
  animation: beliefsSlideFromRight 0.7s ease-out both;
}

.beliefs-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #e53935;
}

.beliefs-card-icon svg {
  width: 24px;
  height: 24px;
}

.beliefs-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.beliefs-card-desc {
  font-size: 0.9rem;
  color: #d0c8c8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.beliefs-card-link {
  color: #e53935;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 57, 53, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: border-color 0.2s, color 0.2s;
}

.beliefs-card-link:hover {
  border-bottom-color: #ef5350;
  color: #ef5350;
}

.beliefs-card-arrow {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .beliefs-cards {
    grid-template-columns: 1fr;
  }
}

.beliefs-section {
  padding: 0 1.5rem 4rem;
}

.beliefs-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
}

.beliefs-inner {
  max-width: 370px;
  margin: 0;
  flex: 0 0 370px;
}

.beliefs-inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: #e3e3e3;
  margin-bottom: 0.9rem;
  text-align: justify;
}

.beliefs-inner p:first-child {
  margin-bottom: 1.1rem;
}

.beliefs-list {
  margin: 0 0 1rem 1.5rem;
  color: #e3e3e3;
}

.beliefs-list li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.7rem;
}

.beliefs-list li:last-child {
  margin-bottom: 0;
}

.beliefs-inner p:last-child {
  margin-bottom: 0;
}

.beliefs-visual {
  flex: 0 0 auto;
  min-width: 0;
}

.beliefs-visual img {
  width: 100%;
  max-width: 250px;
  height: 262px;
  display: block;
  margin-left: 2.5rem;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  border: 1px solid #2d2d2d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.philosophy-list {
  margin: 0.25rem 0 1.25rem 1.4rem;
  color: #e3e3e3;
}

.philosophy-list li {
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.philosophy-list li:last-child {
  margin-bottom: 0;
}

.about-page {
  padding-top: 4rem;
}

/* ----- Elevate page starting section (website colour scheme) ----- */
.elevate-start {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 5rem 1.5rem 5rem;
}

.elevate-start-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top: heading left, description right */
.elevate-start-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.elevate-start-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  flex-shrink: 0;
}

.elevate-start-desc {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
  text-align: justify;
}

@keyframes elevateStartDescSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.elevate-start-desc {
  opacity: 0;
  transform: translateX(80px);
}

.elevate-start-desc.in-view {
  animation: elevateStartDescSlideIn 0.8s ease-out both;
}

/* Image */
.elevate-start-image-wrap {
  margin-bottom: 4rem;
}

.elevate-start-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

@keyframes elevateStartImageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.elevate-start-image {
  opacity: 0;
}

.elevate-start-image.in-view {
  animation: elevateStartImageFadeIn 1s ease-out both;
}

/* Stats row */
.elevate-start-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.elevate-start-stat {
  text-align: left;
}

.elevate-start-stat-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.elevate-start-stat-label {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Vision & Mission (standalone section below Book) */
.elevate-vision-section {
  background: #0a0a0a;
  padding: 4rem 1.5rem;
}

.elevate-start-vision {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.elevate-start-vision-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 380px;
  flex-shrink: 0;
  margin: 0;
}

.elevate-start-vision-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 480px;
}

.elevate-start-block-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e53935;
  margin: 0 0 0.5rem;
}

.elevate-start-block-text {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

@keyframes elevateReviewSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.elevate-review-card {
  opacity: 0;
  transform: translateY(40px);
}

.elevate-review-card.in-view {
  animation: elevateReviewSlideUp 0.7s ease-out both;
}

@media (max-width: 900px) {
  .elevate-start-top,
  .elevate-start-vision {
    flex-direction: column;
    gap: 2rem;
  }

  .elevate-start-desc {
    max-width: 100%;
  }

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

@media (max-width: 560px) {
  .elevate-start-stats {
    grid-template-columns: 1fr;
  }
}

.elevate-page-book {
  padding-top: 8rem;
}

/* ----- Mission & Vision Cards (above Philosophy) ----- */
.mission-vision-cards {
  background: #0a0a0a;
  padding: 4rem 1.5rem;
}

.mission-vision-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mission-vision-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.mission-vision-vision {
  margin-top: 4rem;
}

.mission-vision-block:last-child {
  margin-bottom: 0;
}

.mission-vision-content {
  flex: 1;
  min-width: 0;
}

.mission-vision-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.mission-vision-para {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.mission-vision-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mission-vision-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.mission-vision-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e53935;
  font-weight: 700;
  font-size: 1rem;
}

.mission-vision-image-wrap {
  flex: 0 0 45%;
  max-width: 420px;
  background: #0a0a0a;
}

.mission-vision-image {
  width: 100%;
  height: auto;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@keyframes missionVisionImageSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes missionVisionImageSlideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-vision-image-wrap {
  opacity: 0;
}

.mission-vision-mission .mission-vision-image-wrap {
  transform: translateX(-80px);
}

.mission-vision-vision .mission-vision-image-wrap {
  transform: translateX(80px);
}

.mission-vision-mission .mission-vision-image-wrap.in-view {
  animation: missionVisionImageSlideInRight 0.8s ease-out both;
}

.mission-vision-vision .mission-vision-image-wrap.in-view {
  animation: missionVisionImageSlideInLeft 0.8s ease-out both;
}

.mission-vision-vision .mission-vision-image-wrap {
  order: -1;
}

@media (max-width: 900px) {
  .mission-vision-block {
    flex-direction: column;
    gap: 2rem;
  }

  .mission-vision-vision {
    flex-direction: column-reverse;
  }

  .mission-vision-vision .mission-vision-image-wrap {
    order: 0;
  }

  .mission-vision-image-wrap {
    flex: none;
    max-width: 100%;
  }
}

/* ----- Elevate Reviews (What Readers Are Saying) ----- */
.elevate-reviews {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0f0f0f 100%);
  padding: 4rem 1.5rem;
}

.elevate-reviews-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
}

.elevate-reviews-carousel {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.elevate-reviews-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.elevate-reviews-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.elevate-reviews-track-wrap {
  flex: 1;
  overflow: hidden;
}

.elevate-reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.elevate-review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.elevate-review-thumb {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.elevate-review-stars {
  color: #d4a017;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.75rem;
}

.elevate-review-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.elevate-review-snippet {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.elevate-review-link {
  font-size: 0.9rem;
  color: #c62828;
  text-decoration: none;
}

.elevate-review-link:hover {
  text-decoration: underline;
}

.elevate-review-meta {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.elevate-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.elevate-reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.elevate-reviews-dots button.active {
  background: #fff;
}

@media (max-width: 768px) {
  .elevate-reviews-carousel {
    gap: 0.5rem;
  }

  .elevate-reviews-track-wrap {
    min-width: 0;
  }

  .elevate-reviews-track {
    gap: 1rem;
  }

  .elevate-review-card {
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  .elevate-reviews-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
  }
}

/* ----- About page hero (light layout, reference design) ----- */
.about-page-body {
  background: #0a0a0a;
}

.about-page-body.about-page-light {
  background: #f5f5f5;
  color: #333;
}

.about-header-light {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e0e0e0;
}

.about-header-light .nav a,
.about-header-light .logo {
  color: #333;
}

.about-header-light .nav a:hover,
.about-header-light .logo:hover {
  color: #000;
}

.about-header-light .nav-dropdown {
  background: rgba(26, 26, 26, 0.98);
}

.about-header-light .nav-item-dropdown > a::before {
  border-top-color: #333;
}

.about-hero-main {
  padding-top: 0;
}

.about-hero {
  padding: 5rem 1.5rem 4rem;
  background: #0a0a0a;
}

.about-hero.about-hero-light {
  padding: 4rem 1.5rem 5rem;
  background: #f5f5f5;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.25rem 3rem;
  justify-content: space-between;
}

.about-hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1 1 100%;
  min-width: 0;
  max-width: 800px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.about-hero-light .about-hero-headline {
  color: #1a1a1a;
}

.about-hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
  flex: 1 1 360px;
  min-width: 0;
  max-width: 620px;
}

.about-hero-light .about-hero-desc {
  color: #555;
}

.about-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-hero-cta-primary {
  background: #2d584c;
  color: #fff;
  border: 2px solid #2d584c;
}

.about-hero-cta-primary:hover {
  background: #244438;
  border-color: #244438;
}

@keyframes aboutHeroImageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about-hero-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 420px;
  animation: aboutHeroImageFadeIn 1.2s ease-out both;
}

@media (max-width: 768px) {
  .about-hero-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-hero-desc {
    max-width: none;
  }

  .about-hero-image {
    min-height: 320px;
  }
}

.about-section-next {
  background: #0a0a0a;
  padding: 3rem 1.5rem 4rem;
  margin-top: 1.5rem;
}

.about-section-next-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-section-next-content {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 580px;
}

@keyframes aboutSectionNextImageSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-section-next-image-wrap {
  flex: 0 0 360px;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

#aboutSectionNextImageWrap {
  opacity: 0;
  transform: translateX(80px);
}

#aboutSectionNextImageWrap.in-view {
  animation: aboutSectionNextImageSlideIn 0.8s ease-out both;
}

.about-section-next-image {
  width: 100%;
  height: 425px;
  display: block;
  object-fit: cover;
}

.about-section-next-heading {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.75rem 0;
  line-height: 1.3;
  font-family: "Segoe UI", system-ui, sans-serif;
  border-bottom: 2px solid #404040;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about-section-next-para {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 1.5rem 0;
  max-width: 580px;
  font-family: "Segoe UI", system-ui, sans-serif;
  text-align: justify;
}

.about-section-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #e8e8e8;
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
  font-family: inherit;
}

.about-section-next-btn:hover {
  background: #d8d8d8;
}

@keyframes aboutSectionNextBtnSlideIn {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#aboutSectionNextBtn {
  opacity: 0;
  transform: translateX(-80px);
}

#aboutSectionNextBtn.in-view {
  animation: aboutSectionNextBtnSlideIn 0.8s ease-out both;
}

@media (max-width: 768px) {
  .about-section-next-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .about-section-next-image-wrap {
    flex: none;
    max-width: 100%;
  }
}

.about-expertise {
  background: #0a0a0a;
  padding: 4rem 1.5rem 5rem;
}

.about-expertise-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-expertise-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.about-expertise-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes aboutExpertiseSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutExpertiseSlideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-expertise .about-expertise-card {
  opacity: 0;
}

.about-expertise .about-expertise-card:nth-child(odd) {
  transform: translateX(-80px);
}

.about-expertise .about-expertise-card:nth-child(even) {
  transform: translateX(80px);
}

.about-expertise .about-expertise-card.in-view:nth-child(odd) {
  animation: aboutExpertiseSlideInLeft 0.8s ease-out both;
}

.about-expertise .about-expertise-card.in-view:nth-child(even) {
  animation: aboutExpertiseSlideInRight 0.8s ease-out both;
}

.about-expertise-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.about-expertise-card-desc {
  font-size: 0.9rem;
  color: #d0c8c8;
  line-height: 1.6;
}

.about-expertise-heading {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 2.25rem 0;
  line-height: 1.3;
  font-family: "Segoe UI", system-ui, sans-serif;
  border-bottom: 2px solid #404040;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about-expertise-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 1.5rem 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.about-expertise-para {
  font-size: 1rem;
  line-height: 1.8;
  color: #c8c8c8;
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  padding-top: 0;
  border-top: none;
}

@media (max-width: 600px) {
  .about-expertise-cards {
    grid-template-columns: 1fr;
  }
}

.about-thought-leadership {
  background: #0a0a0a;
  padding: 4rem 1.5rem 5rem;
  margin-top: -2.5rem;
}

.about-thought-leadership .about-section-next-inner {
  justify-content: flex-start;
}

.about-thought-leadership .about-section-next-content {
  padding-left: 3.5rem;
}

.about-thought-leadership-cards-wrap {
  max-width: 1035px;
  margin: 2rem auto 0;
  margin-left: calc((100% - 1000px) / 2 - 1.5rem);
  margin-right: auto;
  padding: 0 1.5rem;
}

.about-thought-leadership-cards-wrap .about-expertise-cards {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .about-thought-leadership-cards-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .about-thought-leadership-cards-wrap .about-expertise-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-thought-leadership {
    padding: 3rem 1rem 4rem;
  }

  .about-thought-leadership-cards-wrap {
    margin-top: 0.75rem;
    padding: 0 0;
  }

  .about-thought-leadership .about-section-next-content {
    padding-left: 0;
    padding-right: 0;
  }

  .about-thought-leadership .about-section-next-para {
    margin-bottom: 1rem;
  }
}

@keyframes aboutThoughtCardSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-thought-leadership .about-expertise-card {
  opacity: 0;
  transform: translateY(60px);
}

.about-thought-leadership-cards-wrap.in-view .about-expertise-card {
  animation: aboutThoughtCardSlideUp 0.7s ease-out both;
}

.about-thought-leadership-cards-wrap.in-view .about-expertise-card:nth-child(2) {
  animation-delay: 0.12s;
}

.about-thought-leadership-cards-wrap.in-view .about-expertise-card:nth-child(3) {
  animation-delay: 0.24s;
}

.about-thought-leadership-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* ----- Accent elements ----- */
.accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #505050, transparent);
  margin: 2rem 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Contact section (dark theme, matches home) ----- */
body.contact-page,
.contact-page-main {
  background: #0a0a0a;
  color: #f5f5f5;
}

.contact-page-main {
  overflow-x: hidden;
}

.contact-section {
  padding: 3rem 1.5rem 4rem;
  min-height: calc(100vh - 160px);
  overflow-x: hidden;
}

.contact-card {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid #262626;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0.75rem;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-card-left {
  display: flex;
  flex-direction: column;
  padding: 3rem 1rem 2rem 2.5rem;
  justify-content: flex-start;
  align-items: stretch;
}

.contact-image-box {
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 2rem;
}

.contact-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 320px;
  overflow: hidden;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details-box {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  background: #141414;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.contact-detail-item:hover {
  color: #b0b0b0;
  opacity: 0.9;
}

.contact-detail-item svg {
  flex-shrink: 0;
  color: #6b6b6b;
  margin-top: 0.15rem;
}

.contact-detail-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: #e5e5e5;
}

.contact-card-right {
  padding: 3rem 2.5rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.contact-form-box {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  background: #141414;
}

.contact-form-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-form-subheading {
  font-size: 1rem;
  color: #999;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e5e5;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  background: #0a0a0a;
  border: 1px solid #404040;
  border-radius: 8px;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6b6b6b;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-checkbox {
  flex-direction: row;
}

.contact-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #999;
  cursor: pointer;
}

.contact-checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.contact-checkbox-label a {
  color: #888;
  text-decoration: none;
}

.contact-checkbox-label a:hover {
  text-decoration: underline;
}

.contact-submit {
  padding: 0.9rem 1.5rem;
  background: #6b6b6b;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: #555;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card-left {
    order: 1;
    min-width: 0;
  }

  .contact-image-wrap {
    aspect-ratio: 16/9;
  }

  .contact-card-right {
    padding: 2rem;
    order: 2;
    min-width: 0;
  }

  .contact-form-box {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 1rem 3rem;
  }

  .contact-card {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
  }

  .contact-card-left {
    padding: 1.5rem 1rem;
    min-width: 0;
  }

  .contact-card-right {
    padding: 1.5rem 1rem;
    min-width: 0;
  }

  .contact-form-box {
    padding: 1.5rem 1rem;
    min-width: 0;
  }

  .contact-form input,
  .contact-form textarea {
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-submit {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-details-box {
    padding: 1.5rem 1rem;
  }
}

/* ----- Outro bar ----- */
.outro-bar {
  background: #1a1a1a;
  border-top: 1px solid #262626;
  font-size: 0.85rem;
}

.outro-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.outro-bar-left,
.outro-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.outro-link {
  color: #e0e0e0;
  text-decoration: none;
}

.outro-link:hover {
  color: #fff;
}

.outro-sep {
  color: #444;
  user-select: none;
}

.outro-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outro-social-link {
  color: #fff;
  padding: 0.15rem;
}

.outro-social-link:hover {
  color: #e0e0e0;
}

.outro-social-link:last-child {
  margin-left: -0.3rem;
}

.outro-copy {
  color: #888;
}

@media (max-width: 600px) {
  .outro-bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .outro-bar-left,
  .outro-bar-right {
    flex-direction: column;
  }

  .outro-sep {
    display: none;
  }

  .outro-link {
    display: block;
    padding: 0.25rem 0;
  }
}

/* ----- Auth modal (Login / Sign Up) ----- */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.auth-modal--open {
  visibility: visible;
  opacity: 1;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.auth-modal-box {
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  border: 1px solid #404040;
  border-radius: 12px;
  padding: 1.5rem;
  width: 340px;
  max-width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.auth-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #999;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.auth-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.auth-modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #404040;
}

.auth-tab {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: #999;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
}

.auth-tab:hover {
  color: #e0e0e0;
}

.auth-tab--active {
  color: #fff;
  border-bottom-color: #e53935;
}

.auth-form {
  display: none;
}

.auth-form--active {
  display: block;
}

.auth-message {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  min-height: 0;
}

.auth-message--success {
  color: #4caf50;
}

.auth-message--error {
  color: #e53935;
}

.auth-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.75rem;
  background: #0a0a0a;
  border: 1px solid #404040;
  border-radius: 6px;
  color: #f5f5f5;
  font-size: 0.95rem;
  font-family: inherit;
}

.auth-form input::placeholder {
  color: #666;
}

.auth-form input:focus {
  outline: none;
  border-color: #6b6b6b;
}

.auth-form button[type="submit"] {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-top: 0.25rem;
  background: #6b6b6b;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.auth-form button[type="submit"]:hover {
  background: #555;
}

.auth-divider {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin: 1rem 0 0.75rem;
}

.auth-google-btn {
  width: 100%;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.auth-google-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.auth-google-icon {
  flex-shrink: 0;
}

.auth-trigger {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ----- Legal pages (Terms, Privacy) ----- */
.legal-page {
  background: #0a0a0a;
  padding: 4rem 1.5rem 5rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.coming-soon-section {
  text-align: center;
  padding: 6rem 1rem;
}

.coming-soon-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e5e5e5;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.legal-content a {
  color: #e53935;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .banner {
    min-height: 55vh;
  }

  .banner-overlay {
    padding: 1.5rem 1rem 2rem;
    justify-content: center;
    align-items: flex-end;
  }

  .banner-copy {
    min-width: 0;
    margin-top: 0;
    max-width: 100%;
    text-align: center;
  }

  .banner-image {
    object-position: 28% center;
  }

  .banner-image-wrap {
    min-height: 320px;
  }

  .about {
    padding: 3rem 1rem;
  }

  .about-inner {
    flex-direction: column;
    gap: 4rem;
  }

  .about-content {
    flex: none;
  }

  .about-image-wrap {
    flex: none;
    max-width: 100%;
    height: auto;
  }

  .beliefs-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .beliefs-inner {
    max-width: 100%;
    flex: none;
  }

  .beliefs-visual img {
    max-width: 100%;
    margin-left: 0;
  }
}
