/* ==========================================================================
   LadyBugz Marketing - Main Stylesheet
   ladybugzmarketing.co.za
   B2B Organic LinkedIn Marketing Agency - South Africa

   Brand Colours:
     Primary Red:  #cd1719
     Teal:         #146464
     Grey:         #bcbcb4
     Black:        #1a1a1a
     White:        #ffffff

   Font: Open Sans (Google Fonts) - 400, 600, 700, 800
   ========================================================================== */


/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --red: #cd1719;
  --red-dark: #a81214;
  --red-light: #e8393b;
  --teal: #146464;
  --teal-dark: #0e4a4a;
  --teal-light: #1a8282;
  --grey: #bcbcb4;
  --grey-light: #f5f5f3;
  --grey-mid: #e8e8e4;
  --black: #1a1a1a;
  --black-light: #2d2d2d;
  --white: #ffffff;
  --off-white: #fafafa;

  /* Semantic */
  --text: var(--black);
  --text-light: #555;
  --text-muted: #777;
  --border: #e0e0dc;
  --success: #2e7d32;
  --error: var(--red);

  /* Typography */
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --narrow-width: 800px;
  --wide-width: 1400px;
  --header-height: 72px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.4s ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-header: 1000;
  --z-overlay: 1500;
  --z-modal: 2000;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-red { color: var(--red); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-muted); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--red), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(205, 23, 25, 0.3);
}

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

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(20, 100, 100, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--grey-light);
  color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Pulse animation for primary CTAs */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(205, 23, 25, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(205, 23, 25, 0); }
  100% { box-shadow: 0 0 0 0 rgba(205, 23, 25, 0); }
}

.btn-pulse {
  animation: pulse 2s infinite;
}


/* --------------------------------------------------------------------------
   HEADER (Sticky, Dark Background)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--wide-width);
  width: 90%;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo span {
  color: var(--red);
}

.logo:hover {
  color: var(--white);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a,
.nav-dropdown-toggle {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-toggle:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active {
  color: var(--red-light);
}

/* Dropdown for Services */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 0.5rem 0;
  z-index: var(--z-dropdown);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--grey-light);
  color: var(--red);
  padding-left: 1.5rem;
}

/* Header CTA */
.header-cta {
  margin-left: 1rem;
}

.header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: calc(var(--z-header) + 1);
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

/* Nav overlay for mobile */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-header) - 1);
}

.nav-overlay.active {
  display: block;
}


/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 100, 100, 0.2) 0%, rgba(205, 23, 25, 0.15) 100%);
  z-index: 1;
}

/* Gradient hero variations */
.hero--gradient-teal {
  background: linear-gradient(135deg, var(--black) 0%, var(--teal-dark) 50%, var(--teal) 100%);
}

.hero--gradient-red {
  background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 50%, var(--red) 100%);
}

.hero--gradient-mixed {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, var(--red-dark) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(205, 23, 25, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(20, 100, 100, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--red-light);
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 560px;
}

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

/* Hero split layout (text + image) */
.hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* --------------------------------------------------------------------------
   SECTIONS (Alternating Backgrounds)
   -------------------------------------------------------------------------- */
section {
  padding: 5rem 0;
}

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

.section-grey {
  background: var(--grey-light);
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}

.section-teal .section-header p,
.section-red .section-header p,
.section-black .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.section-teal h2,
.section-teal h3,
.section-teal h4,
.section-red h2,
.section-red h3,
.section-red h4,
.section-black h2,
.section-black h3,
.section-black h4 {
  color: var(--white);
}


/* --------------------------------------------------------------------------
   SERVICE CARDS GRID
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--grey-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--teal);
  transition: all var(--transition);
}

.service-card:hover .icon {
  background: var(--teal);
  color: var(--white);
}

.service-card .icon--red {
  background: rgba(205, 23, 25, 0.08);
  color: var(--red);
}

.service-card:hover .icon--red {
  background: var(--red);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.93rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.service-card .card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.service-card .card-link:hover {
  gap: 0.6rem;
  color: var(--red-dark);
}

/* Dark background cards */
.section-black .service-card {
  background: var(--black-light);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-black .service-card h3 {
  color: var(--white);
}

.section-black .service-card p {
  color: rgba(255, 255, 255, 0.7);
}


/* --------------------------------------------------------------------------
   TWO-COLUMN LAYOUT
   -------------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__content h2 {
  margin-bottom: 1rem;
}

.two-col__content h3 {
  margin-bottom: 0.75rem;
}

.two-col__content p {
  color: var(--text-light);
  line-height: 1.7;
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --------------------------------------------------------------------------
   BENEFITS LIST (CHECKMARKS)
   -------------------------------------------------------------------------- */
.benefits-list {
  margin: 1.5rem 0;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.benefits-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.benefits-list--red li::before {
  background: var(--red);
}

.benefits-list--two-col {
  columns: 2;
  column-gap: 2rem;
}

.benefits-list--two-col li {
  break-inside: avoid;
}

/* On dark backgrounds */
.section-black .benefits-list li,
.section-teal .benefits-list li {
  color: rgba(255, 255, 255, 0.9);
}


/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: var(--narrow-width);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  line-height: 1.4;
}

.faq-question:hover {
  background: var(--grey-light);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.faq-item.active .faq-question {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  color: var(--teal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.faq-answer__inner a {
  color: var(--teal);
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   BLOG / ARTICLE CARDS GRID
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__title a {
  color: var(--black);
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--red);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card__read-more {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  transition: gap var(--transition-fast);
}

.blog-card__read-more:hover {
  gap: 0.6rem;
  color: var(--red-dark);
}


/* --------------------------------------------------------------------------
   ARTICLE SINGLE PAGE
   -------------------------------------------------------------------------- */
.article {
  padding: 4rem 0;
}

.article__header {
  max-width: var(--narrow-width);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.article__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.article__title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article__meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.article__featured-image {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article__featured-image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* Prose body */
.article__body {
  max-width: var(--narrow-width);
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.article__body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article__body h3 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article__body p {
  margin-bottom: 1.25rem;
}

.article__body ul,
.article__body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article__body ul {
  list-style: disc;
}

.article__body ol {
  list-style: decimal;
}

.article__body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.article__body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--red);
  background: var(--grey-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

.article__body img {
  border-radius: var(--radius);
  margin: 2rem 0;
}

.article__body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article__body a:hover {
  color: var(--red);
}

.article__body code {
  background: var(--grey-light);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.article__body pre {
  background: var(--black);
  color: var(--grey-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 2rem 0;
}

.article__body pre code {
  background: none;
  padding: 0;
  font-size: 0.9rem;
}

/* Article footer (tags, share) */
.article__footer {
  max-width: var(--narrow-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--grey-light);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.article__tag:hover {
  background: var(--teal);
  color: var(--white);
}


/* --------------------------------------------------------------------------
   CTA BANNER (Gradient)
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--teal) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* CTA variants */
.cta-banner--teal {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
}

.cta-banner--dark {
  background: linear-gradient(135deg, #111 0%, var(--black) 50%, var(--black-light) 100%);
}


/* --------------------------------------------------------------------------
   CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-detail .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(20, 100, 100, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}

.contact-detail p {
  margin: 0;
  font-size: 0.93rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--black);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--black);
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--grey-mid);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 100, 100, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23555' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.25rem;
}

.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: var(--error);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   FOOTER (4 Columns, Dark)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}


/* --------------------------------------------------------------------------
   TESTIMONIALS / SOCIAL PROOF
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.12;
  font-family: Georgia, serif;
}

.testimonial-card__stars {
  color: #f0b323;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--grey-light);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Logo bar for social proof */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0;
}

.logo-bar img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.logo-bar img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* --------------------------------------------------------------------------
   STATS / COUNTER SECTION
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--red);
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1;
}

.section-teal .stat-item h3,
.section-black .stat-item h3 {
  color: var(--white);
}

.stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-teal .stat-item p,
.section-black .stat-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* Stats with dividers */
.stats-grid--divided .stat-item {
  border-right: 1px solid var(--border);
}

.stats-grid--divided .stat-item:last-child {
  border-right: none;
}

.section-black .stats-grid--divided .stat-item,
.section-teal .stats-grid--divided .stat-item {
  border-color: rgba(255, 255, 255, 0.1);
}


/* --------------------------------------------------------------------------
   POWERED BY BADGE
   -------------------------------------------------------------------------- */
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--grey-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.powered-by:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.powered-by img {
  height: 16px;
  width: auto;
}

.powered-by strong {
  color: var(--black);
  font-weight: 600;
}

/* Dark variant */
.powered-by--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.powered-by--dark:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.powered-by--dark strong {
  color: rgba(255, 255, 255, 0.8);
}


/* --------------------------------------------------------------------------
   PROCESS / STEPS
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-card {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-card::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
}

.process-card h4 {
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Connector lines */
.process-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  opacity: 0.3;
}

/* Vertical process steps (for service pages) */
.process-steps {
  margin: 2rem 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.process-step__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.process-step__content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: 1.2rem;
}

.process-step__content p {
  color: #555;
  font-size: 0.95rem;
}


/* --------------------------------------------------------------------------
   WHY US CARDS
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(205, 23, 25, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
}

.why-card h4 {
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.93rem;
  color: #555;
}


/* --------------------------------------------------------------------------
   TEAM SECTION
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grey-light);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--teal);
  border: 3px solid var(--grey-mid);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card p {
  font-size: 0.9rem;
  color: #555;
}


/* --------------------------------------------------------------------------
   PHILOSOPHY CARDS
   -------------------------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}

.philosophy-card h4 {
  margin-bottom: 0.6rem;
  color: var(--teal);
}

.philosophy-card p {
  font-size: 0.93rem;
  color: #555;
}


/* --------------------------------------------------------------------------
   PRICING TABLE
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}


/* --------------------------------------------------------------------------
   PAGE HERO (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 100, 100, 0.2) 0%, rgba(205, 23, 25, 0.1) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   AEO SNIPPET
   -------------------------------------------------------------------------- */
.aeo-snippet {
  background: var(--grey-light);
  border-left: 4px solid var(--teal);
  padding: 2rem 2.5rem;
  margin: 0;
}

.aeo-snippet h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.aeo-snippet p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   CONTENT BLOCKS (Service Pages)
   -------------------------------------------------------------------------- */
.content-block h2 {
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.content-block h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 1.3rem;
}

.content-block p {
  font-size: 1rem;
  color: #444;
}

.content-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #444;
}

.pain-points {
  list-style: none;
  padding: 0;
}

.pain-points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.pain-points li::before {
  content: '\2022';
  color: var(--red);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -2px;
}


/* --------------------------------------------------------------------------
   BLOCKQUOTES
   -------------------------------------------------------------------------- */
blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--grey-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #555;
}

blockquote .cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--black);
  font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   DATA TABLES
   -------------------------------------------------------------------------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.data-table th {
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--grey-mid);
  color: #444;
}

.data-table tr:nth-child(even) {
  background: var(--grey-light);
}

.data-table tr:hover {
  background: #eee;
}


/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--black);
  color: var(--grey);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.trust-bar p {
  margin: 0;
}

.trust-bar strong {
  color: var(--white);
}


/* --------------------------------------------------------------------------
   CTA SECONDARY
   -------------------------------------------------------------------------- */
.cta-secondary {
  background: var(--grey-light);
  padding: 2.5rem 0;
  text-align: center;
}

.cta-secondary p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}


/* --------------------------------------------------------------------------
   LEGAL / PRIVACY PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: var(--narrow-width);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: #444;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.4rem;
}


/* --------------------------------------------------------------------------
   ANIMATIONS & EFFECTS
   -------------------------------------------------------------------------- */

/* Fade in on scroll (use with JS IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animation */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* Hover underline effect */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.hover-underline:hover::after {
  width: 100%;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablet: 992px --- */
@media (max-width: 992px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
}

/* --- Tablet: 768px --- */
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.7rem; }

  section {
    padding: 3.5rem 0;
  }

  /* Header mobile nav */
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right var(--transition);
    z-index: var(--z-header);
    align-items: flex-start;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover {
    background: transparent;
    color: var(--white);
    padding-left: 1.75rem;
  }

  .header-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 3.5rem 0;
    min-height: 360px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero--split .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

  /* Grids to single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid--divided .stat-item:nth-child(2) {
    border-right: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Benefits */
  .benefits-list--two-col {
    columns: 1;
  }

  /* Article */
  .article__title {
    font-size: 1.8rem;
  }

  .article__meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Process steps vertical */
  .process-step {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Tables */
  .data-table {
    font-size: 0.85rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.6rem 0.75rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  /* AEO */
  .aeo-snippet {
    padding: 1.5rem;
  }
}

/* --- Mobile: 480px --- */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }

  section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }

  /* Buttons stack */
  .hero-buttons,
  .btn-group {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .btn-group .btn {
    width: 100%;
    text-align: center;
  }

  /* Article */
  .article__footer {
    flex-direction: column;
    text-align: center;
  }

  /* CTA */
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  .site-header,
  .site-footer,
  .cta-banner,
  .cta-secondary,
  .hamburger,
  .main-nav,
  .nav-overlay,
  .btn,
  .hero-buttons {
    display: none !important;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  section {
    padding: 1rem 0;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  .article__body {
    max-width: 100%;
  }

  .services-grid,
  .blog-grid,
  .testimonials-grid,
  .stats-grid {
    display: block;
  }

  .service-card,
  .blog-card,
  .testimonial-card,
  .stat-item {
    page-break-inside: avoid;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 0.5rem;
  }
}


/* --------------------------------------------------------------------------
   ARTICLE EXTRAS (Author, Related)
   -------------------------------------------------------------------------- */
.section-grey-light {
  background: var(--grey-light);
}

/* Related articles grid - reuses blog-grid for consistency */


/* --------------------------------------------------------------------------
   ARTICLE HERO
   -------------------------------------------------------------------------- */
.article-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a3a3a 100%);
  color: var(--white);
  padding: 5rem 0 3rem;
}

.article-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-top: 1rem;
  line-height: 1.25;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--red);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.article-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-cats {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}


/* --------------------------------------------------------------------------
   ARTICLE BODY
   -------------------------------------------------------------------------- */
.article-body {
  padding: 3rem 0 4rem;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--teal);
}

.article-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--black);
}

.article-body h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(20, 100, 100, 0.3);
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.article-body img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.article-body blockquote {
  border-left: 4px solid var(--teal);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--grey-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
  font-style: italic;
  color: var(--text);
}

.article-body strong {
  font-weight: 700;
  color: var(--text);
}


/* --------------------------------------------------------------------------
   BLOG INDEX - Cards & Filters
   -------------------------------------------------------------------------- */
.blog-grid-section {
  padding: 3rem 0 4rem;
}

.blog-grid-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.blog-grid-section .blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.blog-grid-section .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content .article-meta {
  margin-bottom: 0.75rem;
}

.blog-card-content .article-category {
  color: var(--teal);
  background: transparent;
  padding: 0;
  font-size: 0.7rem;
}

.blog-card-content .article-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-content h3 a {
  color: var(--black);
}

.blog-card-content h3 a:hover {
  color: var(--red);
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more:hover {
  color: var(--red-dark);
}

.read-more::after {
  content: '\2192';
}

/* Blog Filters */
.blog-filters {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--grey-light);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.blog-count {
  font-size: 0.85rem;
}


/* --------------------------------------------------------------------------
   RESOURCES PAGE
   -------------------------------------------------------------------------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.resource-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  color: var(--text);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
  color: var(--text);
}

.resource-icon {
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.resource-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resource-card .btn-outline {
  font-size: 0.85rem;
  padding: 0.5rem 1.4rem;
}


/* --------------------------------------------------------------------------
   EBOOKS PAGE
   -------------------------------------------------------------------------- */
.ebook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.ebook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ebook-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(20, 100, 100, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.ebook-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--teal);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.ebook-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ebook-card h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.ebook-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   PLACEHOLDER CONTENT
   -------------------------------------------------------------------------- */
.placeholder-content {
  text-align: center;
  padding: 2rem 0;
}

.placeholder-content h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.placeholder-content h3 {
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 1rem;
}

.placeholder-icon {
  margin-bottom: 0.5rem;
}


/* --------------------------------------------------------------------------
   BLOG & ARTICLE RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-hero h1 {
    font-size: 2rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 4rem 0 2rem;
  }

  .article-hero h1 {
    font-size: 1.6rem;
  }

  .article-body {
    padding: 2rem 0 3rem;
  }

  .article-body h2 {
    font-size: 1.4rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ebook-card {
    padding: 1.5rem;
  }

  .ebook-card h3 {
    font-size: 1.3rem;
  }
}


/* --------------------------------------------------------------------------
   ACCORDION (details/summary)
   -------------------------------------------------------------------------- */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow);
}

.accordion-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--black);
  transition: background var(--transition);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-item[open] summary::after {
  content: '\2212';
}

.accordion-item[open] summary {
  background: var(--grey-light);
  border-bottom: 1px solid var(--border);
}

.accordion-content {
  padding: 1.25rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.accordion-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}


/* --------------------------------------------------------------------------
   GATED FORM CARDS (event/playbook landing pages)
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--black);
}

.gated-form .form-group {
  margin-bottom: 1rem;
}

.gated-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.gated-form input[type="text"],
.gated-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.gated-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 100, 100, 0.1);
}

.gated-form .required {
  color: var(--red);
}


/* --------------------------------------------------------------------------
   CONTENT GRID (two-column layout for landing pages)
   -------------------------------------------------------------------------- */
.content-grid {
  max-width: 900px;
  margin: 0 auto;
}

.content-grid.two-col {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-grid ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-grid li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .content-grid.two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* --------------------------------------------------------------------------
   EVENT CARDS (past events listing)
   -------------------------------------------------------------------------- */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow);
}

.event-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.event-card h3 {
  margin-bottom: 1rem;
}

.event-card p {
  color: var(--text-light);
}


/* --------------------------------------------------------------------------
   SPEAKERS GRID
   -------------------------------------------------------------------------- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.speaker-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.speaker-card h4 {
  margin-bottom: 0.5rem;
  color: var(--black);
}

.speaker-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}


/* --------------------------------------------------------------------------
   HERO SMALL VARIANT
   -------------------------------------------------------------------------- */
.hero-sm {
  padding: 4rem 0 3rem;
}

.hero-sm .hero-content h1 {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .hero-sm .hero-content h1 {
    font-size: 1.8rem;
  }
}
