/* =========================
   PRACTITIONER LANDING PAGE CSS
   WordPress Compatible - External File
   ========================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --lp-blue: 66, 104, 172;
  --lp-blue-dark: 0, 51, 102;
  --lp-gold: 255, 215, 0;
  --lp-white: #ffffff;
  --lp-blue-hex: #4268AC;
  --lp-blue-dark-hex: #003366;
  --lp-gold-hex: #FFD700;
}

html {
  scroll-behavior: smooth;
}

/* ===== BASE CONTAINER ===== */
.lp-container {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.lp-container * {
  box-sizing: border-box;
}

/* ===== SECTION BACKGROUNDS - ALTERNATING ===== */
.lp-section-blue {
  background: var(--lp-blue-hex);
  color: #ffffff;
}

.lp-section-white {
  background: #ffffff;
  color: #1a1a2e;
}

.lp-section-off-white {
  background: #f8f9fa;
  color: #1a1a2e;
}

/* ===== BACKGROUND - REMOVED DARK GRADIENT ===== */
.lp-bg {
  background: transparent;
}

/* ===== GRAIN TEXTURE OVERLAY ===== */
.lp-grain {
  position: relative;
}
.lp-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* ===== TEXT COLORS ===== */
.lp-text-white { color: #ffffff; }
.lp-text-light { color: #e2e8f0; }
.lp-text-muted { color: rgba(100, 116, 139, 0.9); }
.lp-text-gold { color: var(--lp-gold-hex); }
.lp-text-blue { color: var(--lp-blue-hex); }
.lp-text-dark { color: #1a1a2e; }

/* Text colors on blue background */
.lp-section-blue .lp-text-muted { color: rgba(226, 232, 240, 0.9); }

/* ===== LAYOUT ===== */
.lp-max-width {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.lp-full-width {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.lp-section {
  width: 100%;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .lp-section {
    padding: 4rem 0;
  }
}

.lp-grid-hero {
  display: grid;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .lp-grid-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.lp-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

/* ===== SCROLL REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), 
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].lp-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== MARQUEE BANNER ===== */
.lp-marquee {
  overflow: hidden;
  background: var(--lp-blue-dark-hex);
  width: 100%;
}
.lp-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  padding: 0.875rem 0;
  animation: lp-marquee 20s linear infinite;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-gold-hex);
}
.lp-marquee-track span {
  margin: 0 1.5rem;
}
.lp-marquee-star {
  color: #ffffff;
}
@keyframes lp-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}

/* ===== TYPOGRAPHY ===== */
.lp-h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lp-gold-hex);
  margin: 0;
}

/* H1 on white background */
.lp-section-white .lp-h1,
.lp-section-off-white .lp-h1 {
  color: var(--lp-blue-hex);
}

@media (min-width: 640px) {
  .lp-h1 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .lp-h1 { font-size: 3rem; }
}

.lp-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--lp-gold-hex);
  margin: 0;
}

/* H2 on white background */
.lp-section-white .lp-h2,
.lp-section-off-white .lp-h2 {
  color: var(--lp-blue-hex);
}

@media (min-width: 640px) {
  .lp-h2 { font-size: 1.875rem; }
}

.lp-subhead {
  font-size: 1.125rem;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.7;
}

/* Subhead on white background */
.lp-section-white .lp-subhead,
.lp-section-off-white .lp-subhead {
  color: rgba(26, 26, 46, 0.8);
}

.lp-body {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.7;
}

/* Body text on white background */
.lp-section-white .lp-body,
.lp-section-off-white .lp-body {
  color: rgba(26, 26, 46, 0.85);
}

.lp-small {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 1);
  line-height: 1.6;
}

/* Small text on white background */
.lp-section-white .lp-small,
.lp-section-off-white .lp-small {
  color: rgba(100, 116, 139, 1);
}

/* ===== BUTTONS ===== */
.lp-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 300ms ease;
}

.lp-btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%), 
    rgba(255, 255, 255, 0.15), 
    transparent 35%
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.lp-btn:hover::after {
  opacity: 1;
}

.lp-btn-primary {
  background: var(--lp-blue-dark-hex);
  color: var(--lp-gold-hex);
  box-shadow: 0 10px 40px -10px rgba(0, 51, 102, 0.4);
}
.lp-btn-primary:hover {
  background: var(--lp-blue-hex);
  color: #ffffff;
  box-shadow: 0 15px 50px -10px rgba(66, 104, 172, 0.5);
  transform: translateY(-2px);
}

.lp-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}
.lp-btn-secondary:hover {
  background: var(--lp-gold-hex);
  color: var(--lp-blue-dark-hex);
  border-color: var(--lp-gold-hex);
  transform: translateY(-2px);
}

/* Secondary button on white background */
.lp-section-white .lp-btn-secondary,
.lp-section-off-white .lp-btn-secondary {
  background: transparent;
  color: var(--lp-blue-hex);
  border: 2px solid var(--lp-blue-hex);
}
.lp-section-white .lp-btn-secondary:hover,
.lp-section-off-white .lp-btn-secondary:hover {
  background: var(--lp-blue-hex);
  color: #ffffff;
  border-color: var(--lp-blue-hex);
}

.lp-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-btn-group {
    flex-direction: row;
  }
}

/* ===== GLASS CARD EFFECT ===== */
.lp-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Cards on white background */
.lp-section-white .lp-card,
.lp-section-off-white .lp-card {
  background: #ffffff;
  border: 1px solid rgba(66, 104, 172, 0.15);
  box-shadow: 0 10px 40px -12px rgba(66, 104, 172, 0.15);
}

.lp-card-lg {
  border-radius: 1.5rem;
  padding: 2rem;
}

.lp-card-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(var(--lp-gold), 0.08) 100%);
}

.lp-section-white .lp-card-highlight,
.lp-section-off-white .lp-card-highlight {
  background: linear-gradient(135deg, rgba(66, 104, 172, 0.05) 0%, rgba(255, 215, 0, 0.08) 100%);
}

/* ===== FAQ ACCORDION ===== */
.lp-faq details {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.lp-section-white .lp-faq details,
.lp-section-off-white .lp-faq details {
  border-bottom: 1px solid rgba(66, 104, 172, 0.15);
}

.lp-faq details:last-child {
  border-bottom: none;
}
.lp-faq summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 600;
  color: #ffffff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 200ms ease;
}

.lp-section-white .lp-faq summary,
.lp-section-off-white .lp-faq summary {
  color: var(--lp-blue-hex);
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}
.lp-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--lp-gold-hex);
  transition: transform 300ms ease;
}

.lp-section-white .lp-faq summary::after,
.lp-section-off-white .lp-faq summary::after {
  color: var(--lp-blue-hex);
}

.lp-faq details[open] summary::after {
  transform: rotate(45deg);
}
.lp-faq summary:hover {
  color: var(--lp-gold-hex);
}

.lp-section-white .lp-faq summary:hover,
.lp-section-off-white .lp-faq summary:hover {
  color: var(--lp-blue-hex);
}

.lp-faq-content {
  padding-bottom: 1.25rem;
  color: rgba(226, 232, 240, 0.9);
}

.lp-section-white .lp-faq-content,
.lp-section-off-white .lp-faq-content {
  color: rgba(100, 116, 139, 1);
}

/* ===== STICKY CTA BAR ===== */
.lp-sticky-wrapper {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: 0;
  pointer-events: none;
}

.lp-sticky {
  pointer-events: auto;
  width: 100%;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  background: var(--lp-blue-dark-hex);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-sticky.lp-show {
  transform: translateY(0);
  opacity: 1;
}

.lp-sticky-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
  color: #ffffff;
}

@media (min-width: 768px) {
  .lp-sticky-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.lp-sticky .lp-btn {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  background: var(--lp-gold-hex);
  color: var(--lp-blue-dark-hex);
}

.lp-sticky .lp-btn:hover {
  background: #ffffff;
  color: var(--lp-blue-dark-hex);
}

/* ===== IMAGE CONTAINER ===== */
.lp-image-wrap {
  border-radius: 1.5rem;
  padding: 0.75rem;
}

.lp-image-wrap img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===== SPACING UTILITIES ===== */
.lp-mt-4 { margin-top: 1rem; }
.lp-mt-6 { margin-top: 1.5rem; }
.lp-mt-8 { margin-top: 2rem; }
.lp-mt-10 { margin-top: 2.5rem; }
.lp-mt-12 { margin-top: 3rem; }
.lp-mt-16 { margin-top: 4rem; }
.lp-py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.lp-py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.lp-pb-sticky { padding-bottom: 8rem; }

/* ===== LIST STYLES ===== */
.lp-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: rgba(203, 213, 225, 1);
  font-size: 0.875rem;
}
.lp-list-bullet {
  color: var(--lp-gold-hex);
  margin-top: 0.125rem;
}

/* List bullet on white background */
.lp-section-white .lp-list-bullet,
.lp-section-off-white .lp-list-bullet {
  color: var(--lp-blue-hex);
}

/* ===== WHY ADD-ONS FAIL SECTION ===== */
.lp-fail-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.lp-fail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.7);
}

.lp-fail-list li:last-child {
  border-bottom: none;
}

.lp-fail-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 113, 113, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== HOW IT WORKS SECTION ===== */
.lp-steps-grid {
  display: grid;
  gap: 1rem;
}

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

.lp-step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Step card on white background */
.lp-section-white .lp-step-card,
.lp-section-off-white .lp-step-card {
  background: #ffffff;
  border: 1px solid rgba(66, 104, 172, 0.15);
  box-shadow: 0 10px 40px -12px rgba(66, 104, 172, 0.12);
}

.lp-step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-gold-hex) 0%, rgba(255, 215, 0, 0.8) 100%);
  border: 2px solid var(--lp-gold-hex);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-blue-dark-hex);
}

.lp-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

/* Step title on white background */
.lp-section-white .lp-step-title,
.lp-section-off-white .lp-step-title {
  color: var(--lp-blue-hex);
}

.lp-step-desc {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Step desc on white background */
.lp-section-white .lp-step-desc,
.lp-section-off-white .lp-step-desc {
  color: rgba(100, 116, 139, 1);
}

/* ===== WHAT YOU DO / WE DO ===== */
.lp-roles-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lp-roles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-role-card {
  padding: 2rem;
}

.lp-role-card.lp-role-you {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.lp-role-card.lp-role-we {
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.08) 0%, rgba(var(--lp-gold), 0.04) 100%);
  border-color: rgba(var(--lp-gold), 0.2);
}

.lp-role-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lp-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-role-you .lp-role-icon {
  background: rgba(255, 255, 255, 0.1);
}

.lp-role-we .lp-role-icon {
  background: rgba(var(--lp-gold), 0.2);
}

.lp-role-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  fill: none;
}

.lp-role-you .lp-role-icon svg {
  stroke: rgba(226, 232, 240, 0.8);
}

.lp-role-we .lp-role-icon svg {
  stroke: var(--lp-gold-hex);
}

.lp-role-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.lp-role-you .lp-role-title {
  color: rgba(226, 232, 240, 0.9);
}

.lp-role-we .lp-role-title {
  color: var(--lp-gold-hex);
}

.lp-role-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-role-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.lp-role-you .lp-role-list li {
  color: rgba(203, 213, 225, 0.8);
}

.lp-role-we .lp-role-list li {
  color: rgba(226, 232, 240, 0.95);
}

.lp-role-check {
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.lp-role-you .lp-role-check {
  color: rgba(226, 232, 240, 0.5);
}

.lp-role-we .lp-role-check {
  color: var(--lp-gold-hex);
}

/* ===== COMPARISON TABLES ===== */
.lp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-compare-table {
  width: 100%;
  min-width: 320px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-compare-table th {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.lp-compare-table th:first-child {
  width: 35%;
  color: rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.lp-compare-table th:nth-child(2) {
  width: 32.5%;
  color: rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.lp-compare-table th:nth-child(3) {
  width: 32.5%;
  color: var(--lp-gold-hex);
  background: rgba(var(--lp-gold), 0.08);
}

.lp-compare-table td:first-child {
  font-weight: 500;
  color: rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.02);
}

.lp-compare-table td:nth-child(2) {
  color: rgba(203, 213, 225, 0.7);
  background: rgba(255, 255, 255, 0.01);
}

.lp-compare-table td:nth-child(3) {
  color: rgba(226, 232, 240, 0.95);
  background: rgba(var(--lp-gold), 0.04);
}

.lp-compare-table tr:last-child td {
  border-bottom: none;
}

.lp-table-bad {
  color: rgba(248, 113, 113, 0.7) !important;
}

.lp-table-good {
  color: var(--lp-gold-hex) !important;
  font-weight: 600;
}

.lp-table-highlight {
  font-size: 1.125rem;
  font-weight: 700;
}

.lp-compare-table td:nth-child(2) .lp-table-highlight {
  color: rgba(226, 232, 240, 0.5);
}

.lp-compare-table td:nth-child(3) .lp-table-highlight {
  background: linear-gradient(135deg, var(--lp-gold-hex) 0%, var(--lp-gold-hex) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Key phrase callout */
.lp-key-phrase {
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.1) 0%, rgba(var(--lp-gold), 0.05) 100%);
  border-left: 3px solid var(--lp-gold-hex);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.lp-key-phrase p {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
}

.lp-key-phrase p + p {
  margin-top: 0.75rem;
}

.lp-bottom-line {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== SCIENCE SECTION ===== */
.lp-science-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.lp-stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.lp-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.lp-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-gold-hex) 0%, var(--lp-gold-hex) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.lp-stat-label {
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.8);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.lp-science-grid {
  display: grid;
  gap: 1rem;
}

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

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

.lp-science-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-science-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.15) 0%, rgba(var(--lp-gold), 0.08) 100%);
  border: 1px solid rgba(var(--lp-gold), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-science-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lp-gold-hex);
  stroke-width: 1.5;
  fill: none;
}

.lp-science-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.lp-science-text p {
  font-size: 0.8125rem;
  color: rgba(203, 213, 225, 0.9);
  margin: 0;
  line-height: 1.5;
}

.lp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lp-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.9);
}

.lp-badge-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--lp-gold-hex);
  stroke-width: 2;
  fill: none;
}

/* ===== CONTACT / FOOTER SECTION ===== */
.lp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 8rem;
  margin-top: 3rem;
}

.lp-contact-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
}

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

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

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

@media (min-width: 1200px) {
  .lp-contact-grid { grid-template-columns: repeat(7, 1fr); }
}

.lp-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  text-decoration: none;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 300ms ease;
}

.lp-contact-item:hover {
  background: rgba(var(--lp-gold), 0.08);
  border-color: rgba(var(--lp-gold), 0.2);
  transform: translateY(-3px);
}

.lp-contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.12) 0%, rgba(var(--lp-gold), 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.lp-contact-item:hover .lp-contact-icon {
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.2) 0%, rgba(var(--lp-gold), 0.12) 100%);
  transform: scale(1.08);
}

.lp-contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lp-gold-hex);
  stroke-width: 1.5;
  fill: none;
}

.lp-contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.lp-contact-value {
  font-size: 0.75rem;
  color: rgba(203, 213, 225, 0.7);
  margin: 0.25rem 0 0 0;
}

/* Phone numbers row */
.lp-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.lp-phone-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
}

.lp-phone-item:hover {
  background: rgba(var(--lp-gold), 0.1);
  border-color: rgba(var(--lp-gold), 0.2);
}

.lp-phone-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--lp-gold-hex);
  stroke-width: 2;
  fill: none;
}

.lp-phone-item span {
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.9);
}

.lp-phone-flag {
  font-size: 1rem;
}

/* ===== FLUENT FORMS CUSTOM STYLING ===== */
.fluentform {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.fluentform .ff-el-form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0.75rem !important;
  color: #f1f5f9 !important;
  padding: 0.875rem 1rem !important;
  font-size: 1rem !important;
  transition: all 300ms ease !important;
}

.fluentform .ff-el-form-control:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(66, 104, 172, 0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(66, 104, 172, 0.15) !important;
}

.fluentform .ff-el-form-control::placeholder {
  color: rgba(203, 213, 225, 0.5) !important;
}

.fluentform .ff-el-input--label label {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  margin-bottom: 0.5rem !important;
}

.fluentform .ff-el-input--label .asterisk-right {
  color: var(--lp-blue-hex) !important;
}

.fluentform .ff-el-help-message {
  color: rgba(203, 213, 225, 0.7) !important;
  font-size: 0.8125rem !important;
}

.fluentform .ff-el-group {
  margin-bottom: 1.25rem !important;
}

.fluentform .ff-el-form-check {
  margin-bottom: 0.625rem !important;
}

.fluentform .ff-el-form-check-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  border-radius: 0.25rem !important;
}

.fluentform .ff-el-form-check-input:checked {
  background: var(--lp-blue-hex) !important;
  border-color: var(--lp-blue-hex) !important;
}

.fluentform .ff-el-form-check-label {
  color: rgba(226, 232, 240, 0.9) !important;
  font-size: 0.9375rem !important;
  padding-left: 0.5rem !important;
}

.fluentform .ff-btn-submit {
  background: linear-gradient(135deg, var(--lp-blue-hex) 0%, var(--lp-gold-hex) 100%) !important;
  color: #020617 !important;
  border: none !important;
  border-radius: 0.75rem !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 300ms ease !important;
  box-shadow: 0 10px 40px -10px rgba(66, 104, 172, 0.4) !important;
}

.fluentform .ff-btn-submit:hover {
  box-shadow: 0 15px 50px -10px rgba(66, 104, 172, 0.5) !important;
  transform: translateY(-2px) !important;
}

.fluentform .error {
  color: rgb(248, 113, 113) !important;
  font-size: 0.8125rem !important;
  margin-top: 0.375rem !important;
}

.fluentform .ff-el-is-error .ff-el-form-control {
  border-color: rgba(248, 113, 113, 0.5) !important;
}

.fluentform .ff-message-success {
  background: rgba(66, 104, 172, 0.1) !important;
  border: 1px solid rgba(66, 104, 172, 0.3) !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
  color: #f1f5f9 !important;
}

.fluentform .ff-message-success h3 {
  color: var(--lp-blue-hex) !important;
}

/* ===== CTA OPTIONS SECTION ===== */
.lp-cta-options {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.lp-cta-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
}

.lp-cta-option:hover {
  transform: translateY(-3px);
}

.lp-cta-option.lp-option-form {
  border-color: rgba(var(--lp-gold), 0.2);
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.08) 0%, rgba(var(--lp-gold), 0.04) 100%);
}

.lp-cta-option.lp-option-form:hover {
  border-color: rgba(var(--lp-gold), 0.4);
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.12) 0%, rgba(var(--lp-gold), 0.06) 100%);
}

.lp-cta-option.lp-option-schedule:hover {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.08);
}

.lp-cta-option.lp-option-buy:hover {
  border-color: rgba(var(--lp-gold), 0.3);
  background: rgba(var(--lp-gold), 0.08);
}

.lp-cta-option-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.lp-cta-option:hover .lp-cta-option-icon {
  transform: scale(1.1);
}

.lp-cta-option-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  fill: none;
}

.lp-option-form .lp-cta-option-icon {
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.2) 0%, rgba(var(--lp-gold), 0.1) 100%);
}

.lp-option-form .lp-cta-option-icon svg {
  stroke: var(--lp-gold-hex);
}

.lp-option-schedule .lp-cta-option-icon {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.lp-option-schedule .lp-cta-option-icon svg {
  stroke: rgb(96, 165, 250);
}

.lp-option-buy .lp-cta-option-icon {
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.2) 0%, rgba(var(--lp-gold), 0.1) 100%);
}

.lp-option-buy .lp-cta-option-icon svg {
  stroke: var(--lp-gold-hex);
}

.lp-cta-option-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.375rem 0;
}

.lp-cta-option-desc {
  font-size: 0.8125rem;
  color: rgba(203, 213, 225, 0.8);
  margin: 0;
  line-height: 1.4;
}

.lp-cta-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.lp-cta-or-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.lp-cta-or-text {
  font-size: 0.75rem;
  color: rgba(203, 213, 225, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== PULSE ANIMATION ===== */
@keyframes lp-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.lp-pulse {
  animation: lp-pulse 2s ease-in-out infinite;
}

/* ===== DECORATIVE GRAPHICS ===== */
.lp-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 100%);
}

.lp-accent-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-accent-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: -100px;
  background: radial-gradient(circle, rgba(var(--lp-gold), 0.08) 0%, transparent 70%);
  animation: lp-float 8s ease-in-out infinite;
}

.lp-accent-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: -50px;
  background: radial-gradient(circle, rgba(var(--lp-gold), 0.06) 0%, transparent 70%);
  animation: lp-float 10s ease-in-out infinite reverse;
}

.lp-accent-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  background: radial-gradient(circle, rgba(var(--lp-blue), 0.05) 0%, transparent 70%);
  animation: lp-float 12s ease-in-out infinite;
}

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

.lp-line-accent {
  position: relative;
}

.lp-line-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--lp-gold-hex) 0%, rgba(var(--lp-gold), 0.3) 100%);
  border-radius: 4px;
}

.lp-line-accent > * {
  padding-left: 1.5rem;
}

.lp-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.lp-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--lp-gold), 0.3), transparent);
}

.lp-divider-icon {
  width: 8px;
  height: 8px;
  background: rgba(var(--lp-gold), 0.5);
  border-radius: 50%;
}

.lp-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--lp-gold), 0.2) 0%, rgba(var(--lp-gold), 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lp-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lp-gold-hex);
  stroke-width: 2;
  fill: none;
}

/* ===== HERO SECTION FULL WIDTH BLUE BACKGROUND ===== */
.lp-hero-section {
  background: var(--lp-blue-hex);
  padding: 3rem 0 4rem;
}

.lp-hero-section .lp-h1 {
  color: var(--lp-gold-hex);
}

.lp-hero-section .lp-subhead {
  color: rgba(255, 255, 255, 0.95);
}

.lp-hero-section .lp-body,
.lp-hero-section .lp-small {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== WHITE SECTION STYLES ===== */
.lp-white-section {
  background: #ffffff;
  padding: 3rem 0;
}

.lp-white-section .lp-h1,
.lp-white-section .lp-h2 {
  color: var(--lp-blue-hex);
}

.lp-white-section .lp-subhead,
.lp-white-section .lp-body {
  color: rgba(26, 26, 46, 0.85);
}

.lp-white-section .lp-small {
  color: rgba(100, 116, 139, 1);
}

.lp-white-section .lp-card {
  background: #ffffff;
  border: 1px solid rgba(66, 104, 172, 0.15);
  box-shadow: 0 10px 40px -12px rgba(66, 104, 172, 0.12);
}

.lp-white-section .lp-text-gold {
  color: var(--lp-blue-hex);
}

/* ===== BLUE SECTION STYLES ===== */
.lp-blue-section {
  background: var(--lp-blue-hex);
  padding: 3rem 0;
}

.lp-blue-section .lp-h1,
.lp-blue-section .lp-h2 {
  color: var(--lp-gold-hex);
}

.lp-blue-section .lp-subhead,
.lp-blue-section .lp-body,
.lp-blue-section .lp-text-white {
  color: rgba(255, 255, 255, 0.95);
}

.lp-blue-section .lp-small {
  color: rgba(226, 232, 240, 1);
}

.lp-blue-section .lp-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Card icons on different backgrounds */
.lp-white-section .lp-card-icon {
  background: linear-gradient(135deg, rgba(66, 104, 172, 0.15) 0%, rgba(66, 104, 172, 0.08) 100%);
}

.lp-white-section .lp-card-icon svg {
  stroke: var(--lp-blue-hex);
}

.lp-blue-section .lp-card-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.lp-blue-section .lp-card-icon svg {
  stroke: var(--lp-gold-hex);
}

/* Line accent on different backgrounds */
.lp-white-section .lp-line-accent::before {
  background: linear-gradient(180deg, var(--lp-blue-hex) 0%, rgba(66, 104, 172, 0.3) 100%);
}

.lp-blue-section .lp-line-accent::before {
  background: linear-gradient(180deg, var(--lp-gold-hex) 0%, rgba(255, 215, 0, 0.3) 100%);
}

/* Divider on different backgrounds */
.lp-white-section .lp-divider-line {
  background: linear-gradient(90deg, transparent, rgba(66, 104, 172, 0.3), transparent);
}

.lp-white-section .lp-divider-icon {
  background: rgba(66, 104, 172, 0.5);
}

.lp-blue-section .lp-divider-line {
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.lp-blue-section .lp-divider-icon {
  background: rgba(255, 215, 0, 0.5);
}
