.landing-header-cta {
display: inline-flex;
align-items: center;
padding: .4rem .75rem;
font-size: .75rem;
font-weight: 700;
color: #fff;
background: linear-gradient(180deg, #f97316, var(--app-accent));
border-radius: 8px;
text-decoration: none;
box-shadow: 0 2px 8px rgba(234,88,12,.25);
white-space: nowrap;
}
.landing-hero {
text-align: center;
padding: 2rem 0 1.5rem;
max-width: 42rem;
margin: 0 auto;
}
.landing-badge {
display: inline-flex;
align-items: center;
gap: .35rem;
margin-bottom: .85rem;
padding: .3rem .65rem;
font-size: .6875rem;
font-weight: 800;
letter-spacing: .04em;
text-transform: uppercase;
color: #166534;
background: #ecfdf5;
border: 1px solid #86efac;
border-radius: 999px;
}
.landing-title {
font-size: clamp(1.65rem, 5vw, 2.35rem);
font-weight: 800;
color: #9a3412;
margin: 0 0 .75rem;
letter-spacing: -.03em;
line-height: 1.15;
}
.landing-lead {
font-size: 1rem;
color: var(--app-text-secondary);
margin: 0 auto;
max-width: 36rem;
line-height: 1.6;
}
.landing-lead strong { color: var(--app-text); font-weight: 700; }
.landing-actions {
display: flex;
flex-direction: column;
gap: .55rem;
margin-top: 1.35rem;
max-width: 22rem;
margin-left: auto;
margin-right: auto;
}
.landing-btn-primary,
.landing-btn-secondary {
display: flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: .75rem 1.1rem;
font-size: .9375rem;
font-weight: 700;
border-radius: var(--app-radius-sm);
text-decoration: none;
border: none;
cursor: pointer;
}
.landing-btn-primary {
color: #fff;
background: linear-gradient(180deg, #f97316, var(--app-accent));
box-shadow: 0 4px 14px rgba(234,88,12,.28);
}
.landing-btn-secondary {
color: #9a3412;
background: #fff7ed;
border: 1px solid #fed7aa;
}
.landing-section {
margin-top: 2.5rem;
}
.landing-section__head {
text-align: center;
max-width: 36rem;
margin: 0 auto 1.25rem;
}
.landing-section__title {
margin: 0 0 .45rem;
font-size: 1.25rem;
font-weight: 800;
color: var(--app-accent-dark);
letter-spacing: -.02em;
}
.landing-section__desc {
margin: 0;
font-size: .875rem;
color: var(--app-text-secondary);
line-height: 1.55;
}
.landing-features {
display: grid;
grid-template-columns: 1fr;
gap: .65rem;
}
@media (min-width: 640px) {
.landing-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
.landing-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.landing-feature {
background: var(--app-surface);
border: 1px solid var(--app-border);
border-radius: var(--app-radius);
padding: 1rem .95rem;
box-shadow: var(--app-shadow);
}
.landing-feature__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.25rem;
height: 2.25rem;
margin-bottom: .55rem;
border-radius: 10px;
background: #fff7ed;
color: #c2410c;
font-size: .75rem;
font-weight: 800;
letter-spacing: .02em;
}
.landing-feature__title {
margin: 0 0 .3rem;
font-size: .9375rem;
font-weight: 700;
color: var(--app-text);
}
.landing-feature__text {
margin: 0;
font-size: .8125rem;
color: var(--app-text-secondary);
line-height: 1.5;
}
.landing-steps {
display: grid;
grid-template-columns: 1fr;
gap: .65rem;
counter-reset: step;
}
@media (min-width: 768px) {
.landing-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.landing-step {
position: relative;
background: linear-gradient(180deg, #fff7ed, #fff);
border: 1px solid #fed7aa;
border-radius: var(--app-radius);
padding: 1rem .95rem 1rem 3.25rem;
}
.landing-step::before {
counter-increment: step;
content: counter(step);
position: absolute;
left: .95rem;
top: 1rem;
width: 1.75rem;
height: 1.75rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: var(--app-accent);
color: #fff;
font-size: .8125rem;
font-weight: 800;
}
.landing-step__title {
margin: 0 0 .25rem;
font-size: .9375rem;
font-weight: 700;
}
.landing-step__text {
margin: 0;
font-size: .8125rem;
color: var(--app-text-secondary);
line-height: 1.5;
}
.landing-seo {
margin-top: 2.5rem;
padding: 1.25rem 1rem;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: var(--app-radius);
}
.landing-seo h2 {
margin: 0 0 .65rem;
font-size: 1.0625rem;
font-weight: 800;
color: #1e293b;
}
.landing-seo p {
margin: 0 0 .65rem;
font-size: .875rem;
color: #475569;
line-height: 1.65;
}
.landing-seo p:last-child { margin-bottom: 0; }
.landing-cta {
margin: 2.5rem 0 1rem;
text-align: center;
padding: 1.5rem 1rem;
background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
border: 1px solid #fed7aa;
border-radius: var(--app-radius);
}
.landing-cta__title {
margin: 0 0 .4rem;
font-size: 1.125rem;
font-weight: 800;
color: #9a3412;
}
.landing-cta__text {
margin: 0 auto .95rem;
max-width: 28rem;
font-size: .875rem;
color: #7c2d12;
line-height: 1.55;
}
.landing-footer {
text-align: center;
padding: 1rem 0 0;
font-size: .75rem;
color: var(--app-text-secondary);
}
