:root {
    --primary-green: #0fa46c;
    --dark-green: #067b52;
    --light-green: #ecfff6;
    --text-dark: #0b0f0c;
    --text-gray: #5f6b66;
    --bg-light: #fff;
    --bg-gray: #f6f7f9;
    --border-dark: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Minimal Header ── */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.lp-header__logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.lp-header__logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary-green);
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-white:hover {
    background: var(--light-green);
    transform: translateY(-1px);
}

/* ── Hero ── */
.lp-hero {
    background: radial-gradient(1200px 500px at 10% 0%, #eafff3 0%, transparent 60%), linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    padding: 80px 0 70px;
}

.lp-hero__eyebrow {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.lp-hero h1 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lp-hero h1 .highlight {
    color: var(--primary-green);
}

.lp-hero__sub {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.lp-hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-hero__note {
    font-size: 13px;
    color: var(--text-gray);
}

.lp-hero__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.lp-hero__badge {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ── Problem Section ── */
.lp-problem {
    background: var(--bg-gray);
    padding: 80px 0;
}

.section-eyebrow {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.lp-problem h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 48px;
    max-width: 640px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.problem-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.problem-card img {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Content Block ── */
.lp-content {
    padding: 80px 0;
}

.lp-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 48px;
}

.lp-content h2:first-child {
    margin-top: 0;
}

.lp-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--text-dark);
}

.lp-content p {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.lp-content ul {
    margin: 8px 0 20px 20px;
}

.lp-content li {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.lp-content li strong {
    color: var(--text-dark);
}

.lp-content__highlight {
    background: var(--light-green);
    border-left: 4px solid var(--primary-green);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.lp-content__highlight p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* ── Offer Card ── */
.lp-offer {
    background: var(--bg-gray);
    padding: 80px 0;
}

.lp-offer h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 36px;
    text-align: center;
}

.offer-card {
    background: white;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(15, 164, 108, 0.1);
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.offer-features {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

/* ── FAQ ── */
.lp-faq {
    padding: 80px 0;
}

.lp-faq h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item summary {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-green);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 0 22px 0;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* ── CTA Section ── */
.lp-cta {
    background: linear-gradient(135deg, #0b0f0c 0%, #1a2e23 100%);
    padding: 80px 0;
    text-align: center;
}

.lp-cta h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.lp-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta__note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Footer (shared with legal.css) ── */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .lp-hero { padding: 56px 0 52px; }
    .lp-hero__cta { flex-direction: column; align-items: flex-start; }
    .btn-primary { width: 100%; text-align: center; }
    .lp-problem { padding: 56px 0; }
    .lp-content { padding: 56px 0; }
    .lp-offer { padding: 56px 0; }
    .offer-card { padding: 32px 24px; }
    .lp-faq { padding: 56px 0; }
    .lp-cta { padding: 60px 0; }
    .btn-white { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .lp-header__logo span { font-size: 16px; }
    .btn-primary { padding: 14px 20px; font-size: 15px; }
}
