/* ============================================
   CORESTONE SOLUTIONS — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #2C3560;
  --navy-dark: #1A2040;
  --navy-mid: #232B52;
  --gold: #C9A047;
  --gold-light: #D4B068;
  --gold-dark: #A8832A;
  --cream: #F5F0E8;
  --cream-dark: #EDE7DB;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #888888;
  --border-light: rgba(201, 160, 71, 0.3);
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-headline {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(201, 160, 71, 0.15);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 32, 64, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

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

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
}

.nav-phone svg { opacity: 0.7; }

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--navy-dark);
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--navy-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-gold-outline:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

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

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-headline .gold {
  color: var(--gold);
}

.hero-subtext {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-buttons .btn-primary {
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
}

.hero-buttons .btn-secondary {
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
}

/* ============================================
   CREDENTIAL BADGES
   ============================================ */
.credentials-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 160, 71, 0.2);
  border-bottom: 1px solid rgba(201, 160, 71, 0.2);
  padding: 1.25rem 2rem;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cred-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.credentials-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cred-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 160, 71, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cred-badge .badge-tag {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  letter-spacing: 0.05em;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section--navy {
  background: var(--navy);
}

.section--navy-dark {
  background: var(--navy-dark);
}

.section--white {
  background: var(--white);
}

/* ============================================
   WHO WE WORK WITH
   ============================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.who-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.who-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.who-cta { margin-top: 2rem; }

.problems-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(44, 53, 96, 0.12);
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.problem-item:first-child {
  border-top: 1px solid rgba(44, 53, 96, 0.12);
}

.problem-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FRAMEWORK / NUMBERED STEPS
   ============================================ */
.framework-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}

.framework-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}

.framework-subtext {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.step-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  color: rgba(201, 160, 71, 0.25);
  line-height: 1;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SERVICES PREVIEW CARDS (Home)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(44, 53, 96, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(44, 53, 96, 0.1);
  transform: translateY(-3px);
}

.service-card:hover::before {
  width: 100%;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-medium);
}

/* ============================================
   AI POSITIONING SECTION
   ============================================ */
.ai-section {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
}

.ai-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.02;
}

.ai-headline-gold {
  color: var(--gold);
}

.ai-body {
  max-width: 700px;
  margin: 1.5rem auto 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.ai-emphasis {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.testimonials-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(44, 53, 96, 0.08);
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  border-top: 1px solid rgba(44, 53, 96, 0.1);
  padding-top: 1.25rem;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 64, 0.40);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.cta-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201, 160, 71, 0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.footer-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  font-family: 'Barlow', sans-serif;
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 32, 64, 0.6) 0%,
    rgba(26, 32, 64, 0.92) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  width: 100%;
}

.page-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.page-hero-headline .gold {
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* Service detail layout */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(44, 53, 96, 0.1);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.02em;
  color: rgba(44, 53, 96, 0.15);
  line-height: 1;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-number-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.service-detail-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-detail-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.outcomes-card {
  background: var(--navy);
  padding: 2rem;
}

.outcomes-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.outcome-item:last-child { border-bottom: none; }

.outcome-diamond {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Offer pricing cards */
.offers-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.offers-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.offers-sub {
  font-size: 0.95rem;
  color: var(--text-medium);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid rgba(44, 53, 96, 0.1);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.offer-card:hover {
  box-shadow: 0 8px 40px rgba(44, 53, 96, 0.12);
}

.offer-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.offer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.offer-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 1rem 0 0.25rem;
}

.offer-duration {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44, 53, 96, 0.1);
}

.offer-features {
  list-style: none;
  margin-bottom: 2rem;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  padding: 0.45rem 0;
  line-height: 1.4;
}

.offer-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.offer-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
}

.offer-card.featured {
  border: 2px solid var(--gold);
}

.offer-featured-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

/* Not sure where to start bar */
.diagnostic-bar {
  background: var(--navy);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.diagnostic-bar-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.diagnostic-bar-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   MENTORING PAGE SPECIFIC
   ============================================ */
.mentoring-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid rgba(44, 53, 96, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 6px 25px rgba(44, 53, 96, 0.1);
  transform: translateY(-2px);
}

.pillar-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(44, 53, 96, 0.12);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pillar-icon-box {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-medium);
}

/* Who it's for section */
.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.who-for-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.who-for-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.who-for-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.who-for-check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 1rem;
}

/* How it works steps (mentoring) */
.mentoring-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mentoring-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(44, 53, 96, 0.1);
  align-items: start;
}

.mentoring-step:first-child {
  border-top: 1px solid rgba(44, 53, 96, 0.1);
}

.mentoring-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(44, 53, 96, 0.15);
  line-height: 1;
}

.mentoring-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mentoring-step-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-medium);
}

/* Pricing cards (mentoring) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
}

.pricing-card {
  border: 1px solid rgba(44, 53, 96, 0.15);
  padding: 2.5rem;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(44, 53, 96, 0.1);
}

.pricing-card.recommended {
  border: 2px solid var(--gold);
}

.rec-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}

.pricing-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-commitment {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44, 53, 96, 0.1);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  padding: 0.4rem 0;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Mentor bio section */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mentor-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentor-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 6px rgba(201, 160, 71, 0.2), 0 20px 60px rgba(0,0,0,0.2);
  display: block;
}

.mentor-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.mentor-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.mentor-signature {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}

/* What to Expect section */
.expect-section {
  background: var(--navy);
  text-align: center;
  padding: 6rem 2rem;
}

.expect-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.expect-body {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.expect-outcome {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.founder-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.founder-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-bottom: 0;
  display: block;
}

.founder-image-caption {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 460px;
  border-radius: 0 0 8px 8px;
  margin-top: 0;
}

.founder-image-caption span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.founder-image-caption strong {
  color: var(--gold);
}

.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.founder-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.founder-cred {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(44, 53, 96, 0.1);
}

.founder-cred:first-child {
  border-top: 1px solid rgba(44, 53, 96, 0.1);
}

.cred-tag-box {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.5rem;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
}

.cred-detail-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}

.cred-detail-desc {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Operating Principles */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.principle-item {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.principle-item:nth-child(2n) {
  border-right: none;
}

.principle-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.principle-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.principle-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-height));
}

.contact-left {
  background: var(--navy-dark);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.contact-subtext {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 160, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.what-happens-next {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.whn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.whn-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.whn-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.whn-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 1px;
}

/* Contact Form */
.contact-right {
  background: var(--white);
  padding: 5rem 3rem;
}

.contact-form-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(44, 53, 96, 0.15);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 74, 74, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================
   ABOUT HERO IMAGE GALLERY
   ============================================ */
.about-image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 280px;
  overflow: hidden;
}

.about-strip-img {
  overflow: hidden;
  position: relative;
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-strip-img:hover img {
  transform: scale(1.05);
}

/* ============================================
   PHYSICAL PERFORMANCE (Mentoring)
   ============================================ */
.physical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.physical-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   CREDENTIALS BLOCKS (About Page)
   ============================================ */
.cred-blocks-section {
  background: var(--navy-dark);
  padding: 4rem 2rem;
}

.cred-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.cred-block {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}

.cred-block-acronym {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.cred-block-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cred-block-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.25s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.4s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid .offer-card:last-child { grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }
  .who-grid { gap: 3rem; }
  .service-detail-grid { gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > div:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(201,160,71,0.15);
  }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }

  .hero-headline { font-size: clamp(4.5rem, 10vw, 9rem); }
  .section { padding: 4rem 1.5rem; }

  .who-grid,
  .service-detail-grid,
  .testimonials-grid,
  .pricing-grid,
  .founder-grid,
  .mentor-grid,
  .mentoring-pillars,
  .physical-grid,
  .who-for-grid,
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .offers-grid .offer-card:last-child { grid-column: span 1; max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { padding: 3rem 1.5rem; }
  .contact-right { padding: 3rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner > div:first-child { grid-column: span 1; }

  .diagnostic-bar { flex-direction: column; align-items: flex-start; }

  .cred-blocks-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .about-image-strip { grid-template-columns: 1fr; height: 200px; }
  .about-image-strip .about-strip-img:nth-child(2),
  .about-image-strip .about-strip-img:nth-child(3) { display: none; }

  .page-hero { min-height: 45vh; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}
