/* Kitten Funnel Pages plugin styles */

:root {
    --pf-bg: #110907;
    --pf-bg-soft: #f5ede6;
    --pf-bg-legal: #f8f0e8;
    --pf-surface: #fff8f3;
    --pf-surface-strong: rgba(255, 248, 243, 0.94);
    --pf-border: rgba(143, 94, 56, 0.18);
    --pf-border-strong: rgba(143, 94, 56, 0.24);
    --pf-text: #271612;
    --pf-text-soft: #6f5649;
    --pf-cream: #fff5ea;
    --pf-cream-soft: rgba(255, 245, 234, 0.78);
    --pf-accent: #efb168;
    --pf-accent-strong: #cf8748;
    --pf-accent-deep: #8f5033;
    --pf-green: #00b67a;
    --pf-green-dark: #038a5e;
    --pf-shadow: 0 18px 48px rgba(18, 9, 6, 0.26);
    --pf-shadow-soft: 0 24px 56px rgba(43, 22, 15, 0.08);
    --pf-radius-xl: 32px;
    --pf-radius-lg: 24px;
    --pf-radius-md: 18px;
    --pf-radius-sm: 14px;
    --pf-radius-pill: 999px;
    --pf-transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--pf-bg-soft);
    color: var(--pf-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.pf-page-shell {
    min-height: 100vh;
}

.pf-page-shell--legal {
    background:
        radial-gradient(circle at top right, rgba(239, 177, 104, 0.18) 0%, rgba(239, 177, 104, 0) 24%),
        linear-gradient(180deg, #f6efe7 0%, #fff8f2 100%);
}

.pf-page-shell--thank {
    background:
        radial-gradient(circle at top right, rgba(239, 177, 104, 0.18) 0%, rgba(239, 177, 104, 0) 24%),
        linear-gradient(180deg, #110907 0%, #22110d 24%, #f6ede6 24%, #fff8f2 100%);
}

.pf-page-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 248, 243, 0.84);
    border-bottom: 1px solid rgba(143, 94, 56, 0.14);
    backdrop-filter: blur(14px);
}

.pf-page-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
}

.pf-page-header__brand {
    display: inline-flex;
    align-items: center;
}

.pf-page-header__logo {
    width: 82px;
    filter: drop-shadow(0 8px 18px rgba(18, 9, 6, 0.16));
}

.pf-page-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--pf-radius-pill);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(143, 94, 56, 0.14);
    color: var(--pf-text);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.pf-page-header__pill svg {
    width: 16px;
    height: 16px;
    color: var(--pf-accent-strong);
}

.pf-page-main {
    padding: 56px 0 24px;
}

.pf-page-main--thank {
    padding-top: 28px;
}

.pf-page-card {
    border-radius: var(--pf-radius-xl);
    border: 1px solid rgba(143, 94, 56, 0.16);
    box-shadow: var(--pf-shadow-soft);
}

.pf-page-card--legal {
    padding: clamp(24px, 4vw, 40px);
    background: rgba(255, 250, 247, 0.92);
    backdrop-filter: blur(10px);
}

.pf-page-card--step,
.pf-page-card--info {
    padding: 24px;
    background: rgba(255, 248, 243, 0.92);
}

.pf-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--pf-accent-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-page-kicker--light {
    color: var(--pf-accent);
}

.pf-page-title {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.pf-page-title--light {
    color: var(--pf-cream);
}

.pf-legal-content {
    color: var(--pf-text-soft);
    font-size: 1rem;
}

.pf-legal-content > *:first-child {
    margin-top: 0;
}

.pf-legal-content > *:last-child {
    margin-bottom: 0;
}

.pf-legal-content h2,
.pf-legal-content h3 {
    margin: 28px 0 10px;
    color: var(--pf-text);
    font-size: 1.15rem;
    line-height: 1.25;
}

.pf-legal-content p,
.pf-legal-content ul,
.pf-legal-content ol,
.pf-legal-content address {
    margin: 0 0 14px;
}

.pf-legal-content ul,
.pf-legal-content ol {
    padding-left: 20px;
}

.pf-legal-content strong {
    color: var(--pf-text);
}

.pf-legal-content a {
    color: var(--pf-accent-deep);
    text-decoration: underline;
    text-decoration-color: rgba(143, 80, 51, 0.34);
    text-underline-offset: 3px;
}

.pf-hero-shell {
    position: relative;
    overflow: hidden;
    background: var(--pf-bg);
    color: var(--pf-cream);
}

.pf-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(9, 4, 3, 0.94) 0%, rgba(9, 4, 3, 0.84) 34%, rgba(9, 4, 3, 0.48) 58%, rgba(9, 4, 3, 0.18) 100%),
        linear-gradient(180deg, rgba(9, 4, 3, 0.12) 0%, rgba(9, 4, 3, 0.44) 100%),
        var(--pf-hero-image);
    background-size: cover;
    background-position: 70% 56%;
    transform: scale(1.02);
}

.pf-hero-shell::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -140px;
    width: 520px;
    height: 320px;
    background: radial-gradient(circle, rgba(239, 177, 104, 0.28) 0%, rgba(239, 177, 104, 0) 72%);
    filter: blur(20px);
    pointer-events: none;
}

.pf-topbar,
.pf-hero,
.pf-benefits,
.pf-form-section {
    position: relative;
    z-index: 1;
}

.pf-topbar {
    padding: 24px 0 0;
}

.pf-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pf-logo {
    width: 76px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.pf-topbar__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--pf-radius-pill);
    background: rgba(255, 248, 243, 0.12);
    border: 1px solid rgba(255, 248, 243, 0.18);
    backdrop-filter: blur(12px);
    color: var(--pf-cream);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.pf-topbar__pill svg {
    width: 16px;
    height: 16px;
    color: var(--pf-accent);
    flex: 0 0 16px;
}

.pf-hero {
    min-height: calc(100svh - 24px);
    display: flex;
    align-items: center;
    padding: 72px 0 108px;
}

.pf-hero__content {
    width: min(590px, 100%);
}

.pf-hero-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-bottom: 8px;
}

.pf-hero-intro__copy {
    min-width: 0;
}

.pf-hero-intro__badge {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.pf-hero-intro__seal {
    display: block;
    width: clamp(104px, 10vw, 134px);
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(18, 9, 6, 0.18));
}

.pf-hero-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.pf-hero-brand__logo {
    display: block;
    width: clamp(88px, 10vw, 112px);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.pf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: var(--pf-radius-pill);
    background: rgba(255, 248, 243, 0.12);
    border: 1px solid rgba(255, 248, 243, 0.16);
    backdrop-filter: blur(12px);
    color: var(--pf-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-eyebrow svg {
    width: 14px;
    height: 14px;
}

.pf-h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 6.2vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--pf-cream);
    max-width: 8.8ch;
    text-wrap: balance;
}

.pf-h1__main,
.pf-h1__accent {
    display: block;
}

.pf-h1__accent {
    margin-top: 10px;
    color: var(--pf-accent);
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.pf-price-lead {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0 0 24px;
    color: var(--pf-cream);
}

.pf-price-lead__kicker {
    color: var(--pf-cream-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-price-lead__value {
    color: var(--pf-accent);
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.92;
}

.pf-price-lead__suffix {
    color: var(--pf-cream-soft);
    font-size: 0.98rem;
    font-weight: 600;
}

.pf-br-mobile {
    display: none;
}

.pf-sub {
    max-width: 31rem;
    margin: 0 0 34px;
    color: var(--pf-cream-soft);
    font-size: 1.05rem;
}

.pf-points {
    display: grid;
    gap: 20px;
    padding: 0;
    margin: 0 0 38px;
    list-style: none;
    max-width: 28rem;
}

.pf-points li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.pf-check {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(239, 177, 104, 0.16);
    border: 1px solid rgba(239, 177, 104, 0.22);
    color: var(--pf-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pf-check svg {
    width: 22px;
    height: 22px;
    stroke-width: 3;
}

.pf-point__copy {
    display: grid;
    gap: 4px;
}

.pf-point__copy strong {
    font-size: clamp(1.26rem, 1.9vw, 1.58rem);
    line-height: 1.12;
    color: var(--pf-cream);
    font-weight: 700;
}

.pf-point__copy span {
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.28;
    color: var(--pf-cream-soft);
    font-weight: 500;
}

.pf-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 16px 28px;
    border: none;
    border-radius: var(--pf-radius-pill);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--pf-transition), box-shadow var(--pf-transition), background var(--pf-transition);
}

.pf-btn--primary {
    background: linear-gradient(135deg, #f4bc7b 0%, #d68849 100%);
    color: #1d100c;
    box-shadow: 0 18px 34px rgba(155, 87, 38, 0.34);
    min-width: clamp(276px, 28vw, 344px);
}

.pf-btn--primary:hover,
.pf-btn--primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 36px rgba(155, 87, 38, 0.42);
}

.pf-btn--full {
    width: 100%;
}

.pf-btn svg {
    width: 18px;
    height: 18px;
}

.pf-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: var(--pf-radius-pill);
    background: rgba(255, 248, 243, 0.1);
    border: 1px solid rgba(255, 248, 243, 0.14);
    backdrop-filter: blur(12px);
    color: var(--pf-cream);
    font-size: 0.96rem;
    font-weight: 600;
}

.pf-meta-pill--brand {
    gap: 12px;
    padding: 0 16px 0 14px;
}

.pf-meta-pill svg {
    width: 18px;
    height: 18px;
    color: var(--pf-accent);
}

.pf-meta-pill__logo {
    display: block;
    width: clamp(92px, 15vw, 118px);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.96;
    flex: 0 0 auto;
}

.pf-meta-pill--brand span {
    color: var(--pf-cream);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pf-micro {
    margin: 0 0 20px;
    color: var(--pf-cream-soft);
    font-size: 0.9rem;
}

.pf-trust-bar {
    display: grid;
    gap: 12px;
    width: min(100%, 390px);
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 248, 243, 0.94);
    border: 1px solid rgba(143, 94, 56, 0.18);
    box-shadow: 0 16px 28px rgba(18, 9, 6, 0.12);
    color: var(--pf-text);
    backdrop-filter: blur(14px);
    transition: transform var(--pf-transition), box-shadow var(--pf-transition);
}

.pf-trust-bar:hover,
.pf-trust-bar:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(18, 9, 6, 0.16);
}

.pf-trust-bar__header {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.pf-trust-bar__logo-shell {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(143, 94, 56, 0.16);
    overflow: hidden;
}

.pf-trust-bar__unit-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pf-trust-bar__identity {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.pf-trust-bar__name {
    color: var(--pf-text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.12;
}

.pf-trust-bar__site {
    color: var(--pf-text-soft);
    font-size: 0.92rem;
    line-height: 1.2;
}

.pf-trust-bar__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-trust-bar__stars {
    display: inline-flex;
    gap: 4px;
}

.pf-trust-bar__star {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: var(--pf-green);
}

.pf-trust-bar__star--partial {
    background: linear-gradient(90deg, var(--pf-green) 0 60%, #d7ddd8 60% 100%);
}

.pf-trust-bar__star svg {
    width: 11px;
    height: 11px;
    fill: #ffffff;
}

.pf-trust-bar__score {
    font-weight: 700;
    color: var(--pf-text);
    font-size: 1rem;
}

.pf-trust-bar__count {
    color: var(--pf-text-soft);
    font-size: 0.92rem;
    font-weight: 500;
}

.pf-benefits {
    padding: 88px 0 40px;
    background:
        radial-gradient(circle at top right, rgba(239, 177, 104, 0.16) 0%, rgba(239, 177, 104, 0) 26%),
        linear-gradient(180deg, #f6efe7 0%, #fff9f5 100%);
}

.pf-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pf-section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.pf-section-head__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--pf-accent-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.pf-section-head p {
    margin: 0;
    color: var(--pf-text-soft);
    font-size: 1.05rem;
}

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

.pf-card {
    padding: 24px;
    border-radius: var(--pf-radius-lg);
    background: rgba(255, 248, 243, 0.76);
    border: 1px solid var(--pf-border);
    box-shadow: 0 18px 40px rgba(55, 24, 14, 0.06);
    backdrop-filter: blur(10px);
}

.pf-card__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(239, 177, 104, 0.28) 0%, rgba(239, 177, 104, 0.12) 100%);
    border: 1px solid rgba(214, 136, 73, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 10px 18px rgba(155, 87, 38, 0.08);
    color: var(--pf-accent-strong);
}

.pf-card__icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pf-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.pf-card p {
    margin: 0;
    color: var(--pf-text-soft);
    font-size: 0.96rem;
    line-height: 1.62;
}

.pf-card p strong,
.pf-section-head p strong {
    color: var(--pf-text);
    font-weight: 700;
}

.pf-form-section {
    padding: 52px 0 0;
    background: linear-gradient(180deg, #fff9f5 0%, #f8efe7 100%);
}

.pf-comparison {
    padding: 28px 0 64px;
    background: linear-gradient(180deg, #fff9f5 0%, #f8efe7 100%);
}

.pf-comparison-frame {
    margin: 8px auto 0;
    max-width: 1040px;
    padding: clamp(8px, 1.5vw, 14px);
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(241, 193, 121, 0.16) 0%, rgba(241, 193, 121, 0) 32%),
        linear-gradient(145deg, rgba(32, 14, 8, 0.98) 0%, rgba(72, 39, 24, 0.96) 55%, rgba(28, 12, 7, 0.98) 100%);
    border: 1px solid rgba(207, 166, 104, 0.24);
    box-shadow:
        0 30px 70px rgba(29, 11, 6, 0.22),
        inset 0 1px 0 rgba(255, 230, 196, 0.12);
    overflow: hidden;
}

.pf-comparison-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(8, 3, 2, 0.18);
}

.pf-form-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

.pf-form-shell--single {
    grid-template-columns: minmax(0, 1fr);
}

.pf-form-copy,
.pf-form-card {
    border-radius: var(--pf-radius-xl);
    border: 1px solid rgba(143, 94, 56, 0.16);
    box-shadow: 0 24px 56px rgba(43, 22, 15, 0.08);
}

.pf-form-copy {
    padding: 34px;
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.88) 0%, rgba(249, 237, 226, 0.88) 100%);
}

.pf-form-copy h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.pf-form-copy p {
    margin: 0 0 22px;
    color: var(--pf-text-soft);
    font-size: 1rem;
}

.pf-form-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.pf-form-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--pf-text);
}

.pf-form-list svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--pf-accent-strong);
    stroke-width: 2.6;
}

.pf-form-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--pf-text-soft);
    font-size: 0.92rem;
}

.pf-form-note svg {
    width: 16px;
    height: 16px;
    color: var(--pf-green);
}

.pf-form-card {
    padding: 22px;
    background: rgba(255, 252, 249, 0.94);
    backdrop-filter: blur(10px);
}

.pf-form-shell--single .pf-form-card {
    width: min(100%, 820px);
    margin: 0 auto;
}

.pf-form-card .petguard-form-wrapper {
    width: 100%;
}

.pf-form-card .pg-form-shell {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.pf-form-card .pg-form-shell::before,
.pf-form-card .pg-form-card::before {
    display: none;
}

.pf-form-card .pg-form-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    gap: 20px;
}

.pf-form-card .pg-btn {
    outline: none;
}

.pf-form-card .pg-btn:focus,
.pf-form-card .pg-btn:focus-visible {
    outline: none;
}

.pf-form-card .pg-btn-primary,
.pf-form-card .pg-btn-primary:hover,
.pf-form-card .pg-btn-primary:focus,
.pf-form-card .pg-btn-primary:focus-visible {
    background: linear-gradient(135deg, #d9924b 0%, #8a4e25 100%) !important;
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(94, 46, 18, 0.22) !important;
}

.pf-form-card .pg-btn-primary:hover,
.pf-form-card .pg-btn-primary:focus,
.pf-form-card .pg-btn-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 3px rgba(217, 146, 75, 0.16),
        0 16px 32px rgba(94, 46, 18, 0.22) !important;
}

.pf-form-card .pg-btn-secondary,
.pf-form-card .pg-btn-secondary:hover,
.pf-form-card .pg-btn-secondary:focus,
.pf-form-card .pg-btn-secondary:focus-visible {
    background: #fffaf5 !important;
    color: #8a4e25 !important;
    border: 1px solid rgba(217, 146, 75, 0.25) !important;
    box-shadow: 0 8px 18px rgba(43, 22, 15, 0.06) !important;
}

.pf-form-card .pg-btn-secondary:hover,
.pf-form-card .pg-btn-secondary:focus,
.pf-form-card .pg-btn-secondary:focus-visible {
    background: rgba(248, 233, 219, 0.4) !important;
}

.pf-form-card .pg-btn-tertiary,
.pf-form-card .pg-btn-tertiary:hover,
.pf-form-card .pg-btn-tertiary:focus,
.pf-form-card .pg-btn-tertiary:focus-visible {
    background: linear-gradient(135deg, #fff9f4 0%, #f6e7d8 100%) !important;
    color: #8a4e25 !important;
    border: 1px solid rgba(217, 146, 75, 0.30) !important;
    box-shadow: 0 10px 24px rgba(94, 46, 18, 0.10) !important;
}

.pf-form-card .pz-form {
    --pz-primary: #6e3922;
    --pz-secondary: #d59860;
    --pz-btn-bg: linear-gradient(135deg, #f1b878 0%, #d68849 100%);
    --pz-btn-text: #1d100c;
    --pz-surface: #fffaf7;
    --pz-surface-border: rgba(143, 94, 56, 0.16);
    --pz-text: #2b1813;
    --pz-muted: #6f5649;
    --pz-field-bg: #ffffff;
    --pz-field-border: #e4cfc0;
    --pz-choice-bg: #fff6f0;
    --pz-choice-active-bg: #f8e7d9;
    --pz-choice-active-border: #cf8748;
    --pz-success: #1c9d6c;
    --pz-error: #ad3f32;
}

.pf-form-card .pz-form {
    box-shadow: none;
}

.pf-form-card .pz-input {
    background-image: none;
    padding-left: 14px;
}

.pf-form-card .pz-form__header {
    margin-bottom: 8px;
}

.pf-form-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--pf-text-soft);
    font-size: 0.92rem;
}

.pf-form-foot svg {
    width: 16px;
    height: 16px;
    color: var(--pf-accent-strong);
    flex: 0 0 16px;
}

.pf-site-footer {
    padding: 34px 0 30px;
    background: transparent;
}

.pf-site-footer--landing {
    padding-top: 28px;
}

.pf-site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
    border-top: 1px solid rgba(143, 94, 56, 0.16);
}

.pf-site-footer__brand {
    margin: 0;
    color: var(--pf-text-soft);
    font-size: 0.92rem;
}

.pf-site-footer__links {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pf-site-footer__links a {
    color: var(--pf-text);
    font-size: 0.94rem;
    font-weight: 600;
}

.pf-site-footer__links a:hover,
.pf-site-footer__links a:focus-visible {
    color: var(--pf-accent-deep);
}

.pf-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    opacity: 0;
    transform: translateY(120%);
    transition: transform var(--pf-transition), opacity var(--pf-transition);
    pointer-events: none;
}

.pf-sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pf-sticky .pf-btn {
    box-shadow: 0 18px 34px rgba(155, 87, 38, 0.28);
}

.pf-sticky .pf-btn span:last-child {
    white-space: nowrap;
}

.pf-thank-hero {
    position: relative;
    padding: 32px 0 26px;
}

.pf-faq {
    padding: 28px 0 0;
    background: linear-gradient(180deg, #f8efe7 0%, #f7eee6 100%);
}

.pf-section-head--faq {
    margin-bottom: 22px;
}

.pf-faq__list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.pf-faq-item {
    border-radius: 22px;
    background: rgba(255, 250, 247, 0.94);
    border: 1px solid rgba(143, 94, 56, 0.16);
    box-shadow: 0 16px 32px rgba(43, 22, 15, 0.05);
    overflow: hidden;
}

.pf-faq-item summary {
    position: relative;
    display: block;
    padding: 20px 62px 20px 22px;
    color: var(--pf-text);
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.pf-faq-item summary::-webkit-details-marker {
    display: none;
}

.pf-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--pf-accent-deep);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
}

.pf-faq-item[open] summary::after {
    content: "-";
}

.pf-faq-item__body {
    padding: 0 22px 22px;
    color: var(--pf-text-soft);
}

.pf-faq-item__body p {
    margin: 0;
}

.pf-thank-hero__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    align-items: end;
    gap: clamp(18px, 3.2vw, 34px);
    width: min(100%, 820px);
    padding: clamp(24px, 5vw, 38px);
    border-radius: var(--pf-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(239, 177, 104, 0.18) 0%, rgba(239, 177, 104, 0) 28%),
        linear-gradient(180deg, rgba(40, 19, 14, 0.96) 0%, rgba(23, 11, 8, 0.98) 100%);
    border: 1px solid rgba(255, 245, 234, 0.1);
    box-shadow: var(--pf-shadow);
    overflow: hidden;
    isolation: isolate;
}

.pf-thank-hero__content {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.pf-thank-hero__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100%;
}

.pf-thank-hero__media::before {
    content: "";
    position: absolute;
    right: 12%;
    bottom: -8%;
    width: 72%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(239, 177, 104, 0.26) 0%, rgba(239, 177, 104, 0.04) 48%, rgba(239, 177, 104, 0) 74%);
    filter: blur(6px);
}

.pf-thank-hero__picture {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 344px);
    margin: 0 -4px -38px 0;
}

.pf-thank-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

.pf-page-shell--consultation .pf-page-main--thank {
    padding-top: 0;
}

.pf-hero-shell--consultation::before {
    background-position: 76% center;
}

.pf-hero--consultation {
    min-height: auto;
    padding: 54px 0 58px;
}

.pf-hero__content--consultation {
    max-width: 36rem;
}

.pf-h1--consultation {
    max-width: 11.6ch;
    font-size: clamp(2.6rem, 5.7vw, 4.8rem);
}

.pf-sub--consultation {
    max-width: 33rem;
}

.pf-page-shell--consultation .pf-thank-note--consultation {
    max-width: 32rem;
    margin: 16px 0 0;
}

.pf-thank-copy {
    max-width: 32rem;
    margin: 0 0 22px;
    color: var(--pf-cream-soft);
    font-size: 1.04rem;
}

.pf-thank-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: var(--pf-radius-pill);
    background: linear-gradient(135deg, #2ddc84 0%, #1db55e 100%);
    color: #0f1d12;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(10, 109, 76, 0.28);
    transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
    animation: pf-thank-cta-breathe 2.8s ease-in-out infinite;
}

.pf-thank-cta:hover,
.pf-thank-cta:focus-visible {
    animation-play-state: paused;
    transform: translateY(-1px);
}

.pf-thank-cta svg {
    width: 22px;
    height: 22px;
}

.pf-thank-note {
    margin: 14px 0 0;
    max-width: 31rem;
    color: var(--pf-cream-soft);
    font-size: 0.92rem;
}

@keyframes pf-thank-cta-breathe {
    0%,
    100% {
        box-shadow: 0 18px 32px rgba(10, 109, 76, 0.28);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 22px 38px rgba(10, 109, 76, 0.38);
        filter: brightness(1.04);
    }
}

.pf-thank-body {
    padding: 16px 0 0;
}

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

.pf-page-card--step h2,
.pf-page-card--info h2 {
    margin: 0 0 10px;
    font-size: 1.24rem;
    line-height: 1.12;
}

.pf-page-card--step p,
.pf-page-card--info p {
    margin: 0;
    color: var(--pf-text-soft);
    font-size: 0.96rem;
}

.pf-page-card--info {
    grid-column: span 1;
}

.pf-page-card--info p + p {
    margin-top: 12px;
}

.pf-page-card--info a {
    color: var(--pf-accent-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pf-step-number {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(239, 177, 104, 0.18);
    color: var(--pf-accent-deep);
    font-size: 1rem;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .pf-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-form-shell {
        grid-template-columns: 1fr;
    }

    .pf-form-copy {
        order: 1;
    }

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

    .pf-thank-hero__card {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    }

    .pf-thank-hero__picture {
        width: min(100%, 294px);
        margin-bottom: -34px;
    }

    .pf-h1--consultation {
        max-width: 11.2ch;
    }
}

@media (max-width: 860px) {
    .pf-container {
        width: min(100% - 32px, 1180px);
    }

    .pf-topbar {
        display: none;
    }

    .pf-hero-shell::before {
        background-image:
            linear-gradient(180deg, rgba(9, 4, 3, 0.24) 0%, rgba(9, 4, 3, 0.34) 34%, rgba(9, 4, 3, 0.68) 100%),
            linear-gradient(90deg, rgba(9, 4, 3, 0.94) 0%, rgba(9, 4, 3, 0.84) 34%, rgba(9, 4, 3, 0.38) 62%, rgba(9, 4, 3, 0.06) 100%),
            var(--pf-hero-image-mobile);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-size: auto, auto, 62% auto;
        background-position: center top, center top, right -10px top 92px;
        transform: none;
    }

    .pf-hero {
        min-height: auto;
        padding: 40px 0 64px;
    }

    .pf-hero__content {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .pf-hero-intro {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        margin-bottom: 6px;
    }

    .pf-hero-intro__badge {
        align-self: start;
        padding-bottom: 0;
        padding-top: 26px;
    }

    .pf-hero-intro__seal {
        width: 98px;
    }

    .pf-hero-brand {
        margin-bottom: 18px;
    }

    .pf-hero-brand__logo {
        width: 84px;
    }

    .pf-eyebrow {
        display: none;
    }

    .pf-h1 {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: clamp(1.92rem, 9.4vw, 3.1rem);
        line-height: 0.94;
    }

    .pf-h1__accent {
        margin-top: 8px;
        font-size: clamp(1.24rem, 5.5vw, 1.72rem);
        line-height: 1;
    }

    .pf-price-lead {
        margin-bottom: 30px;
        gap: 6px 8px;
    }

    .pf-price-lead__value {
        font-size: clamp(1.72rem, 8vw, 2.24rem);
    }

    .pf-price-lead__suffix {
        font-size: 0.92rem;
    }

    .pf-br-mobile {
        display: block;
    }

    .pf-sub {
        display: none;
    }

    .pf-points {
        gap: 14px;
        margin-bottom: 28px;
        margin-top: 6px;
        max-width: 276px;
    }

    .pf-points li {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .pf-check {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .pf-point__copy strong {
        display: block;
        font-size: 1rem;
        line-height: 1.22;
    }

    .pf-point__copy span {
        display: block;
        font-size: 1rem;
        line-height: 1.18;
        color: var(--pf-cream);
    }

    .pf-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 28px;
    }

    .pf-btn {
        width: 100%;
    }

    .pf-trust-bar {
        gap: 12px;
        width: min(100%, 336px);
        padding: 13px 14px;
    }

    .pf-trust-bar__header {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
    }

    .pf-trust-bar__logo-shell {
        width: 52px;
        height: 52px;
        border-radius: 11px;
    }

    .pf-trust-bar__name {
        font-size: 0.98rem;
    }

    .pf-trust-bar__site {
        font-size: 0.86rem;
    }

    .pf-trust-bar__footer {
        gap: 7px;
    }

    .pf-page-header__row {
        min-height: 72px;
    }

    .pf-page-header__logo {
        width: 72px;
    }

    .pf-page-header__pill {
        font-size: 0.82rem;
    }

    .pf-thank-hero__card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 30px;
    }

    .pf-thank-hero__content {
        max-width: 100%;
    }

    .pf-thank-hero__media {
        justify-content: center;
    }

    .pf-thank-hero__picture {
        width: min(72vw, 278px);
        margin: 0 auto -36px;
    }

    .pf-hero-shell--consultation::before {
        background-position: center top, center top, right -6px top 18px;
        background-size: auto, auto, 63% auto;
    }

    .pf-hero--consultation {
        padding: 40px 0 44px;
    }
}

@media (max-width: 640px) {
    .pf-micro {
        display: none;
    }

    .pf-benefits {
        padding-top: 68px;
    }

    .pf-cards,
        .pf-thank-grid {
        grid-template-columns: 1fr;
    }

    .pf-card,
    .pf-form-copy,
    .pf-form-card,
    .pf-page-card--step,
    .pf-page-card--info {
        padding: 20px;
    }

    .pf-form-section {
        padding-bottom: 0;
    }

    .pf-site-footer--landing {
        padding-bottom: 102px;
    }

    .pf-comparison {
        padding-top: 8px;
        padding-bottom: 48px;
    }

    .pf-comparison-frame {
        padding: 6px;
        border-radius: 24px;
    }

    .pf-faq__list {
        gap: 12px;
    }

    .pf-faq-item summary {
        padding: 18px 56px 18px 18px;
    }

    .pf-faq-item__body {
        padding: 0 18px 18px;
    }

    .pf-trust-bar__score,
    .pf-trust-bar__count {
        font-size: 0.88rem;
    }

    .pf-trust-bar {
        width: 100%;
        gap: 10px;
        padding: 12px 14px;
    }

    .pf-trust-bar__star {
        width: 16px;
        height: 16px;
    }

    .pf-trust-bar__star svg {
        width: 10px;
        height: 10px;
    }

    .pf-hero-intro__seal {
        width: 92px;
    }

    .pf-site-footer__inner {
        padding: 14px 0 0;
        align-items: flex-start;
    }

    .pf-page-main {
        padding-top: 28px;
    }

    .pf-page-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .pf-thank-copy {
        font-size: 0.98rem;
    }

    .pf-thank-cta {
        width: 100%;
    }

    .pf-thank-hero__media {
        justify-content: flex-end;
        margin-top: 6px;
    }

    .pf-thank-hero__picture {
        width: min(58vw, 230px);
        margin: 0 -6px -30px 0;
    }

    .pf-hero-shell--consultation::before {
        background-position: center top, center top, right -10px top 22px;
        background-size: auto, auto, 66% auto;
    }

    .pf-hero--consultation {
        padding: 32px 0 36px;
    }

    .pf-h1--consultation {
        max-width: 8.4ch;
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .pf-sub--consultation {
        max-width: 19rem;
        margin-bottom: 22px;
    }

    .pf-page-shell--consultation .pf-thank-cta {
        width: min(70%, 16.5rem);
        padding: 0 18px;
    }

    .pf-page-shell--consultation .pf-thank-note--consultation {
        max-width: 18.5rem;
        margin-top: 12px;
    }

    .pf-thank-note {
        font-size: 0.9rem;
    }
}

@media (min-width: 861px) {
    .pf-sticky {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}
