/* =========================================================
   1STCARS — COMPLETE LANDING PAGE
   ========================================================= */

:root {
    --fc-blue: #1767ed;
    --fc-blue-dark: #0c50c8;
    --fc-navy: #06172e;
    --fc-text: #1c2940;
    --fc-muted: #68758b;
    --fc-line: #e3e9f1;
    --fc-light: #f5f8fc;
    --fc-soft-blue: #eef5ff;
    --fc-green: #20b86b;
    --fc-yellow: #f7ca32;
    --fc-white: #ffffff;
    --fc-shadow: 0 18px 50px rgba(14, 36, 71, 0.10);
}

.firstcars-site,
.firstcars-site * {
    box-sizing: border-box;
}

.firstcars-site {
    width: 100%;
    overflow: hidden;
    margin: 0;
    background: #fff;
    color: var(--fc-text);
    font-family: Inter, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.firstcars-site h1,
.firstcars-site h2,
.firstcars-site h3,
.firstcars-site p {
    margin-top: 0;
}

.firstcars-site button,
.firstcars-site input,
.firstcars-site select,
.firstcars-site textarea {
    font: inherit;
}

.firstcars-site button,
.firstcars-site a {
    -webkit-tap-highlight-color: transparent;
}

.firstcars-site a {
    text-decoration: none;
}

.fc-container {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

/* Remove common theme spacing around a shortcode page */
.entry-content > .firstcars-site,
.entry-content .firstcars-site,
.ast-container:has(.firstcars-site),
.site-main:has(.firstcars-site) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* HEADER */
.fc-header {
    height: 84px;
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(7, 23, 46, 0.06);
}

.fc-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.fc-logo {
    display: inline-flex;
    align-items: center;
    color: var(--fc-navy);
}

.fc-logo img {
    display: block;
    width: auto;
    max-width: 355px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.fc-wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.fc-wordmark-main {
    display: inline-flex;
    align-items: baseline;
    font-size: 36px;
    line-height: 0.88;
    letter-spacing: -2.2px;
    font-weight: 850;
}

.fc-wordmark-main b {
    color: var(--fc-blue);
    font-weight: 850;
}

.fc-wordmark-main strong {
    color: var(--fc-navy);
    font-weight: 850;
}

.fc-wordmark small {
    margin-top: 9px;
    color: #7a869c;
    font-size: 8.5px;
    line-height: 1;
    letter-spacing: 1.45px;
    font-weight: 750;
}

.fc-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.fc-nav a {
    position: relative;
    padding: 31px 0;
    color: #1b2941;
    font-size: 14.5px;
    line-height: 1;
    font-weight: 600;
}

.fc-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--fc-blue);
    transition: width .18s ease;
}

.fc-nav a:hover,
.fc-nav a:focus {
    color: var(--fc-blue);
}

.fc-nav a:hover::after,
.fc-nav a:focus::after {
    width: 100%;
}

.fc-mobile-menu,
.fc-mobile-nav {
    display: none;
}

/* HERO */
.fc-hero {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    isolation: isolate;
    background: #eef4fb;
}

.fc-hero-image {
    position: absolute;
    z-index: -2;
    inset: 0 0 0 40%;
    background-image: var(--fc-hero-image);
    background-size: cover;
    background-position: 63% center;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.20) 8%,
        rgba(0,0,0,.58) 18%,
        #000 31%,
        #000 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.20) 8%,
        rgba(0,0,0,.58) 18%,
        #000 31%,
        #000 100%
    );
}

.fc-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            #fff 0%,
            #fff 31%,
            rgba(255,255,255,.98) 37%,
            rgba(255,255,255,.84) 45%,
            rgba(255,255,255,.35) 56%,
            rgba(255,255,255,0) 66%
        );
}

.fc-hero-content {
    min-height: 510px;
    display: flex;
    align-items: center;
}

.fc-hero-copy {
    width: 625px;
    max-width: 54%;
    padding: 48px 0 54px;
}

.fc-eyebrow,
.fc-section-kicker,
.fc-mini-label {
    display: inline-block;
    color: var(--fc-blue);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.fc-eyebrow {
    margin-bottom: 16px;
}

.fc-hero h1 {
    margin: 0 0 18px !important;
    max-width: 620px;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: clamp(50px, 4.6vw, 67px) !important;
    line-height: .97 !important;
    letter-spacing: -3.5px !important;
    font-weight: 850 !important;
    text-transform: none !important;
    font-style: normal !important;
}

.fc-hero h1 span {
    display: block;
    color: var(--fc-blue);
    white-space: nowrap;
}

.fc-hero-sub {
    margin-bottom: 22px !important;
    max-width: 570px;
    color: #5d6b81 !important;
    font-size: 18px !important;
    line-height: 1.48 !important;
    font-weight: 450;
}

/* REGISTRATION FORM */
.fc-reg-form {
    display: flex;
    width: 620px;
    max-width: 100%;
    gap: 7px;
    padding: 5px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(8,30,67,.17), 0 0 0 1px rgba(255,255,255,.9);
}

.fc-numberplate {
    flex: 1 1 auto;
    min-width: 0;
    height: 70px;
    display: flex;
    overflow: hidden;
    border: 2px solid #c79c04;
    border-radius: 8px;
    background: var(--fc-yellow);
    box-shadow: inset 0 1px rgba(255,255,255,.65);
}

.fc-plate-strip {
    width: 44px;
    min-width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #0757c8;
    color: #fff;
}

.fc-uk-stars {
    font-size: 15px;
    line-height: 1;
}

.fc-plate-strip small {
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
}

.fc-numberplate input {
    min-width: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 15px !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #080808 !important;
    font-family: "Arial Black", Arial, sans-serif !important;
    font-size: 31px !important;
    line-height: 1 !important;
    letter-spacing: 2.3px !important;
    font-weight: 900 !important;
    text-align: center;
    text-transform: uppercase;
}

.fc-numberplate input::placeholder {
    color: #0b0b0b;
    opacity: 1;
}

.fc-reg-form button,
.fc-primary-btn {
    border: 0 !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #1976f2 0%, #0758dc 100%) !important;
    color: #fff !important;
    font-family: inherit !important;
    font-weight: 750 !important;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(15,95,224,.27);
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.fc-reg-form button {
    flex: 0 0 244px;
    width: 244px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px !important;
    font-size: 17px !important;
    line-height: 1 !important;
    white-space: nowrap;
    text-transform: none !important;
}

.fc-reg-form button:hover,
.fc-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,95,224,.32);
}

.fc-reg-form button:disabled,
.fc-primary-btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.fc-button-arrow {
    font-size: 20px;
    line-height: 1;
}

.fc-trust-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    margin-top: 21px;
    color: #536177;
    font-size: 14px;
}

.fc-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.fc-trust-points b {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 21px;
    border-radius: 50%;
    background: var(--fc-green);
    color: #fff;
    font-size: 12px;
}

.fc-dvla-note {
    margin: 15px 0 0 !important;
    color: #7a879b !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
}

.fc-form-error {
    width: 620px;
    max-width: 100%;
    margin-top: 10px;
    padding: 11px 13px;
    border: 1px solid #f0c8c8;
    border-radius: 8px;
    background: #fff5f5;
    color: #9b2727;
    font-size: 13px;
    line-height: 1.45;
}

/* MULTI-STEP FLOW */
.fc-flow {
    padding: 52px 0 58px;
    background: #f5f8fc;
    border-top: 1px solid #e4eaf2;
    border-bottom: 1px solid #e4eaf2;
}

.fc-flow-shell {
    width: min(850px, 100%);
    margin: 0 auto;
    padding: 34px 38px 38px;
    border: 1px solid #e4eaf2;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--fc-shadow);
}

.fc-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 34px;
    color: #8792a5;
    font-size: 12px;
    font-weight: 700;
}

.fc-progress span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.fc-progress span b {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf1f6;
    color: #78869a;
    font-size: 11px;
}

.fc-progress span.is-active {
    color: var(--fc-blue);
}

.fc-progress span.is-active b,
.fc-progress span.is-done b {
    background: var(--fc-blue);
    color: #fff;
}

.fc-progress i {
    width: 52px;
    height: 1px;
    background: #dce3ec;
}

.fc-step-heading {
    margin-bottom: 24px;
    text-align: center;
}

.fc-step-heading .fc-mini-label {
    margin-bottom: 10px;
}

.fc-step-heading h2,
.fc-success h2 {
    margin-bottom: 8px !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: 31px !important;
    line-height: 1.1 !important;
    letter-spacing: -1.2px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.fc-step-heading p,
.fc-success p {
    margin: 0 auto !important;
    max-width: 610px;
    color: var(--fc-muted) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.fc-found-vehicle {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 25px;
    align-items: center;
    padding: 24px;
    border: 1px solid #e1e8f1;
    border-radius: 14px;
    background: #f8fafd;
}

.fc-found-plate {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    border: 2px solid #c79c04;
    border-radius: 8px;
    background: var(--fc-yellow);
    color: #090909;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 26px;
    letter-spacing: 1.5px;
    text-align: center;
}

.fc-found-main h3 {
    margin-bottom: 13px !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: 23px !important;
    line-height: 1.2 !important;
    letter-spacing: -.5px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.fc-vehicle-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fc-vehicle-meta span {
    min-width: 0;
}

.fc-vehicle-meta small,
.fc-field > span {
    display: block;
    margin-bottom: 5px;
    color: #7b879a;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .35px;
}

.fc-vehicle-meta strong {
    display: block;
    overflow: hidden;
    color: #253149;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc-flow-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 27px;
}

.fc-primary-btn {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-transform: none !important;
}

.fc-text-btn {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #66748a !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    cursor: pointer;
}

.fc-text-btn:hover {
    color: var(--fc-blue) !important;
}

.fc-fields {
    display: grid;
    gap: 18px;
}

.fc-fields-2 {
    grid-template-columns: 1fr 1fr;
}

.fc-field {
    display: block;
    margin: 0;
}

.fc-field > span {
    margin-bottom: 7px;
    color: #334057;
    font-size: 12px;
    letter-spacing: 0;
}

.fc-field em {
    color: #8b96a8;
    font-style: normal;
    font-weight: 500;
}

.fc-field input,
.fc-field select,
.fc-field textarea {
    width: 100%;
    min-height: 50px;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #d9e1eb !important;
    border-radius: 8px !important;
    outline: 0 !important;
    background: #fff !important;
    color: #17243a !important;
    font-size: 14px !important;
    box-shadow: none !important;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.fc-field textarea {
    min-height: 94px;
    margin-top: 0 !important;
    padding: 12px 14px !important;
    resize: vertical;
}

.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
    border-color: var(--fc-blue) !important;
    box-shadow: 0 0 0 3px rgba(23,103,237,.11) !important;
}

.fc-field-full {
    margin-top: 18px;
}

.fc-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    color: #536177;
    font-size: 12.5px;
    line-height: 1.45;
    cursor: pointer;
}

.fc-consent input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0 !important;
    flex: 0 0 17px;
    accent-color: var(--fc-blue);
}

.fc-privacy-inline {
    margin: 9px 0 0 !important;
    color: #8590a3 !important;
    font-size: 11.5px !important;
}

.fc-privacy-inline a {
    color: var(--fc-blue);
    font-weight: 650;
}

.fc-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.fc-success {
    padding: 18px 0 5px;
    text-align: center;
}

.fc-success-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: #eaf9f1;
    color: var(--fc-green);
    font-size: 27px;
    font-weight: 800;
}

.fc-success .fc-mini-label {
    margin-bottom: 10px;
}

.fc-inline-btn {
    margin-top: 22px;
}

/* SECTION HEADINGS */
.fc-section-title {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.fc-section-kicker {
    margin-bottom: 12px;
}

.fc-section-title h2,
.fc-why-copy h2,
.fc-faq-intro h2,
.fc-privacy-box h2 {
    margin-bottom: 10px !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: clamp(31px, 3.1vw, 42px) !important;
    line-height: 1.07 !important;
    letter-spacing: -1.6px !important;
    font-weight: 820 !important;
    text-transform: none !important;
}

.fc-section-title p,
.fc-why-copy > p,
.fc-faq-intro > p {
    color: var(--fc-muted) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* HOW IT WORKS */
.fc-how {
    padding: 76px 0 82px;
    background: #fff;
}

.fc-steps {
    display: grid;
    grid-template-columns: 1fr 55px 1fr 55px 1fr;
    align-items: center;
    gap: 4px;
    margin-top: 48px;
}

.fc-step {
    position: relative;
    min-height: 260px;
    padding: 28px 25px 25px;
    border: 1px solid #e5ebf2;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(19,43,78,.045);
}

.fc-step-number {
    position: absolute;
    top: 17px;
    left: 17px;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf4ff;
    color: var(--fc-blue);
    font-size: 12px;
    font-weight: 800;
}

.fc-step-icon {
    width: 67px;
    height: 67px;
    margin: 8px auto 18px;
    padding: 13px;
    border-radius: 17px;
    background: #f2f6fc;
    color: var(--fc-navy);
}

.fc-step-icon svg {
    width: 100%;
    height: 100%;
}

.fc-step h3 {
    margin-bottom: 8px !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 780 !important;
    text-transform: none !important;
}

.fc-step p {
    margin: 0 !important;
    color: #6b778b !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
}

.fc-step-line {
    color: #a2adbe;
    font-size: 26px;
    text-align: center;
}

/* WHY */
.fc-why {
    padding: 86px 0;
    background: #f3f7fc;
    border-top: 1px solid #e7edf4;
    border-bottom: 1px solid #e7edf4;
}

.fc-why-grid {
    display: grid;
    grid-template-columns: .92fr 1.35fr;
    gap: 65px;
    align-items: center;
}

.fc-why-copy h2 {
    max-width: 490px;
}

.fc-why-copy > p {
    max-width: 500px;
    margin-bottom: 25px !important;
}

.fc-secondary-btn {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid #cfdced;
    border-radius: 8px;
    background: #fff;
    color: var(--fc-blue);
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 4px 12px rgba(21,48,84,.05);
}

.fc-secondary-btn:hover {
    border-color: #9dbce8;
}

.fc-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.fc-why-card {
    min-height: 205px;
    padding: 23px;
    border: 1px solid #e0e8f1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 23px rgba(19,43,78,.045);
}

.fc-why-icon {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #edf4ff;
    color: var(--fc-blue);
    font-size: 17px;
    font-weight: 800;
}

.fc-why-card h3 {
    margin-bottom: 7px !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 780 !important;
    text-transform: none !important;
}

.fc-why-card p {
    margin: 0 !important;
    color: #6d798c !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

/* FAQ */
.fc-faq {
    padding: 88px 0 92px;
    background: #fff;
}

.fc-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.35fr;
    gap: 75px;
    align-items: start;
}

.fc-faq-intro {
    position: sticky;
    top: 28px;
}

.fc-faq-intro h2 {
    max-width: 390px;
}

.fc-faq-intro > p {
    max-width: 380px;
}

.fc-accordion {
    border-top: 1px solid var(--fc-line);
}

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

.fc-faq-item > button {
    width: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 0 !important;
    padding: 18px 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--fc-navy) !important;
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 720 !important;
    text-align: left;
    box-shadow: none !important;
    cursor: pointer;
}

.fc-faq-item > button b {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #f1f5fa;
    color: var(--fc-blue);
    font-size: 19px;
    line-height: 1;
    font-weight: 500;
    transition: transform .18s ease;
}

.fc-faq-item > button[aria-expanded="true"] b {
    transform: rotate(45deg);
}

.fc-faq-answer {
    padding: 0 46px 22px 2px;
}

.fc-faq-answer p {
    margin: 0 !important;
    color: #69768a !important;
    font-size: 13.5px !important;
    line-height: 1.65 !important;
}

/* PRIVACY */
.fc-privacy {
    padding: 0 0 76px;
    background: #fff;
}

.fc-privacy-box {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 55px;
    padding: 35px 38px;
    border: 1px solid #e1e8f1;
    border-radius: 16px;
    background: #f8fafd;
}

.fc-privacy-box h2 {
    margin-bottom: 0 !important;
    font-size: 28px !important;
}

.fc-privacy-copy p {
    margin-bottom: 12px !important;
    color: #69768a !important;
    font-size: 12.5px !important;
    line-height: 1.65 !important;
}

.fc-privacy-copy p:last-child {
    margin-bottom: 0 !important;
}

/* FOOTER */
.fc-footer {
    padding: 49px 0 24px;
    background: var(--fc-navy);
    color: #fff;
}

.fc-footer-main {
    display: grid;
    grid-template-columns: 1.25fr .8fr .85fr;
    gap: 50px;
    align-items: start;
    padding-bottom: 40px;
}

.fc-footer-brand img {
    display: block;
    max-width: 270px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.fc-footer-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -2px;
}

.fc-footer-wordmark b {
    color: #5f99ff;
}

.fc-footer-wordmark strong {
    color: #fff;
}

.fc-footer-brand p {
    margin: 11px 0 0 !important;
    color: #9eabc0 !important;
    font-size: 12.5px !important;
}

.fc-footer-links {
    display: grid;
    gap: 10px;
}

.fc-footer-links a,
.fc-footer-contact a {
    color: #c5cfdd;
    font-size: 12.5px;
    font-weight: 550;
}

.fc-footer-links a:hover,
.fc-footer-contact a:hover {
    color: #fff;
}

.fc-footer-contact {
    display: grid;
    gap: 8px;
}

.fc-footer-contact > span {
    color: #7f8da4;
    font-size: 10px;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
}

.fc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #76869e;
    font-size: 10.5px;
    line-height: 1.5;
}

/* TABLET */
@media (max-width: 980px) {
    .fc-container {
        width: min(100% - 36px, 760px);
    }

    .fc-nav {
        gap: 22px;
    }

    .fc-hero {
        min-height: 500px;
    }

    .fc-hero-image {
        left: 45%;
        background-position: 67% center;
    }

    .fc-hero-copy {
        max-width: 58%;
    }

    .fc-hero h1 {
        font-size: 50px !important;
        letter-spacing: -2.6px !important;
    }

    .fc-hero-sub {
        font-size: 16px !important;
    }

    .fc-reg-form {
        width: 560px;
    }

    .fc-reg-form button {
        flex-basis: 210px;
        width: 210px;
    }

    .fc-numberplate input {
        font-size: 26px !important;
    }

    .fc-steps {
        grid-template-columns: 1fr 36px 1fr 36px 1fr;
    }

    .fc-step {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fc-why-grid,
    .fc-faq-layout {
        gap: 45px;
    }
}

/* MOBILE */
@media (max-width: 760px) {
    .fc-container {
        width: calc(100% - 30px);
    }

    .fc-header {
        height: 72px;
    }

    .fc-logo img {
        max-width: 235px;
        height: 46px;
    }

    .fc-wordmark-main {
        font-size: 31px;
    }

    .fc-wordmark small {
        font-size: 7px;
        letter-spacing: 1.1px;
    }

    .fc-nav {
        display: none;
    }

    .fc-mobile-menu {
        width: 38px;
        height: 38px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    .fc-mobile-menu span {
        width: 17px;
        height: 2px;
        border-radius: 2px;
        background: var(--fc-navy);
    }

    .fc-mobile-nav {
        position: absolute;
        top: 71px;
        left: 0;
        width: 100%;
        padding: 9px 15px 14px;
        border-top: 1px solid #edf0f4;
        border-bottom: 1px solid #dde4ed;
        background: #fff;
        box-shadow: 0 12px 25px rgba(8,28,58,.08);
    }

    .fc-mobile-nav:not([hidden]) {
        display: grid;
    }

    .fc-mobile-nav a {
        padding: 11px 4px;
        color: var(--fc-navy);
        font-size: 13px;
        font-weight: 650;
    }

    .fc-hero {
        min-height: 710px;
        padding-bottom: 285px;
        background: #fff;
    }

    .fc-hero::before {
        background: linear-gradient(
            to bottom,
            #fff 0%,
            #fff 52%,
            rgba(255,255,255,.98) 58%,
            rgba(255,255,255,.62) 68%,
            rgba(255,255,255,0) 78%
        );
    }

    .fc-hero-image {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 330px;
        background-position: 68% center;
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.50) 15%,
            #000 32%,
            #000 100%
        );
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.50) 15%,
            #000 32%,
            #000 100%
        );
    }

    .fc-hero-content {
        min-height: auto;
        display: block;
    }

    .fc-hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 42px 0 28px;
    }

    .fc-eyebrow {
        margin-bottom: 13px;
    }

    .fc-hero h1 {
        font-size: clamp(42px, 12.3vw, 54px) !important;
        letter-spacing: -2.5px !important;
    }

    .fc-hero h1 span {
        white-space: normal;
    }

    .fc-hero-sub {
        max-width: 450px;
        font-size: 16px !important;
    }

    .fc-reg-form {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .fc-numberplate,
    .fc-reg-form button {
        width: 100%;
        height: 64px;
    }

    .fc-reg-form button {
        flex-basis: auto;
    }

    .fc-trust-points {
        gap: 11px 18px;
        font-size: 12.5px;
    }

    .fc-dvla-note {
        max-width: 370px;
    }

    .fc-flow {
        padding: 35px 0 40px;
    }

    .fc-flow-shell {
        padding: 24px 18px 28px;
        border-radius: 14px;
    }

    .fc-progress {
        gap: 7px;
        margin-bottom: 29px;
        font-size: 10px;
    }

    .fc-progress i {
        width: 22px;
    }

    .fc-progress span {
        gap: 4px;
    }

    .fc-progress span b {
        width: 23px;
        height: 23px;
    }

    .fc-found-vehicle {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .fc-found-plate {
        width: min(230px, 100%);
        margin: 0 auto;
    }

    .fc-found-main {
        text-align: center;
    }

    .fc-vehicle-meta {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .fc-fields-2 {
        grid-template-columns: 1fr;
    }

    .fc-flow-actions {
        flex-direction: column;
        gap: 10px;
    }

    .fc-primary-btn {
        width: 100%;
    }

    .fc-how,
    .fc-why,
    .fc-faq {
        padding: 65px 0;
    }

    .fc-steps {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 34px;
    }

    .fc-step {
        min-height: 0;
    }

    .fc-step-line {
        transform: rotate(90deg);
        font-size: 20px;
    }

    .fc-why-grid,
    .fc-faq-layout,
    .fc-privacy-box {
        grid-template-columns: 1fr;
    }

    .fc-why-grid {
        gap: 35px;
    }

    .fc-why-cards {
        grid-template-columns: 1fr;
    }

    .fc-why-card {
        min-height: 0;
    }

    .fc-faq-layout {
        gap: 28px;
    }

    .fc-faq-intro {
        position: static;
    }

    .fc-privacy {
        padding-bottom: 55px;
    }

    .fc-privacy-box {
        gap: 18px;
        padding: 26px 22px;
    }

    .fc-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .fc-numberplate input {
        font-size: 25px !important;
        letter-spacing: 1.7px !important;
    }

    .fc-trust-points {
        display: grid;
        gap: 8px;
    }

    .fc-section-title h2,
    .fc-why-copy h2,
    .fc-faq-intro h2 {
        font-size: 31px !important;
    }
}
