/* palette */
:root{
  --drive-navy:#003A6B;
  --drive-sky:#0086FF;
  --drive-gold:#FFC400;
  --drive-red:#D62828;
  --drive-light:#F7FAFC;
  --drive-charcoal:#1C1F26;
  --radius:12px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --ease:.25s cubic-bezier(.4,0,.2,1);
  font-family:'Poppins',sans-serif;
}

* {
    box-sizing: border-box;
}

/* page bg */
body{background:var(--drive-light) url("/static/img/diag-stripe.svg") top left / 400px repeat-x;margin:0;
  min-height:100vh;display:flex;flex-direction:column}

/* masthead */
.masthead{background:linear-gradient(145deg,var(--drive-navy),var(--drive-sky));
  padding:2.5rem 2rem 4rem 2rem;color:#fff;display:flex;align-items:flex-start;justify-content:space-between;
  position:sticky;top:0;z-index:999;box-shadow:0 3px 10px rgba(0,0,0,.25);min-height:200px;position:relative}
.nav-left{display:flex;align-items:center;justify-content:flex-start}
.logo{height:75px;max-width:400px;object-fit:contain}
.callSticky{background:var(--drive-red);color:#fff;font-weight:600;border:none;border-radius:0;
  padding:.85rem 1.4rem;cursor:pointer;box-shadow:var(--shadow);transition:opacity var(--ease);
  text-decoration:none;display:inline-block;min-height:44px;display:flex;align-items:center;justify-content:center}
.callSticky:hover{opacity:.9}

/* Rachel image in banner */
.banner-rachel {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  object-fit: contain;
  z-index: 10;
}

/* Rachel intro text */
.rachel-intro {
  position: absolute;
  bottom: 55px;
  left: 55%;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  z-index: 11;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  line-height: 1.2;
}

/* Hide mobile-specific text on desktop */
.rachel-text-left,
.rachel-text-right {
  display: none;
}

/* Footer */
.footer {
  background: var(--drive-navy);
  color: #fff;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.trust-icon {
  font-size: 2rem;
  color: var(--drive-gold);
  margin-bottom: 0.5rem;
}

.trust-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.rating-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.rating-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rating-stars {
  color: var(--drive-gold);
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--ease);
}

.footer-link:hover {
  opacity: 1;
}

/* Rachel image responsive */
@media (max-width: 600px) {
  .banner-rachel {
    width: 180px;
  }
  
  .masthead {
    min-height: 280px;
    padding: 2rem 2rem 4rem 2rem;
  }
  
  .logo {
    height: 60px;
  }
  
  .progressWrap {
    margin: 0;
  }
  
  .rachel-intro {
    display: none;
  }
  
  .rachel-text-left {
    position: absolute;
    left: 15px;
    top: 155px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
    z-index: 10;
    display: block;
  }
  
  .rachel-text-right {
    position: absolute;
    right: 25px;
    top: 130px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
    z-index: 10;
    line-height: 1.2;
    display: block;
  }
}

/* sticky bottom bar mobile */
@media(max-width:600px){
  .callSticky{display:none}
  .bottomBar{position:fixed;bottom:0;left:0;width:100%;background:var(--drive-red);
    padding:.9rem;text-align:center;color:#fff;font-weight:600;z-index:998;box-shadow:0 -3px 10px rgba(0,0,0,.25);
    cursor:pointer;min-height:48px;display:flex;align-items:center;justify-content:center}
  
  .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .trust-item {
    min-width: auto;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* progress */
.progressWrap{height:25px;background:rgba(255,255,255,.25);border-radius:0;overflow:visible;margin:0;position:relative}
.progressBar{height:100%;background:var(--drive-gold);width:0;transition:width var(--ease);border-radius:0}
.progress-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:var(--drive-navy);font-size:1rem;font-weight:600;z-index:10;text-shadow:0 1px 2px rgba(255,255,255,.8)}

/* profile image */
.profile-section{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:3rem 0 1rem 0;
  gap:2rem;
  margin:0 auto;
  max-width:600px;
  position:relative;
}

.profile-image{
  width:200px;
  height:200px;
  border-radius:50%;
  object-fit:cover;
  object-position:center 60%;
  border:3px solid #fff;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  flex-shrink:0;
}

.profile-text{
  color:#333;
  font-size:1.3rem;
  font-weight:600;
}

.profile-subtitle{
  color:#666;
  font-size:1rem;
  font-weight:400;
}

/* Testimonial container */
.testimonial-container {
  text-align: center;
  padding: 1rem 2rem;
  margin: 0 auto 1rem auto;
  max-width: 600px;
}

.testimonial-text {
  color: #28a745;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  transform: skew(-5deg);
  transition: opacity 0.5s ease-in-out;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Professional Availability Notice */
.availability-notice {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-left: 4px solid #007bff;
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.availability-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.availability-icon {
  font-size: 1.2rem;
}

.availability-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.4;
}

.availability-bar-container {
  background: #e9ecef;
  height: 6px;
  margin: 0.75rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.availability-bar {
  background: linear-gradient(90deg, #007bff, #0056b3);
  height: 100%;
  width: 66.7%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.availability-timer {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

/* Hard-edged styling for congratulations page */
.qualification-badge {
  background: #00c851;
  color: white;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  border: 2px solid #00a543;
}

/* Congratulations header styling */
.congratulations-header {
  text-align: center;
  margin: 2rem 0;
}

.congratulations-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--drive-navy);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.congratulations-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--drive-navy);
  margin: 0;
  line-height: 1.3;
}

.lock-in-cta {
  display: block;
  background: var(--drive-red);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 1rem 0;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.lock-in-cta:hover {
  background: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.qualification-message {
  background: #e3f2fd;
  border: 2px solid #2196f3;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.qualification-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.offer-notice {
  background: #e3f2fd;
  border: 1px solid #2196f3;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  border-radius: 4px;
}

.offer-icon {
  font-size: 1.1rem;
}

.offer-text {
  font-weight: 500;
  color: #1976d2;
}

/* Estimated savings standalone */
.estimated-savings {
  background: #d4edda;
  border: 2px solid #28a745;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.savings-label {
  font-weight: 500;
  color: #155724;
}

.savings-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #155724;
}

/* Large Call Button Section */
.call-section {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border: 3px solid #bd2130;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.call-header {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-call-large {
  display: block;
  background: white;
  color: #dc3545;
  padding: 1.5rem 2rem;
  border: 3px solid #dc3545;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-call-large:hover {
  background: #dc3545;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.call-number {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.call-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Reassurance Grid */
.final-reassurance {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.reassurance-item {
  font-weight: 500;
  color: #28a745;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

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

/* TCPA styling */
.tcpa-container {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Urgency message styling */
.urgency-message {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
  background: #e8f5e8;
  border: 2px solid #28a745;
  border-radius: 8px;
  max-width: 680px;
  color: #155724;
  font-size: 1rem;
  font-weight: 600;
}

.tcpa-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.tcpa-label input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.2);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .call-number {
    font-size: 1.4rem;
  }
  
  .call-subtitle {
    font-size: 1rem;
  }
  
  .congratulations-title {
    font-size: 2rem;
  }
  
  .congratulations-subtitle {
    font-size: 1.2rem;
  }
  
  .availability-notice {
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .rate-reservation {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* main content area */
.main-content{flex:1;display:flex;flex-direction:column;justify-content:center;padding:0 0 1rem 0;position:relative}

/* card */
.card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);
  max-width:680px;margin:0 auto;padding:2rem 2.2rem;animation:fade .35s ease-in-out}
@keyframes fade{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:none}}
.question{color:var(--drive-navy);font-size:1.75rem;margin-bottom:1.1rem;font-weight:600;line-height:1.3;text-align:center}

/* options */
.option{border:2px solid var(--drive-sky);border-radius:10px;
  padding:1.25rem;margin:.7rem 0;font-weight:600;cursor:pointer;
  display:flex;align-items:center;justify-content:center;transition:background var(--ease),color var(--ease);
  min-height:48px;background:#fff}
.option:hover{background:rgba(0,134,255,.07)}
.option:focus{outline:2px solid var(--drive-red);outline-offset:2px}
.option.selected{background:var(--drive-sky);color:#fff}

/* ZIP Input */
.zip-input-container {
    margin: 1.5rem 0;
}

.zip-input {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid var(--drive-sky);
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    transition: border-color var(--ease);
    min-height: 44px;
}

.zip-input:focus {
    outline: none;
    border-color: var(--drive-red);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, .1);
}

.zip-input:valid {
    border-color: #28a745;
}

/* next button */
.btn-next,.btn-call{background:var(--drive-red);color:#fff;border:none;border-radius:8px;
  font-size:1.15rem;font-weight:600;padding:1rem;width:100%;max-width:240px;
  margin:1.4rem auto 0;display:block;transition:all var(--ease);text-decoration:none;text-align:center;
  min-height:48px;display:flex;align-items:center;justify-content:center;cursor:pointer}
.btn-next:hover:not(.disabled),.btn-call:hover:not(.disabled){background:#b91f1f;transform:translateY(-1px);box-shadow:0 4px 12px rgba(214,40,40,.3)}
.btn-next.disabled,.btn-call.disabled{opacity:.45;pointer-events:none;cursor:not-allowed}

/* Step 5 Specific Styles */
.quote-summary {
    background: var(--drive-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(0, 134, 255, .1);
}

.summary-item {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--drive-navy);
}

.summary-item strong {
    color: var(--drive-charcoal);
}

.tcpa-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border: 2px solid var(--drive-light);
    border-radius: 10px;
    font-size: .85rem;
    color: #333;
    line-height: 1.5;
}

.tcpa-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
}

.tcpa-label input[type="checkbox"] {
    margin-top: 0.2rem;
    transform: scale(1.3);
    cursor: pointer;
}

.disclaimer {
    font-size: .8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
}

/* urgency message */
.rate-reservation{
  text-align:center;
  margin-top:1rem;
  padding:1rem;
  background:#f8f9fa;
  border:1px solid #dee2e6;
  border-radius:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  color:#495057;
  font-size:1rem;
  font-weight:500;
}

.reservation-icon{
  font-size:1.1rem;
}

.reservation-text{
  font-weight:500;
}

/* Analyzing Page Styles */
.analyzing-container {
  text-align: center;
  padding: 2rem 0;
}

.analyzing-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--drive-navy);
  margin-bottom: 1rem;
}

.analyzing-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.analysis-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.analysis-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #dee2e6;
  transition: all 0.3s ease;
}

.analysis-step.active {
  background: #e3f2fd;
  border-left-color: #2196f3;
  transform: translateX(5px);
}

.analysis-step.completed {
  background: #e8f5e8;
  border-left-color: #28a745;
}

.step-icon {
  font-size: 1.5rem;
  min-width: 40px;
}

.step-text {
  flex: 1;
  text-align: left;
  font-weight: 500;
  color: #333;
}

.step-status {
  font-size: 1.2rem;
  color: #28a745;
  font-weight: 600;
  min-width: 20px;
}

.loading-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.analyzing-note {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 1rem;
  border-radius: 6px;
  color: #495057;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .analyzing-title {
    font-size: 1.8rem;
  }
  
  .analyzing-subtitle {
    font-size: 1rem;
  }
  
  .analysis-steps {
    gap: 1rem;
  }
  
  .analysis-step {
    padding: 0.75rem;
  }
  
  .step-icon {
    font-size: 1.2rem;
    min-width: 35px;
  }
}

@keyframes pulse {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

/* trust bar */
.trust{background:var(--drive-navy);color:#fff;font-size:.85rem;text-align:center;
  padding:.9rem 0;display:flex;align-items:center;justify-content:center;gap:.6rem}
.trust img{height:18px}

/* Mobile Responsive */
@media (max-width: 540px) {
    .masthead {
        flex-direction: column;
        gap: .7rem;
        padding: 1rem;
    }
    
    .callSticky {
        width: 100%;
        text-align: center;
    }
    
    .profile-section {
        padding: 1.5rem 1rem 0.5rem 1rem;
        gap: 0.8rem;
    }
    
    .profile-image {
        width: 70px;
        height: 70px;
    }
    
    .profile-text {
        font-size: 1.1rem;
    }
    
    .profile-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonial-container {
        padding: 0.5rem 1rem;
        margin: 0 auto 0.5rem auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
        min-height: 40px;
    }
    
    .card {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .question {
        font-size: 1.4rem;
    }
    
    .option {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .btn-next,
    .btn-call {
        max-width: none;
        width: 100%;
    }
    
    .trust {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 320px) {
    .card {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .question {
        font-size: 1.2rem;
    }
    
    .masthead {
        padding: 0.8rem;
    }
    
    .option {
        padding: 0.9rem;
        min-height: 44px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .card {
        animation: none;
    }
    
    .option {
        transition: none;
    }
    
    .btn-next,
    .btn-call,
    .callSticky {
        transition: none;
    }
    
    .progressBar {
        transition: none;
    }
}

/* Focus indicators for keyboard navigation */
button:focus,
input:focus,
.option:focus,
a:focus {
    outline: 2px solid var(--drive-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .option {
        border-width: 3px;
    }
    
    .option.selected {
        border-color: #fff;
    }
    
    .masthead {
        border-bottom: 2px solid #fff;
    }
}

/* Affiliate Notice */
.affiliate-notice {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.affiliate-notice small {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.3;
}

/* Qualification Badge */
.qualification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.badge-icon {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Qualification Message */
.qualification-message {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.qualification-text {
    font-size: 1.1rem;
    color: #1e40af;
    margin-bottom: 15px;
    line-height: 1.5;
}

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 500;
}

.urgency-icon {
    font-size: 1rem;
}

/* Enhanced Quote Summary */
.summary-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.summary-item.estimated-savings {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 1px solid #16a34a;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
}

.savings-amount {
    color: #15803d;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Final Reassurance */
.final-reassurance {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.reassurance-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Call Button */
.btn-call {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-call:hover:not(.disabled) {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}