.lp-page {
--lp-font-head: 'Unbounded', sans-serif;
--lp-font-body: 'Figtree', system-ui, -apple-system, sans-serif;
--lp-color-dark:    #232425;
--lp-color-light:   #F7F4F1;
--lp-color-white:   #ffffff;
--lp-color-red:     #9f2b2c;
--lp-color-cta-bg:  #3C0314;
--lp-color-text:    #232425;
--lp-color-muted:   #6b7280;
--lp-radius:        16px;
--lp-radius-sm:     8px;
--lp-max-w:         1312px;
--lp-px:            clamp(20px, 5vw, 80px);
font-family: var(--lp-font-body);
color: var(--lp-color-text);
} .lp-page *,
.lp-page *::before,
.lp-page *::after {
box-sizing: border-box;
}
.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4 {
font-family: var(--lp-font-head);
margin: 0;
padding: 0;
}
.lp-page p {
margin: 0;
padding: 0;
}
.lp-page a {
color: inherit;
text-decoration: none;
} .lp-js .lp-anim {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-js .lp-anim.lp-in-view {
opacity: 1;
transform: translateY(0);
}
.lp-js .lp-anim--delay-1 { transition-delay: 0.1s; }
.lp-js .lp-anim--delay-2 { transition-delay: 0.2s; }
.lp-js .lp-anim--delay-3 { transition-delay: 0.3s; }
.lp-js .lp-anim--delay-4 { transition-delay: 0.4s; }
.lp-js .lp-anim--delay-5 { transition-delay: 0.5s; }
.lp-js .lp-anim--delay-6 { transition-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
.lp-page .lp-anim {
opacity: 1;
transform: none;
transition: none;
}
} .lp-section {
width: 100%;
padding: clamp(60px, 8vw, 100px) var(--lp-px);
}
.lp-section--dark {
background-color: var(--lp-color-dark);
color: var(--lp-color-white);
}
.lp-section--light {
background-color: var(--lp-color-light);
color: var(--lp-color-text);
}
.lp-section--white {
background-color: var(--lp-color-white);
color: var(--lp-color-text);
}
.lp-section--cta {
background-color: var(--lp-color-cta-bg);
color: var(--lp-color-white);
}
.lp-container {
max-width: var(--lp-max-w);
margin: 0 auto;
width: 100%;
} .lp-tagline {
font-family: var(--lp-font-body);
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--lp-color-red);
margin: 0 0 28px !important;
display: block;
}
.lp-tagline + h1,
.lp-tagline + h2,
.lp-tagline + h3 {
margin-top: 0 !important;
}
.lp-section--dark .lp-tagline,
.lp-section--cta .lp-tagline {
color: rgba(255,255,255,0.6);
} .lp-section-header {
margin-bottom: clamp(40px, 5vw, 64px);
}
.lp-section-header--center {
text-align: center;
max-width: 720px;
margin-left: auto;
margin-right: auto;
margin-bottom: clamp(40px, 5vw, 64px);
} .lp-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
font-family: var(--lp-font-body);
font-size: 16px;
font-weight: 600;
line-height: 1;
padding: 14px 28px;
border-radius: 100px;
border: 2px solid transparent;
cursor: pointer;
text-decoration: none;
transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
white-space: nowrap;
}
.lp-btn:hover {
transform: translateY(-1px);
}
.lp-btn--primary {
background-color: var(--lp-color-red);
color: #fff;
border-color: var(--lp-color-red);
}
.lp-btn--primary:hover {
background-color: #7e2222;
border-color: #7e2222;
}
.lp-btn--ghost {
background-color: transparent;
color: #fff;
border-color: rgba(255,255,255,0.4);
}
.lp-btn--ghost:hover {
background-color: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.7);
}
.lp-btn--outline {
background-color: transparent;
color: var(--lp-color-red);
border-color: var(--lp-color-red);
}
.lp-btn--outline:hover {
background-color: var(--lp-color-red);
color: #fff;
} .lp-hero {
min-height: 88vh;
display: flex;
align-items: center;
padding: clamp(80px, 10vw, 120px) var(--lp-px) clamp(60px, 8vw, 100px);
position: relative;
overflow: hidden;
}
.lp-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(159,43,44,0.12) 0%, transparent 70%);
pointer-events: none;
}
.lp-hero__inner {
max-width: var(--lp-max-w);
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 1fr 420px;
gap: 64px;
align-items: center;
}
.lp-hero__content {
display: flex;
flex-direction: column;
gap: 32px;
}
.lp-hero__eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--lp-font-body);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
margin: 0;
}
.lp-hero__eyebrow::before {
content: '';
display: inline-block;
width: 24px;
height: 2px;
background-color: var(--lp-color-red);
flex-shrink: 0;
}
.lp-hero__h1 {
font-size: clamp(2rem, 4.5vw, 3.75rem);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.02em;
color: #fff;
}
.lp-hero__h1 mark {
background: transparent;
color: var(--lp-color-red);
padding: 0.05em 0.7em 0.15em;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 80' preserveAspectRatio='none'><path d='M4 20 L296 8 L298 64 L6 72 Z' fill='%23ffffff'/></svg>");
background-repeat: no-repeat;
background-size: 100% 100%;
background-position: center;
}
.lp-hero__lead {
font-size: clamp(1rem, 1.4vw, 1.125rem);
font-weight: 400;
line-height: 1.65;
color: rgba(255,255,255,0.7);
max-width: 520px;
}
.lp-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.lp-hero__social-proof {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: rgba(255,255,255,0.45);
}
.lp-hero__stars {
display: flex;
gap: 2px;
color: #f59e0b;
}
.lp-hero__stars svg {
width: 14px;
height: 14px;
fill: currentColor;
} .lp-hero__card {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--lp-radius);
padding: 32px;
backdrop-filter: blur(12px);
display: flex;
flex-direction: column;
gap: 24px;
}
.lp-hero__card-stat {
display: flex;
flex-direction: column;
gap: 4px;
padding-bottom: 24px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-hero__card-stat:last-child {
padding-bottom: 0;
border-bottom: none;
}
.lp-hero__card-stat-value {
font-family: var(--lp-font-head);
font-size: 2.25rem;
font-weight: 700;
color: #fff;
line-height: 1;
}
.lp-hero__card-stat-label {
font-size: 13px;
color: rgba(255,255,255,0.5);
line-height: 1.4;
}
.lp-hero__card-stat-value span {
color: #fff;
} .lp-stats {
padding: clamp(40px, 5vw, 64px) var(--lp-px);
}
.lp-stats__grid {
max-width: var(--lp-max-w);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
}
.lp-stats__item {
display: flex;
flex-direction: column;
gap: 10px;
padding: 32px 32px;
border-left: 1px solid rgba(35,36,37,0.1);
position: relative;
}
.lp-stats__item::before {
content: '';
display: block;
width: 24px;
height: 2px;
background-color: var(--lp-color-red);
margin-bottom: 4px;
}
.lp-stats__item:first-child {
border-left: none;
}
.lp-stats__value {
font-family: var(--lp-font-head);
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 700;
line-height: 1;
color: var(--lp-color-dark);
letter-spacing: -0.02em;
}
.lp-stats__value em {
color: var(--lp-color-dark);
font-style: normal;
}
.lp-stats__label {
font-size: 13px;
font-weight: 500;
color: var(--lp-color-muted);
line-height: 1.5;
max-width: 200px;
} .lp-problem__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(40px, 6vw, 96px);
align-items: stretch;
}
.lp-problem__grid .lp-tagline {
margin-bottom: 32px !important;
}
.lp-problem__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.02em;
margin: 0 0 40px !important;
}
.lp-problem__h2 mark {
background: none;
color: var(--lp-color-red);
}
.lp-problem__body {
font-size: 17px;
line-height: 1.75;
color: var(--lp-color-muted);
margin-bottom: 32px;
padding-bottom: 32px;
border-bottom: 1px solid rgba(35,36,37,0.08);
}
.lp-problem__list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 20px;
}
.lp-problem__list li {
display: flex;
align-items: flex-start;
gap: 14px;
font-size: 15px;
line-height: 1.6;
color: var(--lp-color-muted);
}
.lp-problem__list li svg {
flex-shrink: 0;
width: 20px;
height: 20px;
margin-top: 2px;
color: var(--lp-color-red);
}
.lp-problem__visual {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 1fr;
gap: 16px;
align-content: stretch;
}
.lp-problem__visual-card {
background: var(--lp-color-light);
border: 1px solid rgba(35,36,37,0.06);
border-radius: var(--lp-radius);
padding: 32px 28px;
display: flex;
flex-direction: column;
gap: 16px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-problem__visual-card:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px -12px rgba(35,36,37,0.15);
}
.lp-problem__visual-card:first-child {
grid-column: 1 / -1;
background: var(--lp-color-dark);
border-color: transparent;
color: #fff;
padding: 36px 32px;
gap: 14px;
}
.lp-problem__visual-icon {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(159,43,44,0.12);
border-radius: 12px;
color: var(--lp-color-red);
margin-bottom: auto;
}
.lp-problem__visual-card:first-child .lp-problem__visual-icon {
background: rgba(255,255,255,0.1);
color: #fff;
margin-bottom: 4px;
}
.lp-problem__visual-title {
font-family: var(--lp-font-head);
font-size: 16px;
font-weight: 700;
line-height: 1.25;
letter-spacing: -0.01em;
}
.lp-problem__visual-card:first-child .lp-problem__visual-title {
font-size: 20px;
}
.lp-problem__visual-desc {
font-size: 14px;
color: var(--lp-color-muted);
line-height: 1.6;
}
.lp-problem__visual-card:first-child .lp-problem__visual-desc {
color: rgba(255,255,255,0.6);
} .lp-features__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.lp-features__lead {
font-size: 18px;
color: var(--lp-color-muted);
line-height: 1.6;
}
.lp-features__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.lp-features__card {
background: var(--lp-color-white);
border-radius: var(--lp-radius);
padding: clamp(24px, 3vw, 36px);
display: flex;
flex-direction: column;
gap: 16px;
border: 1px solid rgba(35,36,37,0.06);
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp-features__card:hover {
box-shadow: 0 8px 32px rgba(35,36,37,0.08);
transform: translateY(-2px);
}
.lp-features__card-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(159,43,44,0.08);
border-radius: 12px;
color: var(--lp-color-red);
flex-shrink: 0;
}
.lp-features__card-icon svg {
width: 24px;
height: 24px;
}
.lp-features__card-h3 {
font-size: 17px;
font-weight: 600;
line-height: 1.3;
color: var(--lp-color-dark);
}
.lp-features__card-body {
font-size: 14px;
color: var(--lp-color-muted);
line-height: 1.65;
} .lp-process__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
color: #fff;
margin-bottom: 16px;
}
.lp-process__lead {
font-size: 17px;
color: rgba(255,255,255,0.6);
line-height: 1.6;
}
.lp-process__steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
position: relative;
}
.lp-process__step:not(:last-child)::after {
content: '';
position: absolute;
top: 28px;
left: 64px;
right: calc(-40px - 8px);
height: 1px;
background: rgba(255,255,255,0.15);
z-index: 0;
}
.lp-process__step {
display: flex;
flex-direction: column;
gap: 20px;
position: relative;
}
.lp-process__step-num {
width: 56px;
height: 56px;
border-radius: 50%;
border: 2px solid rgba(255,255,255,0.15);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--lp-font-head);
font-size: 18px;
font-weight: 700;
color: #fff;
background: rgba(255,255,255,0.05);
flex-shrink: 0;
position: relative;
z-index: 1;
}
.lp-process__step:first-child .lp-process__step-num {
background: var(--lp-color-red);
border-color: var(--lp-color-red);
}
.lp-process__step-h3 {
font-size: 20px;
font-weight: 600;
color: #fff;
line-height: 1.3;
}
.lp-process__step-body {
font-size: 15px;
color: rgba(255,255,255,0.55);
line-height: 1.7;
}
.lp-process__step-duration {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 13px;
font-weight: 600;
color: #fff;
padding: 12px 22px !important;
background: var(--lp-color-red);
border-radius: 100px;
width: fit-content;
line-height: 1;
} .lp-testimonials__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.lp-testimonials__lead {
font-size: 17px;
color: var(--lp-color-muted);
line-height: 1.6;
}
.lp-testimonials__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.lp-testimonials__card {
background: var(--lp-color-light);
border-radius: var(--lp-radius);
padding: clamp(28px, 3.5vw, 40px);
display: flex;
flex-direction: column;
gap: 24px;
}
.lp-testimonials__stars {
display: flex;
gap: 4px;
color: #f59e0b;
}
.lp-testimonials__stars svg {
width: 18px;
height: 18px;
fill: currentColor;
}
.lp-testimonials__quote {
font-family: var(--lp-font-body);
font-size: clamp(1rem, 1.3vw, 1.125rem);
font-weight: 500;
line-height: 1.65;
color: var(--lp-color-dark);
margin: 0;
padding: 0;
border: none;
font-style: normal;
flex-grow: 1;
}
.lp-testimonials__author {
display: flex;
align-items: center;
gap: 14px;
margin-top: auto;
}
.lp-testimonials__avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: rgba(35,36,37,0.08);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
overflow: hidden;
}
.lp-testimonials__avatar svg {
width: 24px;
height: 24px;
color: rgba(35,36,37,0.3);
}
.lp-testimonials__avatar img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 50%;
}
.lp-testimonials__name {
font-family: var(--lp-font-body);
font-size: 15px;
font-weight: 700;
color: var(--lp-color-dark);
margin: 0;
}
.lp-testimonials__role {
font-size: 13px;
color: var(--lp-color-muted);
margin: 0;
} .lp-pricing__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.lp-pricing__lead {
font-size: 17px;
color: var(--lp-color-muted);
line-height: 1.6;
}
.lp-pricing__card {
background: var(--lp-color-dark);
border-radius: var(--lp-radius);
padding: clamp(40px, 5vw, 64px);
color: #fff;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.lp-pricing__price-block {
display: flex;
flex-direction: column;
gap: 16px;
}
.lp-pricing__amount {
font-family: var(--lp-font-head);
font-size: clamp(3rem, 6vw, 5rem);
font-weight: 700;
line-height: 1;
color: #fff;
}
.lp-pricing__amount sup {
font-size: 0.45em;
vertical-align: super;
color: rgba(255,255,255,0.6);
margin-right: 0.25em;
}
.lp-pricing__amount sub {
font-size: 0.35em;
vertical-align: baseline;
font-family: var(--lp-font-body);
font-weight: 400;
color: rgba(255,255,255,0.5);
margin-left: 4px;
}
.lp-pricing__mention {
font-size: 14px;
color: rgba(255,255,255,0.5);
line-height: 1.5;
}
.lp-pricing__cta-block {
display: flex;
flex-direction: column;
gap: 24px;
}
.lp-pricing__items {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.lp-pricing__items li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 15px;
line-height: 1.5;
color: rgba(255,255,255,0.8);
}
.lp-pricing__items li svg {
flex-shrink: 0;
width: 18px;
height: 18px;
margin-top: 2px;
color: var(--lp-color-red);
}
.lp-pricing__scarcity {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,0.5);
padding: 12px 16px;
background: rgba(255,255,255,0.05);
border-radius: var(--lp-radius-sm);
border: 1px solid rgba(255,255,255,0.08);
}
.lp-pricing__scarcity svg {
width: 16px;
height: 16px;
color: #f59e0b;
flex-shrink: 0;
} .lp-cta__inner {
display: grid;
grid-template-columns: 1fr 480px;
grid-template-areas:
"content form"
"reassurance form";
gap: 40px 72px;
align-items: start;
}
.lp-cta__content { grid-area: content; }
.lp-cta__reassurance { grid-area: reassurance; }
.lp-cta__form-wrap { grid-area: form; }
.lp-section--cta .lp-tagline {
margin-bottom: 20px !important;
}
.lp-cta__h2 {
font-size: clamp(1.75rem, 2.6vw, 2.5rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.02em;
color: #fff;
margin: 0 0 24px !important;
}
.lp-cta__body {
font-size: 16px;
color: rgba(255,255,255,0.65);
line-height: 1.75;
margin: 0 0 32px !important;
max-width: 460px;
padding-bottom: 32px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-cta__reassurance {
display: flex;
flex-direction: column;
gap: 12px;
max-width: 460px;
}
.lp-cta__reassurance-item {
display: flex;
align-items: center;
gap: 14px;
font-size: 15px;
font-weight: 500;
line-height: 1.4;
color: rgba(255,255,255,0.88);
padding: 14px 18px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-cta__reassurance-item:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.16);
}
.lp-cta__reassurance-item svg {
width: 18px;
height: 18px;
flex-shrink: 0;
padding: 4px;
background: var(--lp-color-red);
color: #fff;
border-radius: 50%;
box-sizing: content-box;
} .lp-cta__form-wrap {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--lp-radius);
padding: clamp(28px, 4vw, 40px);
backdrop-filter: blur(8px);
box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
margin-bottom: 0;
}
.lp-cta__form-title {
font-family: var(--lp-font-body);
font-size: 18px;
font-weight: 700;
color: #fff;
margin: 0 0 32px;
padding-bottom: 32px;
border-bottom: 1px solid rgba(255,255,255,0.1);
} .lp-cta__form-wrap .wpcf7 input:not([type="submit"]),
.lp-cta__form-wrap .wpcf7 textarea,
.lp-cta__form-wrap .wpcf7 select {
width: 100%;
background: rgba(255,255,255,0.10) !important;
border: 1.5px solid rgba(255,255,255,0.28) !important;
border-radius: 10px !important;
color: #fff !important;
font-family: var(--lp-font-body) !important;
font-size: 15px !important;
padding: 14px 18px !important;
outline: none;
transition: border-color 0.2s ease, background 0.2s ease;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}
.lp-cta__form-wrap .wpcf7 input:not([type="submit"])::placeholder,
.lp-cta__form-wrap .wpcf7 textarea::placeholder {
color: rgba(255,255,255,0.45) !important;
}
.lp-cta__form-wrap .wpcf7 input:not([type="submit"]):focus,
.lp-cta__form-wrap .wpcf7 textarea:focus {
border-color: rgba(255,255,255,0.65) !important;
background: rgba(255,255,255,0.14) !important;
}
.lp-cta__form-wrap .wpcf7 input[type="submit"] {
width: 100% !important;
background-color: var(--lp-color-red) !important;
color: #fff !important;
font-family: var(--lp-font-body) !important;
font-size: 16px !important;
font-weight: 600 !important;
padding: 14px 24px !important;
border: none !important;
border-radius: 100px !important;
cursor: pointer !important;
box-shadow: 0 4px 14px rgba(159,43,44,0.28) !important;
transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}
.lp-cta__form-wrap .wpcf7 input[type="submit"]:hover {
background-color: #7e2222 !important;
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(159,43,44,0.38) !important;
}
.lp-cta__form-wrap .wpcf7 input[type="submit"]:active {
transform: scale(0.97);
box-shadow: 0 2px 8px rgba(159,43,44,0.25) !important;
} .lp-cta__form-wrap .wpcf7 .wpcf7-spinner {
background-color: rgba(255,255,255,0.2) !important;
}
.lp-cta__form-wrap .wpcf7 form.submitting input[type="submit"] {
opacity: 0.75;
pointer-events: none;
animation: lp-submit-pulse 1s ease-in-out infinite;
}
.lp-cta__form-wrap .wpcf7 form.sent input[type="submit"] {
background-color: #16a34a !important;
pointer-events: none;
animation: lp-submit-success 0.5s ease both;
}
@keyframes lp-submit-pulse {
0%, 100% { transform: scale(1); }
50%      { transform: scale(0.985); }
}
@keyframes lp-submit-success {
0%   { transform: scale(1); }
40%  { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(22,163,74,0.18) !important; }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22,163,74,0) !important; }
} .lp-cta__form-wrap .wpcf7 form .wpcf7-response-output {
margin: 20px 0 0 !important;
padding: 14px 18px !important;
border: none !important;
border-left: 3px solid currentColor !important;
border-radius: 10px !important;
font-size: 14px;
line-height: 1.5;
background: rgba(255,255,255,0.06);
color: rgba(255,255,255,0.92);
animation: lp-notif-in 0.35s ease both;
}
.lp-cta__form-wrap .wpcf7 form.sent .wpcf7-response-output {
color: #6ee7a7;
background: rgba(70,180,80,0.12);
}
.lp-cta__form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.lp-cta__form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
.lp-cta__form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
color: #ffb067;
background: rgba(255,176,103,0.12);
}
.lp-cta__form-wrap .wpcf7 form.failed .wpcf7-response-output,
.lp-cta__form-wrap .wpcf7 form.aborted .wpcf7-response-output,
.lp-cta__form-wrap .wpcf7 form.spam .wpcf7-response-output {
color: #ff8b8b;
background: rgba(255,90,90,0.12);
}
.lp-cta__form-wrap .wpcf7-not-valid-tip {
color: #ffb067 !important;
font-size: 13px !important;
margin-top: 6px !important;
}
@keyframes lp-notif-in {
from { opacity: 0; transform: translateY(-6px); }
to   { opacity: 1; transform: translateY(0); }
}
.lp-cta__form-wrap .wpcf7 label {
display: block;
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,0.6) !important;
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.05em;
} .lp-faq__h2 {
font-size: clamp(1.625rem, 3vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.lp-faq__lead {
font-size: 17px;
color: var(--lp-color-muted);
line-height: 1.6;
}
.lp-faq__list {
display: flex;
flex-direction: column;
gap: 0;
border-top: 1px solid rgba(35,36,37,0.1);
}
.lp-faq__item {
border-bottom: 1px solid rgba(35,36,37,0.1);
}
.lp-faq__item summary {
list-style: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 24px 0;
font-family: var(--lp-font-head);
font-size: clamp(0.9rem, 1.3vw, 1rem);
font-weight: 600;
color: var(--lp-color-dark);
transition: color 0.2s ease;
user-select: none;
}
.lp-faq__item summary::-webkit-details-marker {
display: none;
}
.lp-faq__item summary::after {
content: '';
display: block;
width: 20px;
height: 20px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23232425' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
flex-shrink: 0;
transition: transform 0.25s ease;
}
.lp-faq__item[open] summary::after {
transform: rotate(180deg);
}
.lp-faq__item[open] summary {
color: var(--lp-color-red);
}
.lp-faq__answer {
padding: 0 0 24px;
font-size: 15px;
line-height: 1.75;
color: var(--lp-color-muted);
max-width: 780px;
} @media (max-width: 1024px) {
.lp-hero__inner {
grid-template-columns: 1fr;
gap: 48px;
}
.lp-hero__card {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
}
.lp-hero__card-stat {
padding: 0 24px 0 0;
border-bottom: none;
border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-hero__card-stat:last-child {
border-right: none;
padding-right: 0;
padding-left: 24px;
}
.lp-hero__card-stat:nth-child(2) {
padding: 0 24px;
}
.lp-stats__grid {
grid-template-columns: repeat(2, 1fr);
}
.lp-stats__item {
border-left: none;
border-top: 1px solid rgba(35,36,37,0.1);
}
.lp-stats__item:nth-child(odd) {
border-left: none;
}
.lp-stats__item:nth-child(3),
.lp-stats__item:nth-child(4) {
border-top: 1px solid rgba(35,36,37,0.1);
}
.lp-problem__grid {
grid-template-columns: 1fr;
gap: 40px;
}
.lp-features__grid {
grid-template-columns: repeat(2, 1fr);
}
.lp-process__steps {
grid-template-columns: 1fr;
gap: 32px;
}
.lp-process__steps::before {
display: none;
}
.lp-testimonials__grid {
grid-template-columns: 1fr;
}
.lp-pricing__card {
grid-template-columns: 1fr;
gap: 40px;
}
.lp-cta__inner {
grid-template-columns: 1fr;
grid-template-areas:
"content"
"form"
"reassurance";
gap: 48px;
}
.lp-cta__reassurance {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.lp-hero {
min-height: auto;
padding-top: 25px;
padding-bottom: 60px;
}
.lp-hero__h1 {
font-size: clamp(1.75rem, 7vw, 2.25rem);
}
.lp-hero__card {
grid-template-columns: 1fr;
}
.lp-hero__card-stat {
padding: 0 0 20px;
border-right: none;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-hero__card-stat:last-child {
padding: 0;
border-bottom: none;
padding-left: 0;
}
.lp-hero__card-stat:nth-child(2) {
padding: 0 0 20px;
}
.lp-stats__grid {
grid-template-columns: repeat(2, 1fr);
}
.lp-stats__item {
border-top: 1px solid rgba(35,36,37,0.1);
border-left: none;
padding: 24px 16px;
}
.lp-stats__item:first-child,
.lp-stats__item:nth-child(2) {
border-top: none;
}
.lp-stats__item:nth-child(odd) {
border-left: none;
}
.lp-features__grid {
grid-template-columns: 1fr;
}
.lp-cta__inner {
display: flex;
flex-direction: column;
gap: 32px;
}
.lp-cta__content { order: 1; }
.lp-cta__form-wrap { order: 2; }
.lp-cta__reassurance {
order: 3;
grid-template-columns: 1fr;
gap: 10px;
}
.lp-faq__item summary {
font-size: 0.875rem;
padding: 20px 0;
}
.lp-pricing__card {
padding: 32px 24px;
}
}  #lp-cta-form {
scroll-margin-top: 24px;
}
@media (max-width: 768px) {
#lp-cta-form {
scroll-margin-top: 16px;
} .lp-hero__actions {
flex-direction: column;
width: 100%;
gap: 12px;
}
.lp-hero__actions .lp-btn {
width: 100%;
justify-content: center;
padding: 16px 24px;
font-size: 16px;
}
.lp-hero__h1 {
line-height: 1.1;
margin-bottom: 20px;
}
.lp-hero__lead {
font-size: 15px;
line-height: 1.6;
} .lp-section {
padding-top: 60px;
padding-bottom: 60px;
} .lp-section-header--center {
text-align: left;
} .lp-problem__h2,
.lp-features__h2,
.lp-process__h2,
.lp-testimonials__h2,
.lp-pricing__h2,
.lp-cta__h2,
.lp-faq__h2 {
font-size: clamp(1.5rem, 6vw, 2rem) !important;
} .lp-features__card {
padding: 24px 20px;
} .lp-pricing__card .lp-pricing__amount {
font-size: clamp(2.75rem, 12vw, 4rem) !important;
line-height: 1 !important;
word-break: keep-all;
white-space: nowrap;
}
.lp-pricing__card .lp-btn {
width: 100%;
justify-content: center;
} .lp-process__steps {
gap: 16px;
}
.lp-process__step {
gap: 14px;
padding: 22px 20px;
background: rgba(255,255,255,0.035);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
}
.lp-process__step:not(:last-child)::after {
display: none;
}
.lp-process__step-num {
width: 40px;
height: 40px;
font-size: 14px;
}
.lp-process__step-h3 {
font-size: 18px;
}
.lp-process__step-body {
font-size: 14px;
line-height: 1.6;
}
.lp-process__step-duration {
font-size: 12px;
padding: 10px 18px !important;
} .lp-cta__form-wrap {
padding: 24px 20px;
margin-bottom: 0;
}
.lp-cta__form-title {
font-size: 16px;
margin: 0 0 20px;
padding-bottom: 20px;
}
.lp-cta__form-wrap .wpcf7 input[type="submit"] {
padding: 18px 24px !important;
font-size: 17px !important;
}
.lp-cta__form-wrap .wpcf7 input:not([type="submit"]),
.lp-cta__form-wrap .wpcf7 textarea {
padding: 16px 18px !important;
font-size: 16px !important; } .lp-section--cta .lp-tagline,
.lp-problem__grid .lp-tagline {
margin-bottom: 16px !important;
}
.lp-cta__h2 {
margin: 0 0 28px !important;
}
.lp-cta__body {
margin: 0 0 24px !important;
padding-bottom: 24px;
font-size: 14px;
} .lp-cta__reassurance-item {
padding: 11px 14px !important;
font-size: 13.5px !important;
gap: 10px;
}
.lp-cta__reassurance-item svg {
width: 14px;
height: 14px;
padding: 3px;
}
.lp-problem__h2 {
margin: 0 0 20px !important;
}
.lp-problem__body {
margin-bottom: 24px;
padding-bottom: 24px;
font-size: 14px;
} .lp-problem__list {
gap: 10px;
}
.lp-problem__list li {
align-items: center;
gap: 12px;
padding: 14px 14px;
background: rgba(35,36,37,0.03);
border: 1px solid rgba(35,36,37,0.08);
border-radius: 12px;
font-size: 14px;
line-height: 1.45;
color: var(--lp-color-text);
}
.lp-problem__list li svg {
width: 14px;
height: 14px;
margin-top: 0;
padding: 5px;
background: var(--lp-color-red);
color: #fff;
border-radius: 50%;
box-sizing: content-box;
} .lp-faq__item summary {
padding: 22px 0;
font-size: 15px !important;
} .lp-hero__h1 {
word-wrap: break-word;
overflow-wrap: break-word;
}
} @media (max-width: 768px) {
.lp-stats__grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 4px !important;
}
.lp-stats__item {
padding: 24px 16px !important;
border-left: none !important;
border-top: 1px solid rgba(35,36,37,0.1) !important;
gap: 8px !important;
}
.lp-stats__item:first-child,
.lp-stats__item:nth-child(2) {
border-top: none !important;
}
.lp-stats__value {
font-size: clamp(1.875rem, 8vw, 2.5rem) !important;
}
.lp-stats__label {
font-size: 12px !important;
line-height: 1.4 !important;
}
} @media (max-width: 420px) {
.lp-stats__grid {
grid-template-columns: 1fr !important;
gap: 0 !important;
}
.lp-stats__item {
padding: 24px 0 !important;
border-top: 1px solid rgba(35,36,37,0.1) !important;
border-left: none !important;
flex-direction: row !important;
align-items: center !important;
gap: 20px !important;
}
.lp-stats__item::before {
display: none !important;
}
.lp-stats__item:first-child {
border-top: none !important;
}
.lp-stats__value {
font-size: 2.5rem !important;
flex-shrink: 0;
width: 140px;
color: var(--lp-color-red) !important;
}
.lp-stats__label {
flex: 1;
}
.lp-stats__value em {
color: var(--lp-color-red) !important;
}
.lp-stats__label {
font-size: 14px !important;
line-height: 1.45 !important;
}
.lp-hero__card-stat-value {
font-size: 2rem;
}
.lp-cta__reassurance {
gap: 12px !important;
}
}