/* Quote funnel – British Seniors style (CDN-ready) */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #f6f6f7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.quote-page {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  width: 100%;
}
.quote-header {
  margin-bottom: 24px;
}
.quote-header .logo {
  display: inline-block;
}
.quote-header .logo img {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
}
.quote-main {
  flex: 1;
}
.quote-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  margin-bottom: 24px;
}
.quote-card h1 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #191a32;
  text-align: center;
}
.progress-bar {
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.progress-fill {
  display: block;
  height: 100%;
  background: #03a3fe;
  border-radius: 3px;
  transition: width .3s ease;
}
.progress-label {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
  text-align: center;
}
.quote-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #191a32;
}
.step-desc {
  margin: 0 0 24px;
  color: #666;
  font-size: 15px;
}
.quote-form .field {
  margin-bottom: 20px;
}
.quote-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #191a32;
  margin-bottom: 8px;
}
.quote-form input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  color: #414141;
}
.quote-form input:focus {
  outline: 0;
  border-color: #03a3fe;
  box-shadow: 0 0 0 2px rgba(3,163,254,.2);
}
.quote-form input::placeholder {
  color: #999;
}
.btn-next {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #03a3fe;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.btn-next:hover {
  background: #028ad9;
}
.legal-note {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.legal-note a {
  color: #03a3fe;
  text-decoration: none;
}
.legal-note a:hover {
  text-decoration: underline;
}
.quote-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  color: #666;
}
.quote-footer a {
  color: #03a3fe;
  text-decoration: none;
}
.quote-footer a:hover {
  text-decoration: underline;
}
.quote-footer span {
  margin: 0 8px;
  color: #ccc;
}
