.home-page {
    --ink: #0f0826;
    --muted: #6b5e8e;
    --soft: #f9f8ff;
    --line: #eeeaf8;
    --purple: #5946d2;
    --purple-light: #7c5ffa;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    color: var(--ink);
    background: white;
}

.hero-section {
    position: relative;
    min-height: min(600px, calc(92vh - 68px));
    overflow: hidden;
    background: linear-gradient(135deg, #0f0826 0%, #1e0a4a 40%, #2d1472 100%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-section::before {
    width: 520px;
    height: 520px;
    top: -170px;
    right: -150px;
    background: radial-gradient(circle, rgba(124, 95, 250, 0.28) 0%, transparent 70%);
}

.hero-section::after {
    width: 360px;
    height: 360px;
    bottom: -90px;
    left: -90px;
    background: radial-gradient(circle, rgba(255, 75, 75, 0.2) 0%, transparent 70%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 28px 88px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 36px;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.rating-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 16px;
    margin-bottom: 30px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    font-size: 0.78rem;
    font-weight: 600;
}

.stars,
.testimonial-stars {
    color: #ffc800;
    letter-spacing: 0;
}

.hero-copy h1 {
    margin: 0 0 22px;
    color: white;
    font-size: clamp(2.65rem, 6vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero-copy h1 span,
.stats-grid strong {
    background: linear-gradient(90deg, #ff4b4b, #ffc800, #58cc02);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 540px;
    margin: 0 0 36px;
    color: #c4b8e8;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.store-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.store-button-light {
    color: var(--ink);
    background: white;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.store-button-glass {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
}

.store-icon {
    font-size: 1.45rem;
    line-height: 1;
}

.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    inset: 8%;
    border-radius: 32px;
    filter: blur(44px);
    opacity: 0.5;
    background: linear-gradient(136deg, #ff4b4b 0%, #ffc800 50%, #58cc02 100%);
}

.hero-art img {
    position: relative;
    width: min(100%, 660px);
    max-height: 85vh;
    object-fit: contain;
    border-radius: 32px;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
}

.wave-divider {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    fill: var(--soft);
}

.stats-section,
.journey-section {
    background: var(--soft);
}

.stats-grid {
    max-width: 960px;
    margin: 0 auto;
    padding: 52px 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.learn-intro,
.testimonial-section {
    padding: 80px 28px;
    background: white;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2,
.marketing-copy h2,
.final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    line-height: 1.16;
    font-weight: 800;
}

.section-heading p,
.marketing-copy p,
.final-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #c9b8ff;
    box-shadow: 0 24px 60px rgba(45, 20, 114, 0.14);
}

.feature-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
}

.feature-red .feature-image::after { background: linear-gradient(135deg, #ff4b4b, #ffc800); }
.feature-yellow .feature-image::after { background: linear-gradient(135deg, #ffc800, #58cc02); }
.feature-green .feature-image::after { background: linear-gradient(135deg, #58cc02, #5946d2); }
.feature-purple .feature-image::after { background: linear-gradient(135deg, #5946d2, #ff4b4b); }

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-body {
    padding: 24px;
}

.feature-body h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
}

.feature-body p {
    min-height: 112px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-body span {
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 800;
}

.marketing-block {
    padding: 80px max(28px, calc((100vw - 1120px) / 2));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.marketing-block.tint {
    background: var(--soft);
}

.marketing-block.reverse .marketing-copy {
    order: 2;
}

.marketing-copy span {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.marketing-copy::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 30px;
    border-radius: 999px;
    background: var(--accent, #5946d2);
}

.phone-shot {
    position: relative;
    width: clamp(220px, 30vw, 300px);
    margin: 0 auto;
}

.phone-shot-small {
    width: clamp(150px, 20vw, 230px);
}

.phone-shot-glow {
    position: absolute;
    inset: -22px;
    border-radius: 48px;
    background: var(--phone-accent);
    opacity: 0.24;
    filter: blur(28px);
}

.phone-shot img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 38px;
    box-shadow: 0 34px 70px -22px color-mix(in srgb, var(--phone-accent) 35%, black);
}

.showcase-section {
    padding: 92px 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0826 0%, #1e0a4a 40%, #2d1472 100%);
}

.section-heading.dark h2 {
    color: white;
}

.section-heading.dark p {
    color: #c4b8e8;
}

.phone-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(18px, 4vw, 44px);
}

.phone-row .phone-shot-small {
    margin-bottom: 42px;
}

.journey-section {
    padding: 80px 28px;
}

.steps-grid,
.testimonial-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    border-color: #c9b8ff;
    box-shadow: 0 16px 36px rgba(45, 20, 114, 0.08);
}

.step-number {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 16px;
    background: linear-gradient(135deg, #5946d2 0%, #7c5ffa 100%);
    font-weight: 800;
}

.step-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonial-card {
    padding: 30px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.testimonial-card p {
    min-height: 150px;
    margin: 16px 0 24px;
    color: #3d3855;
    line-height: 1.7;
}

.testimonial-person {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-person > div {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 50%;
    background: linear-gradient(136deg, #ff4b4b 15%, #ffc800 50%, #58cc02 85%);
    font-weight: 800;
}

.testimonial-person span {
    display: grid;
}

.testimonial-person strong {
    color: var(--ink);
    font-size: 0.9rem;
}

.testimonial-person small {
    color: #a89ec9;
    font-size: 0.75rem;
}

.final-cta {
    padding: 80px 28px;
    background: white;
}

.final-cta > div {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    padding: 76px 32px;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(135deg, #0f0826 0%, #2d1472 50%, #1a0050 100%);
}

.final-cta > div::before,
.final-cta > div::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    opacity: 0.28;
}

.final-cta > div::before {
    top: -90px;
    right: -70px;
    background: radial-gradient(circle, #58cc02 0%, transparent 70%);
}

.final-cta > div::after {
    bottom: -90px;
    left: -70px;
    background: radial-gradient(circle, #ff4b4b 0%, transparent 70%);
}

.final-cta h2,
.final-cta p,
.final-cta a {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    max-width: 580px;
    margin: 0 auto 34px;
    color: #c4b8e8;
}

.final-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 15px 28px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 16px;
    background: linear-gradient(136deg, #ff4b4b 0%, #ffc800 50%, #58cc02 100%);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

@media (max-width: 980px) {
    .hero-shell,
    .marketing-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy,
    .marketing-copy {
        text-align: center;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .marketing-block.reverse .marketing-copy {
        order: 0;
    }

    .marketing-copy::after {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .hero-shell {
        padding-top: 56px;
    }

    .stats-grid,
    .feature-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .store-button {
        width: 100%;
    }

    .phone-row {
        gap: 10px;
    }

    .phone-row .phone-shot {
        width: 36vw;
    }

    .phone-row .phone-shot-small {
        margin-bottom: 24px;
    }

    .feature-body p,
    .testimonial-card p {
        min-height: 0;
    }
}
