/*
Theme Name: Bharat Patel - GTM Consultant
Theme URI: https://bharatpatel.com
Author: Bharat Patel
Author URI: https://bharatpatel.com
Description: Custom WordPress theme for Bharat Patel — GTM & Revenue Architect. HubSpot-inspired design with conversion-focused layouts for B2B consulting.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: developer-bp
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES — HubSpot-Inspired Brand System
   ========================================================================== */

:root {
  /* Primary Palette */
  --color-primary: #FF5C35;
  --color-primary-hover: #E84E2A;
  --color-primary-light: #FFF0EC;
  --color-primary-gradient: linear-gradient(135deg, #FF5C35 0%, #FF7A57 100%);

  /* Navy / Authority */
  --color-navy: #0B192C;
  --color-navy-light: #112240;
  --color-navy-lighter: #1A3050;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-cloud: #F6F9FC;
  --color-cloud-alt: #EEF2F7;
  --color-slate: #425B76;
  --color-slate-light: #64748B;
  --color-slate-lighter: #94A3B8;
  --color-border: #E2E8F0;

  /* Accents */
  --color-success: #10B981;
  --color-info: #3B82F6;

  /* Typography */
  --font-heading: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes — Fluid */
  --fs-hero: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-section: clamp(60px, 8vw, 80px);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 25, 44, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 8px 30px rgba(11, 25, 44, 0.12);
  --shadow-xl: 0 20px 60px rgba(11, 25, 44, 0.15);
  --shadow-card: 0 2px 8px rgba(11, 25, 44, 0.06), 0 0 1px rgba(11, 25, 44, 0.1);
  --shadow-card-hover: 0 12px 40px rgba(11, 25, 44, 0.12), 0 0 1px rgba(11, 25, 44, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-slate);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   LAYOUT — CONTAINERS
   ========================================================================== */

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

.bp-container--narrow {
  max-width: var(--container-narrow);
}

.bp-container--wide {
  max-width: var(--container-wide);
}

.bp-section {
  padding: var(--space-section) 0;
}

.bp-section--cloud {
  background-color: var(--color-cloud);
}

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

.bp-section--navy h2,
.bp-section--navy h3 {
  color: var(--color-white);
}

.bp-section--gradient {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cloud) 100%);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.bp-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.bp-btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 92, 53, 0.35);
}

.bp-btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}

.bp-btn--ghost:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.bp-btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.bp-btn--white:hover {
  background: var(--color-cloud);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bp-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-small);
}

.bp-btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--fs-body-lg);
}

/* Pulse animation for primary CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 53, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 92, 53, 0); }
}

.bp-btn--pulse {
  animation: pulse-glow 2.5s infinite;
}

.bp-btn--pulse:hover {
  animation: none;
}

/* ==========================================================================
   HEADER — LOCKED GLOBAL
   ========================================================================== */

.bp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.bp-header.scrolled {
  box-shadow: var(--shadow-md);
}

.bp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.bp-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.bp-header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}

.bp-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-navy);
}

.bp-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.bp-header__nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

.bp-header__nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-slate);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}

.bp-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.bp-header__nav-link:hover,
.bp-header__nav-link.active {
  color: var(--color-navy);
}

.bp-header__nav-link:hover::after,
.bp-header__nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.bp-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bp-header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.bp-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.bp-header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.bp-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.bp-hero {
  padding: clamp(80px, 12vw, 140px) 0 var(--space-section);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cloud) 50%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.bp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.bp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.bp-hero__title {
  font-size: var(--fs-hero);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.bp-hero__title span {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bp-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-slate);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.7;
}

.bp-hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.bp-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bp-hero__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.bp-hero__stat {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.bp-hero__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.bp-hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1.1;
}

.bp-hero__stat-label {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
  margin-top: 0.25rem;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.bp-trust {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.bp-trust__label {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-slate-lighter);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.bp-trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
}

.bp-trust__logos img {
  height: 32px;
  width: auto;
}

.bp-trust__awards {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.bp-trust__award {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--color-slate-light);
}

.bp-trust__award svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

.bp-services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.bp-services__header p {
  color: var(--color-slate-light);
  margin-top: var(--space-sm);
}

.bp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bp-service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.bp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.bp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.bp-service-card:hover::before {
  transform: scaleX(1);
}

.bp-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.bp-service-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.bp-service-card__desc {
  color: var(--color-slate-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.bp-service-card__link {
  font-weight: 600;
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-primary);
}

.bp-service-card__link svg {
  transition: transform var(--transition-fast);
}

.bp-service-card:hover .bp-service-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT / CONSULTANT SECTION
   ========================================================================== */

.bp-about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
}

.bp-about__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.bp-about__title {
  margin-bottom: var(--space-md);
}

.bp-about__bio {
  color: var(--color-slate);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.bp-about__achievements {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.bp-about__achievements li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-slate);
}

.bp-about__achievements li svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.bp-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.bp-about__stat {
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.bp-about__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-navy);
  display: block;
  line-height: 1.1;
}

.bp-about__stat-label {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
  margin-top: 0.25rem;
  display: block;
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */

.bp-cases__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.bp-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bp-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.bp-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.bp-case-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-cloud);
}

.bp-case-card__body {
  padding: var(--space-lg);
}

.bp-case-card__tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bp-case-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.bp-case-card__metric {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.bp-case-card__metric-label {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
  margin-bottom: var(--space-md);
}

.bp-case-card__link {
  font-weight: 600;
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* Single Case Study */
.bp-case-single {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
}

.bp-case-single__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.bp-case-single__info-card {
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.bp-case-single__info-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.bp-case-single__info-item:last-child {
  border-bottom: none;
}

.bp-case-single__info-label {
  font-size: var(--fs-xs);
  color: var(--color-slate-lighter);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.bp-case-single__info-value {
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 0.125rem;
}

.bp-case-single__results {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-md);
  color: var(--color-white);
}

.bp-case-single__results h4 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h4);
}

.bp-case-single__result-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-xs) 0;
}

.bp-case-single__result-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--color-primary);
}

.bp-case-single__result-label {
  font-size: var(--fs-small);
  color: var(--color-slate-lighter);
}

/* Case Study Filters */
.bp-cases__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.bp-cases__filter {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-slate);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bp-cases__filter:hover,
.bp-cases__filter.active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* ==========================================================================
   BLOG
   ========================================================================== */

.bp-blog__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.bp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bp-post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.bp-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.bp-post-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-cloud);
}

.bp-post-card__body {
  padding: var(--space-lg);
}

.bp-post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.bp-post-card__category {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bp-post-card__date {
  font-size: var(--fs-xs);
  color: var(--color-slate-lighter);
}

.bp-post-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.bp-post-card__title a {
  color: var(--color-navy);
  text-decoration: none;
}

.bp-post-card__title a:hover {
  color: var(--color-primary);
}

.bp-post-card__excerpt {
  color: var(--color-slate-light);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* Single Blog Post */
.bp-single {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
}

.bp-single__content {
  max-width: 100%;
}

.bp-single__breadcrumb {
  font-size: var(--fs-small);
  color: var(--color-slate-lighter);
  margin-bottom: var(--space-lg);
}

.bp-single__breadcrumb a {
  color: var(--color-slate-light);
}

.bp-single__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-slate-light);
  font-size: var(--fs-small);
}

.bp-single__reading-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Article Content */
.bp-article h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.bp-article h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.bp-article p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.bp-article ul, .bp-article ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.bp-article li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.bp-article blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-cloud);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-navy);
}

/* Author Bio Box */
.bp-author-box {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
}

.bp-author-box__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-primary-light);
}

.bp-author-box__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.bp-author-box__title {
  font-size: var(--fs-small);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bp-author-box__bio {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
  line-height: 1.7;
}

/* Sidebar */
.bp-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.bp-sidebar__cta {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  text-align: center;
}

.bp-sidebar__cta h4 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.bp-sidebar__cta p {
  font-size: var(--fs-small);
  color: var(--color-slate-lighter);
  margin-bottom: var(--space-md);
}

.bp-sidebar__newsletter {
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-md);
}

.bp-sidebar__newsletter h4 {
  margin-bottom: 0.5rem;
}

.bp-sidebar__newsletter p {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
  margin-bottom: var(--space-sm);
}

.bp-sidebar__newsletter input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
}

.bp-sidebar__newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}

/* ==========================================================================
   CTA STRIP — Global
   ========================================================================== */

.bp-cta-strip {
  background: var(--color-navy);
  padding: var(--space-2xl) 0;
}

.bp-cta-strip__inner {
  text-align: center;
}

.bp-cta-strip__title {
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.bp-cta-strip__subtitle {
  color: var(--color-slate-lighter);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body-lg);
}

/* ==========================================================================
   AUDIT LANDING PAGE
   ========================================================================== */

.bp-audit-hero {
  padding: clamp(80px, 10vw, 120px) 0 var(--space-section);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
}

.bp-audit-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.bp-audit-hero__title {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.bp-audit-hero__title span {
  color: var(--color-primary);
}

.bp-audit__value-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

.bp-audit__value-stack li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-xs) 0;
  color: var(--color-cloud);
}

.bp-audit__value-stack li strong {
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.bp-audit__form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.bp-audit__form-card h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.bp-form-group {
  margin-bottom: var(--space-md);
}

.bp-form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.375rem;
}

.bp-form-group input,
.bp-form-group select,
.bp-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-navy);
  transition: border-color var(--transition-fast);
}

.bp-form-group input:focus,
.bp-form-group select:focus,
.bp-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}

/* Process Steps */
.bp-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.bp-process__step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.bp-process__step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto var(--space-md);
}

.bp-process__step h4 {
  margin-bottom: 0.5rem;
}

.bp-process__step p {
  font-size: var(--fs-small);
  color: var(--color-slate-light);
}

/* FAQ Accordion */
.bp-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.bp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  transition: background var(--transition-fast);
}

.bp-faq__question:hover {
  background: var(--color-cloud);
}

.bp-faq__question svg {
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.bp-faq__item.active .bp-faq__question svg {
  transform: rotate(180deg);
}

.bp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.bp-faq__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-slate);
  line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.bp-testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.bp-testimonial__quote {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--color-navy);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.bp-testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-primary);
  line-height: 0;
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  opacity: 0.2;
}

.bp-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bp-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-cloud);
}

.bp-testimonial__name {
  font-weight: 600;
  color: var(--color-navy);
  font-size: var(--fs-small);
}

.bp-testimonial__role {
  font-size: var(--fs-xs);
  color: var(--color-slate-lighter);
}

/* ==========================================================================
   FOOTER — LOCKED GLOBAL
   ========================================================================== */

.bp-footer {
  background: var(--color-navy);
  color: var(--color-slate-lighter);
  padding: var(--space-2xl) 0 0;
}

.bp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-navy-lighter);
}

.bp-footer__brand p {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 280px;
}

.bp-footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.bp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-footer__links li {
  margin-bottom: 0.75rem;
}

.bp-footer__links a {
  color: var(--color-slate-lighter);
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

.bp-footer__links a:hover {
  color: var(--color-white);
}

.bp-footer__newsletter p {
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.bp-footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.bp-footer__newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-navy-lighter);
  border-radius: var(--radius-sm);
  background: var(--color-navy-light);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
}

.bp-footer__newsletter-form input::placeholder {
  color: var(--color-slate-lighter);
}

.bp-footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.bp-footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.bp-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-lighter);
  transition: all var(--transition-fast);
}

.bp-footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.bp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: var(--fs-xs);
}

.bp-footer__bottom a {
  color: var(--color-slate-lighter);
}

.bp-footer__bottom a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVE — MOBILE FIRST
   ========================================================================== */

@media (max-width: 1024px) {
  .bp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bp-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .bp-hero__actions {
    justify-content: center;
  }

  .bp-hero__visual {
    order: -1;
  }

  .bp-hero__stats-grid {
    max-width: 400px;
    margin: 0 auto;
  }

  .bp-services__grid,
  .bp-cases__grid,
  .bp-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-about__inner {
    grid-template-columns: 1fr;
  }

  .bp-audit-hero__inner {
    grid-template-columns: 1fr;
  }

  .bp-single,
  .bp-case-single {
    grid-template-columns: 1fr;
  }

  .bp-sidebar,
  .bp-case-single__sidebar {
    position: static;
  }

  .bp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bp-header__nav-list {
    display: none;
  }

  .bp-header__toggle {
    display: flex;
  }

  /* Mobile Menu */
  .bp-header__nav.mobile-open .bp-header__nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    gap: 0;
    z-index: 999;
    border-top: 1px solid var(--color-border);
  }

  .bp-header__nav.mobile-open .bp-header__nav-list li {
    border-bottom: 1px solid var(--color-border);
  }

  .bp-header__nav.mobile-open .bp-header__nav-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--fs-body);
  }

  .bp-header__nav .bp-btn {
    display: none;
  }

  .bp-header__nav.mobile-open .bp-btn {
    display: flex;
    margin-top: var(--space-md);
    width: 100%;
    justify-content: center;
  }

  .bp-services__grid,
  .bp-cases__grid,
  .bp-blog__grid,
  .bp-process__steps {
    grid-template-columns: 1fr;
  }

  .bp-hero__stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bp-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .bp-footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bp-hero__stats-grid {
    grid-template-columns: 1fr;
  }

  .bp-about__stats {
    grid-template-columns: 1fr;
  }
}
