/* ============================================
   SHARK BRANDING SOLUTIONS — DESIGN SYSTEM
   ============================================ */

:root {
  --blue: #18B5D8;
  --blue-dark: #0E8FAE;
  --navy: #061C2C;
  --teal: #0A3140;
  --teal-mid: #0E6F86;
  --white: #FFFFFF;
  --gray-light: #F4F7FA;
  --gray-mid: #E8EDF2;
  --gray-text: #8A9BB0;
  --yellow: #F4C430;
  --red-soft: #E05555;
  --green-soft: #3DBA7A;
  --text-dark: #0D1F2D;
  --text-mid: #3B5068;
  --text-light: rgba(255,255,255,0.75);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(6,28,44,0.12);
  --shadow-lg: 0 12px 48px rgba(6,28,44,0.2);
  --shadow-blue: 0 8px 32px rgba(24,181,216,0.25);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-gutter: stable; /* prevents layout shift when scrollbar appears/disappears */
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Push footer to bottom on short pages */
body > footer { margin-top: auto; }

/* ============ UTILITY ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; position: relative; overflow: hidden; }
.section--tight-top {
  padding-top: 16px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.section--dark { background: var(--navy); }
.section--light { background: var(--white); }
.section--gray { background: var(--gray-light); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-label--light { color: var(--blue); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 400;
}
.section-title--light { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-intro--light { color: var(--text-light); }

.section-cta { text-align: center; margin-top: 52px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.2);
}
.btn-ghost:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

/* Ghost buttons on dark sections */
.section--dark .btn-ghost {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.35) !important;
  background: transparent !important;
}
.section--dark .btn-ghost:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.7) !important;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 9px; }
.btn-xl { padding: 17px 36px; font-size: 16px; border-radius: 10px; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Constrain logo images across the site (header + footer) */
.nav-logo img,
.footer .nav-logo img {
  height: 50px !important;
  max-height: 58px !important;
  width: auto !important;
  display: block !important;
}

@media (max-width: 900px) {
  .nav-logo img,
  .footer .nav-logo img {
    height: 40px !important;
    max-height: 44px !important;
  }
}
.logo-shark {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 15px;
}
.nav-mobile .btn { margin-top: 8px; text-align: center; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #ffffff 0%, #f4f8fc 60%, #eaf4f9 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,181,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,181,216,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--white);
  clip-path: ellipse(56% 100% at 50% 100%);
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

/* Hero Visual */
.hero-right {
  overflow: visible;
  position: relative;
}

.hero-visual {
  position: relative;
  height: 480px;
  overflow: visible;
  margin: 0 50px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24,181,216,0.1);
  border: 1px solid rgba(24,181,216,0.3);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue);
  display: block;
  margin-top: 6px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-powered {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
}

.partner-badge {
  margin-top: 18px;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.partner-badge--dark {
  max-width: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.partner-badge--home {
  background: rgba(255,255,255,0.96);
  border-color: rgba(24,181,216,0.18);
  box-shadow: 0 14px 32px rgba(6,28,44,0.12);
}
.partner-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.partner-badge-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.partner-badge-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.partner-badge--home .partner-badge-label {
  color: var(--blue-dark);
}
.partner-badge--home .partner-badge-copy p {
  color: var(--text-dark);
}
.partner-badge-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(6,28,44,0.08);
  box-shadow: 0 10px 24px rgba(6,28,44,0.14);
}
.partner-badge-logo img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}
.partner-badge--dark .partner-badge-copy p {
  color: rgba(255,255,255,0.82);
}

.area-switcher {
  margin-top: 22px;
  max-width: 520px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(24,181,216,0.18);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(6,28,44,0.08);
}
.area-switcher--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}
.area-switcher-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.area-switcher-copy {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.area-switcher--dark .area-switcher-copy,
.area-switcher--dark .area-switcher-status {
  color: rgba(255,255,255,0.8);
}
.area-switcher-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-switcher-select {
  flex: 1 1 220px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(24,181,216,0.2);
  font: inherit;
  color: var(--text-dark);
  background: var(--white);
}
.area-switcher-status {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 12px;
}

/* Michelle card removed */
.michelle-card {
  display: none;
}
.michelle-avatar,
.michelle-svg,
.michelle-photo,
.michelle-label,
.michelle-label strong,
.michelle-label span {
  display: none;
}

/* AI Hero Image */
.ai-hero-image {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(24,181,216,0.08);
  z-index: 1;
}

.ai-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-badge,
.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  animation: floatAnim 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 10;
}

.float-badge--1,
.pill-visibility {
  top: 30px;
  right: -160px;
  animation-delay: 0s;
}

.float-badge--2,
.pill-trust {
  top: 46%;
  right: -160px;
  transform: translateY(-50%);
  animation-delay: 1.3s;
}

.float-badge--3,
.pill-conversion {
  bottom: 50px;
  right: -160px;
  animation-delay: 2.6s;
}


@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes floatAnimLeft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.pill-trust {
  animation: floatAnimMid 4s ease-in-out infinite;
  animation-delay: 1.3s;
}

@keyframes floatAnimMid {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 7px)); }
}
.hero-pill .pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-pill .pill-copy {
  display: flex;
  flex-direction: column;
}
.hero-pill .pill-label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-dark);
}
.hero-pill .pill-sub {
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle--blue { background: rgba(24,181,216,0.2); color: var(--blue); }
.icon-circle--teal { background: rgba(14,111,134,0.3); color: #4ECFEB; }
.icon-circle--yellow { background: rgba(244,196,48,0.2); color: var(--yellow); }

/* Stat chips removed */
.stat-chip {
  display: none;
}
.stat-chip--1,
.stat-chip--2,
.stat-chip strong,
.stat-chip span {
  display: none;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 0.8; }
}

/* Mobile fix */
@media (max-width: 900px) {
  .hero-visual {
    height: 360px;
    margin: 0;
  }
  .ai-hero-image {
    left: 0;
    right: 0;
  }
  .pill-visibility,
  .pill-trust,
  .pill-conversion,
  .pill-local-seo,
  .pill-ai-search {
    position: static;
    transform: none !important;
    animation: none;
    margin-top: 10px;
  }
}
/* ============ PROBLEM SECTION ============ */
.problem-section { background: var(--gray-light); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: rgba(24,181,216,0.05);
  border: 1px solid rgba(24,181,216,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal-mid));
  transform: scaleX(0);
  transition: var(--transition);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.problem-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0.7;
}
.problem-icon {
  color: var(--blue);
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Dark section card overrides — tinted blue-glass */
.section--dark .problem-card {
  background: rgba(24,181,216,0.05);
  border-color: rgba(24,181,216,0.2);
}
.section--dark .problem-card:hover {
  background: rgba(24,181,216,0.09);
  box-shadow: 0 8px 32px rgba(24,181,216,0.12);
}
.section--dark .problem-card h3 {
  color: var(--white);
}
.section--dark .problem-card p {
  color: var(--text-light);
}
.section--dark .problem-num {
  opacity: 1;
}

/* Fix: ensure card text visible — override accidental numbering or hidden text */
.problem-num { display: none !important; }
.problem-card h3 { color: inherit !important; }
.section--dark .problem-card h3 { color: var(--white) !important; }
.section--light .problem-card h3 { color: var(--text-dark) !important; }

.case-study-panel {
  background: linear-gradient(180deg, rgba(24,181,216,0.04), rgba(24,181,216,0.01));
  border: 1px solid rgba(24,181,216,0.18);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rank-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}
.rank-list strong {
  color: var(--text-dark);
  font-weight: 700;
}
.rank-list span {
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

/* HVAC case study rank grid/cards — ensure keywords (strong) are visible */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.rank-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 18px 40px rgba(6,28,44,0.06);
}
.rank-card strong {
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1.2 !important;
}
.rank-card span {
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

/* Dark section variant */
.section--dark .rank-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}
.section--dark .rank-card strong { color: var(--text-light); }
.section--dark .rank-card span { color: var(--blue); }

.problem-statement {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  border: 1px solid rgba(24,181,216,0.15);
}
.statement-bar {
  width: 4px;
  height: 48px;
  background: var(--blue);
  border-radius: 4px;
  flex-shrink: 0;
}
.problem-statement p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.problem-statement strong {
  color: var(--white);
}

/* ============ FRAMEWORK ============ */
.framework-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.framework-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.framework-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.framework-card--featured {
  background: rgba(24,181,216,0.1);
  border-color: rgba(24,181,216,0.3);
  box-shadow: 0 0 40px rgba(24,181,216,0.12);
}

.framework-icon {
  color: var(--blue);
  margin-bottom: 16px;
}
.framework-step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.8;
}
.framework-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}
.framework-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.framework-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
  opacity: 0.4;
}
.framework-card--featured .framework-bar { opacity: 0.8; }

.framework-cta-line {
  display: flex;
  align-items: center;
  gap: 24px;
}
.framework-divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.framework-cta-line span {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  font-style: italic;
}

/* ============ DIFFERENTIATOR ============ */
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.diff-body {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.diff-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.diff-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(61,186,122,0.15);
  color: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-check--red {
  background: rgba(224,85,85,0.12);
  color: var(--red-soft);
}
.diff-check--yellow {
  background: rgba(244,196,48,0.15);
  color: var(--yellow);
}

/* Dashboard Mockup */
.dashboard-mock {
  background: var(--navy);
  border: 1px solid rgba(24,181,216,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28CA41; }
.dash-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-left: 6px;
}
.dash-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 18px; }

.dash-score-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-score-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.score-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 6px; }
.score-val { font-size: 28px; font-weight: 800; display: block; margin-bottom: 8px; }
.score-val--low { color: var(--red-soft); }
.score-val--mid { color: var(--yellow); }
.score-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.score-fill--low { background: var(--red-soft); }
.score-fill--mid { background: var(--yellow); }

.dash-checks { display: flex; flex-direction: column; gap: 8px; }
.dash-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.dash-check--fail { background: rgba(224,85,85,0.08); }
.dash-check--warn { background: rgba(244,196,48,0.08); }
.dash-check--pass { background: rgba(61,186,122,0.08); }
.check-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.check-dot--red { background: var(--red-soft); }
.check-dot--yellow { background: var(--yellow); }
.check-dot--green { background: var(--green-soft); }

.dash-ai-row { }
.dash-ai-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 10px; }
.dash-ai-bars { display: flex; flex-direction: column; gap: 8px; }
.ai-bar-row { display: flex; align-items: center; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.5); }
.ai-bar-row span { width: 60px; flex-shrink: 0; }
.ai-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.ai-bar div { height: 100%; background: linear-gradient(90deg, var(--blue), var(--teal-mid)); border-radius: 4px; }

/* ============ WORKSHOPS ============ */
.workshops-section {
  background: linear-gradient(160deg, #071E2E 0%, #0A3140 60%, #0D4A5E 100%);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.workshop-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
}
.workshop-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(24,181,216,0.25);
}
.workshop-card--featured {
  background: rgba(24,181,216,0.08);
  border-color: rgba(24,181,216,0.25);
}

.workshop-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.workshop-icon-wrap { margin-bottom: 20px; }
.workshop-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(24,181,216,0.12);
  border: 1px solid rgba(24,181,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.workshop-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.8;
}
.workshop-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 400;
}
.workshop-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 22px;
}
.workshop-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.workshop-link:hover { gap: 8px; }

/* ============ PLANS ============ */
.plans-section { background: var(--white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--gray-light);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.plan-card--featured {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(24,181,216,0.3), var(--shadow-lg);
  transform: scale(1.03);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-3px); }

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(24,181,216,0.12);
  border: 1px solid rgba(24,181,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.plan-card--featured .plan-icon { background: rgba(24,181,216,0.2); }
.plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.plan-card--featured .plan-name { color: var(--white); }
.plan-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.plan-price span { font-size: 13px; font-weight: 500; color: var(--gray-text); }
.plan-card--featured .plan-price span { color: rgba(255,255,255,0.5); }

.plan-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.plan-card--featured .plan-desc {
  color: rgba(255,255,255,0.65);
  border-top-color: rgba(255,255,255,0.08);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.plan-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(24,181,216,0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%2318B5D8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.plan-card--featured .plan-features li { color: rgba(255,255,255,0.7); }

/* ============ HOW IT WORKS ============ */
.how-section { background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  opacity: 0.7;
}

/* ==============================
   MOBILE OPTIMIZATION
   Apply responsive rules site-wide
   ============================== */

/* Improve touch targets and responsive images */
.btn { min-height: 44px; }
img, picture, video, iframe { max-width: 100%; height: auto; display: block; }

/* Accessible focus for interactive elements */
.btn:focus, a:focus { outline: 3px solid rgba(24,181,216,0.18); outline-offset: 2px; }

/* Stack common grids on small screens and improve spacing */
@media (max-width: 900px) {
  .container { padding: 0 16px; }

  /* Navigation adjustments */
  .nav-inner { padding: 0 16px; height: 64px; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-mobile { display: flex; flex-direction: column; gap: 8px; padding: 12px 16px 16px; }

  /* Hero and layout stacking */
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; padding-bottom: 48px; }
  .hero-visual { height: 320px; margin: 0; }

  /* Stack section grids */
  .problem-grid,
  .framework-grid,
  .rank-grid,
  .workshop-grid,
  .plans-grid,
  .dashboard-mock,
  .diff-inner { grid-template-columns: 1fr; gap: 16px; }

  /* Cards padding / radius for mobile */
  .problem-card, .framework-card, .rank-card, .plan-card, .workshop-card { padding: 18px 16px; border-radius: 12px; }

  /* Buttons full width for CTAs and stacked spacing */
  .btn { width: 100%; padding: 12px 16px; box-sizing: border-box; }
  .btn + .btn { margin-top: 12px; }

  /* Case study rank cards spacing */
  .rank-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rank-card span { align-self: flex-end; }

  /* Footer columns stack */
  .footer-inner { display: flex; flex-direction: column; gap: 20px; }
  .footer-links { display: block; }

  /* Reduce large decorative shadows on mobile to improve rendering */
  .box-shadow-mobile, .hero-visual, .dashboard-mock { box-shadow: none; }
}

/* Ensure ghost buttons contrast on dark backgrounds (mobile+desktop) */
.btn-ghost { min-height: 44px; }

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(24,181,216,0.1);
  border: 1px solid rgba(24,181,216,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 18px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}
.step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24,181,216,0.4), rgba(24,181,216,0.1));
  margin-top: 52px;
  border-radius: 2px;
}

/* ============ ABOUT STRIP ============ */
.about-strip { background: var(--gray-light); }
.about-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
.about-michelle-frame {
  position: relative;
  flex-shrink: 0;
}
.about-cred-chip {
  position: absolute;
  bottom: 12px;
  left: -20px;
  background: var(--navy);
  border: 1px solid rgba(24,181,216,0.2);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.cred-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}
.cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, #0C4A5E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,181,216,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,181,216,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.15;
}
.cta-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-style: italic;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-section .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.cta-section .btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* ============ FOOTER ============ */
.footer {
  background: #03111C;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.social-icon:hover {
  background: rgba(24,181,216,0.15);
  border-color: rgba(24,181,216,0.3);
  color: var(--blue);
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============ WORKSHOPS PAGE ============ */
.page-hero {
  min-height: 52vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 60%, #0C4A5E 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,181,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,181,216,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px;
}
.page-hero-inner .section-label { justify-content: center; }
.page-hero-inner .section-label::before { display: none; }
.page-hero-inner .section-title { color: var(--white); font-size: clamp(32px, 5vw, 56px); }
.page-hero-inner .section-intro {
  color: var(--text-light);
  margin: 0 auto 36px;
  max-width: 520px;
}
.page-hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.page-hero .btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* Workshop sessions */
.sessions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.session-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.session-card:hover {
  background: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}
.session-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 28px;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.session-icon { color: var(--blue); margin-bottom: 12px; }
.session-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
}
.session-body { padding: 24px 28px 28px; }
.session-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 16px;
}
.session-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--gray-light);
  border-radius: 8px;
}
.session-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
}
.session-meta-item svg { color: var(--blue); flex-shrink: 0; }

/* Workshop FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
}
.faq-question svg {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--blue);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

.workshop-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.workshop-proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.workshop-proof-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}
.workshop-proof-card p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 0;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rank-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.rank-card strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.rank-card span {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portfolio-card--wide {
  grid-column: span 2;
}
.portfolio-shot {
  width: 100%;
  height: 380px;
  display: block;
  background: var(--gray-light);
  object-fit: cover;
}
.portfolio-copy {
  padding: 24px 24px 26px;
}
.portfolio-copy h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.portfolio-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}
.portfolio-card--text {
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(24,181,216,0.04), rgba(24,181,216,0.01));
}
.portfolio-list {
  margin-top: 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}
.portfolio-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.portfolio-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.portfolio-result-card strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.portfolio-result-card span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ PLANS PAGE ============ */
.plans-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-page-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 16px 40px rgba(10, 27, 46, 0.06);
}
.plan-page-card:hover { box-shadow: 0 28px 56px rgba(10, 27, 46, 0.12); transform: translateY(-4px); }
.plan-page-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(24,181,216,0.2), 0 28px 64px rgba(10, 27, 46, 0.18);
  transform: translateY(-6px);
}
.plan-card-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 32px 28px;
  position: relative;
}
.plan-page-card--featured .plan-card-header {
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.plan-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(24,181,216,0.25);
}
.plan-header-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.plan-header-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
}
.plan-header-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.plan-page-card--featured .plan-header-price { color: var(--white); }
.plan-header-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4); }
.plan-card-body { padding: 28px; }
.plan-includes-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
}
.plan-include-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.plan-include-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(24,181,216,0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%2318B5D8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ============ ABOUT PAGE ============ */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
}
.about-hero-visual { position: relative; }
.about-hero-img {
  background: linear-gradient(145deg, #0A3140, #061C2C);
  border: 1px solid rgba(24,181,216,0.15);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-hero-img svg { max-width: 260px; margin: 0 auto; display: block; }
.about-michelle-photo { width: 100%; max-width: 280px; height: 340px; object-fit: cover; object-position: center top; display: block; margin: 0 auto; border-radius: 12px; }
.about-credential-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(24,181,216,0.08);
  border: 1px solid rgba(24,181,216,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.cred-badge svg { color: var(--blue); flex-shrink: 0; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: -20px auto 28px;
  box-shadow: var(--shadow-lg);
}
.contact-info-item {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-item:last-child { border-right: none; }
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(24,181,216,0.16);
  border: 1px solid rgba(24,181,216,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-text strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.ci-text span,
.ci-text a {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.ci-text a:hover { color: var(--yellow); }
.contact-path-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 14px 18px;
  text-decoration: none;
  transition: var(--transition);
}
.contact-path-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(24,181,216,0.3);
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(24,181,216,0.1);
  border: 1px solid rgba(24,181,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-content h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.contact-detail-content p, .contact-detail-content a {
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.contact-detail-content a:hover { color: var(--blue); }

.contact-form {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,181,216,0.12);
}
.form-group textarea { min-height: 120px; }

/* ============ ANIMATIONS ============ */
[data-animate] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-animate].will-animate { opacity: 1; transform: none; }
.js [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right {
    display: block;
    width: min(100%, 620px);
    margin: 0 auto;
  }
  .hero-visual {
    height: clamp(320px, 60vw, 460px);
    margin: 0;
  }
  .hero-headline { font-size: clamp(28px, 5vw, 42px); }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .about-michelle-frame { margin: 0 auto; }
  .section-label { justify-content: center; }
  .cred-item { justify-content: center; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-hero-strip { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .contact-info-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 72px; gap: 16px; padding: 0 18px; }
  .nav-logo img { height: 46px !important; width: auto !important; }
  .section { padding: 56px 0; }
  .section--tight-top {
    padding-top: 8px;
    margin-top: -12px;
  }
  .container { padding: 0 18px; }
  .section-title { font-size: clamp(26px, 7vw, 34px); margin-bottom: 16px; }
  .section-intro { font-size: 15px; margin-bottom: 28px; }
  .page-hero { min-height: 40vh; }
  .page-hero-inner { padding: 56px 20px; }
  .page-hero-inner .section-intro { margin-bottom: 24px; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 36px; padding-bottom: 60px; gap: 28px; }
  .hero-sub { font-size: 15px; margin-bottom: 20px; }
  .hero-right { width: 100%; }
  .hero-visual { height: min(82vw, 360px); }
  .area-switcher {
    padding: 16px;
  }
  .area-switcher-controls {
    flex-direction: column;
  }
  .area-switcher-select {
    width: 100%;
  }
  .partner-badge {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-badge-logo {
    min-width: 0;
    width: 100%;
    max-width: 340px;
  }
  .scroll-hint { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 24px 20px; }
  .rank-list { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-proof-grid { grid-template-columns: 1fr; }
  .rank-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--wide { grid-column: span 1; }
  .portfolio-results-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }
  .sessions-grid { grid-template-columns: 1fr; }
  .plans-page-grid { grid-template-columns: 1fr; }
  .session-header { padding: 22px 20px; }
  .session-body { padding: 20px; }
  .plan-card-header { padding: 24px 20px; }
  .plan-card-body { padding: 22px 20px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, rgba(24,181,216,0.4), rgba(24,181,216,0.1)); margin-top: 0; }
  .contact-hero-strip { margin: -12px auto 20px; }
  .contact-info-item { padding: 18px 16px; }
  .footer-inner { gap: 28px; padding-bottom: 32px; }
  .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .cta-actions .btn,
  .page-hero .btn,
  .ws-action .btn {
    width: 100%;
    white-space: normal;
  }
  .cta-actions { flex-direction: column; align-items: center; }
  .case-study-panel { padding: 22px 18px; }
}

@media (max-width: 480px) {
  .nav-mobile { padding: 10px 18px 16px; }
  .page-hero-inner { padding: 48px 18px; }
  .hero-visual { height: min(88vw, 300px); }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── About Banner Hero ────────────────────────────────────────────────────── */
.about-banner-hero {
  width: 100%;
  margin-top: 80px; /* clear fixed nav */
  line-height: 0;
}
.about-banner-hero .about-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.about-banner-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 32px 24px;
  background: var(--navy);
  line-height: 1;
}
.about-hero-panel {
  background: rgba(12,27,46,0.82);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  width: 100%;
  max-width: 760px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-kicker-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-kicker-line {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
}
.about-mini-tagline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.about-credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-credential-card {
  min-width: 170px;
  flex: 1 1 170px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
}
.about-credential-card strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.about-credential-card span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
  background: linear-gradient(135deg, #f7fbfd 0%, #eef7fb 52%, #e7f4f9 100%);
  border: 1px solid rgba(24,181,216,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(6,28,44,0.07);
}
.about-story-main {
  background: var(--white);
  border: 1px solid rgba(6,28,44,0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(6,28,44,0.05);
}
.about-story-columns {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}
.about-story-quote {
  margin: 0;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.85;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 24px;
}
.about-story-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-story-copy p {
  margin: 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}
.about-story-aside {
  background: linear-gradient(180deg, #f5fbfd 0%, #eef7fb 100%);
  border: 1px solid rgba(24,181,216,0.16);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(6,28,44,0.08);
}
.about-story-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.about-story-aside h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 400;
}
.about-story-list {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-mid);
}
.about-story-aside p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}
@media (max-width: 480px) {
  .about-banner-hero-cta { padding: 18px 14px; }
  .about-hero-panel { padding: 18px; gap: 12px; }
  .about-mini-tagline { font-size: 11px; letter-spacing: 0.14em; }
  .about-banner-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .about-credential-row {
    flex-direction: column;
  }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .about-story-columns {
    grid-template-columns: 1fr;
  }
  .about-story-main,
  .about-story-aside {
    padding: 22px;
  }
}

/* ============================================
   WEBCHAT WIDGET — BRAND OVERRIDE
   ============================================ */

/* Launcher button - outer wrapper injected by the SDK */
#chat-widget-container,
[id*="chat-widget"],
[class*="chat-launcher"],
[class*="chat-button"],
[class*="webchat-launcher"] {
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
}

/* The clickable launcher circle/button */
#chat-widget-container iframe,
[id*="chat-widget"] button,
[id*="chat-widget"] > div,
[class*="chat-launcher"] button,
[class*="webchat-launcher"] button {
  background: linear-gradient(135deg, #18B5D8 0%, #0E8FAE 100%) !important;
  border-radius: 50px !important;
  box-shadow:
    0 8px 32px rgba(24, 181, 216, 0.45),
    0 2px 8px rgba(6, 28, 44, 0.25),
    0 0 0 3px rgba(24, 181, 216, 0.15) !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}

#chat-widget-container iframe:hover,
[id*="chat-widget"] button:hover,
[class*="chat-launcher"] button:hover,
[class*="webchat-launcher"] button:hover {
  box-shadow:
    0 16px 48px rgba(24, 181, 216, 0.55),
    0 4px 16px rgba(6, 28, 44, 0.3),
    0 0 0 4px rgba(24, 181, 216, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* ============ PPTX INFOGRAPHIC IMAGES ============ */
.pptx-img-wrap {
  margin: 48px auto 0;
  max-width: 900px;
}
.pptx-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.pptx-img-wrap--full {
  max-width: 100%;
}
@media (max-width: 900px) {
  .pptx-img-wrap { margin-top: 32px; }
}

/* ============ WORKSHOP SCHEDULE ============ */
.workshop-schedule {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ws-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  background: var(--white);
  transition: var(--transition);
}
.ws-row:hover { box-shadow: var(--shadow); }

.ws-completed {
  opacity: 0.6;
  background: var(--gray-light);
}
.ws-next {
  border-color: var(--blue);
  background: rgba(24,181,216,0.04);
  box-shadow: 0 0 0 1px rgba(24,181,216,0.2);
}
.ws-upcoming {
  background: var(--white);
}

.ws-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}
.ws-next .ws-date { color: var(--blue); }

.ws-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ws-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

.ws-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.ws-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.ws-badge--done {
  background: var(--gray-mid);
  color: var(--text-mid);
}
.ws-badge--next {
  background: var(--blue);
  color: var(--white);
}
.ws-badge--soon {
  background: rgba(24,181,216,0.1);
  color: var(--blue);
  border: 1px solid rgba(24,181,216,0.25);
}

@media (max-width: 900px) {
  .ws-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ws-row { padding: 18px; }
  .ws-date { white-space: normal; }
  .ws-action {
    min-width: 0;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
