/* ============================================
   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; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section { padding: 96px 0; position: relative; overflow: hidden; }
.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: 56px;
  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(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.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(6, 28, 44, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(6, 28, 44, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.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(--white);
  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: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.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; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, #0C4A5E 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  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.03;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24,181,216,0.12);
  border: 1px solid rgba(24,181,216,0.25);
  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(--white);
  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-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.michelle-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, rgba(14,63,82,0.8), rgba(6,28,44,0.9));
  border: 1px solid rgba(24,181,216,0.2);
  border-radius: var(--radius-xl);
  padding: 28px 24px 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(24,181,216,0.1);
}
.michelle-avatar {
  width: 160px;
  height: 190px;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
}
.michelle-svg { width: 100%; height: 100%; }
.michelle-label {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.michelle-label strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.michelle-label span {
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(6,28,44,0.88);
  border: 1px solid rgba(24,181,216,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 16px 10px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow);
  animation: floatAnim 4s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge--1 { top: 8%; left: -5%; animation-delay: 0s; }
.float-badge--2 { top: 50%; right: -8%; animation-delay: 1.3s; }
.float-badge--3 { bottom: 12%; left: -2%; animation-delay: 2.6s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.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 */
.stat-chip {
  position: absolute;
  background: rgba(24,181,216,0.12);
  border: 1px solid rgba(24,181,216,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-chip--1 { top: 16%; right: 2%; }
.stat-chip--2 { bottom: 20%; right: -2%; }
.stat-chip strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.stat-chip span {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 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(255,255,255,0.4);
  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; }
}

/* ============ 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: var(--white);
  border: 1px solid var(--gray-mid);
  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;
}

.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 {
  position: absolute;
  top: -10px;
  left: 26px;
  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;
}

.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;
}
.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; }

/* ============ 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: 68px;
  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;
}

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

.session-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.session-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.session-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 28px;
  position: relative;
}
.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: var(--text-mid);
  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; }

/* ============ 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);
}
.plan-page-card:hover { box-shadow: var(--shadow-lg); }
.plan-page-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(24,181,216,0.2), var(--shadow);
}
.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-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-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-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;
}
.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: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[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: none; }
  .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; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .workshop-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; }
  .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; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}
