@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap');

:root {
  /* Parakeet Health Color Palette */
  --pk-bg-light: #E9F0EC;
  --pk-bg-surface: #F5FAF7;
  --pk-dark-green: #1A332C;
  --pk-dark-green-hover: #23453C;
  --pk-sage-green: #C5D5CE;
  --pk-sage-light: #DCEBE4;
  --pk-accent-coral: #E8734A; /* Vibrant coral orange */
  --pk-accent-coral-glow: rgba(232, 115, 74, 0.2);
  --pk-blue-glow: rgba(66, 133, 244, 0.15);
  --pk-text-main: #28030F; /* Matched from Heidi inspector */
  --pk-text-muted: #4A635B;
  --pk-white: #FFFFFF;
  --pk-divider: rgba(26, 51, 44, 0.1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 6px -1px rgba(26, 51, 44, 0.05), 0 2px 4px -1px rgba(26, 51, 44, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(26, 51, 44, 0.05), 0 4px 6px -2px rgba(26, 51, 44, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(26, 51, 44, 0.05), 0 10px 10px -5px rgba(26, 51, 44, 0.02);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
}

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

body {
  font-family: var(--font-sans);
  color: var(--pk-text-main);
  background-color: var(--pk-bg-light);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Base Styles */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Animations */
@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Edge Glow Vignette (Parakeet-style distinct blue-ish glow on edges) */
.edge-glow {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 100;
  box-shadow: inset 0 0 150px var(--pk-blue-glow);
}

/* Typography styles */
.accent-text {
  color: var(--pk-accent-coral);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background-color: var(--pk-dark-green-hover);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--pk-dark-green);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  border: 1.5px solid var(--pk-dark-green);
  transition: all 0.2s;
}

.btn-outline:hover {
  background-color: rgba(26, 51, 44, 0.05);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  position: relative;
  z-index: 50;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-link:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .announcement-bar {
    padding: 7px 12px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .announcement-link {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .announcement-link svg {
    display: none;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(233, 240, 236, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pk-divider);
  padding: 16px 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-image {
  display: block;
  width: 240px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.logo-text {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pk-text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--pk-accent-coral);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}

@media (min-width: 768px) {
  .btn-login {
    display: block;
  }
}

.btn-cta-nav {
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-cta-nav:hover {
  background-color: var(--pk-dark-green-hover);
}

@media (max-width: 767px) {
  .navbar {
    padding: 14px 0;
  }

  .nav-container {
    padding: 0 18px;
  }

  .nav-logo-image {
    width: 205px;
    height: 40px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions > .btn-cta-nav {
    display: none;
  }
}

@media (max-width: 420px) {
  .nav-container {
    padding: 0 14px;
  }

  .nav-logo-image {
    width: 190px;
    height: 38px;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--pk-text-main);
  cursor: pointer;
  padding: 8px;
  z-index: 50;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--pk-bg-surface);
  z-index: 45;
  display: flex;
  flex-direction: column;
  padding: 100px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pk-text-main);
}

.mobile-nav-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-login {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--pk-divider);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.mobile-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 60px 24px 60px;
  background-color: var(--pk-bg-light);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    max-width: 540px;
    margin-bottom: 0;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3rem); /* 3rem = 48px exactly on desktop */
  font-weight: 400; /* Matched from inspector */
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--pk-text-main);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--pk-text-main);
}

/* Rotating Hero Line — same scale as the title */
.hero-rotating-line {
  margin-top: 4px;
  margin-bottom: 28px;
}

.rotating-text {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3rem); /* Match the 48px scale */
  font-style: italic;
  font-weight: 400;
  color: var(--pk-accent-coral);
  line-height: 1.05;
  letter-spacing: -0.01em;
  will-change: transform, opacity;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rotating-text.exit {
  opacity: 0;
  transform: translateY(-8px);
}

.rotating-text.enter {
  opacity: 0;
  transform: translateY(8px);
}

.rotating-progress {
  width: 48px;
  height: 3px;
  background: rgba(232, 115, 74, 0.12);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.rotating-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--pk-accent-coral);
  border-radius: 2px;
  transition: none;
}

.rotating-progress-bar.animate {
  width: 100%;
  transition: width 3.2s linear;
}



.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

/* Hero Visual Grid (Heidi's bento style, adapted to Parakeet) */
.hero-visual {
  width: 100%;
  flex: 1;
  min-width: 0;
  max-width: 680px;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--pk-white);
  padding: 16px;
  border-radius: var(--radius-xl);
  /* Contained shadow — no horizontal bleed */
  box-shadow: 0 16px 40px -8px rgba(26, 51, 44, 0.10), 0 4px 12px -4px rgba(26, 51, 44, 0.06);
  height: 540px;
}

@media (max-width: 768px) {
  .bento-container {
    height: 380px;
    gap: 10px;
    padding: 12px;
  }
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  justify-content: flex-end;
  align-items: flex-start;
}

/* Heights */
.tall-40 { flex: 4; }
.tall-45 { flex: 4.5; }
.tall-50 { flex: 5; }
.tall-55 { flex: 5.5; }
.tall-60 { flex: 6; }

/* Colors */
.bg-sage-light { background-color: var(--pk-sage-light); }
.bg-white { 
  background-color: var(--pk-bg-surface); 
  box-shadow: inset 0 0 0 1px rgba(26, 51, 44, 0.06);
}
.bg-blush { background-color: #F0DDD5; }
.gradient-coral { 
  background: linear-gradient(145deg, #E8734A 0%, #C35A38 100%); 
  color: white; 
}
.gradient-green { 
  background: linear-gradient(145deg, var(--pk-dark-green) 0%, #2A483E 100%); 
  color: white; 
}

/* Mock document lines inside cards */
.bento-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  flex: 1;
  padding-bottom: 8px;
}

.bento-lines .bl {
  height: 7px;
  border-radius: 4px;
  background-color: rgba(26, 51, 44, 0.1);
}

.bento-lines.light .bl {
  background-color: rgba(26, 51, 44, 0.06);
}

.bento-lines.white-lines .bl {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Grid pattern on center coral card */
.bento-grid-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}

/* Badges */
.bento-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pk-dark-green);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: auto;
}

.badge-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Prompt bar in center card */
.bento-prompt {
  position: relative;
  z-index: 2;
  background: rgba(26, 51, 44, 0.6);
  padding: 8px 8px 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: auto;
}

.prompt-icon {
  background: white;
  color: var(--pk-dark-green);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Wave Divider */
.wave-divider {
  width: 100%;
  height: 80px;
  margin-top: 40px;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
}
.wave-divider-2 {
  margin-top: 0;
  margin-bottom: 60px;
  height: 120px;
  background-color: var(--pk-white); /* transition into comparison section */
}

/* Logo Strip */
.logo-strip {
  padding: 40px 0 80px;
  overflow: hidden;
  text-align: center;
}

.logo-strip-label {
  font-weight: 600;
  color: var(--pk-text-muted);
  margin-bottom: 32px;
}

.logo-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--pk-bg-light), transparent);
}

.logo-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--pk-bg-light), transparent);
}

.logo-scroll {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: scrollLogo 30s linear infinite;
}

@keyframes scrollLogo {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pk-dark-green);
  opacity: 0.6;
}

/* Sections Global (Heading 1) */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.25rem); /* Matches Heidi 36px (Heading 1) */
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--pk-text-muted);
  max-width: 600px;
  line-height: 1.5;
  letter-spacing: -0.02em; /* Heidi Body Tracking */
}

/* Comp Hero */
.comp-hero {
  padding: 80px 0;
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  text-align: center;
}

.comp-hero .section-desc {
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
}
.comp-hero .accent-text { color: inherit; } /* Keep color uniform, style gives contrast */

/* Feature Sections */
.feature-section {
  padding: 100px 0;
}

.feature-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .feature-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Feature Sections (Heading 2) */
.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.75rem); /* Matches Heidi 28px (Heading 2) */
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* Make accent text within heading follow the light italic pattern */
.section-headline .accent-text,
.feature-title .accent-text,
.cta-title .accent-text {
  font-weight: 400;
  font-style: italic;
  color: inherit;
}

.feature-desc {
  font-size: 1.125rem;
  color: var(--pk-text-muted);
  margin-bottom: 32px;
  line-height: 1.5; /* Heidi leading 150% */
  letter-spacing: -0.02em; /* Heidi tracking -2 */
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}

.check-icon {
  color: var(--pk-dark-green);
  font-weight: bold;
}

/* Feature Visuals */
.feature-card {
  background-color: var(--pk-sage-light);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  overflow: hidden;
}

.illustration-scribe { background-color: #E2ECE7; }

.mic-circle {
  width: 80px; height: 80px;
  background-color: var(--pk-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 40px; left: 40px;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--pk-dark-green);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}

.scribe-preview {
  background-color: var(--pk-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 80%;
  margin-top: 80px;
  margin-left: 40px;
  box-shadow: var(--shadow-lg);
}

.preview-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}
.preview-dot {
  width: 8px; height: 8px; border-radius: 50%; background-color: var(--pk-accent-coral);
}
.preview-lines { display: flex; flex-direction: column; gap: 12px; }
.p-line { height: 6px; background-color: rgba(26, 51, 44, 0.1); border-radius: 3px; }

/* Feature 2: Docs */
.illustration-docs {
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  flex-direction: column;
  padding: 40px;
}

.sparkle {
  position: absolute;
  top: 40px; right: 40px;
  color: var(--pk-accent-coral);
  font-size: 2rem;
}

.doc-tabs-row {
  display: flex; gap: 8px; margin-bottom: 24px;
  width: 100%;
}

.doc-tab-item {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.doc-tab-item.active {
  background: var(--pk-white);
  color: var(--pk-dark-green);
}

.doc-body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 100%;
  flex-grow: 1;
}

.d-line { height: 6px; background-color: rgba(255,255,255,0.2); border-radius: 3px; margin-bottom: 16px;}

.note-output-mini {
  position: absolute;
  bottom: 0px; right: 0px;
  background: var(--pk-white);
  padding: 20px;
  border-radius: var(--radius-lg) 0 0 0;
  width: 60%;
  color: var(--pk-dark-green);
  box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
}

.note-label { font-weight: 700; margin-bottom: 12px; display: block; }
.nc-bar { height: 8px; border-radius: 4px; margin-bottom: 8px; }
.coral { background-color: var(--pk-accent-coral); width: 80%; }
.amber { background-color: #FACC15; width: 60%; }
.sage { background-color: var(--pk-sage-green); width: 90%; }

/* Compliance Grid */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compliance-badge {
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1/1;
  transition: transform 0.3s;
}

.compliance-badge:hover {
  transform: translateY(-5px);
}

.badge-icon { margin-bottom: 16px; }
.badge-label { font-weight: 600; font-size: 1.125rem; }
.badge-big-text { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.badge-divider-line { width: 40px; height: 2px; background: rgba(255,255,255,0.3); margin: 8px 0; }
.badge-tiny { font-size: 0.75rem; opacity: 0.6; margin-top: 4px; }
.gdpr-stars-top, .gdpr-stars-bottom { color: #FACC15; font-size: 1.25rem; letter-spacing: 4px; }
.gdpr-stars-top { margin-bottom: 8px; }
.gdpr-stars-bottom { margin-top: 8px; }

/* Feature 4: Free */
.illustration-free {
  background-color: #FAF5F0;
  padding: 0;
  align-items: stretch;
}

.free-layout {
  display:flex;
  width: 100%; height: 100%;
  padding: 40px;
  position: relative;
}

.free-mic {
  width: 60px; height: 60px;
  background: var(--pk-sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 40px; left: 40px;
}

.free-note {
  background: white; border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-md);
  position: absolute; top: 120px; left: 40px; width: 60%;
}
.fn-title { font-weight: 600; display: block; margin-bottom: 16px; }
.fn-line { height: 6px; background: var(--pk-sage-light); border-radius: 3px; margin-bottom: 12px; }

.free-sidebar {
  position: absolute; right: 40px; top: 40px; width: 30%;
  display: flex; flex-direction: column; gap: 16px;
}
.fsb-item {
  font-size: 0.875rem; font-weight: 600; padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.free-ai-bar {
  position: absolute; bottom: 40px; left: 40px; right: 40px;
  background: white; border-radius: var(--radius-pill);
  padding: 12px 12px 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem; color: var(--pk-text-muted);
}
.ai-avatar { font-size: 1.5rem; color: var(--pk-dark-green); }
.ai-send { width: 32px; height: 32px; background: var(--pk-dark-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; }


/* Comparison Table */
.comparison-section {
  padding: 80px 0 120px;
  background-color: var(--pk-white);
  text-align: center;
}

.comparison-section .section-headline { margin-top: 0; }
.comparison-section .section-desc { margin: 0 auto 60px; }

.comparison-table-wrapper {
  overflow-x: auto;
  padding-bottom: 20px;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 24px 16px;
  border-bottom: 1px solid var(--pk-divider);
}

.comparison-table th {
  font-weight: 600;
  color: var(--pk-text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--pk-divider);
}

.comparison-table .feature-col {
  text-align: left;
  width: 30%;
  font-weight: 600;
  color: var(--pk-dark-green);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
}

.comparison-table .feature-name {
  text-align: left;
  font-weight: 500;
}

.heidi-col {
  background-color: var(--pk-bg-surface);
}

.brand-heidi {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--pk-dark-green);
  text-transform: none;
}

.check { color: var(--pk-dark-green); font-weight: bold; font-size: 1.25rem; }
.dash { color: var(--pk-sage-green); font-weight: bold; }

/* Steps Section */
.steps-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.steps-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

.steps-section .section-desc { margin: 0 auto 80px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  text-align: left;
}

.step-illustration {
  background-color: var(--pk-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  aspect-ratio: 1/1;
  margin-bottom: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--pk-divider);
}

/* Step Cards (Heading 3) */
.step-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; line-height: 1.1; letter-spacing: -0.01em; } /* Matches Heidi 24px (Heading 3) */
.step-desc { color: var(--pk-text-muted); line-height: 1.5; letter-spacing: -0.02em; } /* Heidi Body */

/* Step 1 Visual */
.step-mic-container { margin-bottom: 20px; text-align: center; }
.waveform-anim { display: flex; gap: 4px; align-items: center; justify-content: center; height: 20px; margin-top: 16px; }
.waveform-anim span {
  display: inline-block; width: 4px; background-color: var(--pk-dark-green); border-radius: 2px;
  animation: wave-bounce 1s infinite ease-in-out alternate;
  animation-delay: calc(var(--i) * 0.1s);
}
.step-cta-mini {
  background: var(--pk-dark-green); color: white; padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 500; margin-top: 20px;
}

/* Step 2 Visual */
.step-doc-mock {
  display: flex; width: 100%; height: 100%; border: 1px solid var(--pk-divider); border-radius: var(--radius-md); overflow: hidden;
}
.step-doc-sidebar { width: 30%; background: var(--pk-bg-surface); padding: 16px; border-right: 1px solid var(--pk-divider); }
.sds-line { height: 4px; background: rgba(0,0,0,0.1); margin-bottom: 12px; border-radius: 2px;}
.step-doc-main { flex: 1; padding: 16px; }
.sdm-header { font-size: 0.75rem; font-weight: 600; margin-bottom: 16px; }
.sdm-lines { display: flex; flex-direction: column; gap: 8px;}
.sdm-line { height: 6px; background: rgba(0,0,0,0.05); border-radius: 3px; }
.sdm-line.accent { background: rgba(66, 133, 244, 0.2); }

/* Step 3 Visual */
.step-tags-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.floating-tag {
  position: absolute; background: var(--pk-bg-surface); padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 0.75rem; border: 1px solid var(--pk-divider); white-space: nowrap;
}
.tag-1 { top: 20%; left: 10%; animation: float 5s infinite; }
.tag-2 { top: 30%; right: 10%; animation: float 6s infinite 1s; }
.tag-3 { bottom: 30%; left: 15%; animation: float 4s infinite 0.5s; }
.tag-4 { bottom: 20%; right: 20%; animation: float 5s infinite 1.5s; }

.step-prompt-mini {
  position: relative; z-index: 10; background: white; border: 1px solid var(--pk-divider);
  padding: 8px 12px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; width: 90%; box-shadow: var(--shadow-sm);
}
.spm-send { margin-left: auto; background: var(--pk-dark-green); color: white; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--pk-bg-surface);
}

.testimonial-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .testimonial-container { grid-template-columns: 3fr 2fr; }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--pk-dark-green);
  margin-bottom: 40px;
}

.testimonial-author strong { display: block; font-size: 1.125rem; margin-bottom: 4px; }
.testimonial-author span { color: var(--pk-text-muted); }

.testimonial-photo-frame {
  background: var(--pk-dark-green);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.testimonial-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}

/* ===== Section 7: Get Started ===== */
.get-started-section {
  padding: var(--section-padding) 0;
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
  position: relative;
  overflow: hidden;
}

.get-started-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232, 115, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.get-started-header {
  text-align: center;
  margin-bottom: 72px;
}

.get-started-header .section-headline {
  color: var(--pk-white);
  max-width: 600px;
  margin: 0 auto 20px;
}

.get-started-header .section-headline .accent-text {
  color: var(--pk-accent-coral);
}

.get-started-header .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

/* Steps Row */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

@media (min-width: 992px) {
  .steps-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
  }
}

/* Individual Step */
.gs-step {
  text-align: center;
  max-width: 320px;
  flex: 1;
  position: relative;
}

.gs-step-number {
  margin-bottom: 20px;
}

.gs-step-number span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}

.gs-step-number-accent span {
  color: var(--pk-accent-coral);
}

.gs-step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.gs-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-white);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-step:hover .gs-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.gs-icon-live {
  background: rgba(232, 115, 74, 0.15) !important;
  border-color: rgba(232, 115, 74, 0.3) !important;
  color: var(--pk-accent-coral) !important;
}

.gs-step:hover .gs-icon-live {
  background: rgba(232, 115, 74, 0.25) !important;
  box-shadow: 0 12px 32px rgba(232, 115, 74, 0.15);
}

.gs-live-pulse {
  position: absolute;
  top: -4px;
  right: calc(50% - 40px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid var(--pk-dark-green);
  animation: gsLivePulse 2s ease-in-out infinite;
}

@keyframes gsLivePulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
  50% { opacity: 1; box-shadow: 0 0 12px 4px rgba(74, 222, 128, 0.3); }
}

.gs-step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pk-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.gs-step-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.gs-step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gs-step-time-accent {
  color: var(--pk-accent-coral);
  background: rgba(232, 115, 74, 0.08);
  border-color: rgba(232, 115, 74, 0.15);
}

/* Connectors */
.gs-connector {
  display: none;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  padding: 0 12px;
  margin-top: 64px;
}

@media (min-width: 992px) {
  .gs-connector {
    display: flex;
    align-items: center;
  }
}

/* Bottom CTA */
.gs-bottom-cta {
  text-align: center;
}

.gs-cta-btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  background: var(--pk-accent-coral);
  gap: 10px;
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.3);
  transition: all 0.3s ease;
}

.gs-cta-btn:hover {
  background: #d65a38;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 115, 74, 0.4);
}

.gs-cta-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Section 6: FAQ ===== */
.faq-section {
  padding: var(--section-padding) 0;
  background-color: var(--pk-bg-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
  }
}

.faq-header {
  position: relative;
}

@media (min-width: 992px) {
  .faq-header {
    position: sticky;
    top: 120px;
  }
}

.faq-header .section-headline {
  margin-bottom: 16px;
}

.faq-cta-aside {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--pk-divider);
}

.faq-cta-text {
  font-size: 0.9rem;
  color: var(--pk-text-muted);
  margin-bottom: 14px;
}

.btn-faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pk-dark-green);
  color: var(--pk-white);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-faq-contact:hover {
  background: var(--pk-dark-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 51, 44, 0.15);
}

/* FAQ List & Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--pk-divider);
}

.faq-item:first-child {
  border-top: 1px solid var(--pk-divider);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--pk-accent-coral);
}

.faq-q-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pk-dark-green);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-question:hover .faq-q-text {
  color: var(--pk-accent-coral);
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 51, 44, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-dark-green);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
  background: var(--pk-accent-coral);
  color: var(--pk-white);
  transform: rotate(45deg);
}

.faq-question:hover .faq-icon {
  background: rgba(26, 51, 44, 0.08);
}

.faq-item.open .faq-question:hover .faq-icon {
  background: var(--pk-accent-coral);
}

/* Answer accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 28px 0;
}

.faq-answer-inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pk-text-muted);
  max-width: 580px;
  letter-spacing: -0.01em;
}

/* CTA Section */
.cta-section {
  padding: 120px 24px;
  background-color: var(--pk-bg-light); /* Integrating with the glow */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-waves { position: absolute; top:0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;}
.cta-content { position: relative; z-index: 10; max-width: 600px; margin: 0 auto; }

.cta-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 400; margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.1; }
.cta-subtitle { font-size: 1.25rem; color: var(--pk-text-muted); margin-bottom: 40px; }

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background-color: var(--pk-dark-green); color: var(--pk-white);
  padding: 16px 32px; border-radius: var(--radius-pill);
  font-size: 1.125rem; font-weight: 500;
  transition: transform 0.2s;
}
.btn-cta-white:hover { transform: translateY(-3px); }

/* ===== Footer ===== */
.footer {
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
}

/* Footer CTA Band */
.footer-cta-band {
  background: linear-gradient(135deg, #1f3d35 0%, #162e27 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 24px;
}

.footer-cta-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.footer-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--pk-white);
}

.footer-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  background-color: var(--pk-accent-coral);
  color: var(--pk-white);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s, transform 0.2s;
}

.footer-cta-btn:hover {
  background-color: #d4663f;
  transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
  padding: 72px 0 0;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-hipaa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
}

.footer-hipaa-logo {
  display: block;
  width: 100px;
  height: auto;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.01em;
}

.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 500;
}

.footer-microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 2px;
  opacity: 0.74;
}

.footer-microsoft-mark i {
  display: block;
  width: 6px;
  height: 6px;
}

.footer-microsoft-mark i:nth-child(1) { background: #f25022; }
.footer-microsoft-mark i:nth-child(2) { background: #7fba00; }
.footer-microsoft-mark i:nth-child(3) { background: #00a4ef; }
.footer-microsoft-mark i:nth-child(4) { background: #ffb900; }

/* Link Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  line-height: 1.4;
}

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

/* Divider */
.footer-divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-bottom-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s;
}

.footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--pk-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-brand-logo {
    width: 180px;
    height: 40px;
  }
}

/* Legacy footer classes — kept for compatibility */
.footer-top { margin-bottom: 0; }
.footer-brand { max-width: 620px; }
.footer-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.footer-trust-copy { font-size: 0.95rem; color: rgba(255, 255, 255, 0.74); line-height: 1.5; }
.footer-links-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.84); }
.footer-links-row a { font-size: 0.92rem; opacity: 0.84; }
.footer-links-row a:hover { opacity: 1; }
.footer-links-row a:not(:last-child)::after { content: "|"; margin-left: 12px; color: rgba(255, 255, 255, 0.34); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 40px; }
.footer-bottom { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-logo-text { font-family: var(--font-serif); font-size: 3rem; opacity: 0.9; }
.footer-bottom-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; min-width: 50%; }


/* ═══════════════════════════════════════════════════════
   HERO TILES — InnovateHealth Clinic Ops Visual System
   ═══════════════════════════════════════════════════════ */

/* Tile: Call Answered — Waveform */
.waveform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  width: 100%;
  padding: 20px 0;
}

.wave-bar {
  display: block;
  width: 8px;
  border-radius: 4px;
  background-color: rgba(26, 51, 44, 0.18);
  animation: waveBreath 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.wave-bar:nth-child(1) { height: 28px; }
.wave-bar:nth-child(2) { height: 48px; }
.wave-bar:nth-child(3) { height: 22px; }
.wave-bar:nth-child(4) { height: 55px; }
.wave-bar:nth-child(5) { height: 32px; }
.wave-bar:nth-child(6) { height: 42px; }
.wave-bar:nth-child(7) { height: 18px; }

@keyframes waveBreath {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Tile: Callback Queued */
.callback-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 8px 0;
}

.callback-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26, 51, 44, 0.06);
}

.callback-info {
  display: flex;
  flex-direction: column;
}

.callback-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pk-text-main);
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.2s;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tile: Call in Progress (center coral card) */
.call-status-display {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  width: 100%;
}

.call-status-icon {
  position: relative;
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.call-pulse-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  background-color: #4ADE80;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  animation: callPulse 2s ease-in-out infinite;
}

@keyframes callPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.call-status-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

/* Tile: Appointment Booked */
.booking-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  width: 100%;
}

.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(26, 51, 44, 0.05);
  border-radius: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(26, 51, 44, 0.07);
}

.date-day {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pk-text-muted);
  line-height: 1.2;
}

.date-num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pk-text-main);
  line-height: 1;
}

.booking-check {
  width: 38px;
  height: 38px;
  background: var(--pk-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: checkAppear 0.45s ease forwards;
  animation-delay: 1.5s;
}

@keyframes checkAppear {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* Tile: Reminder Sent */
.reminder-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  justify-content: center;
  padding: 8px 0;
}

.reminder-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 51, 44, 0.04);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(26, 51, 44, 0.06);
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards;
  animation-delay: 0.8s;
}

.reminder-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pk-text-muted);
}

/* Tile: Running */
.running-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  width: 100%;
}

.running-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.running-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #4ADE80;
  border-radius: 50%;
  animation: runPulse 3s ease-in-out infinite;
}

@keyframes runPulse {
  0%, 100% { opacity: 0.35; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
  50% { opacity: 1; box-shadow: 0 0 14px 5px rgba(74, 222, 128, 0.3); }
}

/* ─── Responsive adjustments for hero tiles ─── */
@media (max-width: 768px) {
  .wave-bar { width: 5px; }
  .wave-bar:nth-child(1) { height: 18px; }
  .wave-bar:nth-child(2) { height: 32px; }
  .wave-bar:nth-child(3) { height: 15px; }
  .wave-bar:nth-child(4) { height: 36px; }
  .wave-bar:nth-child(5) { height: 22px; }
  .wave-bar:nth-child(6) { height: 28px; }
  .wave-bar:nth-child(7) { height: 12px; }
  .waveform-visual { gap: 4px; }

  .call-status-icon { width: 48px; height: 48px; }
  .call-status-icon svg { width: 22px; height: 22px; }
  .call-status-text { font-size: 0.7rem; }
  .call-pulse-dot { width: 10px; height: 10px; top: 2px; right: 2px; }

  .running-label { font-size: 1.1rem; }
  .date-num { font-size: 1.2rem; }
  .date-block { padding: 8px 14px; }

  .callback-time { font-size: 0.7rem; }
  .callback-icon { width: 36px; height: 36px; }
  .callback-icon svg { width: 18px; height: 18px; }

  .reminder-text { font-size: 0.65rem; }
  .reminder-bubble { padding: 10px 12px; gap: 8px; }
  .reminder-bubble svg { width: 14px; height: 14px; }
}

/* ═══════════════════════════════════════════════════════
   HERO ATMOSPHERE — Continuous rightward flow bands
   Broad filled shapes that drift continuously to the
   right, creating layered parallax depth behind
   the hero. Each track contains two identical SVGs
   for seamless looping.
   ═══════════════════════════════════════════════════════ */

.hero-atmosphere {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20vh; /* Constrained — waves stay in lower edge only */
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Fade the top edge so waves don't hard-start mid-hero */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
}

.atmos-track {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: 100%;
}

.atmos-band {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}

/* Band 1: Back — Sage/Mint Green */
.atmos-track-1 {
  opacity: 0.18;
  animation: atmosFlowRight 80s linear infinite;
}

/* Band 2: Middle — Warm Coral/Blush */
.atmos-track-2 {
  opacity: 0.13;
  animation: atmosFlowRight 55s linear infinite;
}

/* Band 3: Front — Dark Green */
.atmos-track-3 {
  opacity: 0.09;
  animation: atmosFlowRight 100s linear infinite;
}

@keyframes atmosFlowRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Ensure hero content sits above the atmosphere */
.hero-container {
  position: relative;
  z-index: 10;
}

/* ─── Hero Sub-note (Sub heading scale) ─── */
.hero-subnote {
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 460px;
  font-size: 1.125rem;
  line-height: 1.5; /* Heidi 150% leading */
  color: var(--pk-text-muted);
  font-weight: 400;
  letter-spacing: -0.02em; /* Heidi tracking */
}

/* Atmosphere + Sub-note responsive */
@media (max-width: 768px) {
  .hero-atmosphere {
    height: 65%;
  }
  .hero-subnote {
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 380px;
    font-size: 1.05rem;
  }
}

/* ===== Section 2: Problem — In Numbers ===== */
.problem-section {
  padding: 0 0 var(--section-padding);
  background-color: var(--pk-bg-light);
}

.problem-inner {
  text-align: center;
  margin-bottom: 56px;
}

.problem-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pk-accent-coral);
  margin-bottom: 16px;
}

.problem-inner .section-headline {
  max-width: 700px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--pk-bg-surface);
  border: 1px solid var(--pk-divider);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(26, 51, 44, 0.10);
}

.stat-card-accent {
  background: var(--pk-dark-green);
  border-color: transparent;
}

.stat-card-accent .stat-number,
.stat-card-accent .stat-label {
  color: var(--pk-white);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--pk-dark-green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pk-accent-coral);
  margin-top: -2px;
}

.stat-card-accent .stat-unit {
  color: var(--pk-accent-coral);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--pk-text-muted);
  line-height: 1.4;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.stats-footnote {
  text-align: center;
  font-size: 1.05rem;
  color: var(--pk-text-muted);
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* ===== Section 3: Operating Layer ===== */
.operating-section {
  padding: var(--section-padding) 0;
  background-color: var(--pk-dark-green);
  color: var(--pk-white);
}

.operating-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pk-accent-coral);
  margin-bottom: 16px;
}

.operating-header .section-headline {
  color: var(--pk-white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.operating-header .section-headline .accent-text {
  color: var(--pk-accent-coral);
}

.operating-header .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

/* Premium Pipeline Workflow */
.operating-section {
  position: relative;
  overflow: hidden;
}

.operating-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 800px;
  background: radial-gradient(circle at center, rgba(31, 62, 54, 0.8) 0%, rgba(26, 51, 44, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.pipeline-container {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
}

.pipeline-track-wrapper {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
}

.pipeline-track {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.pipeline-glow {
  position: absolute;
  top: -1px;
  left: 0;
  width: 150px;
  height: 4px;
  background: var(--pk-accent-coral);
  box-shadow: 0 0 15px var(--pk-accent-coral);
  border-radius: 4px;
  animation: moveGlow 6s ease-in-out infinite;
}

@keyframes moveGlow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 150px); opacity: 0; }
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 40px;
}

.pipeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pipeline-node {
  position: absolute;
  top: -46px; /* Hits the track */
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pk-dark-green);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  transition: all 0.3s;
}

.pipeline-item:hover .pipeline-node {
  border-color: var(--pk-accent-coral);
  background: var(--pk-accent-coral);
  box-shadow: 0 0 10px rgba(232, 115, 74, 0.5);
}

.pipeline-node::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 3px;
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.pipeline-item:hover .pipeline-node::after {
  background: linear-gradient(to bottom, var(--pk-accent-coral), transparent);
}

.pipeline-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pipeline-item:hover .pipeline-card {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-white);
  transition: color 0.3s;
}

.pipeline-item:hover .card-icon {
  color: var(--pk-accent-coral);
}

.step-label {
  font-family: var(--font-sans);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.pipeline-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--pk-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pipeline-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Final Step Styling (Human) */
.pipeline-item.final .pipeline-node {
  border-color: var(--pk-accent-coral);
  background: var(--pk-accent-coral);
}

.pipeline-item.final .pipeline-node::after {
  background: linear-gradient(to bottom, var(--pk-accent-coral), rgba(255,255,255,0.1));
}

.pipeline-item.final .pipeline-card {
  background: var(--pk-white);
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  z-index: 5;
}

.pipeline-item.final:hover .pipeline-card {
  transform: scale(1.05) translateY(-8px);
}

.pipeline-item.final .card-icon {
  background: rgba(232, 115, 74, 0.1);
  color: var(--pk-accent-coral);
}

.pipeline-item.final .step-label {
  color: rgba(26, 51, 44, 0.3);
}

.pipeline-item.final h3 {
  color: var(--pk-dark-green);
  font-weight: 600;
}

.pipeline-item.final p {
  color: var(--pk-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .pipeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pipeline-item.final {
    grid-column: span 3;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pipeline-track-wrapper {
    top: 0; bottom: 0; left: 30px; width: 2px; height: 100%;
  }
  .pipeline-glow {
    top: 0; left: -1px; width: 4px; height: 150px;
    animation: moveGlowVert 6s ease-in-out infinite;
  }
  
  @keyframes moveGlowVert {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 150px); opacity: 0; }
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 70px;
  }
  
  .pipeline-node {
    left: -40px;
    top: 40px;
    transform: none;
  }
  
  .pipeline-node::after {
    top: 4px; left: 10px; width: 36px; height: 2px;
  }

  .pipeline-item.final {
    grid-column: 1;
    max-width: 100%;
  }
}

/* ===== Section 5: Built Inside a Real Clinic ===== */
.clinic-proof-section {
  padding: var(--section-padding) 0;
  background-color: var(--pk-bg-surface);
  position: relative;
  overflow: hidden;
}

.clinic-proof-bg {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(232, 115, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.clinic-proof-header {
  text-align: center;
  margin-bottom: 64px;
}

.clinic-proof-header .section-headline {
  max-width: 700px;
  margin: 0 auto 20px;
}

.clinic-proof-header .section-desc {
  margin: 0 auto;
}

/* Founder Block */
.founder-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 72px;
}

@media (min-width: 992px) {
  .founder-block {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
}

/* Quote Area */
.founder-quote-area {
  background: var(--pk-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 12px 40px -8px rgba(26, 51, 44, 0.08);
  border: 1px solid rgba(26, 51, 44, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--pk-accent-coral);
  opacity: 0.15;
  position: absolute;
  top: 24px;
  left: 32px;
  pointer-events: none;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--pk-dark-green);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.founder-quote em {
  color: var(--pk-accent-coral);
  font-style: italic;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pk-dark-green) 0%, #2A483E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-initials {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pk-white);
  letter-spacing: 0.02em;
}

.founder-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pk-accent-coral);
  color: var(--pk-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pk-white);
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-details strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pk-dark-green);
}

.founder-details span {
  font-size: 0.88rem;
  color: var(--pk-text-muted);
}

.founder-role-sub {
  font-size: 0.8rem !important;
  color: var(--pk-accent-coral) !important;
  font-weight: 500;
}

/* Before/After Card */
.founder-visual-area {
  display: flex;
  align-items: stretch;
}

.clinic-ba-card {
  background: var(--pk-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 12px 40px -8px rgba(26, 51, 44, 0.08);
  border: 1px solid rgba(26, 51, 44, 0.05);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.ba-tab-row {
  display: flex;
  background: rgba(26, 51, 44, 0.04);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.ba-tab {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pk-text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-tab.active {
  background: var(--pk-white);
  color: var(--pk-dark-green);
  box-shadow: 0 2px 8px rgba(26, 51, 44, 0.08);
}

.ba-tab:hover:not(.active) {
  color: var(--pk-dark-green);
}

.ba-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  animation: baFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-content.ba-hidden {
  display: none;
}

@keyframes baFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ba-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.ba-item.ba-pain {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.08);
}

.ba-item.ba-win {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.08);
}

.ba-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-icon-circle.ba-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.ba-icon-circle.ba-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.ba-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ba-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pk-text-muted);
}

.ba-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.ba-value-red { color: #dc2626; }
.ba-value-green { color: #16a34a; }

/* Outcome Metrics Strip */
.outcome-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--pk-dark-green);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.outcome-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 10% 50%, rgba(232, 115, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .outcome-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 56px 48px;
  }
}

.outcome-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.outcome-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--pk-white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
}

.outcome-unit {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pk-accent-coral);
  display: inline;
  margin-left: 2px;
}

.outcome-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.outcome-divider {
  display: none;
}

@media (min-width: 768px) {
  .outcome-divider {
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pk-white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pk-dark-green);
  border: 1px solid rgba(26, 51, 44, 0.06);
  box-shadow: 0 2px 8px rgba(26, 51, 44, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 51, 44, 0.08);
}

.trust-badge-item svg {
  color: var(--pk-accent-coral);
  flex-shrink: 0;
}

/* ===== Section 4: Core Capabilities Bento Grid ===== */

.capabilities-section {
  padding: var(--section-padding) 0;
  background-color: var(--pk-bg-light);
  /* Subtle animated wave/mesh background */
  background-image: 
    radial-gradient(at 10% 20%, rgba(233, 240, 236, 0.4) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(26, 51, 44, 0.03) 0px, transparent 50%);
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(232, 115, 74, 0.02) 0%, transparent 40%);
  animation: bg-drift 20s infinite linear alternate;
  pointer-events: none;
  z-index: 0;
}

.capabilities-section .container {
  position: relative;
  z-index: 1;
}

.capabilities-header {
  text-align: center;
  margin-bottom: 64px;
}

.capabilities-header .section-headline {
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.bento-wide,
  .bento-card.bento-full {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-card.bento-wide {
    grid-column: span 2;
  }
  .bento-card.bento-full {
    grid-column: span 3;
  }
}

/* Bento Card */
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(26, 51, 44, 0.12);
}

.bento-card-inner {
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--pk-bg-surface);
  border: 1px solid var(--pk-divider);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient sheen on hover */
.bento-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.bento-card:hover .bento-card-inner::before {
  left: 100%;
}

/* Badge */
.bento-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(232, 115, 74, 0.1);
  color: var(--pk-accent-coral);
}

.bento-badge.badge-dark {
  background: var(--pk-dark-green);
  color: var(--pk-white);
}

/* Icon */
.bento-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 51, 44, 0.06) 0%, rgba(26, 51, 44, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-dark-green);
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s;
}

.bento-card:hover .bento-icon-wrap {
  background: var(--pk-dark-green);
  color: var(--pk-white);
}

/* Card Content */
.bento-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--pk-dark-green);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--pk-text-muted);
  line-height: 1.6;
  flex: 1;
}

/* Stat Callout */
.bento-stat {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--pk-divider);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bento-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pk-accent-coral);
  line-height: 1;
  letter-spacing: -0.03em;
}

.bento-stat-label {
  font-size: 0.85rem;
  color: var(--pk-text-muted);
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pk-accent-coral), #d65a38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Card Polish (Inset Shadow) */
.bento-card-inner {
  border: none;
  box-shadow: inset 0 0 0 1px rgba(26, 51, 44, 0.08), 0 2px 8px rgba(0,0,0,0.02);
}

/* ===== AI Voice Hero Card Specifics ===== */
.bento-voice-hero .bento-card-inner {
  padding: 40px;
}

.bento-voice-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

@media (min-width: 1024px) {
  .bento-voice-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .bento-voice-text {
    flex: 1;
    max-width: 60%;
  }
  .bento-voice-demo {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-left: 32px;
    border-left: 1px solid var(--pk-divider);
  }
}

.layer-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pk-accent-coral);
  margin-bottom: 6px;
}

.powered-by-breeze {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pk-dark-green);
  background: rgba(26, 51, 44, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--pk-accent-coral);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--pk-accent-coral);
  animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.demo-visual {
  width: 100%;
  height: 100px;
  background: rgba(26, 51, 44, 0.03);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-visual .breeze-waveform .bar {
  width: 8px;
  background: rgba(26, 51, 44, 0.2);
}
.demo-visual .breeze-waveform.active .bar {
  background: var(--pk-accent-coral);
}

.breeze-cta-btn {
  width: 100%;
  background: var(--pk-dark-green);
  color: var(--pk-white);
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.breeze-cta-btn:hover {
  background: var(--pk-accent-coral);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 115, 74, 0.2);
}

/* ===== Breeze AI — Proactive Voice Companion ===== */
.breeze-companion {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

/* --- Live Status Dot (reusable) --- */
.breeze-live-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.breeze-live-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid #34d399;
  animation: live-dot-pulse 1.5s infinite;
}
@keyframes live-dot-pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- Proactive Toast --- */
.breeze-toast {
  width: 320px;
  background: rgba(26, 51, 44, 0.85);
  backdrop-filter: blur(32px) saturate(120%);
  -webkit-backdrop-filter: blur(32px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  color: var(--pk-white);
  box-shadow: 
    0 20px 40px -8px rgba(0, 0, 0, 0.3), 
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  /* Spring-like transition */
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.breeze-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.breeze-toast.hidden {
  display: none;
}

.breeze-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s;
  line-height: 1;
}
.breeze-toast-close:hover {
  color: var(--pk-white);
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.breeze-toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.breeze-toast-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Toast Waveform */
.breeze-toast-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin-bottom: 16px;
}
.breeze-toast-wave .bar {
  width: 4px;
  height: 8px;
  background: var(--pk-accent-coral);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(232, 115, 74, 0.4);
  animation: toast-wave 1.2s ease-in-out infinite alternate;
}
.breeze-toast-wave .bar:nth-child(1) { animation-delay: 0.0s; }
.breeze-toast-wave .bar:nth-child(2) { animation-delay: 0.2s; }
.breeze-toast-wave .bar:nth-child(3) { animation-delay: 0.1s; }
.breeze-toast-wave .bar:nth-child(4) { animation-delay: 0.3s; }
.breeze-toast-wave .bar:nth-child(5) { animation-delay: 0.15s; }
@keyframes toast-wave {
  0% { height: 8px; box-shadow: 0 0 4px rgba(232, 115, 74, 0.2); }
  100% { height: 36px; box-shadow: 0 0 12px rgba(232, 115, 74, 0.6); }
}

.breeze-toast-message {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.breeze-talk-btn {
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--pk-accent-coral), #d65a38);
  color: var(--pk-white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(232, 115, 74, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.breeze-talk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* --- Collapsed Mic Icon --- */
.breeze-mic-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pk-accent-coral), #d65a38);
  color: var(--pk-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(232, 115, 74, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  /* Spring hover */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.breeze-mic-icon:hover {
  transform: scale(1.1) translateY(-4px);
}
.breeze-mic-icon.hidden {
  display: none;
}
.breeze-mic-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--pk-accent-coral);
  animation: pulse 2s infinite;
  opacity: 0;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* --- Expanded Voice Panel --- */
.breeze-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  background: rgba(26, 51, 44, 0.85);
  backdrop-filter: blur(32px) saturate(120%);
  -webkit-backdrop-filter: blur(32px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 
    0 24px 64px -12px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  /* Spring-like transition */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}
.breeze-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Panel Header */
.breeze-panel-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.breeze-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.breeze-header-info h3 {
  color: var(--pk-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
}
.breeze-header-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.4;
}
.breeze-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s;
}
.breeze-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pk-white);
  transform: scale(1.05);
}

/* Panel Body */
.breeze-panel-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.breeze-avatar-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Large Waveform (Panel) */
.breeze-waveform-lg {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 64px;
}
.breeze-waveform-lg .bar {
  width: 6px;
  height: 12px;
  background: var(--pk-accent-coral);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(232, 115, 74, 0.5);
}
.breeze-waveform-lg.active .bar {
  animation: wave-lg 1.2s ease-in-out infinite alternate;
}
.breeze-waveform-lg.active .bar:nth-child(1) { animation-delay: 0.0s; }
.breeze-waveform-lg.active .bar:nth-child(2) { animation-delay: 0.15s; }
.breeze-waveform-lg.active .bar:nth-child(3) { animation-delay: 0.3s; }
.breeze-waveform-lg.active .bar:nth-child(4) { animation-delay: 0.1s; }
.breeze-waveform-lg.active .bar:nth-child(5) { animation-delay: 0.25s; }
.breeze-waveform-lg.active .bar:nth-child(6) { animation-delay: 0.05s; }
.breeze-waveform-lg.active .bar:nth-child(7) { animation-delay: 0.35s; }
.breeze-waveform-lg.active .bar:nth-child(8) { animation-delay: 0.2s; }
.breeze-waveform-lg.active .bar:nth-child(9) { animation-delay: 0.12s; }
@keyframes wave-lg {
  0% { height: 12px; box-shadow: 0 0 5px rgba(232, 115, 74, 0.3); }
  100% { height: 64px; box-shadow: 0 0 15px rgba(232, 115, 74, 0.8); }
}

/* Small Waveform (Bento Card) */
.breeze-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 48px;
}
.breeze-waveform .bar {
  width: 6px;
  height: 12px;
  background: var(--pk-accent-coral);
  border-radius: 4px;
}
.breeze-waveform.active .bar {
  animation: wave 1.2s ease-in-out infinite alternate;
}
.breeze-waveform.active .bar:nth-child(1) { animation-delay: 0.1s; }
.breeze-waveform.active .bar:nth-child(2) { animation-delay: 0.3s; }
.breeze-waveform.active .bar:nth-child(3) { animation-delay: 0.0s; }
.breeze-waveform.active .bar:nth-child(4) { animation-delay: 0.4s; }
.breeze-waveform.active .bar:nth-child(5) { animation-delay: 0.2s; }
.breeze-waveform.active .bar:nth-child(6) { animation-delay: 0.15s; }
.breeze-waveform.active .bar:nth-child(7) { animation-delay: 0.35s; }
@keyframes wave {
  0% { height: 12px; }
  100% { height: 48px; }
}

.breeze-status {
  color: var(--pk-white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Suggestions */
.breeze-suggestions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suggestion-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
}
.suggestion-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.suggestion-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--pk-white);
  transform: translateX(4px);
}

/* Panel Footer */
.breeze-panel-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.breeze-action-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.breeze-action-btn.end-call:hover {
  background: rgba(239, 68, 68, 0.9);
  color: var(--pk-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

@media (max-width: 480px) {
  .breeze-toast {
    width: calc(100vw - 48px);
  }
  .breeze-panel {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: -8px;
  }
}
