/* =============================================
   REAL LIFE CONSULTANCY — INSPIRED REDESIGN
   ============================================= */

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

:root {
  --green:       #1800ad;
  --green-mid:   #2e0ed1;
  --green-light: #ffed00;
  --cream:       #f4f5ff;
  --cream-dark:  #e8eaff;
  --gold:        #ffed00;
  --black:       #1a1a1a;
  --dark:        #2c2c2c;
  --gray:        #666;
  --mid:         #888;
  --border:      #dddff0;
  --white:       #ffffff;
  --radius:      14px;
  --radius-lg:   22px;
  --trans:       all 0.3s ease;
  --shadow-sm:   0 2px 16px rgba(30,45,125,0.06);
  --shadow:      0 8px 40px rgba(30,45,125,0.12);
  --shadow-lg:   0 24px 64px rgba(30,45,125,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.bg-cream { background: var(--cream); }
.bg-green-dark { background: var(--green); }

/* ===== TYPE ===== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.eyebrow.centered { text-align: center; }
.eyebrow.light { color: var(--green-light); }

.serif {
  font-family: 'Anton', Georgia, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-bottom: 22px;
}
.serif.centered { text-align: center; }
.serif em { font-style: italic; color: var(--green-mid); }
.serif.light-h2 { color: #fff; }
.serif.light-h2 em { color: var(--green-light); }

.body-lg { font-size: 18px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.body-md { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 440px; }
.mt-32 { margin-top: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 980px;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  letter-spacing: 0.1px;
  text-decoration: none;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,0,173,0.25); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1.5px solid #c5bfb8; }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-cream { background: var(--cream); color: var(--green); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-outline-cream { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-cream:hover { border-color: rgba(255,255,255,0.8); }
.full-btn { width: 100%; text-align: center; padding: 15px; font-size: 15px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
#navbar.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.5px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text span { font-size: 10px; color: var(--mid); letter-spacing: 1px; text-transform: uppercase; }
.logo-text strong { font-size: 14px; font-weight: 700; color: var(--black); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 2px; }
.nav-links li a {
  font-size: 13px; font-weight: 500; color: var(--dark);
  padding: 7px 14px; border-radius: 8px; transition: var(--trans);
  text-decoration: none;
}
.nav-links li a:hover { color: var(--green); background: rgba(24,0,173,0.06); }
.nav-btn { background: var(--green) !important; color: #fff !important; border-radius: 980px !important; padding: 8px 20px !important; }
.nav-btn:hover { background: var(--green-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); border-radius: 2px; transition: var(--trans); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 28px 80px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(24,0,173,0.07);
  padding: 7px 16px; border-radius: 980px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--green-mid); }
.hero-sub { font-size: 17px; color: var(--gray); line-height: 1.8; max-width: 440px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.sp-avatars { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; }
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #2e0ed1, #1800ad); }
.av2 { background: linear-gradient(135deg, #ffed00, #ffe066); }
.av3 { background: linear-gradient(135deg, #5b3ee0, #1800ad); }
.av4 { background: linear-gradient(135deg, #ffed00, #2e0ed1); }
.hero-social-proof p { font-size: 13px; color: var(--mid); }
.hero-social-proof strong { color: var(--black); }

/* Hero right */
.hero-right { position: relative; }
.hero-img-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-placeholder {
  background: linear-gradient(145deg, #2e0ed1, #1800ad);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.img-label {
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  font-style: italic;
}
.hero-quote-bubble {
  position: absolute;
  bottom: -20px; left: -28px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 220px;
  border: 1px solid var(--border);
}
.qb-mark { font-family: 'Anton', sans-serif; font-size: 28px; color: var(--green-light); line-height: 1; display: block; margin-bottom: 4px; }
.hero-quote-bubble p { font-size: 13px; font-style: italic; color: var(--dark); line-height: 1.5; }
.hero-stat-pill {
  position: absolute;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}
.top-pill { top: 24px; right: -20px; }
.bot-pill { top: 140px; right: -30px; }
.pill-num { font-family: 'Anton', sans-serif; font-size: 22px; font-weight: 700; line-height: 1; }
.pill-text { font-size: 10px; font-weight: 600; opacity: 0.8; margin-top: 2px; white-space: nowrap; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--green);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.marquee-track .dot { color: var(--green-light); font-size: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.vm-stack { display: flex; flex-direction: column; gap: 16px; }
.vm-card {
  border-radius: var(--radius-lg); padding: 30px;
  border: 1px solid var(--border);
}
.green-card { background: var(--green); color: #fff; border-color: var(--green); }
.cream-card { background: var(--cream); border-color: var(--border); }
.vm-icon { font-size: 24px; margin-bottom: 12px; }
.vm-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.green-card h4 { color: #fff; }
.cream-card h4 { color: var(--black); }
.vm-card p { font-size: 14px; line-height: 1.75; }
.green-card p { color: rgba(255,255,255,0.8); }
.cream-card p { color: var(--gray); }

/* ===== PULL QUOTE ===== */
.pull-quote-section {
  background: var(--cream);
  padding: 80px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.big-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
}
.big-quote em { color: var(--green-mid); }
.bq-mark { color: var(--green-light); font-size: 1.4em; }
.bq-attr { font-size: 13px; font-weight: 600; color: var(--mid); letter-spacing: 1px; }
.br-desk { display: inline; }

/* ===== SERVICES ===== */
.section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: var(--trans);
  position: relative;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #c5bfb8; }
.svc-featured { border-color: var(--green); background: linear-gradient(145deg, rgba(24,0,173,0.04), #fff); }
.svc-badge {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--green-mid); background: rgba(24,0,173,0.08);
  padding: 4px 12px; border-radius: 980px; margin-bottom: 14px;
}
.svc-num { font-size: 11px; font-weight: 700; color: var(--border); margin-bottom: 10px; letter-spacing: 1px; }
.svc-icon { font-size: 30px; margin-bottom: 12px; }
.svc-card h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.svc-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.svc-card ul { list-style: none; margin-bottom: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.svc-card ul li { font-size: 13px; color: var(--mid); padding-left: 14px; position: relative; }
.svc-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--green-light); font-size: 11px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--green-mid); transition: var(--trans); margin-top: auto; text-decoration: none; }
.svc-link:hover { color: var(--green); letter-spacing: 0.2px; }

/* ===== CEO ===== */
.ceo-section { background: var(--white); }
.ceo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.ceo-img-wrap { position: relative; }
.ceo-img-placeholder {
  background: linear-gradient(145deg, #e8eaff, #d0d4f5);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed #a0a8e0;
}
.ceo-img-label { text-align: center; color: var(--green); }
.ceo-img-label span { font-size: 36px; display: block; margin-bottom: 10px; }
.ceo-img-label p { font-size: 14px; font-weight: 600; }
.ceo-img-label small { font-size: 12px; opacity: 0.7; }
.ceo-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  background: var(--cream);
  border-radius: var(--radius-lg);
  z-index: -1;
  border: 1px solid var(--border);
}
.ceo-credentials { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.cred { display: flex; align-items: flex-start; gap: 14px; }
.cred-icon {
  width: 38px; height: 38px;
  background: rgba(24,0,173,0.07);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
}
.cred strong { display: block; font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.cred p { font-size: 13px; color: var(--mid); }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px; }
.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.proj-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.proj-large { grid-column: 1 / 3; }
.proj-img-wrap { position: relative; }
.proj-img-placeholder {
  background: linear-gradient(145deg, #2e0ed1, #1800ad);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,0.5);
}
.proj-img-placeholder.sm { aspect-ratio: 4/3; }
.proj-img-placeholder span { font-size: 28px; }
.proj-img-placeholder p { font-size: 13px; font-style: italic; }
.proj-overlay {
  position: absolute; top: 14px; left: 14px;
}
.proj-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.25);
}
.proj-info { padding: 22px 24px; }
.proj-info h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.proj-info p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.proj-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.proj-meta span { font-size: 12px; color: var(--mid); font-weight: 500; }
.projects-cta { text-align: center; margin-top: 52px; }
.projects-cta p {
  font-family: 'Anton', sans-serif;
  font-size: 22px; font-style: italic;
  color: var(--dark); margin-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-featured {
  background: var(--green);
  border-color: var(--green);
}
.testi-stars { font-size: 14px; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testi-card > p { font-size: 15px; line-height: 1.75; font-style: italic; color: var(--dark); margin-bottom: 24px; }
.testi-featured > p { color: rgba(255,255,255,0.9); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #2e0ed1, #1800ad);
}
.av-b { background: linear-gradient(135deg, #ffed00, #ffe066); }
.av-c { background: linear-gradient(135deg, #5b3ee0, #2e0ed1); }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--black); }
.testi-featured .testi-author strong { color: #fff; }
.testi-author span { font-size: 12px; color: var(--mid); }
.testi-featured .testi-author span { color: rgba(255,255,255,0.65); }

/* ===== WHY SECTION ===== */
.why-section { padding: 100px 0; }
.why-section .eyebrow { color: var(--green-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  padding: 36px 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--trans);
}
.why-item:hover { background: rgba(255,255,255,0.04); }
.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-child(n+4) { border-bottom: none; }
.wi-num { font-size: 11px; font-weight: 700; color: var(--green-light); letter-spacing: 2px; margin-bottom: 16px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.ind-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 48px; }
.ind-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 500; color: var(--dark);
  transition: var(--trans); cursor: default;
}
.ind-chip:hover { border-color: var(--green); color: var(--green); background: rgba(24,0,173,0.04); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--green);
  padding: 100px 28px;
  text-align: center;
}
.cta-h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700; font-style: normal;
  color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.cta-h2 em { font-style: italic; color: var(--green-light); }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 40px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-details { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.cd { display: flex; align-items: flex-start; gap: 14px; }
.cd > span { font-size: 20px; margin-top: 2px; }
.cd small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.cd p { font-size: 15px; color: var(--black); font-weight: 500; }
.contact-inspiration {
  background: var(--cream);
  border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin-top: 32px;
}
.contact-inspiration p {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}
.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 12px; font-weight: 600; color: var(--dark); letter-spacing: 0.3px; }
.fg input, .fg select, .fg textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px; font-family: inherit;
  color: var(--black); outline: none;
  transition: var(--trans);
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24,0,173,0.10);
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg input::placeholder, .fg textarea::placeholder { color: #bbb; }
.form-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 2px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.fs-icon { font-size: 44px; margin-bottom: 16px; }
.form-success h3 { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--black); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; padding-bottom: 56px; }
.footer-logo .logo-mark { background: var(--green); }
.footer-logo .logo-text span { color: rgba(255,255,255,0.4); }
.footer-logo .logo-text strong { color: #fff; }
.footer-tagline {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 16px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--trans); text-decoration: none; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.fbot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fbot p { font-size: 13px; color: rgba(255,255,255,0.35); }
.fbot div { display: flex; gap: 20px; }
.fbot div a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--trans); }
.fbot div a:hover { color: rgba(255,255,255,0.7); }

/* ===== IMAGE HANDLING ===== */
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ceo-img-placeholder {
  position: relative; overflow: hidden; border: none;
  background: var(--gold);
  display: flex; align-items: flex-end; justify-content: center;
}
.ceo-photo-cutout {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ===== PROJECT / EVENT PHOTOS ===== */
.proj-img-placeholder { background: none; padding: 0; }
.proj-img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== SPEAKERS ===== */
.speakers-block { margin-top: 80px; text-align: center; }
.speakers-h3 { font-size: 24px; margin-bottom: 32px; }
.speakers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.speaker-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.speaker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.speaker-photo { aspect-ratio: 3/4; overflow: hidden; }
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.speakers-panel-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.speakers-panel-img img { width: 100%; height: auto; display: block; }

/* ===== ATMOSPHERE GRID ===== */
.atmosphere-block { margin-top: 72px; text-align: center; }
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
  margin-top: 32px;
}
.atmo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.atmo-card:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.atmo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.atmo-tall { grid-row: span 2; }

/* ===== BELIEFS ===== */
.values-strip { margin-top: 80px; }
.belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.belief-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}
.belief-item span {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: 8px;
}

/* ===== PLATFORM OVERVIEW CARDS ===== */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  transition: var(--trans);
  text-align: center;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.platform-icon { font-size: 34px; margin-bottom: 16px; }
.platform-card h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.platform-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.platform-card-link { font-size: 13px; font-weight: 600; color: var(--green-mid); }
.platform-card:hover .platform-card-link { color: var(--green); }

/* ===== MULTI-PAGE HERO HEADER ===== */
.page-hero { padding: 150px 0 80px; background: var(--white); }
.page-hero-dark { background: var(--green); }
.page-hero .container { max-width: 760px; text-align: center; }
.back-link {
  display: inline-block;
  font-size: 13px; font-weight: 600; color: var(--gray);
  margin-bottom: 24px; transition: var(--trans);
}
.back-link:hover { color: var(--green); }
.back-link.light { color: rgba(255,255,255,0.65); }
.back-link.light:hover { color: #fff; }
.page-hero .platform-tag { display: block; width: fit-content; margin: 0 auto 14px; }
.page-hero .eyebrow { text-align: center; }
.page-h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; }
.page-hero .section-desc-wide { max-width: 620px; margin: 0 auto; }
.page-hero .btn { margin-left: auto; margin-right: auto; display: table; }

/* Community page hero is two-column, not centered */
.community-page-hero {
  max-width: 1100px !important;
  text-align: left !important;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.community-page-hero .eyebrow { text-align: left; }
.community-page-hero .platform-tag { margin: 0 0 14px; }
.community-page-hero .section-desc-wide { margin: 0 0 24px; }
.community-page-hero .btn { margin: 32px 0 0; display: inline-block; }

/* Show page list styling on white/cream background */
.show-grid-light { max-width: 800px; }
.show-list.show-list-dark li { color: var(--gray); }
.show-list.show-list-dark li::before { color: var(--green-mid); }
.show-col h4 { color: var(--green-mid); }
.belief-grid-show { margin-top: 32px; }

/* Simple why-cards for Community page */
.why-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.why-card-simple {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--trans);
}
.why-card-simple:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card-simple .wi-num { font-size: 11px; font-weight: 700; color: var(--green-mid); letter-spacing: 2px; margin-bottom: 14px; }
.why-card-simple h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.why-card-simple p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* Active nav link */
.nav-links a.active { color: var(--green); font-weight: 700; }

/* ===== PLATFORM SECTIONS (Masterclass / Show) ===== */
.platform-header { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.platform-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(30,45,125,0.08);
  padding: 5px 14px; border-radius: 980px;
  margin-bottom: 14px;
}
.platform-tag.light { color: var(--green-light); background: rgba(255,208,0,0.12); }
.section-desc-wide { font-size: 16px; color: var(--gray); line-height: 1.8; margin-top: 16px; }
.section-desc-wide.light-desc { color: rgba(255,255,255,0.65); }
.topics-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.topic-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  transition: var(--trans);
}
.topic-chip:hover { border-color: var(--green); color: var(--green); }
.platform-footnote { text-align: center; font-size: 15px; font-style: italic; color: var(--gray); max-width: 560px; margin: 0 auto; }

.bg-dark-navy { background: var(--green); }
.show-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 700px; margin: 0 auto; }
.show-col h4 { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green-light); margin-bottom: 18px; }
.show-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.show-list li { font-size: 14px; color: rgba(255,255,255,0.75); padding-left: 16px; position: relative; }
.show-list li::before { content: '—'; position: absolute; left: 0; color: var(--green-light); }
.platform-section .mt-32 { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* ===== COMMUNITY ===== */
.community-section { background: var(--cream-dark); }
.community-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.community-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.community-list li { font-size: 14px; color: var(--dark); font-weight: 500; }
.community-visual { display: flex; justify-content: center; }
.wa-card {
  background: linear-gradient(145deg, var(--green-mid), var(--green));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 280px;
}
.wa-icon { font-size: 48px; margin-bottom: 16px; }
.wa-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.wa-card p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.wa-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--black);
  font-size: 11px; font-weight: 700;
  padding: 6px 16px;
  border-radius: 980px;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--green);
  color: #fff; border: none; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--trans); z-index: 999;
  box-shadow: var(--shadow);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-right { display: flex; justify-content: center; margin-top: 40px; }
  .hero-img-card { max-width: 320px; width: 100%; }
  .top-pill { right: -6px; }
  .bot-pill { right: -10px; top: 130px; }
  .hero-quote-bubble { left: -8px; max-width: 190px; }
  .hero h1 { font-size: clamp(34px, 7vw, 56px); }
  .about-grid, .ceo-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .ceo-img-wrap { max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .proj-large { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .glimpse-grid { grid-template-columns: repeat(4, 1fr); }
  .belief-grid { grid-template-columns: 1fr 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 40px; }
  .show-grid { grid-template-columns: 1fr; gap: 28px; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .atmosphere-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  .community-page-hero { grid-template-columns: 1fr; text-align: center !important; }
  .community-page-hero .eyebrow, .community-page-hero .platform-tag { text-align: center; margin-left: auto; margin-right: auto; }
  .community-page-hero .btn { display: table; margin: 32px auto 0; }
  .why-grid-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 76px; right: 12px; left: auto;
    width: min(240px, 70vw);
    max-height: calc(100vh - 96px); max-height: calc(100dvh - 96px);
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 14px; gap: 2px; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    pointer-events: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    font-size: 16px; padding: 12px 14px; border-radius: 12px;
    display: block; text-align: left;
    background: rgba(255,255,255,0.001);
  }
  .nav-links li a:hover, .nav-links li a:active { background: rgba(255,255,255,0.6); }
  .nav-links .nav-btn { text-align: center; margin-top: 4px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; border: none; }
  .why-item { border: 1px solid rgba(255,255,255,0.08) !important; border-radius: var(--radius); margin-bottom: 8px; }
  .projects-grid { grid-template-columns: 1fr; }
  .proj-large { grid-column: auto; }
  .section-head { flex-direction: column; gap: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .br-desk { display: none; }
  .fbot { flex-direction: column; text-align: center; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .glimpse-grid { grid-template-columns: repeat(3, 1fr); }
  .belief-grid { grid-template-columns: 1fr; }
  .atmosphere-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
  .atmo-tall { grid-row: span 2; }
  .why-grid-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
  .hero-btns .btn, .cta-btns .btn { width: 100%; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .ind-grid { justify-content: flex-start; }
}

/* ===== LOGO IMAGE (with graceful fallback) ===== */
.logo-img { height: 34px; width: auto; display: block; }
.footer-logo .logo-img { height: 40px; }

/* ===== YELLOW ACCENTS ===== */
.btn-yellow { background: var(--gold); color: var(--black); }
.btn-yellow:hover { background: #ffe94d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,237,0,0.35); }
.nav-btn { background: var(--gold) !important; color: var(--black) !important; }
.nav-btn:hover { background: #ffe94d !important; }
.hero-tag { background: var(--gold); color: var(--black); }
.platform-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.svc-badge { background: var(--gold) !important; color: var(--black) !important; }
.wa-tag { background: var(--gold); color: var(--black); }
.yellow-underline { display: inline-block; width: 48px; height: 4px; background: var(--gold); border-radius: 4px; margin: 0 auto 20px; }
.yellow-underline.left { margin: 0 0 20px; }


/* ===== PLATFORM CARD IMAGE (landing) ===== */
.platform-card-img { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; background: linear-gradient(145deg, var(--green-mid), var(--green)); }
.platform-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== GLIMPSE STRIP (landing photo samples) ===== */
.glimpse-strip { margin-top: 56px; text-align: center; }
.glimpse-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.glimpse-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.glimpse-item { display: block; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--trans); }
.glimpse-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.glimpse-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== VIDEO CARDS (Show page) ===== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--trans);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--black); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play span {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-info { padding: 18px 20px; }
.video-info h4 { font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.4; margin-bottom: 6px; }
.video-info span { font-size: 12px; color: var(--green-mid); font-weight: 600; }

/* ===== YOUTUBE / TIKTOK CTA STRIP ===== */
.channel-strip {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 32px;
}
.channel-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 980px; padding: 12px 24px;
  font-size: 14px; font-weight: 700; color: var(--black);
  text-decoration: none; transition: var(--trans);
}
.channel-btn:hover { border-color: var(--gold); background: rgba(255,237,0,0.08); }

/* ===== JOIN CTA (Community page) ===== */
.join-cta-card {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.join-cta-card h3 { font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 10px; font-family: 'Anton', sans-serif; }
.join-cta-card p { font-size: 15px; color: var(--dark); margin-bottom: 24px; }

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}
