/* ============================================
   Plan Ally by NobleCare — Brand Stylesheet
   Colors: Navy #0B1D3A, Teal #1B6D6B, Coral #E76F51, Gold #D4AF37, Cream #F7F4EE
   Fonts: Playfair Display (headings), Source Sans 3 (body)
   ============================================ */

:root {
  --navy: #0B1D3A;
  --teal: #1B6D6B;
  --teal-dark: #155a59;
  --coral: #E76F51;
  --coral-dark: #d45a3e;
  --gold: #D4AF37;
  --gold-light: #e8c94b;
  --cream: #F7F4EE;
  --white: #ffffff;
  --gray-50: #fafaf8;
  --gray-100: #f0ede6;
  --gray-200: #e0dbd2;
  --gray-300: #c5bfb4;
  --gray-400: #9e9788;
  --gray-500: #736d60;
  --gray-600: #504b41;
  --gray-700: #3a362e;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 3px rgba(11,29,58,0.06);
  --shadow-md: 0 4px 12px rgba(11,29,58,0.08);
  --shadow-lg: 0 8px 30px rgba(11,29,58,0.12);
  --shadow-xl: 0 16px 48px rgba(11,29,58,0.16);

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p {
  color: var(--gray-600);
  line-height: 1.7;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-arrow {
  transition: transform var(--transition);
  font-size: 1.1em;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(231,111,81,0.3);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,109,107,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar p {
  color: var(--white);
  opacity: 0.9;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  overflow: visible;
}

.logo-mark-sm {
  width: 32px;
  height: 32px;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  white-space: nowrap;
}

.logo-flourish {
  display: block;
  width: 100px;
  height: 12px;
  margin-top: 1px;
  overflow: visible;
}

.footer-logo .logo-text {
  font-size: 1.25rem;
}

.footer-logo .logo-flourish {
  width: 96px;
  height: 11px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  flex-wrap: nowrap;
  gap: 22px;
}

.main-nav a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--navy);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.phone-link:hover {
  color: var(--coral);
}

.phone-link svg {
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 8px;
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--coral) !important;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-tagline em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge svg {
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ============================================
   Features Bar
   ============================================ */
.features-bar {
  background: var(--teal);
  padding: 28px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}

.step-lottie {
  margin: 0 auto 8px;
  display: flex;
  justify-content: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--cream);
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--coral);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
}

/* ============================================
   Medicare Options / Campaign Lanes
   ============================================ */
.medicare-options {
  padding: 80px 0;
  background: var(--cream);
}

.lanes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lane-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lane-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lane-card.featured {
  border-color: var(--coral);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.lane-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.lane-icon {
  margin-bottom: 20px;
}

.lane-card h3 {
  margin-bottom: 8px;
}

.lane-hook {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy) !important;
  margin-bottom: 12px;
}

.lane-card > p:not(.lane-hook) {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 24px;
}

.lane-card .btn {
  align-self: flex-start;
}

/* ============================================
   Trust / Stats Section
   ============================================ */
.trust-section {
  padding: 60px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-stat {
  text-align: center;
  padding: 24px 16px;
}

.trust-stat-icon {
  margin: 0 auto 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   Lead Form Section
   ============================================ */
.form-section {
  padding: 80px 0;
  background: var(--cream);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-content h2 {
  margin-bottom: 16px;
}

.form-content > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.form-trust-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-trust-point svg {
  flex-shrink: 0;
}

.form-trust-point span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

/* Form Styles */
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,109,107,0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(231,111,81,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23736d60' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Consent Checkbox */
.form-consent {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: var(--gray-500) !important;
  align-items: flex-start;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-400) !important;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================
   FAQ / Resources
   ============================================ */
.resources-section {
  padding: 80px 0;
  background: var(--white);
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--teal);
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-image-wrapper {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.about-photo {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-content .btn {
  margin-top: 12px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.value-card svg,
.value-card dotlottie-wc {
  flex-shrink: 0;
}

.value-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '✦';
  position: absolute;
  top: 24px;
  left: 10%;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.2;
  animation: sparkle-pulse 3s ease-in-out infinite;
}

.final-cta::after {
  content: '✦';
  position: absolute;
  bottom: 32px;
  right: 12%;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.15;
  animation: sparkle-pulse 3s ease-in-out infinite 1.5s;
}

.final-cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo .logo-text {
  font-size: 1.2rem;
}

.powered-by {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500) !important;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--gray-500) !important;
}

.footer-tagline em {
  font-style: italic;
  color: var(--coral);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-col li:not(:has(a)) {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}

.footer-disclaimers p {
  font-size: 0.78rem;
  color: var(--gray-400) !important;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclaimers p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Success Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,29,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-slow);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.modal-icon {
  margin: 0 auto 20px;
}

.modal h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.modal p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.modal-phone {
  font-weight: 600;
  color: var(--navy) !important;
}

.modal-phone a {
  color: var(--coral);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================================
   Brand Decorative Elements
   Gold sparkle stars, coral hearts, corner accents
   ============================================ */

/* Gold four-pointed star sparkle — the brand's visual signature */
.sparkle {
  color: var(--gold) !important;
  font-size: 1.2em;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.sparkle-sm { font-size: 0.7em; }
.sparkle-lg { font-size: 1.6em; }

@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.sparkle-animated {
  animation: sparkle-pulse 2.5s ease-in-out infinite;
}

.sparkle-animated:nth-child(2) { animation-delay: 0.8s; }
.sparkle-animated:nth-child(3) { animation-delay: 1.6s; }

/* Coral heart accent */
.heart-accent {
  color: var(--coral);
  font-size: 0.9em;
  display: inline-block;
  line-height: 1;
}

/* Gold corner bracket accent on images */
.corner-accent {
  position: relative;
}

.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}

.corner-accent::before {
  top: -8px;
  right: -8px;
  border-width: 3px 3px 0 0;
  border-radius: 0 6px 0 0;
}

.corner-accent::after {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 6px;
}

/* Hero tagline sparkle decoration zone */
.hero-tagline {
  position: relative;
}

.hero-sparkles {
  position: absolute;
  right: -28px;
  top: -6px;
  display: flex;
  flex-direction: column;
  color: var(--gold);
  gap: 2px;
  gap: 4px;
}

/* Powered by NobleCare heart + text treatment */
.powered-by-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.powered-by-badge svg {
  flex-shrink: 0;
}

/* ============================================
   Brand Values / Shareable Strip
   ============================================ */
.brand-values-strip {
  padding: 48px 0;
  background: var(--cream);
  border-top: 1px solid var(--gray-100);
}

.brand-values-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand-values-header .star-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-values-header h3 {
  font-size: 1.3rem;
}

.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.brand-value-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-value-item .bv-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-value-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-value-item p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .brand-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-sparkles {
    display: none;
  }
  .corner-accent::before,
  .corner-accent::after {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .brand-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    display: none;
  }

  .lanes-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions .phone-link {
    display: none;
  }

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

  /* Mobile nav overlay */
  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
  }

  .main-nav.mobile-open ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav.mobile-open li {
    border-bottom: 1px solid var(--gray-100);
  }

  .main-nav.mobile-open a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }

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

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

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero {
    padding: 48px 0 40px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
}

@media (max-width: 480px) {
  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-flourish {
    width: 98px;
  }

  .container {
    padding: 0 16px;
  }

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

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

  .lead-form {
    padding: 24px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal {
    padding: 32px 24px;
  }
}
