/* ============================================================
   Prospective page redesign — friendly, modern app-product look.
   Scoped under .prospective-redesign so shared classes keep their
   original styling on Index / Ambassadors / Universities.

   Direction: clean white sections, Roboto throughout, soft rounded
   cards, and the brand blue->violet gradient (matching the hero)
   used for the punchy CTA moments. No serif, no dark magazine vibe.
   ============================================================ */

.prospective-redesign {
    --ink: #16182E;
    --muted: #5C6173;
    --blue: #2559EB;
    --violet: #6F33EA;
    --grad: linear-gradient(120deg, #2559EB 0%, #6F33EA 100%);
    --mint: #CFEFDB;
    --tint: #F3F6FF;
    --card: #ffffff;
    --line: rgba(37, 89, 235, 0.12);
    --shadow: 0 12px 34px rgba(22, 24, 46, 0.06);
    --shadow-hover: 0 22px 50px rgba(37, 89, 235, 0.16);
    --sans: "Roboto", system-ui, sans-serif;
}

/* ---------- Scroll reveal (safe: only hides once JS adds class) ---------- */
.prospective-redesign.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.prospective-redesign.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .prospective-redesign.reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Section heading system ---------- */
.prospective-redesign .section-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-align: center;
}

/* short gradient accent bar centered above every section title */
.prospective-redesign .section-title::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 4px;
    background: var(--grad);
    margin: 0 auto 22px;
}

.prospective-redesign .section-description {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    text-align: center;
}

/* ---------- Reusable soft card ---------- */
.prospective-redesign .feature-card,
.prospective-redesign .solution-item,
.prospective-redesign .pain-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease, border-color 0.35s ease;
}

.prospective-redesign .feature-card:hover,
.prospective-redesign .solution-item:hover,
.prospective-redesign .pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 89, 235, 0.25);
    background: var(--card);
}

/* ============================================================
   1. FEATURES — "Why Choose Skhozy?" : 3 friendly cards
   ============================================================ */
.prospective-redesign .features {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .features-split {
    max-width: 1140px;
    margin: 0 auto;
}

.prospective-redesign .features-head {
    text-align: center;
    max-width: 30ch;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.prospective-redesign .features-head .section-title {
    margin: 0;
}

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

.prospective-redesign .feature-card {
    padding: 38px 32px;
}

/* a small gradient pill accent at the top of each card */
.prospective-redesign .feature-card .feature-title::before {
    content: "";
    display: block;
    width: 44px;
    height: 6px;
    border-radius: 6px;
    background: var(--grad);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.prospective-redesign .feature-card:hover .feature-title::before {
    width: 72px;
}

.prospective-redesign .feature-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
}

.prospective-redesign .feature-description {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* ============================================================
   2. BENEFITS — ticked grid inside a soft panel + free banner
   ============================================================ */
.prospective-redesign .benefits {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .benefits-content {
    display: block;
    max-width: 960px;
    margin: 0 auto;
}

.prospective-redesign .benefits .section-title {
    max-width: 18ch;
    margin: 0 auto;
}

.prospective-redesign .benefits-list {
    list-style: none;
    margin: 44px 0 0;
    padding: clamp(28px, 4vw, 44px);
    background: var(--tint);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
}

.prospective-redesign .benefit-item {
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: 1.06rem;
    color: var(--ink);
}

.prospective-redesign .benefit-item .checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--grad);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(37, 89, 235, 0.28);
}

/* "it's free" — friendly gradient banner */
.prospective-redesign .free-highlight {
    background: var(--grad);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(37, 89, 235, 0.22);
    margin-top: 28px;
    padding: 30px 28px;
    text-align: center;
}

.prospective-redesign .free-message {
    font-family: var(--sans);
    font-weight: 500;
    color: #fff;
    font-size: clamp(1.2rem, 0.9rem + 1vw, 1.6rem);
    line-height: 1.4;
    margin: 0;
}

.prospective-redesign .free-message strong {
    font-weight: 700;
    color: var(--mint);
}

/* ============================================================
   3 + 7b. CTA bands / cards — brand gradient (matches hero)
   ============================================================ */
.prospective-redesign .cta-section {
    background: #fff;
    padding: clamp(28px, 3.5vw, 52px) 20px;
}

.prospective-redesign .cta-card {
    position: relative;
    overflow: hidden;
    background: var(--grad);
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(37, 89, 235, 0.28);
    max-width: 960px;
    padding: clamp(48px, 6vw, 76px) clamp(28px, 5vw, 60px);
    text-align: center;
}

/* soft mint glow echoing the hero */
.prospective-redesign .cta-card::before,
.prospective-redesign .cta-card-secondary::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: -220px;
    background: radial-gradient(circle, rgba(207, 239, 219, 0.45), transparent 65%);
    pointer-events: none;
}

.prospective-redesign .cta-title {
    position: relative;
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #fff;
}

.prospective-redesign .cta-description {
    position: relative;
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    line-height: 1.7;
}

.prospective-redesign .cta-note {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   4. PAIN POINTS — light cards with a gradient left edge
   ============================================================ */
.prospective-redesign .prospective-student-pain {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .pain-header .eyebrow {
    font-family: var(--sans);
    color: var(--violet);
}

.prospective-redesign .pain-header .section-title {
    margin-bottom: 18px;
}

.prospective-redesign .pain-intro {
    font-family: var(--sans);
    color: var(--muted);
}

.prospective-redesign .pain-card {
    position: relative;
    padding: 34px 30px 30px 36px;
    overflow: hidden;
}

.prospective-redesign .pain-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--grad);
}

.prospective-redesign .pain-card h3 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--ink);
    display: block;
    min-height: 0;
    margin-bottom: 14px;
}

.prospective-redesign .pain-card p {
    font-family: var(--sans);
    color: var(--muted);
    min-height: 0;
    line-height: 1.7;
}

/* ============================================================
   5. STORY — friendly gradient highlight card
   ============================================================ */
.prospective-redesign .story-section {
    background: #fff;
    padding: clamp(28px, 3.5vw, 52px) 20px;
}

.prospective-redesign .story-content {
    max-width: 960px;
}

.prospective-redesign .story-intro {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--violet);
    margin-bottom: 22px;
}

.prospective-redesign .story-narrative {
    background: var(--grad);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(37, 89, 235, 0.24);
    padding: clamp(40px, 5vw, 64px);
}

.prospective-redesign .story-text {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(1.3rem, 0.9rem + 1.6vw, 2rem);
    line-height: 1.4;
    color: #fff;
}

.prospective-redesign .story-text strong {
    font-weight: 700;
    color: var(--mint);
}

/* ============================================================
   6. SOLUTIONS — 3-up grid of friendly cards
   ============================================================ */
.prospective-redesign .solutions-section {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .solutions-grid {
    gap: 24px;
    margin-top: 14px;
}

.prospective-redesign .solution-item {
    padding: 34px 30px;
}

.prospective-redesign .solution-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 14px;
    padding-bottom: 14px;
    position: relative;
}

.prospective-redesign .solution-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: var(--grad);
    transition: width 0.35s ease;
}

.prospective-redesign .solution-item:hover .solution-title::after {
    width: 64px;
}

.prospective-redesign .solution-description {
    font-family: var(--sans);
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   7. SHOWCASE — screenshot + feature list + gradient CTA card
   ============================================================ */
.prospective-redesign .cta-showcase {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .cta-app-screenshot {
    
}

.prospective-redesign .cta-list-item {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
    padding: 22px 24px;
    background: var(--tint);
    border: 1px solid transparent;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.prospective-redesign .cta-list-item:hover {
    transform: translateX(4px);
    border-color: rgba(37, 89, 235, 0.2);
    box-shadow: 0 10px 24px rgba(37, 89, 235, 0.1);
    background: var(--tint);
}

.prospective-redesign .cta-list-content {
    position: relative;
    padding-left: 22px;
}

.prospective-redesign .cta-list-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--grad);
}

.prospective-redesign .cta-list-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.prospective-redesign .cta-list-description {
    font-family: var(--sans);
    color: var(--muted);
    line-height: 1.6;
}

/* value line -> centered bold statement */
.prospective-redesign .value-proposition {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 0 8px;
    margin-bottom: 36px;
}

.prospective-redesign .value-text {
    font-family: var(--sans);
    font-weight: 700;
    color: var(--ink);
    font-size: clamp(1.3rem, 0.9rem + 1.4vw, 1.9rem);
    line-height: 1.35;
}

/* secondary CTA -> gradient card */
.prospective-redesign .cta-card-secondary {
    position: relative;
    overflow: hidden;
    background: var(--grad);
    border: 0;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(37, 89, 235, 0.26);
    padding: clamp(44px, 5vw, 64px) clamp(28px, 4vw, 52px);
}

.prospective-redesign .cta-title-secondary {
    position: relative;
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
    line-height: 1.15;
    color: #fff;
}

.prospective-redesign .cta-description-secondary {
    position: relative;
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.88);
}

.prospective-redesign .cta-note-secondary {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   8. FAQ — rounded cards with gradient toggle
   ============================================================ */
.prospective-redesign .faq-section {
    background: #fff;
    padding: clamp(36px, 4.5vw, 64px) 20px;
}

.prospective-redesign .faq-section .section-title {
    margin-bottom: 44px;
}

.prospective-redesign .faq-item {
    margin-bottom: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.prospective-redesign .faq-item:hover,
.prospective-redesign .faq-item.active {
    border-color: rgba(37, 89, 235, 0.28);
    box-shadow: var(--shadow-hover);
}

.prospective-redesign .faq-question {
    background: none;
    padding: 24px 26px;
    gap: 20px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.2rem);
    line-height: 1.35;
    color: var(--ink);
}

.prospective-redesign .faq-question:hover {
    background: none;
    color: var(--blue);
}

.prospective-redesign .faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
    font-weight: 300;
    color: #fff;
    background: var(--grad);
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(37, 89, 235, 0.25);
}

.prospective-redesign .faq-answer {
    padding: 0 26px;
}

.prospective-redesign .faq-item.active .faq-answer {
    padding: 0 26px 24px;
}

.prospective-redesign .faq-answer p {
    font-family: var(--sans);
    color: var(--muted);
    max-width: 70ch;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .prospective-redesign .features-grid {
        grid-template-columns: 1fr;
    }

    .prospective-redesign .benefits-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
