*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a3a5c;
  --accent: #e7500a;
  --dark: #0d2137;
  --text: #2c3e50;
  --muted: #64748b;
  --bg: #f8f9fa;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 10px;
  --font: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 10px 40px 10px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}

.announce-bar a {
  color: white;
  text-decoration: underline;
  white-space: nowrap;
}

.announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  opacity: 0.8;
}

.announce-close:hover {
  opacity: 1;
}

/* HEADER */
.site-header {
  background: var(--white);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
}

.logo-text {
  line-height: 1.15;
}

.logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.header-trust-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-trust-text .trust-score {
  font-weight: 700;
  color: var(--text);
}

.header-trust-text .trust-count {
  font-size: 0.72rem;
}

/* HERO + FORM SECTION */
.hero-form-section {
  background: linear-gradient(135deg, rgba(8, 18, 32, 0.88) 0%, rgba(13, 33, 55, 0.85) 55%, rgba(18, 48, 80, 0.82) 100%),
    url('/photo.webp') center/cover no-repeat;
  padding: 44px 20px 52px;
}

.hero-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 44px;
  align-items: start;
}

/* Hero Copy */
.hero-copy {
  color: white;
  width: 530px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(231, 80, 10, 0.2);
  border: 1px solid rgba(231, 80, 10, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-copy h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-sub {
    display: none;
  }
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-pills-mobile {
  display: none;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-row .stars {
  color: #f59e0b;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.form-progress-wrap {
  padding: 16px 20px 0;
}

.form-progress-rail {
  height: 6px;
  background: #dde4ed;
  border-radius: 100px;
  overflow: hidden;
}

.form-progress-fill {
  height: 100%;
  background: #22c55e;
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 14.3%;
}

.form-card-body {
  padding: 28px 24px 36px;
}

.step-counter {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-question {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.step-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Radio buttons */
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-list.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 100%;
  overflow: hidden;
}

.radio-btn--full {
  grid-column: span 2;
}

.radio-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  min-height: 58px;
  border: 2px solid #dde4ed;
  border-radius: 8px;
  background: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  width: 100%;
  min-width: 0;
  text-align: left;
}

.radio-btn:hover {
  border-color: #a8b9c8;
  background: #fafcff;
}

.radio-btn.selected {
  border-color: var(--accent);
  background: #fff5f0;
  color: var(--primary);
}

.radio-dot {
  width: 20px;
  height: 20px;
  border: 2px solid #c5d1db;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}

.radio-btn.selected .radio-dot {
  border-color: var(--accent);
}

.radio-btn.selected .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.radio-text {
  flex: 1;
  line-height: 1.3;
}

.radio-btn input {
  display: none;
}

/* Number grid */
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.num-btn {
  min-height: 52px;
  border: 2px solid #dde4ed;
  border-radius: 8px;
  background: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}

.num-btn:hover {
  border-color: #a8b9c8;
  background: #fafcff;
}

.num-btn.selected {
  border-color: var(--accent);
  background: #fff5f0;
  color: var(--primary);
}

/* Checkbox buttons */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.check-list.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  min-height: 52px;
  border: 2px solid #dde4ed;
  border-radius: 8px;
  background: var(--white);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  width: 100%;
  text-align: left;
}

.check-btn:hover {
  border-color: #a8b9c8;
  background: #fafcff;
}

.check-btn.selected {
  border-color: var(--accent);
  background: #fff5f0;
  color: var(--primary);
}

.check-sq {
  width: 20px;
  height: 20px;
  border: 2px solid #c5d1db;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}

.check-btn.selected .check-sq {
  background: var(--accent);
  border-color: var(--accent);
}

.check-btn.selected .check-sq::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.check-btn input {
  display: none;
}

/* Input fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.field input {
  border: 2px solid #dde4ed;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
  background: white;
  -webkit-appearance: none;
  width: 100%;
}

.field input:focus {
  border-color: var(--accent);
}

.field input::placeholder {
  color: #b0bec5;
}

.field input[readonly] {
  background: #f4f6f8;
  color: var(--muted);
  cursor: default;
}

.phone-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #f4f6f8;
  border: 2px solid #dde4ed;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.phone-wrap input {
  border-radius: 0 8px 8px 0 !important;
}

.postcode-wrap {
  position: relative;
}

.postcode-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border: 2px solid #dde4ed;
  border-top: none;
  border-radius: 0 0 8px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.postcode-suggestions.open {
  display: block;
}

.postcode-suggestions li {
  padding: 10px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.1s;
}

.postcode-suggestions li:hover,
.postcode-suggestions li.highlighted {
  background: #f0f4ff;
}

.postcode-suggestions li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  background: #c94008;
  box-shadow: 0 4px 16px rgba(231, 80, 10, 0.35);
}

.btn-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-back:hover {
  color: var(--text);
}

/* Form error */
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #dc2626;
  margin-bottom: 12px;
  display: none;
}

.form-error.show {
  display: block;
}

/* Consent */
.consent-text {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin-top: 12px;
}

.consent-text a {
  color: var(--primary);
  text-decoration: underline;
}

/* Loader */
.loader-wrap {
  text-align: center;
  padding: 32px 0 24px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #dde4ed;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-message {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  min-height: 1.5rem;
}

.loader-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.loader-bar-wrap {
  height: 4px;
  background: #dde4ed;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 0.5s ease;
}

/* PROOF BAR */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}

.proof-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  text-align: center;
}

.proof-item {
  padding: 10px;
}

.proof-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.proof-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* SECTIONS */
.section {
  padding: 64px 20px;
}

.section-alt {
  background: var(--white);
}

.detail-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.45rem, 3vw, 1.1rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.22;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.trusted-suppliers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trusted-suppliers>div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 120px;
}

.trusted-suppliers img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: transform 0.3s ease;
}

.recc-trusted-supplier img {
  max-height: 40px;
}

.mcs-trusted-supplier img {
  max-height: 70px;
}

.hies-trusted-supplier img {
  max-height: 90px;
}

.trusted-suppliers img:hover {
  transform: scale(1.05);
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #fff5f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-card {
  text-align: center;
  padding: 20px;
}

.hiw-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(231, 80, 10, 0.3);
}

.hiw-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.hiw-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* TESTIMONIALS */
/* GOOGLE-STYLE REVIEWS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.testi-avatar.av-a {
  background: #4285f4;
}

.testi-avatar.av-b {
  background: #34a853;
}

.testi-avatar.av-c {
  background: #ea4335;
}

.testi-meta {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-date {
  font-size: 0.75rem;
  color: #70757a;
  margin-top: 1px;
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbc04;
}

.testi-text {
  font-size: 0.875rem;
  color: #3c4043;
  line-height: 1.65;
}

.testi-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f4;
  gap: 6px;
}

.testi-footer span {
  font-size: 0.72rem;
  color: #70757a;
}

.google-logo {
  display: flex;
  align-items: center;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 9px;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 17px 20px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font);
  line-height: 1.35;
}

.faq-q:hover {
  background: var(--bg);
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--muted);
  font-size: 0.7rem;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 17px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
}

.faq-item.open .faq-a {
  display: block;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--primary);
  padding: 28px 20px;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FINAL CTA */
.cta-section {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  color: white;
  padding: 72px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
  line-height: 1.65;
}

.cta-urgency {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  margin-bottom: 32px !important;
}

.cta-btn {
  background: var(--accent);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 80, 10, 0.45);
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 28px 20px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto;
}

.lead__bottom_mobile {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-form-inner {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    flex-direction: column;
  }



  .hero-copy {
    text-align: center;
    width: 100%;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-form-section {
    padding: 32px 16px 40px;
  }

  .lead__bottom {
    display: none;
  }

  .lead__bottom_mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .benefits-grid,
  .hiw-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }


  .hero-pills-desktop {
    display: none;
  }


  .hero-pills-mobile {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 0
  }



  .proof-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }

  .form-card-body {
    padding: 24px 16px 32px;
  }

  .num-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .check-list.cols-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .radio-list.cols-2 {
    grid-template-columns: 1fr;
  }

  .radio-btn--full {
    grid-column: auto;
  }
}

/* COOKIE GATE */
body.cookie-gate {
  overflow: hidden !important;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99998;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(3px);
}

.cookie-overlay.visible {
  opacity: 1;
}

.cookie-overlay:not(.visible) {
  pointer-events: none;
}

.cookie-popup {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  padding: 32px 28px 26px;
  width: 92%;
  max-width: 420px;
  font-family: var(--font, 'DM Sans', sans-serif);
  transition: transform .3s ease, opacity .3s ease;
}

.cookie-popup.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cookie-btn--accept {
  background: #1a3a5c;
  color: #fff;
  border: none;
}

.cookie-btn--accept:hover {
  background: #0f2a4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.25);
}

.cookie-btn--decline {
  background: #f1f5f9;
  color: #64748b;
  border: none;
}

.cookie-btn--decline:hover {
  background: #e2e8f0;
  color: #475569;
}

/* COOKIE GATE REFINED */
body.cookie-gate {
  overflow: hidden !important;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99998;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(3px);
}

.cookie-overlay.visible {
  opacity: 1;
}

.cookie-overlay:not(.visible) {
  pointer-events: none;
}

.cookie-popup {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  padding: 32px 28px 26px;
  width: 92%;
  max-width: 420px;
  font-family: var(--font, 'DM Sans', sans-serif);
  transition: transform .3s ease, opacity .3s ease;
}

.cookie-popup.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cookie-popup-icon {
  text-align: center;
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1;
}

.cookie-popup h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary, #1a3a5c);
  text-align: center;
  margin-bottom: 8px;
}

.cookie-popup p {
  font-size: 0.84rem;
  color: var(--muted, #64748b);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.cookie-popup p a {
  color: var(--accent, #e7500a);
  text-decoration: underline;
}

.cookie-popup .cookie-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-popup .cookie-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s;
  text-align: center;
}

.cookie-btn-accept {
  background: var(--accent, #e7500a);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #c94408;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--muted, #64748b);
  border: 1px solid #cbd5e1;
}

.cookie-btn-reject:hover {
  background: #f1f5f9;
}

.cookie-btn-manage {
  background: transparent;
  color: var(--muted, #64748b);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px;
}

.cookie-btn-manage:hover {
  color: var(--text, #2c3e50);
}

/* Toggles panel — hidden by default */
.cookie-toggles {
  display: none;
  margin-bottom: 16px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  overflow: hidden;
}

.cookie-toggles.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f3f4;
}

.cookie-toggle-row:last-child {
  border-bottom: none;
}

.cookie-toggle-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text, #2c3e50);
}

.cookie-toggle-desc {
  font-size: 0.68rem;
  color: var(--muted, #64748b);
  display: block;
}

.cookie-switch {
  position: relative;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch .slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
}

.cookie-switch .slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}

.cookie-switch input:checked+.slider {
  background: var(--accent, #e7500a);
}

.cookie-switch input:checked+.slider::before {
  transform: translateX(18px);
}

.cookie-switch input:disabled+.slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-btn-save {
  display: none;
  width: 100%;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--primary, #1a3a5c);
  color: #fff;
  margin-bottom: 8px;
}

.cookie-btn-save:hover {
  background: #0d2137;
}

.cookie-btn-save.show {
  display: block;
}

/* THANKS PAGE STYLES */
.thanks-section {
  padding: 80px 20px;
  text-align: center;
  background: #f8f9fa;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thanks-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  width: 100%;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thanks-card h1 {
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-home {
  display: inline-block;
  background: #e7500a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-home:hover {
  background: #c94408;
}

/* EXACT THANKS PAGE REPLICATION STYLES */
:root {
  --thanks-primary: #1a3a5c;
  --thanks-muted: #64748b;
  --thanks-dark: #0d2137;
  --thanks-border: #e2e8f0;
  --thanks-bg: #f8f9fa;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.thanks-card-new {
  background: #ffffff;
  border-radius: 8px;
  padding: 52px 44px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.check-circle {
  width: 72px;
  height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.check-circle svg {
  width: 36px;
  height: 36px;
}

.thanks-card-new h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--thanks-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.thanks-card-new .sub {
  font-size: 0.97rem;
  color: var(--thanks-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pill-new {
  background: var(--thanks-bg);
  border: 1px solid var(--thanks-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--thanks-muted);
}

.site-footer-thanks {
  background: var(--thanks-dark);
  color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  text-align: center;
  font-size: 0.73rem;
}

.site-footer-thanks a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .thanks-card-new {
    padding: 32px 20px;
  }

  .thanks-card-new h1 {
    font-size: 1.4rem;
  }
}

.lead__bottom,
.lead__top {
  max-width: 60%
}

@media (max-width: 480px) {
  .announce-bar {
    t-size: 0.77rem;
    g-right: 36px;
  }

  .lead__bottom,
  .lead__top {
    max-width: 100%
  }

}

@media (max-width: 900px) {

  .lead__bottom,
  .lead__top {
    max-width: 100%
  }

}

.lead__form_desc,
.lead__reviews_name {
  font-size: 16px
}

.lead__reviews_q {
  font-size: 22px;
  text-align: left
}

.lead__reviews {
  max-width: 450px;
  padding: 28px 26px 24px 37px
}

.lead__reviews_top {
  margin-bottom: 24px
}

.content__title {
  font-size: 30px
}

.lead__reviews_country svg {
  width: 36px;
  height: 36px
}

.lead__reviews_star svg {
  width: 13px;
  height: 13px
}

.lead__reviews_top {
  margin-bottom: 10px
}

.lead__reviews {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  padding: 16px;
  max-width: 300px;
  color: #000;
  position: relative;
  display: inline-block;
  vertical-align: top
}

.lead__reviews_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 14px
}

.lead__reviews_star svg {
  fill: #017f4e;
  margin-right: 4px
}

.lead__reviews_name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.76;
  color: #0f0634;
  font-family: Roboto, sans-serif;
  text-transform: uppercase
}

.lead__reviews_q {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.76;
  color: #0f0634;
  padding-right: 45px;
  display: block
}

.lead__reviews_q:after,
.lead__reviews_q:before {
  content: "";
  display: none
}

.lead__reviews_country {
  position: absolute;
  right: 21px;
  bottom: 11px
}

@media (max-width:767px) {
  .trusted-suppliers {
    gap: 30px;
    flex-wrap: nowrap;
  }

  .trusted-suppliers>div {

    min-width: 60px;
  }

  .trusted-suppliers img {
    max-width: 90px;
  }
}

.logo-image {
  height: 50px;
  width: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Privacy Modal Styles */
.privacy-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.privacy-modal-content {
  background-color: #ffffff;
  margin: 40px auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  height: calc(100vh - 80px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.privacy-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #64748b;
  z-index: 10;
  transition: all 0.2s;
}

.privacy-modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.privacy-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .privacy-modal-content {
    margin: 20px auto;
    height: calc(100vh - 40px);
    width: 95%;
  }
}
