:root {
  /* Pool Blue - Primary */
  --color-pool-900: #0C3A74;
  --color-pool-800: #114F97;
  --color-pool-700: #1663B9;
  --color-pool-600: #1B6FCC;
  --color-pool-500: #1F7AE0;
  --color-pool-300: #7DB5F6;
  --color-pool-100: #D6E9FF;
  --color-pool-50: #E6F2FF;

  /* Poolside Coral - Secondary */
  --color-coral-900: #7A2A17;
  --color-coral-700: #D94E25;
  --color-coral-500: #FF6A3D;
  --color-coral-300: #FF9C82;
  --color-coral-100: #FFE2D7;

  /* Tile Aqua - Accent */
  --color-aqua-900: #075B50;
  --color-aqua-700: #029C88;
  --color-aqua-500: #00BFA6;
  --color-aqua-300: #75E2D6;
  --color-aqua-100: #D7FFF6;

  /* Neutrals */
  --color-ink: #0B1220;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-500: #64748B;
  --color-slate-300: #CBD5E1;
  --color-slate-200: #E2E8F0;
  --color-slate-100: #F1F5F9;
  --color-slate-50: #F8FAFC;
  --color-white: #FFFFFF;
  --color-pool-deck: #E8EAED;

  /* State Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Typography */
  --font-display: 'Sora', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Effects */
  --radius-card: 24px;
  --shadow-soft: 0 18px 40px rgba(12, 58, 116, 0.12);
  --shadow-light: 0 10px 24px rgba(31, 122, 224, 0.14);
  --wave-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 300 150'%3E%3Cpath d='M0 100 Q 37.5 70, 75 100 T 150 100 T 225 100 T 300 100' fill='none' stroke='%237DB5F6' stroke-width='3' opacity='0.5'/%3E%3Cpath d='M0 80 Q 37.5 50, 75 80 T 150 80 T 225 80 T 300 80' fill='none' stroke='%2375E2D6' stroke-width='2.5' opacity='0.4'/%3E%3Cpath d='M0 60 Q 37.5 35, 75 60 T 150 60 T 225 60 T 300 60' fill='none' stroke='%231F7AE0' stroke-width='2' opacity='0.35'/%3E%3Cpath d='M0 120 Q 37.5 95, 75 120 T 150 120 T 225 120 T 300 120' fill='none' stroke='%23D6E9FF' stroke-width='4' opacity='0.6'/%3E%3Cpath d='M0 40 Q 37.5 20, 75 40 T 150 40 T 225 40 T 300 40' fill='none' stroke='%2375E2D6' stroke-width='1.5' opacity='0.3'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: radial-gradient(circle at top left, rgba(214, 233, 255, 0.55), rgba(255, 255, 255, 0.7)), var(--color-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Waves removed from default sections - only show on .section.with-waves */
.section::before {
  display: none;
}

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

/* Announcement Bar */
.announcement-bar {
  background: var(--color-pool-800);
  color: #fff;
  font-size: 0.9375rem;
  font-family: var(--font-body);
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 8px 100px;
}

.announcement-bar-left,
.announcement-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.announcement-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.announcement-bar a:hover {
  color: #fff;
}

.announcement-promo {
  text-decoration: none;
}

.announcement-promo:hover {
  text-decoration: none;
}

.announcement-lang {
  font-weight: 600;
}

.announcement-phone {
  font-weight: 600;
}

.announcement-login {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: radial-gradient(circle at top left, rgba(214, 233, 255, 0.55), rgba(255, 255, 255, 0.7)), var(--color-white);
  backdrop-filter: blur(12px);
}

.site-header > .nav-container {
  width: 100%;
  max-width: none;
  padding: 16px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  color: var(--color-slate-700);
  margin-left: 40px;
  margin-top: 6px;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-pool-500);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-pool-500);
  opacity: 0;
}

.nav-links a:focus::after {
  opacity: 1;
}

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

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(12, 58, 116, 0.12);
  padding: 8px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown-menu.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 580px;
  gap: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--color-slate-700);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-pool-50);
}

.nav-dropdown-menu a::after {
  display: none;
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px !important;
  color: var(--color-pool-500);
  flex-shrink: 0;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
}

.dropdown-item-title {
  font-weight: 600;
  color: var(--color-slate-800);
}

.nav-dropdown-menu a:hover .dropdown-item-title {
  color: var(--color-pool-600);
}

.dropdown-item-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-slate-500);
  margin-top: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

/* Header Phone */
.header-phone {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-slate-700);
  padding: 8px 12px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--color-pool-500);
}

@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }
}

/* Login Link */
.login-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-slate-700);
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: var(--color-pool-500);
}

/* Buttons */
.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-button:focus-visible,
.ghost-button:focus-visible {
  outline: 2px solid var(--color-pool-300);
  outline-offset: 3px;
}

.cta-button {
  background-color: var(--color-coral-500);
  color: var(--color-white);
}

.cta-button:hover {
  background-color: var(--color-coral-700);
  transform: translateY(-1px);
}

.cta-button.large {
  padding: 14px 28px;
  font-size: 1rem;
}

.ghost-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 20px;
}

.ghost-button:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #016ec3;
}

/* Typography */
.tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-coral-500);
  display: inline-block;
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 32px;
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
  color: var(--color-slate-700);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--color-slate-700);
  margin-bottom: 48px;
  max-width: 720px;
}

/* New Hero Section - Clean, centered design */
.hero-new {
  padding: 120px 0 100px;
  background: #1a5fb4;
  position: relative;
  overflow: hidden;
  min-height: 680px;
}

/* Decorative waves at bottom of hero */
.hero-new::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 50%;
  height: 200px;
  background: var(--wave-pattern);
  background-repeat: repeat-x;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%), linear-gradient(to left, transparent 0%, rgba(0,0,0,1) 15%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%), linear-gradient(to left, transparent 0%, rgba(0,0,0,1) 15%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

/* Decorative waves at top of hero */
.hero-new::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 200px;
  background: var(--wave-pattern);
  background-repeat: repeat-x;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%), linear-gradient(to left, transparent 0%, rgba(0,0,0,1) 15%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%), linear-gradient(to left, transparent 0%, rgba(0,0,0,1) 15%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}


/* Hero slideshow - images on right side */
.hero-slideshow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
  background-color: #1a5fb4;
  overflow: hidden;
}

/* Show desktop slideshow by default, hide mobile */
.hero-slideshow-mobile {
  display: none;
}

.hero-slideshow-desktop {
  display: block;
}

.hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Position slides 2 and 3 */
.hero-slideshow .hero-slide:nth-child(2),
.hero-slideshow .hero-slide:nth-child(3) {
  background-position: 60% center !important;
}

/* Gradient overlay that fades to match hero background */
.hero-slide-gradient {
  position: absolute;
  top: 0;
  left: -4px;
  bottom: 0;
  width: calc(100% + 4px);
  background: linear-gradient(to right,
    #1a5fb4 0%,
    #1a5fb4 5%,
    rgba(26, 95, 180, 0.97) 15%,
    rgba(26, 95, 180, 0.9) 25%,
    rgba(26, 95, 180, 0.75) 35%,
    rgba(26, 95, 180, 0.55) 45%,
    rgba(26, 95, 180, 0.35) 55%,
    rgba(26, 95, 180, 0.18) 65%,
    rgba(26, 95, 180, 0.08) 75%,
    transparent 90%
  );
  z-index: 1;
  pointer-events: none;
}


.hero-new .container.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10%;
  padding-right: 20px;
  display: flex;
  align-items: center;
  min-height: 460px;
}

.hero-new .hero-content-left {
  max-width: 750px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -15px;
}

.hero-new h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 40px;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: left;
}

.hero-new p.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 0 32px 0 !important;
  line-height: 1.6;
  text-align: left;
}

.hero-new .hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 0;
}

.hero-new .cta-button {
  background: var(--color-coral-500);
  color: white;
  padding: 18px 44px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(245, 134, 84, 0.4);
}

.hero-new .cta-button:hover {
  background: var(--color-coral-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 134, 84, 0.5);
}

.hero-new .ghost-button {
  padding: 16px 42px;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .hero-slideshow {
    width: 40%;
  }

  .hero-new .hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-new .hero-content-left {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 0 0 50px;
    min-height: auto;
  }

  .hero-slideshow {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 1px;
  }

  /* Swap slideshows on mobile */
  .hero-slideshow-desktop {
    display: none;
  }

  .hero-slideshow-mobile {
    display: block;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-slide-gradient {
    background: linear-gradient(to top,
      #1a5fb4 0%,
      rgba(26, 95, 180, 0.85) 15%,
      rgba(26, 95, 180, 0.4) 35%,
      rgba(26, 95, 180, 0.1) 55%,
      transparent 70%
    );
  }

  .hero-new .container.hero-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 0 !important;
    justify-content: center;
    margin-top: 0 !important;
    min-height: auto;
  }

  .hero-new .hero-content-left {
    max-width: 100%;
    text-align: center;
    min-height: auto;
    width: 100%;
    padding: 0;
  }

  .hero-new h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
  }

  .hero-new p.hero-subtitle {
    text-align: center;
    margin: 0 auto 24px !important;
    max-width: 100%;
  }

  .hero-new .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-new .hero-actions .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 140px;
    text-align: center;
  }

  .hero-new .hero-actions .ghost-button {
    padding: 12px 26px;
    font-size: 1rem;
    min-width: 140px;
    text-align: center;
  }

  /* Hide waves on mobile */
  .hero-new::before,
  .hero-new::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-new {
    padding: 0 0 50px;
  }

  .hero-slideshow {
    height: 280px;
  }

  .hero-new h1 {
    font-size: 1.75rem;
  }

  .hero-new .hero-actions .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 130px;
  }

  .hero-new .hero-actions .ghost-button {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-width: 130px;
  }
}

/* Hero Section (old) */
.hero {
  padding: 80px 0 110px;
  background: radial-gradient(circle at top left, rgba(214, 233, 255, 0.55), rgba(255, 255, 255, 0.7)), var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -80px 0 -40px;
  background-image: var(--wave-pattern);
  background-size: 240px 140px;
  background-repeat: repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  animation: waveFlow 20s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, black 70%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, black 70%, black 100%);
}

@keyframes waveFlow {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 120px 20px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  text-align: center;
  padding-top: 60px;
}

.hero-copy h1 {
  max-width: 1150px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 0;
}

.hero-copy h1 .text-gray {
  color: var(--color-pool-500);
}

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

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li {
  padding-left: 28px;
  position: relative;
  color: var(--color-slate-700);
}

.hero-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pool-500);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.phone {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 20px 32px 32px;
  box-shadow: var(--shadow-soft);
  width: min(800px, 100%);
  border: 1px solid rgba(125, 181, 246, 0.35);
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-slate-100);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-pool-500);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 8px rgba(31, 122, 224, 0.5);
  position: relative;
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.3) 0%, transparent 70%);
  animation: ripple 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

@keyframes ripple {
  0% {
    opacity: 0.8;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

.phone-status span {
  font-weight: 700;
  color: var(--color-pool-500);
  font-size: 1rem;
  font-family: var(--font-display);
}

.phone-dialog p {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.caller {
  background-color: var(--color-slate-100);
  color: var(--color-slate-700);
}

.emily {
  background-color: var(--color-pool-100);
  color: var(--color-pool-700);
}

.phone-header {
}

.pool-tech-card {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(125, 181, 246, 0.35);
}

.speaker-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
  background: white;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(125, 181, 246, 0.35);
}

.speaker-label {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-label {
  background: var(--color-pool-500);
  color: white;
  border: 4px solid rgba(230, 242, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ai-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.caller-label {
  background: var(--color-slate-100);
  color: var(--color-slate-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.caller-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}


.pool-tech-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.5) brightness(1.05);
  transition: opacity 0.5s ease;
}

.pool-tech-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(31, 122, 224, 0.15), rgba(0, 191, 166, 0.2));
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.pool-tech-card.playing::after {
  opacity: 0;
}

.pool-tech-card.playing .pool-tech-image {
  opacity: 0;
}

.tech-play-button {
  position: absolute;
  top: calc(50% + 24px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-pool-500);
  border: 4px solid rgba(230, 242, 255, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(31, 122, 224, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.tech-play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-pool-700);
}

.tech-play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.tech-play-button svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.tech-play-button:focus-visible {
  outline: 3px solid var(--color-pool-300);
  outline-offset: 4px;
}

.pool-tech-card.playing .tech-play-button {
  opacity: 0;
  pointer-events: none;
}

.pool-tech-card .phone-dialog {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: -10px;
  padding: 24px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: var(--color-pool-50);
  z-index: 1;
}

.pool-tech-card .phone-dialog.visible {
  opacity: 1;
}

.pool-tech-card .phone-dialog p {
  margin: 4px 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  width: 55%;
}

.pool-tech-card .phone-dialog p:first-child {
  margin-top: -20px;
  width: 49%;
}

.pool-tech-card .phone-dialog p:last-child {
  margin-bottom: -31px;
  width: 52%;
}

.pool-tech-card .phone-dialog .emily {
  background-color: var(--color-pool-500);
  color: white;
  text-align: left;
  border: 4px solid rgba(230, 242, 255, 0.25);
}

.pool-tech-card .phone-dialog .caller {
  background-color: var(--color-slate-100);
  color: var(--color-slate-700);
  text-align: left;
  width: 62%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-left {
  align-self: flex-start;
}

.message-right {
  align-self: flex-end;
}

.phone-footer {
  padding-top: 20px;
  border-top: 1px solid var(--color-slate-100);
}

.recording {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  font-weight: 500;
}

/* Scenario Cards */
.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,245,249,0.9));
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  box-shadow:
    0 4px 24px rgba(12, 58, 116, 0.06),
    0 1px 3px rgba(12, 58, 116, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  box-shadow:
    0 12px 32px rgba(12, 58, 116, 0.1),
    0 4px 12px rgba(0, 191, 166, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-2px);
  border-color: rgba(125, 181, 246, 0.4);
}

.scenario-card h3 {
  color: var(--color-pool-700);
  margin-bottom: 12px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,245,249,0.9));
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  box-shadow:
    0 4px 24px rgba(12, 58, 116, 0.06),
    0 1px 3px rgba(12, 58, 116, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow:
    0 12px 32px rgba(12, 58, 116, 0.1),
    0 4px 12px rgba(0, 191, 166, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-2px);
  border-color: rgba(125, 181, 246, 0.4);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-pool-500);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.benefit-content {
  flex: 1;
}

.benefit-card h3 {
  color: var(--color-pool-700);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
}

/* Alternating Section Backgrounds */
.section.alt {
  background-color: var(--color-pool-100);
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(140deg, var(--color-pool-500), var(--color-pool-700));
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}


.testimonial-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 32px;
}

.testimonial-content blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--color-white);
  font-style: italic;
}

.testimonial-content cite {
  font-style: normal;
  color: var(--color-pool-100);
  font-weight: 500;
}

/* Demo Video Section */
.lp-demo {
  text-align: center;
  background: var(--color-pool-50);
}

.lp-demo .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.lp-demo .how-it-works-video {
  margin-bottom: 0;
}

/* How It Works Section */
.lp-how {
  background:
    radial-gradient(circle at 20% 30%, rgba(148, 163, 184, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(148, 163, 184, 0.12) 0%, transparent 20%),
    radial-gradient(circle at 60% 70%, rgba(148, 163, 184, 0.1) 0%, transparent 22%),
    radial-gradient(circle at 10% 80%, rgba(148, 163, 184, 0.08) 0%, transparent 18%),
    radial-gradient(circle at 90% 60%, rgba(148, 163, 184, 0.1) 0%, transparent 20%),
    var(--color-white);
}

/* How It Works Video */
.how-it-works-video {
  max-width: 960px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.how-it-works-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* Steps Container */
.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 950px) {
  .steps-container {
    flex-direction: column;
    gap: 24px;
  }

  .step-card {
    width: 100% !important;
    min-width: auto !important;
    flex: none !important;
  }

  .step-arrow {
    display: none;
  }
}

.step-card {
  flex: 1 1 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,245,249,0.9));
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  box-shadow:
    0 4px 24px rgba(12, 58, 116, 0.06),
    0 1px 3px rgba(12, 58, 116, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  text-align: center;
  position: relative;
  width: 0;
  min-width: 0;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow:
    0 12px 32px rgba(12, 58, 116, 0.1),
    0 4px 12px rgba(0, 191, 166, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-2px);
  border-color: rgba(125, 181, 246, 0.4);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-pool-500);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.step-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-pool-700);
  font-size: 1.3rem;
}

.step-card p {
  margin: 0;
  color: var(--color-slate-700);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--color-pool-300);
  font-weight: 700;
  flex-shrink: 0;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,245,249,0.9));
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  box-shadow:
    0 4px 24px rgba(12, 58, 116, 0.06),
    0 1px 3px rgba(12, 58, 116, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.old-way {
  border: 1px solid rgba(203, 213, 225, 0.5);
}

.comparison-card.new-way {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(214, 233, 255, 0.4));
  border: 2px solid var(--color-pool-500);
  box-shadow:
    0 12px 40px rgba(31, 122, 224, 0.15),
    0 4px 12px rgba(31, 122, 224, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--color-pool-500);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-slate-100);
}

.comparison-card.new-way .comparison-header {
  border-bottom-color: var(--color-pool-100);
}

.comparison-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.comparison-subtitle {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--color-slate-500);
  margin: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.comparison-list li {
  padding-left: 32px;
  position: relative;
  color: var(--color-slate-700);
  line-height: 1.6;
}

.comparison-card.old-way .comparison-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--color-slate-400);
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-card.new-way .comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pool-500);
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-card.new-way .comparison-list li {
  color: var(--color-ink);
  font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid.four-tier {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
}

/* Tier Card Styles */
.tier-card {
  padding: 32px 24px;
  max-width: none;
}

.tier-card .tier-name {
  font-size: 1.3rem;
  color: var(--color-slate-500);
  margin: 0 0 8px 0;
}

.tier-card .tier-calls-big {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-pool-700);
  margin: 8px 0 4px;
  line-height: 1;
}

.tier-card .tier-calls-big span {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
}

.tier-card .tier-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-slate-600);
  margin: 0 0 20px 0;
}

.tier-card .cta-button {
  width: 100%;
  margin-bottom: 16px;
}

.tier-card .tier-overage {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  margin: 0;
  white-space: nowrap;
}

.tier-card.enterprise .tier-price {
  min-height: auto;
}

/* Pricing Card */
.pricing-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(214, 233, 255, 0.4));
  border-radius: var(--radius-card);
  padding: 48px 40px;
  border: 2px solid var(--color-pool-500);
  box-shadow:
    0 12px 40px rgba(31, 122, 224, 0.12),
    0 4px 12px rgba(31, 122, 224, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  text-align: center;
  position: relative;
  max-width: 480px;
  width: 100%;
  transition: all 0.3s ease;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-pool-500);
  color: var(--color-white);
  padding: 8px 24px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 24px 0;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pool-700);
  margin-right: 4px;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-pool-700);
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  color: var(--color-slate-500);
  margin-left: 4px;
}

.pricing-description {
  color: var(--color-slate-600);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: grid;
  gap: 12px;
}

.pricing-features li {
  padding-left: 32px;
  position: relative;
  color: var(--color-slate-700);
  line-height: 1.6;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pool-500);
  font-weight: 700;
  font-size: 1.2rem;
}

.price-text {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-pool-700);
}

.enterprise-badge {
  background: linear-gradient(135deg, var(--color-pool-700), var(--color-pool-500));
}

.ghost-enterprise {
  background-color: transparent;
  color: var(--color-pool-500);
  border: 2px solid var(--color-pool-500);
  font-weight: 700;
}

.ghost-enterprise:hover {
  background-color: var(--color-pool-500);
  color: var(--color-white);
  border-color: var(--color-pool-500);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  border: none;
  border-radius: var(--radius-card);
  padding: 24px 28px;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(12, 58, 116, 0.04);
  transition: all 0.3s ease;
}

.faq-list details:hover {
  border-color: var(--color-pool-300);
  box-shadow: 0 8px 16px rgba(12, 58, 116, 0.08);
}

.faq-list details[open] {
  box-shadow: 0 8px 20px rgba(12, 58, 116, 0.1);
  box-shadow: 0 8px 20px rgba(0, 191, 166, 0.12);
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--color-pool-700);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-list summary::before {
  content: '+';
  color: var(--color-pool-500);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::before {
  content: '−';
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 32px;
  color: var(--color-slate-700);
  line-height: 1.7;
}

/* CTA Section */
.section.cta {
  background: linear-gradient(160deg, rgba(31, 122, 224, 0.08), rgba(0, 191, 166, 0.12));
}

.cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background-color: var(--color-white);
  padding: 40px 48px;
  border-radius: var(--radius-card);
  border: none;
  box-shadow: 0 20px 50px rgba(12, 58, 116, 0.14);
}

.cta-container h2 {
  margin-bottom: 12px;
}

.cta-container .section-lead {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background-color: var(--color-ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 48px;
}

.footer-top {
  margin-bottom: 48px;
  text-align: center;
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px));
  gap: 48px;
  margin-bottom: 8px;
  justify-content: center;
}

.footer-column h4 {
  color: var(--color-pool-300);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 400;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--color-pool-300);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-column .footer-social-header {
  margin-top: 40px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-pool-300);
}

.footer-app-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-app-badges a {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-app-badges a[aria-label="Get it on Google Play"] img {
  filter: brightness(1.3);
}

.footer-app-badges a:hover {
  opacity: 1;
}

.footer-social-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 32px;
  max-width: calc(4 * 200px + 3 * 48px);
  margin: 0 auto;
}

.footer-social-row h4 {
  color: var(--color-pool-300);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.footer-social-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.footer-social-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bottom h4 {
  color: var(--color-pool-300);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.footer-contact {
  margin-bottom: 8px !important;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-pool-300);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  font-weight: 400;
}

/* Legacy footer-nav support (kept for any pages not yet updated) */
.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-pool-300);
}

/* Footer Contact Card - Text Emily QR Code */
.footer-contact-card {
  background: linear-gradient(135deg, var(--color-pool-800), var(--color-pool-700));
  border-radius: var(--radius-card);
  padding: 32px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.footer-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-card-text {
  flex: 1;
  max-width: 560px;
}

.contact-card-text h4 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.contact-card-text p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.btn-contact-card {
  display: inline-block;
  background: var(--color-coral-500);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-contact-card:hover {
  background: var(--color-coral-700);
  transform: translateY(-2px);
}

.contact-card-qr {
  text-align: center;
  flex-shrink: 0;
}

.contact-card-qr #qr-code-container {
  background: var(--color-white);
  padding: 12px;
  border-radius: 16px;
  display: inline-block;
}

.contact-card-qr #qr-code-container svg {
  display: block;
  width: 120px;
  height: 120px;
}

.qr-caption {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.75rem;
  margin: 10px 0 0 0 !important;
}

@media (max-width: 768px) {
  .footer-contact-card {
    padding: 24px;
  }

  .contact-card-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .contact-card-text {
    max-width: 100%;
  }

  .contact-card-qr #qr-code-container svg {
    width: 100px;
    height: 100px;
  }
}

/* Industries List */
.industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.industries-list li {
  background-color: var(--color-white);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-pool-300);
  text-align: center;
  font-weight: 500;
  color: var(--color-pool-700);
}

/* Audio Demo Section */
.audio-demo {
  background-color: var(--color-white);
  text-align: center;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.audio-card {
  background-color: var(--color-white);
  border: none;
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
}

.audio-card:hover {
  box-shadow: 0 8px 20px rgba(12, 58, 116, 0.1);
  box-shadow: 0 20px 50px rgba(12, 58, 116, 0.18);
  transform: translateY(-2px);
}

.audio-title {
  color: var(--color-pool-700);
  font-size: 1.2rem;
  margin-bottom: 6px;
  margin-top: 0;
}

.audio-description {
  color: var(--color-slate-600);
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 20px;
  line-height: 1.4;
}

.audio-player {
  background: transparent;
  border: none;
  border-radius: var(--radius-card);
  padding: 8px 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.play-button {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-pool-500);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
}

.play-button:hover {
  transform: scale(1.05);
  background: var(--color-pool-700);
}

.play-button:active {
  transform: scale(0.98);
}

.play-button svg {
  width: 26px;
  height: 26px;
  transition: opacity 0.2s ease;
}

.play-button:focus-visible {
  outline: 3px solid var(--color-pool-300);
  outline-offset: 4px;
}

.audio-controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.time-display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-pool-700);
  font-size: 0.95rem;
  min-width: 45px;
  text-align: center;
}

.progress-container {
  flex: 1;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.progress-bar {
  display: none;
}

.progress-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--color-pool-500) 0%, var(--color-pool-500) 0%, var(--color-pool-100) 0%, var(--color-pool-100) 100%);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.progress-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 10px;
}

.progress-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 10px;
}

.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-pool-500);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(31, 122, 224, 0.4), 0 0 0 1px var(--color-white);
  transition: all 0.2s ease;
  border: 3px solid var(--color-white);
  margin-top: -5px;
  position: relative;
}

.progress-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-pool-500);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(31, 122, 224, 0.4), 0 0 0 1px var(--color-white);
  transition: all 0.2s ease;
  border: 3px solid var(--color-white);
  position: relative;
}

.progress-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(31, 122, 224, 0.5), 0 0 0 1px var(--color-white);
}

.progress-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(31, 122, 224, 0.5), 0 0 0 1px var(--color-white);
}

.progress-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.progress-slider::-moz-range-thumb:active {
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-pool-700);
  z-index: 101;
}

.mobile-menu-button svg {
  display: block;
  width: 28px;
  height: 28px;
}

.mobile-menu-button:hover {
  color: var(--color-pool-500);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(12, 58, 116, 0.12);
  z-index: 100;
  border-bottom: 1px solid var(--color-slate-200);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.mobile-nav-links a {
  padding: 16px 24px;
  color: var(--color-slate-700);
  font-weight: 500;
  border-bottom: 1px solid var(--color-slate-100);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  background-color: var(--color-pool-100);
  color: var(--color-pool-700);
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav .login-link {
  display: block;
  padding: 16px 24px;
  color: var(--color-slate-700);
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  border-top: 1px solid var(--color-slate-100);
}

.mobile-nav .login-link:hover {
  background-color: var(--color-pool-100);
  color: var(--color-pool-700);
}

.mobile-nav .cta-button {
  margin: 16px 24px 32px;
}

.mobile-nav-footer {
  padding: 12px 24px 20px;
  border-top: 1px solid var(--color-slate-100);
}

.mobile-nav-lang {
  color: var(--color-slate-500);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-lang:hover {
  color: var(--color-pool-500);
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header > .nav-container {
    padding: 16px 16px;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    display: flex;
    gap: 8px;
    background: transparent;
  }

  .header-actions .header-phone {
    display: none;
  }

  .header-actions .login-link {
    display: none;
  }

  .header-actions .cta-button {
    padding: 10px 16px;
    font-size: 0.85rem;
    background: var(--color-coral-500);
    color: white;
    white-space: nowrap;
  }

  .mobile-menu-button {
    display: block;
  }

  .audio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .pricing-grid.four-tier {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hide third message box on tablet/mobile */
  .pool-tech-card .phone-dialog p:last-child {
    display: none;
  }
}

/* Utility: show only on mobile */
.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .announcement-bar-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .announcement-bar-inner {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: center;
    text-align: center;
  }

  .mobile-only {
    display: inline;
  }

  .section {
    padding: 72px 0;
  }

  /* Make first message wider on smaller screens */
  .pool-tech-card .phone-dialog p:first-child {
    width: 65% !important;
  }

  /* Move second message box down slightly */
  .pool-tech-card .phone-dialog p:nth-child(2) {
    margin-top: 7px !important;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-icon {
    margin-bottom: 16px;
  }

  .cta-container {
    padding: 32px;
    flex-direction: column;
    text-align: center;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 200px));
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-grid.four-tier {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 40px 28px;
  }

  .price {
    font-size: 3.5rem;
  }

  .tier-card .price {
    font-size: 2.5rem;
  }

  .price-text {
    font-size: 2.5rem;
  }

  .audio-player {
    padding: 16px 20px;
    gap: 16px;
  }

  .audio-card {
    padding: 20px 18px;
  }

  .audio-controls {
    gap: 12px;
  }

  .time-display {
    font-size: 0.8rem;
    min-width: 35px;
  }

  .play-button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .play-button svg {
    width: 20px;
    height: 20px;
  }

  .audio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audio-title {
    font-size: 1.2rem;
  }

  .audio-description {
    font-size: 1rem;
  font-family: var(--font-display);
  }
}

@media (max-width: 560px) {
  .header-actions .cta-button .cta-start {
    display: none;
  }

  .container {
    width: min(85vw, 520px);
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-new .hero-actions {
    flex-direction: row;
  }

  h1 {
    font-size: 2rem;
  }

  /* Make first message even wider */
  .pool-tech-card .phone-dialog p:first-child {
    width: 75% !important;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 200px);
    gap: 32px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.75rem;
  }

  /* Hide second message on very narrow screens (only show first) */
  .pool-tech-card .phone-dialog p:nth-child(2) {
    display: none;
  }

  /* Make first message wider on narrow screens */
  .pool-tech-card .phone-dialog p:first-child {
    width: 85% !important;
  }
}

/* ===================================
   Suggested Reading & Tools Sections
   =================================== */

#suggested-reading,
#suggested-tools {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: none; /* Hidden until JS populates it */
}

#suggested-reading h2,
#suggested-tools h2 {
  color: var(--color-pool-700);
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-family: var(--font-display);
  text-align: center;
}

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

.suggested-reading-card,
.suggested-tools-card {
  background-color: var(--color-pool-50);
  border-radius: 0;
  padding: 0;
  border: 2px solid var(--color-pool-500);
  box-shadow: 0 4px 12px rgba(12, 58, 116, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
  overflow: hidden;
}

.suggested-tools-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  min-height: 260px;
  justify-content: center;
}

.suggested-tools-icon-wrap {
  width: 150px;
  height: 150px;
  background: white;
  border: 2px solid var(--color-pool-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.suggested-tools-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.suggested-reading-card:hover,
.suggested-tools-card:hover {
  background-color: var(--color-pool-100);
  border-color: var(--color-pool-700);
  box-shadow: 0 8px 20px rgba(31, 122, 224, 0.15);
  transform: translateY(-2px);
}

.suggested-reading-card img {
  width: 100%;
  height: auto;
  display: block;
}

.suggested-reading-card-content {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.suggested-reading-card h3 {
  color: var(--color-pool-700);
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
  font-family: var(--font-display);
}

.suggested-tools-card h3 {
  font-size: 1.45rem !important;
  color: var(--color-pool-700);
  font-family: var(--font-display);
  line-height: 1.3;
  max-width: 250px;
}

.suggested-reading-card .post-meta {
  color: var(--color-slate-500);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.suggested-reading-card p {
  color: var(--color-slate-700);
  line-height: 1.5;
  font-size: 0.85rem;
  flex-grow: 1;
  margin: 0;
}

@media (max-width: 768px) {
  #suggested-reading,
  #suggested-tools {
    padding: 32px 24px 64px;
  }

  .suggested-reading-cards,
  .suggested-tools-cards {
    grid-template-columns: 1fr;
  }
}
