.goldpost-landing {
    --gp-gold: #c8942d;
    --gp-gold-dark: #765113;
    --gp-gold-soft: #fff7df;
    --gp-blue: #2798d5;
    --gp-blue-dark: #155f87;
    --gp-blue-soft: #eef8fd;
    --gp-ink: #102f40;
    --gp-muted: #5f7480;
    --gp-line: #d9e7ed;
    color: var(--gp-ink);
    background: var(--gp-blue-soft);
    line-height: 1.85;
    overflow: hidden;
}

.goldpost-landing *,
.goldpost-landing *::before,
.goldpost-landing *::after {
    box-sizing: border-box;
}

.goldpost-landing h1,
.goldpost-landing h2,
.goldpost-landing h3,
.goldpost-landing p {
    margin-top: 0;
}

.goldpost-landing h1,
.goldpost-landing h2,
.goldpost-landing h3 {
    color: var(--gp-ink);
    line-height: 1.45;
}

.goldpost-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gp-gold-dark);
    font-size: 14px;
    font-weight: 800;
}

.goldpost-kicker::before {
    width: 22px;
    height: 2px;
    background: var(--gp-gold);
    border-radius: 10px;
    content: "";
}

.goldpost-hero {
    position: relative;
    min-height: 760px;
    padding: 180px 0 92px;
    background:
        radial-gradient(circle at 17% 26%, rgba(200, 148, 45, .19), transparent 26%),
        radial-gradient(circle at 86% 63%, rgba(39, 152, 213, .14), transparent 26%),
        linear-gradient(145deg, #fffdf7 0%, #f6fbfe 55%, #e8f5fc 100%);
}

.goldpost-hero::before {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image: radial-gradient(rgba(16, 47, 64, .14) .7px, transparent .7px);
    background-size: 22px 22px;
    pointer-events: none;
    content: "";
}

.goldpost-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: 80px;
}

.goldpost-hero__content h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -.8px;
}

.goldpost-hero__lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: var(--gp-muted);
    font-size: 18px;
}

.goldpost-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.goldpost-button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    cursor: pointer;
}

.goldpost-button:hover {
    transform: translateY(-2px);
}

.goldpost-button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--gp-gold), #e2b657);
    box-shadow: 0 14px 28px rgba(156, 108, 20, .2);
}

.goldpost-button--primary:hover {
    box-shadow: 0 18px 34px rgba(156, 108, 20, .28);
}

.goldpost-button--ghost {
    color: var(--gp-ink) !important;
    border-color: #c9dce5;
    background: rgba(255, 255, 255, .72);
}

.goldpost-button--compact {
    width: auto;
    min-height: 44px;
    padding: 9px 18px;
    font-size: 12px;
}

.goldpost-button:focus-visible,
.goldpost-lead-form input:focus-visible,
.goldpost-lead-form select:focus-visible,
.goldpost-lead-form textarea:focus-visible,
.goldpost-faqs .faq-question:focus-visible {
    outline: 3px solid rgba(39, 152, 213, .25);
    outline-offset: 3px;
}

.goldpost-hero__note {
    display: flex;
    margin-top: 24px;
    align-items: center;
    gap: 9px;
    color: var(--gp-muted);
    font-size: 13px;
    font-weight: 700;
}

.goldpost-hero__note svg {
    width: 19px;
    fill: #2f8f6b;
}

.goldpost-hero__visual {
    position: relative;
    display: flex;
    min-height: 440px;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.goldpost-hero__visual::before {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(200, 148, 45, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 30px 80px rgba(36, 78, 98, .12);
    content: "";
}

.goldpost-orbit {
    position: absolute;
    border: 1px dashed rgba(39, 152, 213, .28);
    border-radius: 50%;
}

.goldpost-orbit--one {
    width: 450px;
    height: 300px;
    transform: rotate(24deg);
}

.goldpost-orbit--two {
    width: 300px;
    height: 450px;
    transform: rotate(58deg);
}

.goldpost-parcel {
    position: relative;
    z-index: 2;
    display: flex;
    width: 270px;
    min-height: 230px;
    padding: 36px 26px 26px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8b86e;
    border-radius: 26px;
    background: linear-gradient(145deg, #f7e7b8, #c38b27);
    box-shadow: inset 0 1px rgba(255, 255, 255, .75), 0 34px 60px rgba(91, 62, 13, .27);
    transform: rotate(-3deg);
}

.goldpost-parcel::after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(111, 74, 10, .2);
    border-radius: 18px;
    content: "";
}

.goldpost-parcel strong,
.goldpost-parcel span,
.goldpost-parcel__code,
.goldpost-parcel__seal {
    position: relative;
    z-index: 1;
}

.goldpost-parcel > strong {
    margin-top: 13px;
    color: #4b3208;
    font-family: Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
}

.goldpost-parcel > span {
    color: rgba(75, 50, 8, .76);
    font-size: 12px;
}

.goldpost-parcel__seal {
    display: flex;
    width: 92px;
    height: 62px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .58);
}

.goldpost-parcel__seal img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.goldpost-parcel__code {
    display: flex;
    height: 28px;
    margin-top: 20px;
    gap: 4px;
}

.goldpost-parcel__code i {
    display: block;
    width: 3px;
    background: rgba(62, 41, 6, .7);
}

.goldpost-parcel__code i:nth-child(2n) { width: 6px; }
.goldpost-parcel__code i:nth-child(3n) { width: 2px; }

.goldpost-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 195px;
    padding: 13px 15px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(210, 226, 234, .9);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 38px rgba(25, 68, 90, .14);
    backdrop-filter: blur(12px);
}

.goldpost-floating-card--insurance {
    top: 67px;
    right: -10px;
}

.goldpost-floating-card--tracking {
    bottom: 64px;
    left: -12px;
}

.goldpost-floating-card svg {
    width: 32px;
    fill: var(--gp-gold);
}

.goldpost-floating-card span {
    display: flex;
    flex-direction: column;
}

.goldpost-floating-card small {
    color: var(--gp-muted);
    font-size: 10px;
}

.goldpost-floating-card strong {
    font-size: 12px;
}

.goldpost-status-dot {
    width: 12px;
    height: 12px;
    border: 3px solid #ccebdd;
    border-radius: 50%;
    background: #2f8f6b;
    box-sizing: content-box;
}

.goldpost-trust {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.goldpost-trust__grid {
    display: grid;
    padding: 25px 30px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--gp-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(24, 78, 104, .11);
}

.goldpost-trust__item {
    display: flex;
    min-width: 0;
    padding: 4px 22px;
    align-items: center;
    gap: 12px;
    border-left: 1px solid var(--gp-line);
}

.goldpost-trust__item:last-child { border-left: 0; }

.goldpost-trust__item svg {
    width: 31px;
    flex: 0 0 auto;
    fill: var(--gp-gold);
}

.goldpost-trust__item span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.goldpost-trust__item strong { font-size: 13px; }
.goldpost-trust__item small { color: var(--gp-muted); font-size: 10px; }

.goldpost-section { padding: 94px 0; }
.goldpost-section--white { background: #fff; }
.goldpost-section--tint { background: var(--gp-blue-soft); }
.goldpost-section--gold-soft { background: linear-gradient(135deg, #fffaf0, #fff4d4); }

.goldpost-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.goldpost-section-head .goldpost-kicker { justify-content: center; }

.goldpost-section-head h2,
.goldpost-section__copy h2,
.goldpost-info-card h2,
.goldpost-summary h2,
.goldpost-final h2 {
    margin-bottom: 16px;
    font-size: 36px;
    font-weight: 900;
}

.goldpost-section-head p,
.goldpost-section__copy p,
.goldpost-info-card > p {
    color: var(--gp-muted);
}

.goldpost-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    align-items: center;
    gap: 80px;
}

.goldpost-split--reverse .goldpost-section__copy { order: 2; }

.goldpost-checklist {
    display: grid;
    margin: 27px 0 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.goldpost-checklist li {
    position: relative;
    padding-right: 31px;
    font-weight: 700;
}

.goldpost-checklist li::before {
    position: absolute;
    top: 7px;
    right: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #fff;
    background: #2f8f6b;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    content: "✓";
}

.goldpost-feature-panel {
    overflow: hidden;
    padding: 30px;
    border: 1px solid #ddc890;
    border-radius: 28px;
    background: linear-gradient(150deg, #fffdf7, #f4e4b4);
    box-shadow: 0 25px 55px rgba(103, 72, 18, .12);
}

.goldpost-feature-panel__top {
    display: flex;
    margin-bottom: 35px;
    flex-direction: column;
}

.goldpost-feature-panel__top span { color: var(--gp-gold-dark); font-size: 13px; }
.goldpost-feature-panel__top strong { font-size: 24px; }

.goldpost-route {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    align-items: start;
}

.goldpost-route div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.goldpost-route div > span {
    display: grid;
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    place-items: center;
    border: 1px solid rgba(117, 81, 19, .22);
    border-radius: 14px;
    color: var(--gp-gold-dark);
    background: rgba(255, 255, 255, .72);
    font-weight: 900;
}

.goldpost-route strong { font-size: 13px; }
.goldpost-route small { color: #806f50; font-size: 9px; }

.goldpost-route > i {
    height: 1px;
    margin-top: 22px;
    border-top: 1px dashed rgba(117, 81, 19, .4);
}

.goldpost-card-grid { display: grid; gap: 20px; }
.goldpost-card-grid--three { grid-template-columns: repeat(3, 1fr); }

.goldpost-card {
    position: relative;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--gp-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(25, 76, 101, .06);
}

.goldpost-card__number {
    display: block;
    margin-bottom: 27px;
    color: var(--gp-gold);
    font: 800 22px/1 Arial, sans-serif;
}

.goldpost-card h3 { margin-bottom: 10px; font-size: 20px; }
.goldpost-card p { margin-bottom: 0; color: var(--gp-muted); font-size: 13px; }

.goldpost-api {
    display: grid;
    margin-top: 24px;
    padding: 38px;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 50px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(135deg, #0e3042, #175d80);
    box-shadow: 0 22px 55px rgba(15, 58, 79, .17);
}

.goldpost-api h3 { margin: 13px 0 8px; color: #fff; font-size: 28px; }
.goldpost-api p { margin-bottom: 16px; color: #c8dce6; font-size: 13px; }
.goldpost-api a { color: #f0c56b; font-weight: 800; text-decoration: none; }
.goldpost-api .goldpost-button--primary { color: #fff; }

.goldpost-api__badge {
    display: inline-flex;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    color: #f4cc77;
    background: rgba(255, 255, 255, .08);
    font: 800 12px/1.8 Arial, sans-serif;
}

.goldpost-api__steps {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.goldpost-api__steps li {
    display: flex;
    padding: 12px 15px;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}

.goldpost-api__steps li > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: #4d340a;
    background: #e8be66;
    font-weight: 900;
}

.goldpost-api__steps li div { display: flex; flex-direction: column; }
.goldpost-api__steps small { color: #bcd1dc; font-size: 10px; }

.goldpost-price-grid {
    display: grid;
    max-width: 880px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.goldpost-price-card {
    padding: 34px;
    border: 1px solid var(--gp-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(25, 76, 101, .08);
}

.goldpost-price-card--featured {
    border-color: #ddbd72;
    background: linear-gradient(145deg, #fffdf7, #fff4d7);
}

.goldpost-price-card__label { color: var(--gp-muted); font-size: 12px; }
.goldpost-price-card h3 { margin: 6px 0 20px; font-size: 25px; }

.goldpost-price-card__price {
    display: flex;
    margin-bottom: 7px;
    align-items: baseline;
    gap: 8px;
}

.goldpost-price-card__price strong { color: var(--gp-gold-dark); font-size: clamp(30px, 4vw, 43px); }
.goldpost-price-card__price span { color: var(--gp-muted); font-size: 12px; }
.goldpost-price-card p { margin: 0; color: var(--gp-muted); font-size: 12px; }

.goldpost-formula {
    display: flex;
    max-width: 880px;
    margin: 24px auto 0;
    padding: 22px 25px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px dashed #b8d2df;
    border-radius: 17px;
    background: var(--gp-blue-soft);
}

.goldpost-formula > span { color: var(--gp-blue-dark); font-weight: 900; }
.goldpost-formula strong { font-size: 12px; }
.goldpost-formula i { color: var(--gp-gold); font-style: normal; font-weight: 900; }

.goldpost-pricing-cta {
    display: flex;
    max-width: 880px;
    margin: 20px auto 0;
    padding: 21px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #ead6a4;
    border-radius: 17px;
    background: #fffaf0;
}

.goldpost-pricing-cta p {
    margin: 0;
    color: var(--gp-muted);
    font-size: 12px;
    font-weight: 700;
}

.goldpost-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.goldpost-info-card {
    padding: 40px;
    border: 1px solid rgba(195, 139, 39, .25);
    border-radius: 26px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 45px rgba(101, 73, 23, .08);
}

.goldpost-info-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 16px;
    background: #f8e7b9;
}

.goldpost-info-card__icon svg { width: 29px; fill: var(--gp-gold-dark); }
.goldpost-info-card h2 { font-size: 29px; }

.goldpost-example,
.goldpost-notice {
    margin-top: 23px;
    padding: 19px 21px;
    border-right: 3px solid var(--gp-gold);
    border-radius: 12px 0 0 12px;
    background: rgba(243, 224, 173, .34);
}

.goldpost-example span,
.goldpost-notice > strong { color: var(--gp-gold-dark); font-size: 12px; font-weight: 900; }
.goldpost-example p,
.goldpost-notice p { margin: 4px 0; color: var(--gp-muted); font-size: 12px; }
.goldpost-example > strong { font-size: 15px; }

.goldpost-text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gp-blue-dark);
    font-weight: 800;
    text-decoration: none;
}

.goldpost-delivery-board {
    padding: 35px;
    border: 1px solid var(--gp-line);
    border-radius: 28px;
    background: linear-gradient(155deg, #f8fcfe, #eef8fd);
    box-shadow: 0 22px 50px rgba(28, 80, 105, .09);
}

.goldpost-delivery-row {
    display: grid;
    padding: 18px;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 13px;
    border-radius: 16px;
    background: #fff;
}

.goldpost-delivery-row__pin {
    width: 18px;
    height: 18px;
    border: 5px solid #bfe3f5;
    border-radius: 50%;
    background: var(--gp-blue);
    box-sizing: content-box;
}

.goldpost-delivery-row__pin--gold { border-color: #f2ddb0; background: var(--gp-gold); }
.goldpost-delivery-row div { display: flex; flex-direction: column; }
.goldpost-delivery-row small { color: var(--gp-muted); font-size: 10px; }
.goldpost-delivery-row b { color: var(--gp-blue-dark); font-size: 13px; }

.goldpost-delivery-path {
    display: flex;
    height: 55px;
    padding-right: 30px;
    flex-direction: column;
    justify-content: space-around;
}

.goldpost-delivery-path i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a9c7d5;
}

.goldpost-timeline {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none;
    counter-reset: claims;
}

.goldpost-timeline li {
    position: relative;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--gp-line);
    border-radius: 22px;
    background: #fff;
}

.goldpost-timeline li > span {
    display: grid;
    width: 39px;
    height: 39px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--gp-blue);
    font-weight: 900;
}

.goldpost-timeline li:nth-child(even) > span { color: #503606; background: #e5b95b; }
.goldpost-timeline h3 { margin-bottom: 8px; font-size: 18px; }
.goldpost-timeline p { margin: 0; color: var(--gp-muted); font-size: 12px; }

.goldpost-summary {
    display: grid;
    padding: 46px;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 55px;
    border: 1px solid var(--gp-line);
    border-radius: 27px;
    background: linear-gradient(135deg, #f7fbfd, #fffaf0);
}

.goldpost-summary h2 { margin-bottom: 0; font-size: 31px; }
.goldpost-summary__items { display: grid; margin: 0; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.goldpost-summary__items div {
    display: flex;
    padding: 15px 17px;
    flex-direction: column;
    border: 1px solid rgba(210, 227, 235, .9);
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
}

.goldpost-summary__items dt { color: var(--gp-muted); font-size: 11px; }
.goldpost-summary__items dd { margin: 0; color: var(--gp-gold-dark); font-size: 14px; font-weight: 900; }

.goldpost-faqs {
    max-width: 900px;
    margin: 0 auto;
}

.goldpost-faqs .faq-box {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

.goldpost-faqs .faq-question {
    display: flex;
    width: 100%;
    padding: 20px 22px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    color: var(--gp-ink);
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-align: right;
    cursor: pointer;
}

/* The shared FAQ component adds a chevron; Goldpost uses its own plus/minus control. */
.goldpost-faqs .faq-question::after {
    display: none;
    content: none;
}

.goldpost-faqs .faq-question i {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--gp-blue-soft);
}

.goldpost-faqs .faq-question i::before,
.goldpost-faqs .faq-question i::after {
    position: absolute;
    top: 11px;
    right: 6px;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background: var(--gp-blue-dark);
    content: "";
    transition: transform .2s ease;
}

.goldpost-faqs .faq-question i::after { transform: rotate(90deg); }
.goldpost-faqs .faq-box.active .faq-question i::after { transform: rotate(0); }

.goldpost-faqs .faq-answer {
    display: none;
    padding: 0 22px 20px;
}

.goldpost-faqs .faq-box.active .faq-answer { display: block; }
.goldpost-faqs .faq-answer p { margin: 0; color: var(--gp-muted); font-size: 13px; }

.goldpost-final {
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(232, 185, 91, .22), transparent 25%),
        linear-gradient(135deg, #0d2b3a, #124c6a);
}

.goldpost-final__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
    align-items: center;
    gap: 80px;
}

.goldpost-final .goldpost-kicker { color: #edc56f; }
.goldpost-final h2 { color: #fff; }
.goldpost-final__content > p { color: #c7d9e2; }

.goldpost-final__benefits {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 9px;
}

.goldpost-final__benefits span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    color: #d6e5ec;
    background: rgba(255, 255, 255, .06);
    font-size: 11px;
}

.goldpost-lead-form {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    color: var(--gp-ink);
    background: #fff;
    box-shadow: 0 28px 65px rgba(3, 24, 34, .25);
}

.goldpost-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.goldpost-form-grid label { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.goldpost-form-grid label > span { font-size: 11px; font-weight: 800; }
.goldpost-form-grid label > span b { color: #d64f4f; }
.goldpost-form-grid__full { grid-column: 1 / -1; }

.goldpost-lead-form input,
.goldpost-lead-form select,
.goldpost-lead-form textarea {
    width: 100%;
    min-height: 47px;
    padding: 10px 13px;
    border: 1px solid #d7e3e9;
    border-radius: 11px;
    color: var(--gp-ink);
    background: #f9fcfd;
    font: inherit;
    font-size: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.goldpost-lead-form textarea { min-height: 100px; resize: vertical; }

.goldpost-lead-form input:focus,
.goldpost-lead-form select:focus,
.goldpost-lead-form textarea:focus {
    border-color: var(--gp-blue);
    box-shadow: 0 0 0 3px rgba(39, 152, 213, .09);
    outline: 0;
}

.goldpost-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.goldpost-submit {
    width: 100%;
    margin-top: 20px;
    border: 0;
    font: inherit;
    font-weight: 900;
}

.goldpost-submit i {
    display: none;
    width: 17px;
    height: 17px;
    margin-right: 9px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: goldpost-spin .7s linear infinite;
}

.goldpost-submit.is-loading i { display: block; }
.goldpost-submit:disabled { opacity: .75; cursor: wait; }

.goldpost-form-privacy {
    display: block;
    margin-top: 10px;
    color: var(--gp-muted);
    font-size: 9px;
    text-align: center;
}

.goldpost-form-status {
    display: none;
    margin-bottom: 16px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.goldpost-form-status.is-success { display: block; color: #1c684c; background: #e5f6ef; }
.goldpost-form-status.is-error { display: block; color: #9b3333; background: #fdecec; }

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

@media (max-width: 1100px) {
    .goldpost-hero__grid { gap: 35px; }
    .goldpost-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .goldpost-trust__item:nth-child(2) { border-left: 0; }
    .goldpost-trust__item:nth-child(-n+2) { padding-bottom: 18px; }
    .goldpost-trust__item:nth-child(n+3) { padding-top: 18px; border-top: 1px solid var(--gp-line); }
    .goldpost-split { gap: 45px; }
    .goldpost-timeline { grid-template-columns: repeat(2, 1fr); }
    .goldpost-final__grid { gap: 45px; }
}

@media (max-width: 900px) {
    .goldpost-hero { min-height: auto; padding: 145px 0 85px; }
    .goldpost-hero__grid,
    .goldpost-split,
    .goldpost-info-grid,
    .goldpost-final__grid { grid-template-columns: 1fr; }
    .goldpost-hero__content { text-align: center; }
    .goldpost-hero__lead { margin-right: auto; margin-left: auto; }
    .goldpost-actions,
    .goldpost-hero__note { justify-content: center; }
    .goldpost-hero__visual { min-height: 390px; }
    .goldpost-split--reverse .goldpost-section__copy { order: initial; }
    .goldpost-card-grid--three { grid-template-columns: 1fr; }
    .goldpost-card { min-height: auto; }
    .goldpost-api { grid-template-columns: 1fr; gap: 28px; }
    .goldpost-summary { grid-template-columns: 1fr; gap: 30px; }
    .goldpost-final__grid { max-width: 680px; }
}

@media (max-width: 650px) {
    .goldpost-hero { padding-top: 125px; }
    .goldpost-hero__content h1 { font-size: 36px; }
    .goldpost-hero__lead { font-size: 15px; }
    .goldpost-actions { flex-direction: column; }
    .goldpost-button { width: 100%; }
    .goldpost-hero__visual { min-height: 330px; transform: scale(.86); margin: -20px 0; }
    .goldpost-floating-card--insurance { right: -30px; }
    .goldpost-floating-card--tracking { left: -30px; }
    .goldpost-trust { margin-top: -20px; }
    .goldpost-trust__grid { padding: 17px; grid-template-columns: 1fr; }
    .goldpost-trust__item,
    .goldpost-trust__item:nth-child(-n+2),
    .goldpost-trust__item:nth-child(n+3) { padding: 13px 5px; border-top: 1px solid var(--gp-line); border-left: 0; }
    .goldpost-trust__item:first-child { border-top: 0; }
    .goldpost-section { padding: 72px 0; }
    .goldpost-section-head { margin-bottom: 34px; }
    .goldpost-section-head h2,
    .goldpost-section__copy h2,
    .goldpost-info-card h2,
    .goldpost-final h2 { font-size: 28px; }
    .goldpost-feature-panel,
    .goldpost-info-card,
    .goldpost-delivery-board,
    .goldpost-lead-form { padding: 24px; border-radius: 20px; }
    .goldpost-route { grid-template-columns: 1fr; gap: 14px; }
    .goldpost-route > i { width: 1px; height: 18px; margin: 0 auto; border-top: 0; border-right: 1px dashed rgba(117, 81, 19, .4); }
    .goldpost-price-grid,
    .goldpost-timeline,
    .goldpost-summary__items,
    .goldpost-form-grid { grid-template-columns: 1fr; }
    .goldpost-formula { align-items: stretch; flex-direction: column; text-align: center; }
    .goldpost-formula i { line-height: 1; }
    .goldpost-pricing-cta { align-items: stretch; flex-direction: column; text-align: center; }
    .goldpost-api { padding: 25px; }
    .goldpost-timeline li { min-height: auto; }
    .goldpost-summary { padding: 27px; }
    .goldpost-form-grid__full { grid-column: auto; }
    .goldpost-final { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .goldpost-landing *,
    .goldpost-landing *::before,
    .goldpost-landing *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
