/* ============================================
   BUYTURMERIX LANDING PAGE - STYLE.CSS
   Brand: Turmeric Wellness | Australian Made
   ============================================ */

/* ============================================
   CSS VARIABLES (Brand Colors & Typography)
   ============================================ */
:root {
  /* Brand Colors - Extracted from Brand Analysis */
  --color-primary-light: #ffffff;
  --color-secondary-light: #f8f8f8;
  --color-dark: #0f0f0f;
  --color-accent: #f58426; /* Vibrant Orange - Turmeric */
  --color-accent-hover: #d96f1a;
  --color-accent-safe: #c96a1c; /* Darkened for WCAG AA on white */
  --color-cta-green: #44af2f;
  --color-cta-green-hover: #3a9628;
  --color-muted: #6B6B6B;
  --color-white: #ffffff;
  --color-border: #e5e5e5;

  /* Typography - Montserrat throughout */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding-desktop: 96px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 64px;
  --container-max-width: 1200px;
  --container-padding: 24px;

  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-button: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-primary-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-default);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--color-muted);
}

.text-accent {
  color: var(--color-accent-safe);
  font-style: italic;
}

/* ============================================
   PROSE TEXT WIDTH FOR READABILITY
   750px ≈ 65-75 characters at body font size
   ============================================ */
.strategy-section p,
.subpage-content__intro p,
.content-area > p,
article p,
.email-preview__body p {
  max-width: 750px;
}

/* Center intro section content */
.subpage-content__intro {
  text-align: center;
}

.subpage-content__intro p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: Full width with horizontal padding */
@media (max-width: 768px) {
  .strategy-section p,
  .subpage-content__intro p,
  .content-area > p,
  article p,
  .email-preview__body p {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Reduce container padding on mobile for more content width */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

.section {
  padding: var(--section-padding-desktop) 0;
}

.section--light {
  background-color: var(--color-secondary-light);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ============================================
   NAVIGATION - MANDATORY V22 STYLES
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-default);
}

.nav--transparent {
  background: transparent;
}

.nav--transparent .nav__logo,
.nav--transparent .nav__cta {
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.nav--transparent .nav__logo {
  color: var(--color-white);
}

.nav--solid {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav--solid .nav__logo {
  color: var(--color-dark);
  text-shadow: none;
}

.nav--solid .nav__cta {
  text-shadow: none;
}

/* CRITICAL: This container ensures logo and CTA are edge-to-edge aligned */
.nav__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  padding-left: 48px;
  padding-right: 48px;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-default);
}

.nav__logo span {
  color: var(--color-accent-safe);
  font-style: italic;
}

.nav--transparent .nav__logo span {
  color: var(--color-white);
  opacity: 0.9;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 9999px;
  transition: var(--transition-default);
  min-height: 44px;
}

.nav__cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Three-layer overlay system */
.hero__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.30);
  z-index: 2;
}

.hero__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, transparent 100%);
  z-index: 3;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.40) 40%, transparent 70%);
  z-index: 4;
}

.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 24px 80px;
  padding-left: 48px;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero__title .text-accent {
  color: var(--color-white);
  font-style: italic;
  opacity: 0.95;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  border-radius: 9999px;
  box-shadow: var(--shadow-button);
  transition: var(--transition-default);
  min-height: 44px;
  margin-bottom: 32px;
}

.hero__cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,132,38,0.4);
}

/* Hero Pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-default);
  min-height: 44px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero__pill:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.hero__pill-icon {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-bottom: 16px;
}

.section__description {
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ============================================
   CONTENT PACKAGE CARDS (Section 3)
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.content-card {
  display: block;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.content-card--full {
  grid-column: 1 / -1;
}

.content-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-default);
}

.content-card:hover .content-card__image img {
  transform: scale(1.05);
}

.content-card__content {
  padding: 24px;
}

.content-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-safe);
  margin-bottom: 12px;
}

.content-card__label--inverted {
  background: var(--color-white);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--color-accent);
}

.content-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.content-card__excerpt {
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   TESTIMONIALS (Section 4)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.testimonial-card__author strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* ============================================
   CHALLENGE SECTION (Section 5)
   ============================================ */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.challenge-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.challenge-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-accent);
}

.challenge-card__label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.challenge-card__details {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ============================================
   PAID VS OWNED (Section 6)
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.comparison-card--featured {
  border: 2px solid var(--color-accent);
}

.comparison-card__badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.comparison-card__badge--muted {
  color: var(--color-muted);
}

.comparison-card__badge--accent {
  color: var(--color-accent-safe);
}

.comparison-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.comparison-card__list {
  list-style: none;
}

.comparison-card__list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-dark);
  line-height: 1.6;
}

.comparison-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ============================================
   CONTENT STRATEGY (Section 7)
   ============================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strategy-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.strategy-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.strategy-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.strategy-card__label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.strategy-card__description {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================
   AI DIFFERENCE (Section 8)
   ============================================ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.ai-card--featured {
  border: 2px solid var(--color-accent);
}

.ai-card__badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ai-card__badge--warning {
  color: #c0392b;
}

.ai-card__badge--accent {
  color: var(--color-accent-safe);
}

.ai-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.ai-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.ai-card__list {
  list-style: none;
}

.ai-card__list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-dark);
  line-height: 1.6;
}

.ai-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ============================================
   HOW IT WORKS (Section 9)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.process-card__number {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-dark);
}

.process-card__label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.process-card__description {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================
   PRICING (Section 10)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border: 2px solid var(--color-accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.pricing-card__tier {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-muted);
}

.pricing-card__promise {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-card__features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-dark);
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cta-green);
  font-weight: 700;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 9999px;
  transition: var(--transition-default);
  min-height: 44px;
}

.pricing-card__cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.pricing-card__details-toggle {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-secondary-light);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  margin-top: 16px;
  cursor: pointer;
  transition: var(--transition-default);
}

.pricing-card__details-toggle:hover {
  background: var(--color-border);
}

.pricing-card__details {
  display: none;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  margin-top: 24px;
}

.pricing-card__details.show {
  display: block;
}

.pricing-card__details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.pricing-card__details p,
.pricing-card__details li {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.pricing-card__details ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.pricing-trust {
  text-align: center;
  margin-top: 48px;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

/* ============================================
   TEAM (Section 11)
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition-default);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.team-card__role {
  font-size: 0.9375rem;
  color: var(--color-accent-safe);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-card__toggle {
  color: var(--color-accent-safe);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-default);
}

.team-card__toggle:hover {
  text-decoration: underline;
}

.team-card__full-bio {
  display: none;
  text-align: left;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  margin-top: 16px;
}

.team-card__full-bio.show {
  display: block;
}

.team-card__full-bio p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================================
   FAQ (Section 12)
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-default);
}

.faq-item__question:hover {
  color: var(--color-accent-safe);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-default);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding-bottom: 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* ============================================
   FINAL CTA (Section 13)
   ============================================ */
.final-cta {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.final-cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  border-radius: 9999px;
  transition: var(--transition-default);
  min-height: 44px;
}

.final-cta__button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER (Section 14)
   ============================================ */
.footer {
  background: var(--color-primary-light);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.footer__about {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--color-muted);
  transition: var(--transition-default);
}

.footer__links a:hover {
  color: var(--color-accent-safe);
}

.footer__chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-safe);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-default);
}

.footer__chat:hover {
  text-decoration: underline;
}

.footer__chat svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */
.subpage-header {
  background: var(--color-secondary-light);
  padding: 120px 0 64px;
}

.subpage-header__breadcrumb {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.subpage-header__breadcrumb a {
  color: var(--color-accent-safe);
}

.subpage-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.subpage-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-safe);
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
}

.subpage-header__back:hover {
  text-decoration: underline;
}

.subpage-content {
  padding: 64px 0;
}

/* ============================================
   FIX FOR INTRO BOX WIDTH
   ============================================ */

.subpage-content__intro {
  /* This overrides the old 900px limit so it fills the grid column */
  max-width: 100%;

  /* Optional: If you want the text inside to line up perfectly
     with the text below, you might want to reduce padding.
     Currently it has 40px padding. */
  box-sizing: border-box;
}

.subpage-content__intro h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.subpage-content__intro p {
  color: var(--color-muted);
  line-height: 1.7;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 24px;
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
}

.article-content p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  line-height: 1.7;
  margin-bottom: 12px;
}

.article-content ul li {
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

/* Strategy Page - Visual Identity */
.visual-identity {
  margin: 48px 0;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.color-swatch {
  text-align: center;
}

.color-swatch__block {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-swatch__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.color-swatch__hex {
  font-size: 12px;
  color: var(--color-muted);
  font-family: monospace;
}

.typography-samples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.typography-sample {
  background: var(--color-secondary-light);
  padding: 32px;
  border-radius: 12px;
}

.typography-sample__preview {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}

.typography-sample__name {
  font-size: 14px;
  color: var(--color-muted);
}

/* Email Page */
.email-preview {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.email-preview__header {
  background: var(--color-secondary-light);
  padding: 32px;
  border-bottom: 1px solid var(--color-border);
}

.email-preview__subject {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.email-preview__preheader {
  font-size: 14px;
  color: var(--color-muted);
}

.email-preview__body {
  padding: 40px;
  line-height: 1.8;
}

/* Social Page */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.social-post {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.social-post__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.social-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post__content {
  padding: 24px;
}

.social-post__type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent-safe);
  margin-bottom: 12px;
}

.social-post__caption {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark);
  white-space: pre-line;
}

.social-post__hashtags {
  margin-top: 16px;
  color: var(--color-accent-safe);
  font-size: 14px;
}

/* Calendar Page */
.calendar-intro {
  background: var(--color-secondary-light);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 48px;
  max-width: 900px;
}

.calendar-quarters {
  max-width: 900px;
  margin: 0 auto;
}

.calendar-quarter {
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.calendar-quarter__header {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 20px 24px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-quarter__icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-default);
}

.calendar-quarter.active .calendar-quarter__icon {
  transform: rotate(180deg);
}

.calendar-quarter__content {
  display: none;
  padding: 24px;
  background: var(--color-white);
}

.calendar-quarter.active .calendar-quarter__content {
  display: block;
}

.calendar-month {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.calendar-month:last-child {
  border-bottom: none;
}

.calendar-month__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.calendar-month__content {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Subpage CTA */
.subpage-cta {
  background: var(--color-secondary-light);
  padding: 64px 0;
  text-align: center;
}

.subpage-cta__title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.subpage-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  border-radius: 9999px;
  transition: var(--transition-default);
  min-height: 44px;
}

.subpage-cta__button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .section {
    padding: var(--section-padding-tablet) 0;
  }

  .nav__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .content-grid {
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .challenge-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    gap: 24px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .team-grid {
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .nav__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav__logo {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .nav__cta {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero__content {
    padding: 0 24px 100px;
  }

  .hero__pills {
    flex-direction: column;
    gap: 8px;
  }

  .hero__pill {
    width: 100%;
    justify-content: center;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: none;
  }

  .challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-card__photo {
    width: 150px;
    height: 150px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__about {
    max-width: none;
  }

  .typography-samples {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__header {
    margin-bottom: 40px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   NEW STRATEGY PAGE LAYOUT (Sidebar & Grid)
   ============================================ */

/* 1. The Layout Grid */
.layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr; /* Sidebar width | Content width */
  gap: 64px;
  align-items: start;
  position: relative;
}

/* 2. The Sticky Sidebar */
.sidebar {
  position: sticky;
  top: 100px; /* Sticks below the header */
  padding-right: 24px;
  border-right: 1px solid var(--color-border);
}

.sidebar__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc__link {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-muted);
  border-radius: 8px;
  transition: var(--transition-default);
}

.toc__link:hover {
  background-color: var(--color-secondary-light);
  color: var(--color-dark);
}

.toc__link.active {
  background-color: var(--color-secondary-light);
  color: var(--color-accent);
  font-weight: 600;
}

/* 3. Content Area Adjustments */
.content-area {
  min-width: 0; /* Prevents grid blowout */
}

.strategy-section {
  scroll-margin-top: 120px; /* offsets scroll so header doesn't cover title */
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--color-border);
}

.strategy-section:last-child {
  border-bottom: none;
}

/* 4. New "Visual Identity" Cards */
.identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.identity-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.identity-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: var(--transition-default);
}

.identity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.identity-card__preview {
  height: 100px;
  width: 100%;
}

.identity-card__type-preview {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary-light);
  font-size: 48px;
  color: var(--color-dark);
}

.identity-card__info {
  padding: 16px;
}

.identity-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.identity-card__hex {
  font-size: 12px;
  color: var(--color-muted);
  font-family: monospace;
}

.identity-card__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--color-secondary-light);
  border-radius: 4px;
  color: var(--color-muted);
  font-weight: 600;
}

/* 5. Territory Cards & Segments */
.territory-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.territory-card {
  background: var(--color-secondary-light);
  padding: 24px;
  border-radius: 12px;
}

.customer-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.customer-segment {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: 12px;
}

.customer-segment h4 {
  color: var(--color-accent);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.customer-segment p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* 6. List Styling */
.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.styled-list li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 7. Responsive Fixes */
@media (max-width: 900px) {
  .layout-grid {
    grid-template-columns: 1fr; /* Stack sidebar and content */
    gap: 32px;
  }

  .sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    padding-right: 0;
  }

  .toc {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .toc__link {
    white-space: nowrap;
    border: 1px solid var(--color-border);
  }

  .customer-segments {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SYMMETRIC WIDE LAYOUT (UPDATED)
   ============================================ */

/* 1. Container: Let it span almost the full width */
.container--wide {
  width: 100%;
  max-width: 96vw; /* Uses 96% of the screen */
  padding: 0;      /* Remove padding so we can control exact spacing via grid */
  margin: 0 auto;
}

/* 2. The Balanced Grid */
.layout-grid {
  display: grid;
  /* Col 1: 260px (Sidebar)
     Col 2: 1fr (Content - takes up all remaining space)
     Col 3: 260px (Empty "Phantom" column to balance the right side)
  */
  grid-template-columns: 260px 1fr 260px;
  gap: 80px; /* This adds 80px gap on BOTH sides of the text */
  align-items: start;
}

/* 3. Responsive Safety Check */
/* On smaller laptops, we drop the phantom column so text doesn't get squashed */
@media (max-width: 1300px) {
  .layout-grid {
    grid-template-columns: 260px 1fr; /* Reverts to 2 columns */
    padding-right: 40px; /* Adds a normal margin on the right */
  }
}

/* 4. Mobile Layout (Already in your code, but good to ensure) */
@media (max-width: 900px) {
  .layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}

/* ============================================
   INCREASE HEADER SPACING
   ============================================ */

/* 1. Fix spacing for the "Market Positioning" gray box */
.subpage-content__intro h2 {
  margin-bottom: 48px !important; /* Forces more space before the paragraph starts */
}

/* 2. Fix spacing for all other sections (Core Identity, Visuals, etc.) */
.strategy-section h2 {
  margin-bottom: 48px; /* Doubles the space between Title and Content */
}

/* ============================================
   AESTHETIC UPGRADE (Dark Mode & Polish)
   ============================================ */

/* 1. New Variables & Global Polish */
:root {
  --color-dark-bg: #1a1a1a;
  --color-charcoal: #2d2d2d;
  --color-gray-bg: #f8f8f8;
  --color-orange: #f58426;
  --color-text-light: #ffffff;
  --shadow-elevated: 0 10px 40px -10px rgba(0,0,0,0.15);
  --shadow-subtle: 0 4px 20px rgba(0,0,0,0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* 2. Redesigned Hero Section (Dark) */
.subpage-header {
  background-color: var(--color-dark-bg);
  /* Subtle gradient overlay for interest */
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-text-light);
  padding: 140px 0 100px; /* Increased vertical padding */
  text-align: center;
  margin-bottom: 0; /* Removing old margin */
}

.subpage-header__title {
  color: var(--color-text-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.subpage-header__breadcrumb {
  color: rgba(255,255,255,0.6);
}

.subpage-header__breadcrumb a {
  color: var(--color-orange);
}

.subpage-header__back {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--color-orange);
  margin-top: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.subpage-header__back:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

/* 3. Modernized Sidebar */
.sidebar {
  top: 40px;
  z-index: 100;
}

.sidebar__inner {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0,0,0,0.05);
}

.sidebar__title {
  font-size: 11px;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.toc__link {
  border-radius: 6px;
  margin-bottom: 4px;
  border-left: 2px solid transparent;
  color: var(--color-muted);
}

.toc__link:hover {
  background-color: var(--color-gray-bg);
  color: var(--color-orange);
}

.toc__link.active {
  background-color: rgba(245, 132, 38, 0.1); /* Light orange bg */
  color: var(--color-orange);
  border-left-color: var(--color-orange);
  font-weight: 600;
}

/* 4. Content Panels (The "Alternating" Logic) */
/* Instead of full browser stripes, we use high-end panels inside the grid */

.strategy-section {
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

/* BEM modifier: removes card styling for natural text flow */
.strategy-section--no-card {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  border: none;
  padding: 32px 0 !important; /* !important to override mobile media query */
}

.strategy-section--no-card p {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0 !important;  /* Override mobile paragraph padding */
  padding-right: 0 !important;
}

/* Theme: White */
.theme-white {
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
  border-color: rgba(0,0,0,0.03);
}

/* Theme: Light Gray */
.theme-gray {
  background-color: var(--color-gray-bg);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Theme: Dark Mode */
.theme-dark {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  background-image: linear-gradient(to bottom right, #1a1a1a, #252525);
  box-shadow: var(--shadow-elevated);
}

.theme-dark h2,
.theme-dark h3,
.theme-dark p,
.theme-dark li,
.theme-dark strong {
  color: var(--color-text-light);
}

.theme-dark .styled-list li::before {
  color: var(--color-orange); /* Ensure bullets pop */
}

/* 5. Enhanced Card Styling */
.identity-card,
.territory-card,
.customer-segment {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white; /* Default bg */
}

/* Hover Effects */
.identity-card:hover,
.territory-card:hover,
.customer-segment:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Specific Card Tweaks */
.territory-card h4,
.customer-segment h4 {
  color: var(--color-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.customer-segment {
  position: relative;
  padding-top: 40px; /* Space for badge */
}

.segment-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(245, 132, 38, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Dark Theme overrides for cards inside dark sections */
.theme-dark .identity-card,
.theme-dark .territory-card {
  background: rgba(255,255,255,0.05); /* Glassmorphism effect */
  border: 1px solid rgba(255,255,255,0.1);
}

.theme-dark .territory-card h4 { color: white; }
.theme-dark .territory-card p { color: rgba(255,255,255,0.8); }

/* 6. Typography Refinements */
.strategy-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* Subtle orange underline for headings */
.strategy-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-orange);
  margin-top: 16px;
  border-radius: 2px;
}

.strategy-section p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #555;
}

.theme-dark p {
  color: rgba(255,255,255,0.85);
}

/* 7. Footer CTA Upgrade */
.subpage-cta {
  background: var(--color-dark-bg);
  color: white;
  padding: 100px 0;
  margin-top: 80px;
}

.subpage-cta__title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.subpage-cta__button {
  background: var(--color-orange);
  padding: 20px 48px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(245, 132, 38, 0.4); /* Orange glow */
}

.subpage-cta__button:hover {
  transform: translateY(-4px) scale(1.02);
  background: #ff9d4d;
}

/* 8. Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 9. Responsive Adjustments for Panels */
@media (max-width: 768px) {
  .strategy-section {
    padding: 40px 24px;
  }

  .strategy-section h2 {
    font-size: 1.75rem;  /* Reduced from 2.5rem for mobile */
  }

  .subpage-header {
    padding: 100px 0 60px;
  }

  .subpage-header__title {
    font-size: 2.5rem;
  }
}

/* ============================================
   EMAIL SIMULATOR STYLES (UPDATED V2)
   ============================================ */

.email-simulator {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.email-simulator__image img {
  width: 100%;
  height: auto;
  display: block;
}

.email-simulator__body {
  padding: 48px;
  color: #333;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Mobile Readability Fix */
@media (max-width: 600px) {
  .email-simulator__body {
    padding: 24px;
  }
}

.email-heading {
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.email-simulator__body p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #4a4a4a;
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0 !important;  /* Override mobile paragraph padding */
  padding-right: 0 !important;
}

.email-cta-container {
  text-align: center;
  margin: 48px 0 24px;
}

.email-cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  transition: opacity 0.3s;
}

.email-cta-button:hover {
  opacity: 0.9;
}

.email-simulator__footer {
  background: #f5f5f5;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #eee;
}

.email-simulator__footer p {
  text-align: center;
  max-width: 100%;
  margin: 0;
}

/* ============================================
   EDITORIAL / BLOG PAGE STYLES
   ============================================ */

/* 1. Narrow Container for Readability */
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* 2. Editorial Hero Section */
.editorial-hero {
  position: relative;
  /* Using the updated relative path provided */
  background-image: url('../images/buyturmerix_blog_post_img76_v1.png');
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  color: white;
  text-align: center;
}

/* Dark overlay to make text pop against the image */
.editorial-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  z-index: 1;
}

.editorial-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.editorial-hero__breadcrumb {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.editorial-hero__breadcrumb a {
  color: white;
  font-weight: 600;
}

.editorial-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Orange Accent Line under Title */
.editorial-hero__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 24px auto 0;
  border-radius: 2px;
}

/* 3. Metadata Pills */
.editorial-hero__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

/* 4. Strategic Intro Card (Callout) */
.intro-card {
  display: flex;
  gap: 24px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 32px;
  margin-top: -40px; /* Overlap effect */
  margin-bottom: 64px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.intro-card__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  background: rgba(245, 132, 38, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-card__content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.intro-card__content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   EDITORIAL INTRO - SIMPLE STYLE (Newsletter Match)
   ============================================ */
.editorial-intro {
  margin-bottom: 64px;
  max-width: 100%;
}

.editorial-intro h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

/* Orange underline accent (matches Newsletter) */
.editorial-intro h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin-top: 16px;
  border-radius: 2px;
}

.editorial-intro p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.editorial-intro p:last-child {
  margin-bottom: 0;
}

/* 5. Article Typography */
.article-body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2c2c2c;
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  /* Subtle card styling */
  background: #fafafa;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.article-body p {
  margin-bottom: 32px;
}

/* Drop Cap for first letter */
.drop-cap::first-letter {
  float: left;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.5rem;
  line-height: 0.8;
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 12px;
  margin-top: 8px;
}

.article-body h2 {
  font-family: var(--font-display); /* Back to Sans-Serif for headings */
  font-size: 2rem;
  font-weight: 700;
  margin-top: 64px;
  margin-bottom: 24px;
  color: var(--color-dark);
  position: relative;
  padding-left: 20px;
}

/* Orange accent square before H2 */
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  height: 24px;
  width: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Pull Quote Styling */
.pull-quote {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-dark);
  border-left: 4px solid var(--color-accent);
  padding-left: 32px;
  margin: 48px 0;
  line-height: 1.4;
  background: #fffbf6; /* Very subtle orange tint */
  padding: 32px;
  border-radius: 0 8px 8px 0;
}

/* 6. CTA Button in Article */
.article-cta-container {
  margin-top: 64px;
  text-align: center;
}

.article-cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(245, 132, 38, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 132, 38, 0.4);
}

/* 7. Divider */
.section-divider {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 80px 0;
}

/* 8. Technical Specs Card (Metadata) */
.tech-specs {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.tech-specs:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tech-specs__header h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

.tech-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-item--full {
  grid-column: 1 / -1;
}

.spec-item__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.spec-item__value {
  font-size: 14px;
  color: var(--color-dark);
  font-weight: 500;
}

/* 9. Related Teaser */
.related-teaser {
  text-align: center;
  margin-top: 48px;
  color: var(--color-muted);
  font-style: italic;
  font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .editorial-hero {
    padding: 120px 0 80px;
  }

  .intro-card {
    flex-direction: column;
    margin-top: 0;
  }

  .editorial-intro {
    margin-bottom: 48px;
  }

  .editorial-intro h2 {
    font-size: 1.5rem;
  }

  .editorial-intro h2::after {
    width: 50px;
  }

  .pull-quote {
    font-size: 1.2rem;
    padding: 24px;
  }

  .tech-specs__grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 24px;
  }
}

/* ============================================
   CALENDAR PAGE STYLES
   ============================================ */

/* 1. Calendar Hero (Dark with Pattern) */
.calendar-hero {
  position: relative;
  background-color: #1a1a1a;
  /* Dark Gradient + Subtle Grid Pattern */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  padding: 160px 0 100px;
  color: white;
  text-align: center;
}

.calendar-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.calendar-hero__breadcrumb {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.calendar-hero__breadcrumb a {
  color: var(--color-accent);
}

.calendar-hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.calendar-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* 2. Intro Card (Callout) - Reusing style from Editorial */
.intro-card {
  display: flex;
  gap: 24px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 32px;
  margin-top: -40px; /* Overlap effect */
  margin-bottom: 64px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.intro-card__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  background: rgba(245, 132, 38, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Accordion Styling */
.calendar-quarters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.calendar-quarter {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.calendar-quarter.active {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: rgba(245, 132, 38, 0.3);
}

.calendar-quarter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: white;
  cursor: pointer;
  transition: background 0.2s;
}

.calendar-quarter__header:hover {
  background: #fcfcfc;
}

/* Seasonal Quarter Colors (Optional Header Tint) */
.calendar-quarter.active .calendar-quarter__header {
  background: #fffbf6; /* Very subtle orange tint */
  color: var(--color-accent);
}

.quarter-label {
  font-size: 1.25rem;
  font-weight: 600;
}

.calendar-quarter__chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: #ccc;
}

.calendar-quarter.active .calendar-quarter__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.calendar-quarter__content {
  display: block !important; /* Override old display:none */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
  background: #fafafa;
  padding: 0 32px; /* Collapsed padding */
}

.calendar-quarter.active .calendar-quarter__content {
  max-height: 2000px; /* Arbitrary large height for CSS transition */
  padding: 32px;
}

/* 4. Month Cards */
.month-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.month-card:last-child {
  margin-bottom: 0;
}

/* Orange left border for month cards */
.month-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: var(--color-accent);
  border-radius: 0 4px 4px 0;
}

.month-card__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-left: 16px; /* Offset for the orange border */
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
}

.month-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
}

.month-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* 5. Month Details Grid */
.month-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding-left: 16px;
}

.detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon-wrapper svg {
  width: 18px;
  height: 18px;
}

/* Color coding specific icons */
.detail-icon-wrapper.theme { background: #e3f2fd; color: #1976d2; }
.detail-icon-wrapper.focus { background: #f3e5f5; color: #7b1fa2; }
.detail-icon-wrapper.campaign { background: #e8f5e9; color: #388e3c; }

.detail-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  margin-bottom: 4px;
}

/* ============================================
   STATIC CALENDAR (No Accordion)
   ============================================ */
.calendar-quarter--static {
  margin-bottom: 32px;
  border: none;
  border-radius: 0;
  background: transparent;
}

.calendar-quarter--static .calendar-quarter__header {
  cursor: default;
  background: var(--color-dark);
  color: white;
  padding: 20px 32px;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

.calendar-quarter--static .calendar-quarter__header:hover {
  background: var(--color-dark);
}

.calendar-quarter--static .calendar-quarter__content {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 24px;
  background: #fafafa;
  border-radius: 0 0 12px 12px;
  border: 1px solid #eee;
  border-top: none;
}

/* Responsive */
@media (max-width: 768px) {
  .month-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar-hero__title {
    flex-direction: column;
  }
}