/* Landing Page Styles - All prefixed with "lp-" to avoid conflicts */

/* Typography setup */
:root {
  --lp-brand-teal: #0f9aa6;
  --lp-brand-green: #24c168;
  --lp-brand-deep: #0b5a66;
  --lp-dark: #0e1720;
  --lp-text: #25313c;
  --lp-muted: #5a6b7a;
  --lp-surface: #ffffff;
  --lp-gradient-hero: linear-gradient(180deg, #3794AA 0%, #13707F 100%);
  --lp-gradient-purple: radial-gradient(1200px 600px at 80% 20%, rgba(255,255,255,0.18), rgba(255,255,255,0) 40%), linear-gradient(90deg, #5b60d6 0%, #9a6ee8 100%);
  --lp-radius-xl: 28px;
  --lp-radius-lg: 20px;
  --lp-radius-md: 12px;
  --lp-shadow-elev: 0 12px 40px rgba(16, 24, 40, 0.2);
}

html { 
  overflow-x: hidden;
}

/* Skip Link for Keyboard Navigation */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--lp-brand-teal);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 4px 0;
  font-size: 16px;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

body {
  margin: 0;
  padding-top: 0;
  color: var(--lp-text);
  background: #f7f8fa;
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
}

body.has-banner {
  padding-top: 60px;
}

/* Site Header */
.site-header .container.nav {
  box-sizing: border-box;
  width: min(1200px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  background: transparent; 
  color: #fff; 
  transition: all 0.3s ease;
}

.site-header.scrolled { 
  background: rgba(255, 255, 255, 0.95) !important; 
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled .brand { 
  color: #333 !important; 
  transition: color 0.3s ease;
}

.site-header.scrolled .menu a { 
  color: #3794AA !important; 
  font-family: 'Roboto', sans-serif !important;
  font-size: 15.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header.scrolled .menu a[style*="font-weight: bold"]::after,
.site-header.scrolled .menu a[style*="font-weight:bold"]::after {
  background-color: #3794AA;
  border-radius: 2px;
}

.site-header.scrolled .menu a:hover { 
  color: #2a7a8a !important; 
  transition: color 0.3s ease;
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 32px; 
  margin: 0; 
  min-height: 60px; 
}

.brand { 
  display: flex; 
  align-items: center; 
  color: #fff; 
  transition: color 0.3s ease; 
  position: relative; 
  width: 127px; 
  height: 32px; 
}

.brand a {
  position: relative;
  display: block;
  width: 127px;
  height: 32px;
}

.logo { 
  width: 127px; 
  height: 32px; 
  transition: opacity 0.3s ease; 
}

.logo-transparent { 
  opacity: 1; 
  position: absolute; 
  top: 0; 
  left: 0; 
}

.logo-white { 
  opacity: 0; 
  position: absolute; 
  top: 0; 
  left: 0; 
}

.site-header.scrolled .logo-transparent { 
  opacity: 0 !important; 
  transition: opacity 0.3s ease;
}

.site-header.scrolled .logo-white { 
  opacity: 1 !important; 
  transition: opacity 0.3s ease;
}

.desktop-menu { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}

.menu { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}

.menu a { 
  color: #eaf6f8; 
  text-decoration: none; 
  font-family: 'Roboto', sans-serif !important; 
  font-size: 15.5px; 
  font-weight: 500; 
  letter-spacing: 0.02em; 
  transition: color 0.3s ease; 
  transform: translateY(1px); 
  position: relative;
}

.menu a:hover { 
  color: #fff; 
}

.menu a[style*="font-weight: bold"]::after,
.menu a[style*="font-weight:bold"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

.mobile-menu-toggle {
  display: none;
}

/* Medicare Banner */
.medicare-banner {
  position: relative;
  width: 100%;
  height: 60px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  margin-top: 0;
  opacity: 1;
  background: #000000;
}

@media (max-width: 768px) {
  .medicare-banner {
    position: relative;
    z-index: 100;
  }
}

.medicare-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.medicare-banner-content {
  display: flex;
  align-items: center;
}

.medicare-banner-content[aria-hidden="true"] {
  display: none;
}

.medicare-banner-icon {
  width: 40px;
  height: 40px;
  margin-right: 0;
  flex-shrink: 0;
  filter: none !important;
  color: inherit !important;
  fill: currentColor !important;
}

.medicare-banner p {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  text-align: center;
  padding: 0 2rem;
  white-space: nowrap;
}

.medicare-banner .medicare-bold {
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .medicare-banner {
    height: 60px;
    overflow: hidden;
    justify-content: flex-start;
    margin-top: 0;
    position: relative;
    z-index: 100;
    display: flex;
    width: 100%;
  }
  
  .medicare-banner-wrapper {
    animation: scroll-banner 15s linear infinite;
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
  }
  
  .medicare-banner-content {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .medicare-banner-content[aria-hidden="true"] {
    display: inline-flex;
  }
  
  .medicare-banner-icon {
    margin-right: 16px;
  }
  
  .medicare-banner p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding: 0;
    white-space: nowrap;
  }
  
  .medicare-banner .medicare-bold {
    font-weight: 700;
    text-decoration: underline;
  }
  
  @keyframes scroll-banner {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }
}

.lp-display, .lp-faq-heading {
  margin: 0 0 12px;
  color: var(--lp-text);
}

.lp-display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw + 0.7rem, 3.2rem);
  line-height: 1.05;
}

.lp-faq-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  line-height: 1.1;
}

.lp-lead { 
  color: var(--lp-text); 
  max-width: 60ch;
  margin-top: 24px;
  margin-bottom: 24px;
}

.lp-lead.lp-subtle { 
  color: var(--lp-text); 
}

.lp-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.lp-site-header .lp-container.lp-nav {
  box-sizing: border-box;
  width: min(1200px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.lp-site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  background: transparent; 
  color: #fff; 
  transition: all 0.3s ease;
}

.lp-site-header.scrolled { 
  background: rgba(255, 255, 255, 0.95) !important; 
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lp-site-header.scrolled .lp-brand { 
  color: #333 !important; 
  transition: color 0.3s ease;
}

.lp-site-header.scrolled .lp-menu a { 
  color: #3794AA !important; 
  font-family: 'Roboto', sans-serif !important;
  font-size: 15.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.lp-site-header.scrolled .lp-menu a:hover { 
  color: #2a7a8a !important; 
  transition: color 0.3s ease;
}

.lp-nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 32px; 
  margin: 0; 
  min-height: 80px; 
}

.lp-brand { 
  display: flex; 
  align-items: center; 
  gap: 24px;
  color: #fff; 
  transition: color 0.3s ease; 
  position: relative; 
  width: auto; 
  height: 48px; 
}

.lp-brand a {
  position: relative;
  display: block;
  width: 190px;
  height: 48px;
}

.lp-logo { 
  width: 190px; 
  height: 48px; 
  transition: opacity 0.3s ease; 
}

.lp-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 40px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin: 10px 0;
  margin-left: 32px;
  position: relative;
}

.lp-partner-logo::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.lp-partner-logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-site-header.scrolled .lp-partner-logo {
  border-color: rgba(55, 148, 170, 0.3);
  border-left-color: rgba(55, 148, 170, 0.3);
  background: rgba(55, 148, 170, 0.05);
}

.lp-site-header.scrolled .lp-partner-logo::before {
  background: rgba(55, 148, 170, 0.3);
}

.lp-site-header.scrolled .lp-partner-logo-text {
  color: rgba(55, 148, 170, 0.7);
}

.lp-logo-transparent { 
  opacity: 1; 
  position: absolute; 
  top: 0; 
  left: 0; 
}

.lp-logo-white { 
  opacity: 0; 
  position: absolute; 
  top: 0; 
  left: 0; 
}

.lp-site-header.scrolled .lp-logo-transparent { 
  opacity: 0 !important; 
  transition: opacity 0.3s ease;
}

.lp-site-header.scrolled .lp-logo-white { 
  opacity: 1 !important; 
  transition: opacity 0.3s ease;
}

.lp-desktop-menu { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}

.lp-menu { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}

.lp-menu a { 
  color: #eaf6f8; 
  text-decoration: none; 
  font-family: 'Roboto', sans-serif !important; 
  font-size: 15.5px; 
  font-weight: 500; 
  letter-spacing: 0.02em; 
  transition: color 0.3s ease; 
  transform: translateY(1px); 
}

.lp-menu a:hover { 
  color: #fff; 
}

/* Hero */
.lp-hero { 
  background: var(--lp-gradient-hero); 
  color: #fff; 
  padding: 0; 
  margin-top: 0;
  margin-bottom: -15px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 500px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}

body.has-banner .lp-hero {
  margin-top: -120px;
  padding-top: 144px;
}

body.has-banner .lp-hero .lp-container {
  position: relative;
  z-index: 1;
}

.lp-hero-grid { 
  display: flex; 
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative; 
  z-index: 2;
  padding-top: clamp(20px, 3vw, 40px);
}

.lp-hero-logo {
  max-width: clamp(250px, 30vw, 400px);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lp-hero-headline {
  text-align: center;
  margin-top: clamp(5px, 1vw, 10px);
  color: #fff;
}

.lp-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #fff;
}

.lp-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.lp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
  margin-top: clamp(10px, 1.5vw, 15px);
  align-items: end;
}

.lp-hero-left {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.lp-hero-image {
  max-width: min(100%, 600px);
  height: auto;
  display: block;
}

.lp-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  margin-bottom: -30px;
  padding-bottom: 30px;
}

.lp-hero-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
  margin-top: clamp(40px, 8vw, 80px);
  margin-bottom: 0px;
}

.lp-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.lp-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 40px;
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.lp-step-item:first-child:not(:last-child)::after {
  left: clamp(25px, 2.5vw, 30px);
  top: clamp(50px, 5vw, 60px);
}

.lp-step-item:nth-child(2):not(:last-child)::after {
  left: clamp(25px, 2.5vw, 30px);
  top: clamp(50px, 5vw, 60px);
}

.lp-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.lp-step-number-image {
  width: clamp(50px, 5vw, 60px);
  height: clamp(50px, 5vw, 60px);
  flex-shrink: 0;
  display: block;
}

.lp-step-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  white-space: nowrap;
}

.lp-step-completed .lp-step-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.lp-step-active .lp-step-text {
  color: #fff;
  font-weight: 700;
}

.lp-step-checkmark {
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  flex-shrink: 0;
  display: block;
  margin-left: -5px;
  align-self: baseline;
  margin-bottom: -20px;
}

.lp-qr-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  color: #000;
}

.lp-qr-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  margin: 0 0 12px 0;
}

.lp-qr-instructions {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.lp-qr-code-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lp-qr-code-image {
  height: clamp(150px, 15vw, 200px);
  width: auto;
  display: block;
  align-self: flex-start;
  max-width: fit-content;
  margin-left: 20px;
  margin-top: clamp(15px, 2vw, 30px);
  margin-bottom: 30px !important;
}

/* iOS landing page - smaller button size */
.landingpage-ios .lp-qr-code-image {
  height: clamp(120px, 12vw, 160px);
  max-width: 220px;
  margin-left: 76px;
  margin-top: -10px;
}

.landingpage-ios .cta-copy .lp-qr-code-image {
  margin-left: 0;
}

/* Google Play landing page - same button size and alignment as iOS */
.landingpage-googleplay .lp-qr-code-image {
  height: clamp(120px, 12vw, 160px);
  max-width: 220px;
  margin-left: 76px;
  margin-top: -10px;
}

.landingpage-googleplay .cta-copy .lp-qr-code-image {
  margin-left: 0;
}

.lp-hero-card { 
  background: #ffffff; 
  color: var(--lp-text); 
  padding: 32px; 
  border-radius: var(--lp-radius-xl); 
  box-shadow: var(--lp-shadow-elev); 
  margin-top: -80px; 
  position: relative; 
  z-index: 3; 
}

.lp-hero-card .lp-display { 
  color: #1c8b52; 
}

.lp-hero-phone { 
  display: flex; 
  justify-content: center; 
  position: relative; 
  z-index: 10; 
  margin-bottom: -80px; 
}

.lp-phone-full { 
  width: 360px; 
  max-width: 100%; 
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.25)); 
  border-radius: 34px; 
}

.lp-phone-hero { 
  width: 360px; 
  max-width: 100%; 
  height: auto; 
  object-fit: contain; 
}

.lp-store-buttons { 
  display: flex; 
  gap: 12px; 
  margin-top: 20px; 
  flex-wrap: wrap; 
}

.lp-store-button { 
  height: 60px; 
  width: auto; 
  transition: transform 0.2s ease, filter 0.2s ease;
  border-radius: 8px;
}

.lp-store-button:hover { 
  transform: translateY(-2px); 
  filter: brightness(1.1);
}

.lp-store-button:active { 
  transform: translateY(0); 
}

.lp-qr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.lp-qr-placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
}

.lp-qr-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-form-disclaimer {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #FF7871;
  margin: 0 0 8px 0;
}

.lp-hero-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  max-width: 100%;
}

.lp-form-row {
  display: flex;
  gap: 16px;
}

.lp-form-row .lp-form-field {
  flex: 1;
}

.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-form-field label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text);
}

.lp-form-field input {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #ffffff;
  color: var(--lp-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-form-field input:focus {
  outline: none;
  border-color: var(--lp-brand-teal);
  box-shadow: 0 0 0 3px rgba(15, 154, 166, 0.1);
}

.lp-form-field input::placeholder {
  color: #8b949e;
}

.lp-submit-button {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  background: var(--lp-brand-teal);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  align-self: center;
  margin-top: 4px;
  width: 100%;
  max-width: 400px;
}

.lp-submit-button:hover {
  background: var(--lp-brand-deep);
  transform: translateY(-1px);
}

.lp-submit-button:active {
  transform: translateY(0);
}

/* FAQ Section */
.lp-faq-section {
  background: #ffffff;
  padding: 60px 0 100px 0;
  position: relative;
  z-index: 1;
}

.lp-faq-heading {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 12px;
  color: var(--lp-text);
}

.lp-faq-subhead {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lp-brand-teal);
  margin-top: 0;
  margin-bottom: 24px;
  font-style: italic;
}

.lp-faq-intro {
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--lp-text);
  margin: 0 auto 48px auto;
  max-width: 800px;
}

.lp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid #e6eef2;
  margin-bottom: 0;
}

.lp-faq-item:last-child {
  border-bottom: none;
}

.lp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.lp-faq-question:hover {
  color: var(--lp-brand-teal);
}

.lp-faq-question:focus {
  outline: none;
}

.lp-faq-question:focus-visible {
  outline: 2px solid var(--lp-brand-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.lp-faq-question h3 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lp-text);
  flex: 1;
}

.lp-faq-icon {
  font-size: 2rem;
  font-weight: 300;
  color: var(--lp-brand-teal);
  transition: transform 0.3s ease;
  line-height: 1;
  min-width: 32px;
  text-align: center;
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(0deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.lp-faq-item.active .lp-faq-answer {
  padding-bottom: 24px;
}

.lp-faq-answer p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.6;
  padding-right: 40px;
}

/* Call To Action Section */
/* CTA purple */
.cta { 
  background: var(--lp-gradient-purple); 
  color: #fff; 
  padding: 80px 0 0; 
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Large BG logo element.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.cta .lp-container {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cta-grid { 
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  align-items: stretch; 
  gap: 40px; 
  margin-bottom: 0; 
  padding-bottom: 0; 
}

.cta-copy { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding-bottom: 80px; 
}

.cta-copy h2 { 
  color: #ffffff; 
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-copy p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 60ch;
}

.cta-phone { 
  display: flex; 
  justify-content: center; 
  align-items: flex-end; 
  margin-bottom: 0; 
  padding-bottom: 0; 
}

.phone-crop { 
  width: 360px; 
  max-width: 100%; 
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.3)); 
  margin-bottom: -1px; 
  padding-bottom: 0; 
  display: block; 
}

.store-buttons { 
  display: flex; 
  gap: 12px; 
  margin-top: 40px; 
  flex-wrap: wrap; 
}

.store-button { 
  height: 60px; 
  width: auto; 
  transition: transform 0.2s ease, filter 0.2s ease;
  border-radius: 8px;
}

.store-button:hover { 
  transform: translateY(-2px); 
  filter: brightness(1.1);
}

.store-button:active { 
  transform: translateY(0); 
}

/* Footer */
.lp-site-footer { 
  background: #F5F5F5; 
  color: #595959; 
  padding: 22px 0; 
  position: relative;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.lp-footer-grid { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 16px; 
}

.lp-footer-links a { 
  color: #595959; 
  text-decoration: none; 
  margin-left: 18px; 
}

.lp-footer-links a:hover { 
  color: #333333; 
}

/* Mobile Menu Toggle */
.lp-mobile-menu-toggle {
  display: none;
}

/* Medium screens - Switch to mobile menu when nav would overlap partner logo */
@media (max-width: 1000px) {
  .lp-desktop-menu {
    display: none;
  }
  
  .lp-mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.4s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .lp-mobile-menu-toggle:focus {
    outline: none;
    box-shadow: none;
  }
  
  .lp-mobile-menu-toggle:focus-visible {
    outline: 2px solid #3794AA;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(55, 148, 170, 0.3);
  }
  
  .lp-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }
  
  .lp-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .lp-site-header:has(.lp-menu.active) {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-logo-transparent {
    opacity: 0 !important;
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-logo-white {
    opacity: 1 !important;
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-mobile-menu-toggle {
    color: #3794AA !important;
  }
  
  .lp-menu a {
    color: #13707F;
    padding: 12px 0;
    border-bottom: 1px solid #e6eef2;
    font-family: 'Roboto', sans-serif;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .lp-menu a:last-child {
    border-bottom: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .lp-hero-grid, .cta-grid { 
    grid-template-columns: 1fr; 
  }
  
  .lp-hero-card { 
    order: 2; 
  }
  
  .lp-hero-phone { 
    order: 1; 
  }
}

/* Tablet responsive */
@media (max-width: 1023px) and (min-width: 640px) {
  .lp-hero {
    padding: 0;
    min-height: auto;
  }
  
  .lp-hero-grid {
    padding-top: 30px;
  }
  
  .lp-hero-logo {
    max-width: 300px;
  }
  
  .lp-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }
  
  .lp-hero-content {
    gap: 30px;
    margin-top: 20px;
  }
  
  .lp-hero-steps {
    margin-top: clamp(20px, 4vw, 40px);
  }
  
  .lp-hero-image {
    min-width: 400px;
  }
  
  /* CTA section - center align in tablet */
  .cta-grid {
    text-align: center;
  }
  
  .cta-copy {
    align-items: center;
    text-align: center;
  }
  
  .cta-copy .lp-qr-code-image {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .landingpage-ios .cta-copy .lp-qr-code-image {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .landingpage-googleplay .lp-hero-right .lp-qr-code-image {
    align-self: flex-start;
    margin-left: 76px;
    margin-right: 0;
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
    margin-top: -10px;
  }
  
  .landingpage-googleplay .cta-copy .lp-qr-code-image {
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
  }
  
  /* Tablet styles use natural scaling via clamp() values in base styles */
  
  /* Form tablet styles - same as mobile */
  .lp-hero-form {
    max-width: 100%;
    width: 100%;
  }
  
  .lp-form-row {
    flex-direction: column;
  }
  
  .lp-form-field input {
    width: 100%;
    box-sizing: border-box;
  }
  
  .lp-submit-button {
    align-self: center;
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile responsive */
@media (max-width: 639px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .site-header {
    top: 0;
  }
  
  .medicare-banner {
    margin-top: 20px;
  }
  
  .nav {
    padding: 20px 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand {
    display: flex;
    align-items: center;
    position: relative;
    width: 152px;
    height: 40px;
  }
  
  .brand a {
    width: 152px;
    height: 40px;
  }
  
  .logo {
    position: relative;
    width: 152px;
    height: 40px;
  }
  
  .logo-transparent {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .logo-white {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.4s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .mobile-menu-toggle:focus {
    outline: 2px solid #3794AA;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(55, 148, 170, 0.3);
  }
  
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }
  
  .menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .site-header:has(.menu.active) {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .site-header:has(.menu.active) .logo-transparent {
    opacity: 0 !important;
  }
  
  .site-header:has(.menu.active) .logo-white {
    opacity: 1 !important;
  }
  
  .site-header:has(.menu.active) .mobile-menu-toggle {
    color: #3794AA !important;
  }
  
  .menu a {
    color: #13707F;
    padding: 12px 0;
    border-bottom: 1px solid #e6eef2;
    font-family: 'Roboto', sans-serif;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .site-header.scrolled .brand {
    color: #333;
  }
  
  .site-header.scrolled .logo-transparent {
    opacity: 0;
  }
  
  .site-header.scrolled .logo-white {
    opacity: 1;
  }
  
  .site-header.scrolled .mobile-menu-toggle {
    color: #3794AA;
  }
  
  .site-header.scrolled .menu a {
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  
  .desktop-menu {
    display: none;
  }
  
  body.has-banner .lp-hero {
    margin-top: -136px;
    padding-top: 140px !important;
    z-index: 50;
  }
  
  .lp-site-header {
    top: 0;
  }
  
  .lp-nav {
    padding: 20px 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .lp-brand {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: 40px;
    gap: 12px;
  }
  
  .lp-brand a {
    width: 152px;
    height: 40px;
  }
  
  .lp-logo {
    position: relative;
    width: 152px;
    height: 40px;
  }
  
  .lp-logo-transparent {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .lp-logo-white {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .lp-partner-logo {
    min-width: 100px;
    height: 28px;
    padding: 4px 8px;
    margin: 10px 0;
    margin-left: 20px;
  }
  
  .lp-partner-logo::before {
    left: -16px;
    height: 20px;
  }
  
  .lp-partner-logo-text {
    font-size: 11px;
  }
  
  .lp-mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.4s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .lp-mobile-menu-toggle:focus {
    outline: none;
    box-shadow: none;
  }
  
  .lp-mobile-menu-toggle:focus-visible {
    outline: 2px solid #3794AA;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(55, 148, 170, 0.3);
  }
  
  .lp-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }
  
  .lp-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .lp-site-header:has(.lp-menu.active) {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-logo-transparent {
    opacity: 0 !important;
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-logo-white {
    opacity: 1 !important;
  }
  
  .lp-site-header:has(.lp-menu.active) .lp-mobile-menu-toggle {
    color: #3794AA !important;
  }
  
  .lp-menu a {
    color: #13707F;
    padding: 12px 0;
    border-bottom: 1px solid #e6eef2;
    font-family: 'Roboto', sans-serif;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .lp-menu a:last-child {
    border-bottom: none;
  }
  
  .lp-site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .lp-site-header.scrolled .lp-brand {
    color: #333;
  }
  
  .lp-site-header.scrolled .lp-logo-transparent {
    opacity: 0;
  }
  
  .lp-site-header.scrolled .lp-logo-white {
    opacity: 1;
  }
  
  .lp-site-header.scrolled .lp-mobile-menu-toggle {
    color: #3794AA;
  }
  
  .lp-site-header.scrolled .lp-menu a {
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  
  .lp-desktop-menu {
    display: none;
  }
  
  /* Hero section */
  .lp-hero {
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .lp-hero .lp-container {
    width: 100%;
    padding: 0 !important;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .lp-hero-grid {
    gap: 30px;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  body.has-banner .lp-hero-grid {
    padding-top: 5px;
  }
  
  .lp-hero-logo {
    margin-top: 10px;
  }
  
  .lp-hero-headline {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .lp-qr-code-image {
    margin-top: 50px;
    margin-bottom: 0;
  }
  
  .lp-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .lp-display {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .lp-lead {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .lp-store-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .lp-store-button {
    height: 50px;
    width: auto;
  }
  
  /* Hide hero image on mobile */
  .lp-hero-phone {
    display: none;
  }
  
  .lp-hero-content {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
    padding-left: 0;
    padding-right: 0;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .lp-hero-right {
    order: 1;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  
  .lp-hero-left {
    order: 2;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    max-width: 100vw;
    overflow: hidden;
    width: 100%;
  }
  
  .lp-hero-image {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .lp-hero-steps {
    margin-top: 0;
    gap: 8px;
  }
  
  .lp-step-item {
    gap: 6px;
  }
  
  .lp-step-text {
    font-size: clamp(20px, 2.8vw, 32px);
  }
  
  .lp-step-number-image {
    width: clamp(45px, 5.5vw, 55px);
    height: clamp(45px, 5.5vw, 55px);
  }
  
  .lp-step-item:first-child:not(:last-child)::after {
    left: clamp(22.5px, 2.75vw, 27.5px);
    top: clamp(45px, 5.5vw, 55px);
  }
  
  .lp-step-item:nth-child(2):not(:last-child)::after {
    left: clamp(22.5px, 2.75vw, 27.5px);
    top: clamp(45px, 5.5vw, 55px);
  }
  
  .lp-step-checkmark {
    width: clamp(36px, 4.5vw, 45px);
    height: clamp(36px, 4.5vw, 45px);
  }
  
  .lp-qr-code-image {
    height: clamp(180px, 20vw, 220px);
    align-self: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .landingpage-ios .lp-hero-right .lp-qr-code-image {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
    margin-top: 20px;
  }
  
  .landingpage-ios .cta-copy .lp-qr-code-image {
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
  }
  
  .landingpage-googleplay .lp-hero-right .lp-qr-code-image {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
    margin-top: 20px;
  }
  
  .landingpage-googleplay .cta-copy .lp-qr-code-image {
    height: clamp(120px, 12vw, 160px);
    max-width: 220px;
  }
  
  /* FAQ Section */
  .lp-faq-section {
    padding: 96px 0 64px 0;
  }
  
  .lp-faq-heading {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 8px;
  }
  
  .testimonials h2 {
    font-size: 1.8rem;
  }
  
  .lp-faq-subhead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .lp-faq-intro {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0;
  }
  
  .lp-faq-question {
    padding: 20px 0;
  }
  
  .lp-faq-question h3 {
    font-size: 1.1rem;
    padding-right: 12px;
  }
  
  .lp-faq-icon {
    font-size: 1.5rem;
    min-width: 24px;
  }
  
  .lp-faq-answer p {
    font-size: 0.95rem;
    padding-right: 0;
  }
  
  /* CTA section */
  .cta {
    padding: 64px 0 0 0;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cta .lp-container {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cta-grid {
    gap: 8px;
    text-align: center;
    margin-bottom: 0;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .cta-phone {
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    max-width: 100%;
  }
  
  .phone-crop {
    margin-bottom: -1px;
    padding-bottom: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  
  .cta-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .cta-copy .lp-qr-code-image {
    max-width: 100%;
    width: auto;
    height: auto;
    box-sizing: border-box;
  }
  
  .cta-copy h2 {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  
  .cta-copy p {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  
  .store-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .store-button {
    height: 50px;
    width: auto;
  }
  
  
  /* Footer */
  .lp-site-footer {
    padding: 24px 0;
  }
  
  .lp-footer-grid {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .lp-copyright {
    order: 1;
    text-align: center;
    width: 100%;
  }
  
  .lp-footer-links {
    order: 2;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .lp-footer-links a {
    margin-left: 0;
  }
  
  /* General mobile improvements */
  .lp-container {
    width: 90%;
    padding: 0 20px;
  }
  
  /* Form mobile styles */
  .lp-hero-form {
    max-width: 100%;
    width: 100%;
  }
  
  .lp-form-row {
    flex-direction: column;
  }
  
  .lp-form-field input {
    width: 100%;
    box-sizing: border-box;
  }
  
  .lp-submit-button {
    align-self: center;
    width: 100%;
    max-width: 300px;
  }
  
  /* Testimonials Section - Mobile fixes for long quotes */
  .testimonial-single {
    height: auto;
    min-height: 180px;
    padding: 24px 0;
  }
  
  .testimonial-quote {
    padding: 24px 20px;
    height: auto;
    min-height: auto;
  }
  
  .testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}


/* Testimonials Section */
.testimonials { 
  background: #ffffff; 
  padding: 80px 0 120px 0; 
  text-align: center; 
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Tetimonial_Quote_IMG.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.testimonials h2 { 
  color: #F58C17; 
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.testimonial-pause-btn {
  display: block;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #F58C17;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #F58C17;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-pause-btn:hover {
  background: #F58C17;
  color: #ffffff;
  transform: scale(1.1);
}

.testimonial-pause-btn:focus {
  outline: none;
}

.testimonial-pause-btn:focus-visible {
  outline: 3px solid #F58C17;
  outline-offset: 2px;
}

.testimonial-pause-btn .pause-icon,
.testimonial-pause-btn .play-icon {
  display: inline-block;
  line-height: 1;
}

.testimonials-subhead { 
  color: var(--lp-muted); 
  margin-bottom: 48px;
}

/* Single testimonial container */
.testimonial-single { 
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  min-height: 180px;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 32px 0;
}

.testimonial-quote {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 36px 32px;
  border: 1px solid #f0f4f7;
  transition: all 0.6s ease;
  width: 100%;
  min-height: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.testimonial-quote p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--lp-text);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  transition: all 0.6s ease;
}

/* Dot Navigation */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #D8D8D8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background: #B8B8B8;
  transform: scale(1.1);
}

.testimonial-dot.active {
  background: #F58C17;
  transform: scale(1.2);
}

.testimonial-dot:focus {
  outline: 2px solid #3794AA;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(55, 148, 170, 0.3);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none;
  }
}


/* People Section */
.people-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #3794AA 0%, #13707F 100%);
  z-index: -1;
}

.lore-people {
  position: relative;
  color: white;
  text-align: center;
  min-height: auto;
  padding: 3rem 0;
  overflow: hidden;
}

.people-content h2 {
  color: white;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.people-content p {
  color: white;
  margin-bottom: 3rem;
}

.people-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.person {
  display: none;
  max-width: 1200px;
  width: 100%;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
  box-sizing: border-box;
}

.person.active {
  display: grid;
}

.person-info {
  text-align: left;
}

.person-info h3 {
  color: #3794AA;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.person-info h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.person-info .bio {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.person-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.people-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  position: relative;
  padding: 0;
}

.people-thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.person-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.person-thumbnail:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.person-thumbnail:focus {
  outline: none;
}

.person-thumbnail:focus-visible {
  outline: 2px solid #3794AA;
  outline-offset: 2px;
}

.person-thumbnail.active {
  opacity: 1;
  border-color: #3794AA;
  transform: scale(1.1);
}

.person-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* People Section Media Queries */
@media (max-width: 1024px) {
  .person {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .person-image img {
    width: 100%;
    max-width: 400px;
  }
  
  .people-carousel {
    text-align: center;
  }
  
  .person {
    justify-items: center;
  }
  
  .person-info {
    text-align: center;
    padding-top: 2rem;
  }
  
  .person-image {
    display: flex;
    justify-content: center;
  }
  
  .people-thumbnails {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .person {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .person-info {
    text-align: center;
    padding-top: 0;
  }
  
  .person-image img {
    max-width: 300px;
  }
  
  .people-content h2 {
    font-size: 1.8rem;
  }
  
  /* Humana landing page - extra spacing in People section on mobile */
  body.humana-landing .people-content h2 {
    margin-bottom: 3rem;
  }
}

