:root {
    --bg: #fff9f5;
    --bg-soft: #fff5ef;
    --card: #ffffff;
    --card-soft: #fff1e8;
    --accent: #ff7a59;
    --accent-2: #f8b26a;
    --text: #2b1a17;
    --muted: #8d6f64;
    --border: rgba(235, 170, 140, 0.55);
    --shadow: 0 24px 60px rgba(255, 122, 89, 0.18);
    --gradient: radial-gradient(circle at 20% 20%, rgba(255, 154, 118, 0.2), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(248, 178, 106, 0.25), transparent 60%),
                linear-gradient(180deg, #fff9f5 0%, #ffe9dc 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


.hero {
    position: relative;
    padding: 2rem clamp(1.5rem, 5vw, 4rem) 2.75rem;
    background: var(--gradient);
    overflow: hidden;
    color: var(--text);
}

.nav,
.hero-content {
    width: min(1200px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8f3a1c;
    margin: 0 0 0.35rem;
    font-weight: 600;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.spots {
    color: var(--muted);
    font-size: 0.95rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.1;
    margin: 1rem 0;
    color: #1b0a05;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.82);
    padding: 0.85rem 1.15rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(255, 138, 103, 0.35);
    display: inline-block;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 154, 118, 0.45), transparent 75%);
    filter: blur(90px);
    z-index: 0;
}

main {
    padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section {
    margin: 5rem auto;
    width: min(1200px, 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-2);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0.6rem 0 1rem;
}

.lead {
    color: var(--muted);
}

.problem-list {
    padding: 2rem;
    border-radius: 1.2rem;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.problem-list ul {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
    color: var(--muted);
}

.problem-list li {
    margin-bottom: 0.75rem;
}

.problem-list .highlight {
    color: var(--accent);
    font-weight: 600;
}

.solution-panel {
    display: flex;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.solution-card {
    width: 100%;
    max-width: 900px;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 210, 182, 0.95), rgba(255, 255, 255, 0.98));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.solution-card h3 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
}

.solution-card ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
}

.solution-card li {
    margin-bottom: 0.85rem;
}

.solution-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.carousel {
    position: relative;
    background: var(--card);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-card {
    flex: 0 0 100%;
    padding: 2rem;
}

.carousel-card h3 {
    margin: 0 0 0.5rem;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    pointer-events: all;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
}


.guarantee-card {
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 520px;
    padding: 3rem;
    border-radius: 1.5rem;
    background: linear-gradient(150deg, rgba(95, 59, 255, 0.15), rgba(255, 255, 255, 0.95));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.pricing-card ul {
    color: var(--muted);
    padding-left: 1rem;
}

.pricing-card li {
    margin-bottom: 0.6rem;
}

.note {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 1.5rem 0;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.timeline-item {
    padding: 2rem;
    border-radius: 1.2rem;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow);
}

.badge {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--muted);
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.cta-card {
    text-align: center;
    padding: 3rem;
    border-radius: 1.5rem;
    background: linear-gradient(120deg, rgba(255, 122, 89, 0.15), rgba(248, 178, 106, 0.35));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.footer {
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.05);
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn.primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #fff;
}

.btn.primary:hover {
    opacity: 0.9;
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn.ghost:hover {
    border-color: var(--accent);
}

@media (max-width: 640px) {
    .hero {
        padding-top: 1.5rem;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card,
    .guarantee-card,
    .cta-card {
        padding: 2rem;
    }
}
