@font-face {
  font-family: "UKNumberPlate";
  src: url("/fonts/UKNumberPlate.woff2") format("woff2"),
       url("/fonts/UKNumberPlate.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-teal: #00bcd4;
  --brand-teal-dark: #0097a7;
  --brand-green: #16a34a;
  --bg-soft: #f5f7fb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --card-radius: 18px;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);

  /* existing size for marketplace etc */
  --plate-height: 110px;

  /* bigger hero plate */
  --hero-plate-height: 96px;
}



    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      color: var(--text-main);
      background: #ffffff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Generic buttons */

    .btn {
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      padding: 11px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--brand-teal), #00d4b0);
      color: #ffffff;
      box-shadow: 0 16px 32px rgba(0, 184, 163, 0.45);
    }

    .btn-primary:hover {
      filter: brightness(1.05);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(15, 23, 42, 0.06);
      color: #374151;
    }

    /* Page shell */

    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .page-main {
      flex: 1 0 auto;
      background: radial-gradient(circle at top, #e0f7ff 0, #f5f7fb 55%, #ffffff 100%);
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 24px 16px 64px;
    }

    /* Header */

    .main-header {
      max-width: 1120px;
      margin: 0 auto;
      padding: 18px 16px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo-group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand-teal), #00e5ff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 18px;
      box-shadow: 0 10px 24px rgba(0, 184, 212, 0.6);
    }

    .logo-text-main {
      font-weight: 700;
      font-size: 18px;
    }

    .logo-text-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: #4b5563;
    }

    .nav-link {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 99px;
      background: var(--brand-teal);
      transition: width 0.2s ease-out;
    }

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

    .nav-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid rgba(34, 197, 94, 0.4);
      background: #ecfdf3;
      font-size: 12px;
      padding: 6px 11px;
      color: #166534;
    }

    .nav-chip-circle {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--brand-green);
    }

    /* Hero */

    .hero {
      padding-top: 18px;
      padding-bottom: 56px;
      text-align: center;
    }

    .hero-pill-banner {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 16px;
      border-radius: 999px;
      background: #22c55e;
      color: #ffffff;
      font-weight: 600;
      font-size: 12px;
      box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
      margin-bottom: 18px;
    }

    .hero-pill-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .hero-title {
      font-size: 40px;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 0 0 4px;
    }

    .hero-title span.teal {
      color: #059669;
    }

    .hero-subtitle {
      margin: 6px auto 24px;
      max-width: 620px;
      font-size: 15px;
      color: var(--text-muted);
    }

    /* HERO CARD + DVLA PLATE */

    .hero-card {
      max-width: 720px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 28px;
      box-shadow: var(--shadow-soft);
      padding: 22px 24px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    #reg-form {
      width: 100%;
      margin: 0;
    }

    .hero-plate-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .hero-plate {
      background: #dedf19;
      border-radius: 13px;
      border: 1px solid #d1c044;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);

      height: var(--plate-height);
      max-width: 480px;
      width: 100%;
      padding-inline: 32px;
    }

   .hero-plate__input {
  background: transparent;
  border: none;
height: 100px;
width: 500px;
  font-family: "UKNumberPlate", "UKNumberPlate Regular", sans-serif;
  font-weight: 500;
  font-size: 80px;        /* big, but proportional */
  line-height: 1;
  white-space: nowrap;

  /* same spacing as marketplace */
  word-spacing: 0;

  text-transform: uppercase;
  color: #111827;
  text-align: center;

  width: 100%;
  
}





    .hero-plate__input::placeholder {
      color: rgba(75, 85, 99, 0.45);
    }

    /* Keep original ID styles wired into this plate */
    


    .hero-cta {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: center;
    }

    #reg-search-btn {
      border: none;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-teal), #00d4b0);
      color: #ffffff;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 24px;
      cursor: pointer;
      box-shadow: 0 16px 32px rgba(0, 184, 163, 0.5);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    #reg-search-btn:hover {
      filter: brightness(1.05);
    }

    .hero-cta-subtext {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-reassurance-row {
      margin-top: 6px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 12px;
      color: #4b5563;
    }

    .hero-reassurance-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-reassurance-dot {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 2px solid var(--brand-green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--brand-green);
    }

    /* Stats row */

    .stats-row {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .stat-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 14px 14px 16px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: var(--shadow-card);
      text-align: left;
    }

    .stat-value {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Section headers */

    .section-block {
      padding-top: 24px;
      padding-bottom: 48px;
      background: #ffffff;
    }

    .section-block.alt {
      background: #f9fafb;
    }

    .section-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .section-kicker {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 6px;
    }

    .section-title {
      margin: 0 0 4px;
      font-size: 26px;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
    }

    /* Feature grid */

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .feature-card {
      background: #ffffff;
      border-radius: var(--card-radius);
      padding: 16px 16px 18px;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-card);
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      color: #ffffff;
      font-size: 18px;
    }

    .feature-icon.blue {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
    }

    .feature-icon.teal {
      background: linear-gradient(135deg, var(--brand-teal), #22c55e);
    }

    .feature-icon.green {
      background: linear-gradient(135deg, #16a34a, #22c55e);
    }

    .feature-icon.purple {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
    }

    .feature-icon.orange {
      background: linear-gradient(135deg, #ea580c, #f97316);
    }

    .feature-icon.red {
      background: linear-gradient(135deg, #ef4444, #f97373);
    }

    .feature-icon.gray {
      background: linear-gradient(135deg, #111827, #4b5563);
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .feature-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Report sections list */

    .report-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .report-card {
      background: #ffffff;
      border-radius: var(--card-radius);
      padding: 16px 16px 18px;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-card);
      text-align: left;
    }

    .report-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--brand-teal);
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .report-title {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .report-list {
      margin: 0;
      padding-left: 18px;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Why free section */

    .why-free {
      background: linear-gradient(135deg, var(--brand-teal-dark), #00bfa5);
      color: #ffffff;
    }

    .why-free .section-header {
      color: #ffffff;
    }

    .why-free .section-subtitle {
      color: rgba(255, 255, 255, 0.8);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    .why-card {
      background: rgba(0, 0, 0, 0.06);
      border-radius: var(--card-radius);
      padding: 16px 16px 18px;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .why-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .why-text {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
    }

    /* Testimonials */

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 10px;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: var(--card-radius);
      padding: 18px 18px 20px;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-card);
      font-size: 13px;
    }

    .stars {
      color: #f59e0b;
      margin-bottom: 8px;
      font-size: 13px;
    }

    .testimonial-text {
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .verified-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: var(--brand-green);
    }

    .verified-pill span {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 2px solid var(--brand-green);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
    }

    /* Final CTA */

    .cta-final {
      text-align: center;
      padding-top: 40px;
      padding-bottom: 56px;
      background: #ffffff;
    }

    .cta-final-title {
      font-size: 26px;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    .cta-final-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .cta-reg-wrapper {
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-plate {
      margin-bottom: 14px;
    }

    .hero-plate.hero-plate--cta {
      max-width: 520px;
    }

    .cta-reassurance-row {
      margin-top: 8px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
      color: #4b5563;
    }

    /* Footer */

    .site-footer {
      background: #020617;
      color: #e5e7eb;
      padding: 32px 16px 18px;
      flex-shrink: 0;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
      gap: 24px;
      font-size: 13px;
    }

    .footer-brand {
      font-size: 13px;
      color: #9ca3af;
      max-width: 260px;
    }

    .footer-heading {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .footer-link {
      display: block;
      font-size: 13px;
      color: #9ca3af;
      margin-bottom: 6px;
    }

    .footer-bottom {
      max-width: 1120px;
      margin: 16px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: #6b7280;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #22c55e;
      margin-right: 6px;
    }

    /* Responsive */

    @media (max-width: 960px) {
      .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .main-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        width: 100%;
        justify-content: space-between;
      }

      .stats-row,
      .feature-grid,
      .report-grid,
      .why-grid,
      .testimonials-grid,
      .footer-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-card {
        padding-inline: 18px;
      }
    }

    .logo-text-main {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px; /* 150% */
  color: #18181b;
}


.hero-pill-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  text-align: center;

  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */

  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
  margin-bottom: 18px;
}

