/* ============================================================
   Hero
   ============================================================ */

#hero {
    background: var(--orange-light);
    padding: 2rem 0;
    overflow: hidden;
}

.min-vh-75 { min-height: 75vh; }

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 540px;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--gray-muted);
}

.hero-image-wrap {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--blue);
    position: relative;
    z-index: 2;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-accent--ring {
    width: 410px;
    height: 410px;
    border: 2px dashed var(--blue);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-accent--dot-orange {
    width: 70px;
    height: 70px;
    background: var(--orange);
    opacity: 0.2;
    top: -15px;
    right: -10px;
}

.hero-accent--dot-blue {
    width: 50px;
    height: 50px;
    background: var(--blue);
    opacity: 0.2;
    bottom: 10px;
    left: -20px;
}

.hero-accent--dot-sm {
    width: 20px;
    height: 20px;
    background: var(--orange);
    opacity: 0.35;
    bottom: 70px;
    right: -25px;
}

@media (max-width: 991.98px) {
    .min-vh-75 { min-height: auto; }
    .hero-image {
        width: 260px;
        height: 260px;
    }
    .hero-accent--ring {
        width: 300px;
        height: 300px;
    }
    .hero-accent--dot-orange {
        width: 45px;
        height: 45px;
        top: -5px;
        right: 5px;
    }
    .hero-accent--dot-blue {
        width: 30px;
        height: 30px;
        bottom: 10px;
        left: 0;
    }
    .hero-accent--dot-sm {
        width: 14px;
        height: 14px;
        bottom: 45px;
        right: -10px;
    }
}


/* ============================================================
   Proof Bar
   ============================================================ */

#proof-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 1rem 0;
}

.proof-stat {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--blue-dark);
}

.proof-label {
    font-size: 0.8rem;
    color: var(--gray-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
}


/* ============================================================
   How I Help — Cards
   ============================================================ */

#how-i-help {
    background: var(--white);
}

.help-card-styled {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.help-card-styled .row {
    min-height: 100%;
}

.help-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.help-card-styled:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.help-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.help-card-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--gray-border);
}

.polaroid-frame {
    background: var(--white);
    padding: 0.5rem 0.5rem 0.25rem;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 16px rgba(43, 42, 53, 0.10), 0 1px 4px rgba(43, 42, 53, 0.06);
    transform: rotate(-2.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.help-card-styled:hover .polaroid-frame {
    transform: rotate(-1deg);
    box-shadow: 0 8px 24px rgba(43, 42, 53, 0.13), 0 2px 6px rgba(43, 42, 53, 0.08);
}

.polaroid-img {
    width: 100%;
    height: auto;
    display: block;
}

.polaroid-caption {
    font-size: 0.75rem;
    color: var(--gray-muted);
    text-align: center;
    padding: 0.4rem 0 0.15rem;
    margin: 0;
    font-style: italic;
}

.help-card-styled h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.help-card-styled p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


/* ============================================================
   Laptop Frame
   ============================================================ */

.laptop-frame {
    position: relative;
}

.laptop-screen {
    background: #1a1a2e;
    border-radius: 8px 8px 0 0;
    padding: 6px 6px 0;
    border: 2px solid #333;
    border-bottom: none;
}

.laptop-screen img {
    width: 100%;
    display: block;
    border-radius: 4px 4px 0 0;
}

.laptop-base {
    height: 14px;
    background: linear-gradient(180deg, #d1d1d1, #b8b8b8);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background: #a0a0a0;
    border-radius: 2px;
}


/* ============================================================
   Whiteboard Frame
   ============================================================ */

.whiteboard-frame {
    position: relative;
}

.whiteboard-surface {
    background: var(--white);
    border: 3px solid #c8c8c8;
    border-radius: 4px;
    padding: 8px;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.08);
}

.whiteboard-surface img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.whiteboard-tray {
    background: linear-gradient(180deg, #d6d6d6, #c0c0c0);
    height: 18px;
    border-radius: 0 0 4px 4px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
}

.whiteboard-marker {
    width: 28px;
    height: 6px;
    border-radius: 3px;
}

.whiteboard-marker--orange {
    background: var(--orange);
}

.whiteboard-marker--blue {
    background: var(--blue);
}

.whiteboard-eraser {
    width: 22px;
    height: 8px;
    background: #f5f0e8;
    border-radius: 2px;
    border: 1px solid #d4cfc8;
    margin-left: 4px;
}


/* ============================================================
   Subjects — index override (base in shared/subjects.css)
   ============================================================ */

#subjects {
    background-color: var(--gray-bg);
    background-image: url('../images/dot-pattern.svg');
    background-repeat: repeat;
}


/* ============================================================
   Reviews
   ============================================================ */

#reviews {
    background: var(--orange-light);
}

.reviews-hero {
    max-width: 650px;
    margin: 0 auto;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.reviews-stars-lg {
    color: var(--orange);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews-score-lg {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
    margin-left: 0.25rem;
}

.reviews-count {
    color: var(--gray-muted);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.reviews-pull-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    line-height: 1.3;
    margin-top: 1rem;
}

.reviews-pull-attribution {
    color: var(--gray-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.review-card--featured {
    border-left: 4px solid var(--orange);
    background: var(--white);
}

.review-card--featured .review-quote-mark {
    opacity: 0.25;
    font-size: 5rem;
}


/* ============================================================
   Index-specific overrides (shared base + page tweaks)
   ============================================================ */

/* Index review cards use 2rem padding (shared base is 1.75rem) */
#reviews .review-card {
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Wave divider (index only) */
.wave-divider {
    line-height: 0;
    margin-top: -1px;
}

.wave-divider img {
    width: 100%;
    height: 80px;
    display: block;
}

.cta-box {
    background: var(--orange-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}