:root{
    --purple:#2d006b;
    --purple-2:#5e17c9;
    --purple-3:#7b3ee6;
    --yellow:#ffcc29;
    --cream:#fffaf0;
    --soft:#f4eefc;
    --text:#1f1f2e;
    --muted:#55586a;
    --border:#eadfff;
    --shadow:0 22px 60px rgba(45,0,107,0.15);
}

*{box-sizing:border-box;}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#eee8f6;
    color:var(--text);
    line-height:1.65;
}

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

.page-wrap{
    max-width:1180px;
    margin:32px auto;
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(45,0,107,0.08);
}

.hero{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    min-height:620px;
    background:linear-gradient(135deg,var(--purple),var(--purple-2));
    color:#fff;
}

.hero-copy{
    padding:64px 54px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-image{
    flex:1;
    min-height:620px;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.eyebrow,
.kicker{
    display:inline-block;
    background:var(--yellow);
    color:#201337;
    font-weight:800;
    border-radius:999px;
    padding:9px 15px;
    font-size:14px;
    letter-spacing:.01em;
    margin-bottom:18px;
}

.kicker{
    background:#f2e8ff;
    color:var(--purple);
}

.hero h1{
    font-size:72px;
    line-height:.98;
    margin:0 0 24px;
    letter-spacing:-2px;
}

.hero p{
    font-size:24px;
    color:#f2eaff;
    max-width:560px;
    margin:0;
}

.hero-actions,
.button-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 24px;
    border-radius:14px;
    text-decoration:none;
    font-weight:800;
    font-size:16px;
    transition:.2s ease;
    border:2px solid transparent;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-yellow{
    background:var(--yellow);
    color:#1f1632;
}

.btn-yellow:hover{
    background:#ffda57;
}

.btn-white{
    background:#fff;
    color:var(--purple);
}

.btn-purple{
    background:var(--purple-2);
    color:#fff;
}

.btn-purple:hover{
    background:var(--purple-3);
}

.ref-note{
    font-size:14px;
    color:#e9dbff;
    margin-top:16px;
}

.ref-note.dark{
    color:#6a6375;
}

main{
    background:#fff;
}

section{
    padding:72px 54px;
}

.section-heading{
    max-width:900px;
    margin-bottom:34px;
}

.section-heading.centered{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

h2{
    font-size:44px;
    line-height:1.12;
    margin:0 0 18px;
    color:var(--purple);
    letter-spacing:-1px;
}

h3{
    color:var(--purple);
    font-size:25px;
    line-height:1.2;
    margin:0 0 12px;
}

p{
    font-size:18px;
    color:var(--muted);
    margin-top:0;
}

.intro{
    font-size:20px;
}

.two-column{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:34px;
    align-items:start;
}

.highlight-box,
.cost-card{
    background:#fff6d9;
    border-left:7px solid var(--yellow);
    border-radius:18px;
    padding:28px;
    box-shadow:0 12px 34px rgba(255,204,41,0.18);
}

.highlight-box h3,
.cost-card h2{
    color:#3d2c00;
}

.split-feature{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:center;
    background:#fbf8ff;
}

.split-feature.reverse{
    background:#fff;
}

.feature-image img,
.wide-image-panel img{
    width:100%;
    border-radius:26px;
    box-shadow:0 20px 48px rgba(45,0,107,0.16);
}

.feature-copy p{
    font-size:18px;
}

.benefits-section{
    background:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:34px;
}

.benefit-card{
    background:#faf8ff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:0 10px 30px rgba(45,0,107,0.06);
}

.icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--purple),var(--purple-2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    margin-bottom:18px;
}

.wide-image-panel{
    padding:0;
    background:#fff;
}

.wide-image-panel img{
    border-radius:0;
    box-shadow:none;
}

.story-section{
    background:#fff;
}

.story-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.story-card{
    background:#faf8fd;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:0 10px 30px rgba(45,0,107,0.06);
    transition:.2s ease;
}

.story-card:hover{
    transform:translateY(-4px);
}

.story-card p{
    min-height:110px;
    font-size:16px;
}

.story-card a{
    color:var(--purple-2);
    font-weight:800;
    text-decoration:none;
}

.soft-panel{
    background:#fbf8ff;
}

.yellow-panel{
    background:#fffaf0;
}

.cost-section{
    background:#fff;
}

.cost-card{
    max-width:920px;
    margin:0 auto;
}

.final-cta{
    text-align:center;
    background:linear-gradient(135deg,var(--purple),var(--purple-2));
    color:#fff;
}

.final-cta h2{
    color:#fff;
}

.final-cta p{
    color:#f1eaff;
    max-width:780px;
    margin-left:auto;
    margin-right:auto;
}

.centered-actions{
    justify-content:center;
}

.site-footer{
    background:#f4eefc;
    padding:34px 54px;
    border-top:1px solid #e6d9ff;
}

.site-footer p{
    font-size:14px;
    color:#666;
    margin:0 0 10px;
}

.site-footer strong{
    color:var(--purple);
}

.private-page{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#2d006b,#5e17c9);
    color:white;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
    text-align:center;
}

.private-box{
    max-width:720px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:28px;
    padding:52px;
    box-shadow:0 20px 50px rgba(0,0,0,0.32);
}

.private-box h1{
    font-size:52px;
    margin:0 0 18px;
}

.private-box p{
    color:#f1eaff;
    font-size:20px;
}

.private-small{
    margin-top:28px;
    color:#d8c7f5;
    font-size:14px;
}

@media(max-width:980px){
    .hero,
    .split-feature,
    .split-feature.reverse,
    .two-column{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:auto;
    }

    .hero-copy{
        padding:50px 36px;
    }

    .hero-image img{
        max-height:480px;
    }

    .benefit-grid,
    .story-grid{
        grid-template-columns:repeat(2,1fr);
    }

    section{
        padding:56px 36px;
    }
}

@media(max-width:680px){
    .page-wrap{
        margin:0;
        border-radius:0;
    }

    .hero h1{
        font-size:50px;
    }

    .hero p{
        font-size:20px;
    }

    h2{
        font-size:34px;
    }

    .benefit-grid,
    .story-grid{
        grid-template-columns:1fr;
    }

    .btn{
        width:100%;
    }

    .hero-actions,
    .button-row{
        gap:10px;
    }

    section,
    .content,
    .site-footer{
        padding-left:24px;
        padding-right:24px;
    }

    .private-box{
        padding:34px 24px;
    }

    .private-box h1{
        font-size:40px;
    }
}
